In Azure, when you create a Public IP address resource, what is the difference between Static and Dynamic allocation methods?
Think about whether the IP address stays the same or can change over time.
Static Public IP addresses in Azure remain the same throughout the resource lifecycle, while Dynamic Public IP addresses can change when the resource is deallocated and restarted.
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?
Consider which SKU supports zone redundancy and SLA guarantees.
The Standard SKU Public IP supports zone redundancy and higher availability SLAs, making it suitable for production workloads requiring high availability.
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?
Think about controlling network traffic at the subnet or NIC level.
Network Security Groups allow you to create inbound and outbound rules to restrict traffic to specific IP addresses or ranges.
Which of the following JSON snippets correctly defines a Standard SKU Public IP resource in an Azure Resource Manager (ARM) template with static allocation?
Check the property names and SKU values carefully.
Option B correctly uses the publicIPAllocationMethod property with value Static and specifies Standard SKU. It also includes an optional idleTimeoutInMinutes property which is valid.
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?
Consider how to provide outbound internet access without exposing VMs to inbound traffic.
Using a NAT gateway with a single Public IP address allows all VMs in a subnet to access the internet outbound without assigning Public IPs to each VM, reducing cost and improving security by preventing inbound internet connections.