Question

Difficulty: MediumConfigure Azure Load Balancer

An administrator is designing a public Azure Load Balancer named LB1 to distribute internet traffic to two virtual machines named VM1 and VM2. VM1 and VM2 are standalone virtual machines deployed in the same virtual network and are not associated with any availability set or virtual machine scale set. The administrator creates a Standard SKU public IP address named PIP1 to serve as the frontend IP configuration for the load balancer. Which configuration must the administrator choose for LB1 to successfully implement this solution?

  1. Select the Standard SKU for LB1, and add VM1 and VM2 directly to the backend pool.Answer
  2. B
    Select the Basic SKU for LB1, and add VM1 and VM2 directly to the backend pool.
  3. C
    Select the Basic SKU for LB1, change the SKU of PIP1 to Basic, and add VM1 and VM2 directly to the backend pool.
  4. D
    Select the Standard SKU for LB1, and associate VM1 and VM2 with a new availability set before adding them to the backend pool.

Answer

Select the Standard SKU for LB1, and add VM1 and VM2 directly to the backend pool.
The correct configuration is to select the Standard SKU for the load balancer and add the standalone virtual machines directly to the backend pool. A Standard SKU load balancer requires a Standard SKU public IP address and supports any virtual machines in a single virtual network as backend pool members, including standalone VMs.

Step-by-Step Solution

1
Analyze the SKU of the frontend public IP address.
The public IP address is configured with the Standard SKU.
The load balancer SKU must match the frontend IP address SKU. A Standard SKU public IP requires a Standard SKU load balancer.
2
Analyze the backend virtual machine configuration.
VM1 and VM2 are standalone virtual machines in the same virtual network, not in an availability set or virtual machine scale set.
Standard SKU load balancers support any virtual machines in a single virtual network, including standalone VMs, in the backend pool. Basic SKU load balancers require virtual machines to be in the same availability set or virtual machine scale set.
3
Combine the frontend and backend requirements to select the correct configuration.
Select the Standard SKU for LB1 and add VM1 and VM2 directly to the backend pool.
This satisfies the SKU match requirement with the Standard SKU public IP and supports standalone virtual machines in the backend pool.

Key Concept

Azure Load Balancer SKU compatibility rules for frontend IP configurations and backend pool membership.
Rate this question