0
0
Azurecloud~20 mins

Public IP addresses in Azure - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Public IP Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
service_behavior
intermediate
2:00remaining
Understanding Azure Public IP Address Allocation

In Azure, when you create a Public IP address resource, what is the difference between Static and Dynamic allocation methods?

AStatic allocation means the IP address is only available during business hours, Dynamic allocation is available 24/7.
BStatic allocation assigns an IP address from a pool shared by all users, while Dynamic allocation assigns a unique IP address permanently.
CStatic allocation automatically changes the IP address daily, Dynamic allocation keeps the same IP address forever.
DStatic allocation assigns a fixed IP address that does not change, while Dynamic allocation assigns an IP address that can change when the resource is stopped and started.
Attempts:
2 left
💡 Hint

Think about whether the IP address stays the same or can change over time.

Architecture
intermediate
2:00remaining
Choosing Public IP SKU for High Availability

You want to assign a Public IP address to a virtual machine scale set in Azure that requires zone redundancy and protection against IP address loss during maintenance. Which Public IP SKU should you choose?

ADynamic Basic Public IP
BBasic SKU Public IP
CStandard SKU Public IP
DClassic Public IP
Attempts:
2 left
💡 Hint

Consider which SKU supports zone redundancy and SLA guarantees.

security
advanced
2:00remaining
Securing Access to Azure Public IP Addresses

You have a Public IP address assigned to a virtual machine in Azure. You want to restrict inbound traffic so only specific IP addresses can connect. Which Azure service should you configure?

AAzure Network Security Group (NSG) with inbound rules
BAzure Application Gateway with WAF
CAzure Traffic Manager with geographic routing
DAzure Load Balancer with NAT rules
Attempts:
2 left
💡 Hint

Think about controlling network traffic at the subnet or NIC level.

Configuration
advanced
2:00remaining
Assigning a Public IP to an Azure Load Balancer

Which of the following JSON snippets correctly defines a Standard SKU Public IP resource in an Azure Resource Manager (ARM) template with static allocation?

A
{
  "type": "Microsoft.Network/publicIPAddresses",
  "apiVersion": "2022-05-01",
  "name": "myPublicIP",
  "location": "eastus",
  "sku": { "name": "Basic" },
  "properties": {
    "publicIPAllocationMethod": "Dynamic"
  }
}
B
{
  "type": "Microsoft.Network/publicIPAddresses",
  "apiVersion": "2022-05-01",
  "name": "myPublicIP",
  "location": "eastus",
  "sku": { "name": "Standard" },
  "properties": {
    "publicIPAllocationMethod": "Static",
    "idleTimeoutInMinutes": 10
  }
}
C
{
  "type": "Microsoft.Network/publicIPAddresses",
  "apiVersion": "2022-05-01",
  "name": "myPublicIP",
  "location": "eastus",
  "sku": { "name": "Standard" },
  "properties": {
    "publicIPAllocationMethod": "Static"
  }
}
D
{
  "type": "Microsoft.Network/publicIPAddresses",
  "apiVersion": "2022-05-01",
  "name": "myPublicIP",
  "location": "eastus",
  "sku": { "name": "Standard" },
  "properties": {
    "allocationMethod": "Static"
  }
}
Attempts:
2 left
💡 Hint

Check the property names and SKU values carefully.

Best Practice
expert
3:00remaining
Designing Public IP Usage for Cost and Security Optimization

You manage multiple Azure virtual machines that require internet access but do not need inbound connections from the internet. What is the best practice regarding Public IP address assignment to optimize cost and security?

AUse a NAT gateway with a single Public IP address for outbound internet access and no Public IPs on individual VMs.
BAssign a Public IP address to each virtual machine to allow outbound internet access.
CAssign dynamic Public IP addresses to each VM to reduce cost and allow inbound access when needed.
DUse Azure Firewall with Public IPs assigned to each VM for outbound and inbound traffic control.
Attempts:
2 left
💡 Hint

Consider how to provide outbound internet access without exposing VMs to inbound traffic.