An administrator is configuring a public Azure Load Balancer named LB1 by using the Standard SKU. LB1 will distribute inbound traffic to two virtual machines named VM1 and VM2. VM1 is a standalone virtual machine that has a Standard SKU public IP address associated with its network interface (NIC). VM2 is a standalone virtual machine that has a Basic SKU public IP address associated with its network interface (NIC). When the administrator attempts to add VM2 to the backend pool of LB1, the operation fails. You need to resolve the issue while ensuring that both virtual machines retain their respective public IP addresses. What should you do?
- Upgrade the public IP address of VM2 to the Standard SKU.Answer
- BChange the SKU of LB1 to Basic.
- CMove VM1 and VM2 to a new Availability Set.
- DAssociate the Basic SKU public IP of VM2 with the frontend IP configuration of LB1.
Answer
Upgrade the public IP address of VM2 to the Standard SKU.
The correct answer is to upgrade the public IP address of the second virtual machine to the Standard SKU. In Azure, a Standard SKU public load balancer requires all network interfaces in its backend pool to be associated with Standard SKU resources. If any of the backend virtual machines have instance-level public IPs assigned directly to their network interfaces, those public IPs must be upgraded to the Standard SKU to avoid a SKU mismatch error.
Step-by-Step Solution
Key Concept
Azure Standard Load Balancer requires all backend pool network interfaces with instance-level public IP addresses to use the Standard SKU.
Estimated Time:2m 0s