Question

Difficulty: MediumConfigure Azure Load Balancer

You have an Azure subscription that contains two virtual machines named VM1 and VM2. The network interface of each virtual machine is associated with a Basic SKU public IP address. You deploy a Standard SKU public load balancer named LB1. You need to add VM1 and VM2 to the backend pool of LB1. Which action should you perform first?

  1. Disassociate or upgrade the Basic SKU public IP addresses from the network interfaces of VM1 and VM2.Answer
  2. B
    Configure the frontend IP configuration of LB1 to use a new Basic SKU public IP address.
  3. C
    Associate a Network Security Group (NSG) with the subnets of VM1 and VM2.
  4. D
    Create a new Basic SKU load balancer and configure LB1 to chain traffic to it.

Answer

Disassociate or upgrade the Basic SKU public IP addresses from the network interfaces of VM1 and VM2.
The correct answer is correct because a Standard SKU load balancer requires that any public IP addresses associated with virtual machines in its backend pool must also be of the Standard SKU. If the virtual machines have Basic SKU public IPs associated with their network interfaces, those IP addresses must be removed (disassociated) or upgraded to Standard SKU before the virtual machines can be successfully added to the backend pool of the Standard Load Balancer.

Step-by-Step Solution

1
Identify the SKU mismatch between the backend virtual machines' instance-level public IP addresses and the load balancer.
VM1 and VM2 have Basic SKU public IPs, while LB1 is a Standard SKU load balancer.
Azure enforces that resources in the backend pool of a Standard load balancer must use Standard SKU public IP resources or have no public IP at all.
2
Select the appropriate resolution path to achieve SKU compatibility.
The Basic SKU public IPs must either be disassociated from the network interfaces or upgraded to the Standard SKU.
This removes the incompatible Basic SKU reference, allowing the virtual machines to be successfully registered to the backend pool of the Standard load balancer.

Key Concept

Azure Standard Load Balancer backend pool members must have matching Standard SKU public IP configurations or no public IP configurations on their network interfaces.
Estimated Time:1m 30s
Rate this question