A public web application runs on two Windows Server VMs in Azure. Users connect through a single public IP on TCP 443, and the solution must distribute traffic only to healthy VMs without requiring Layer 7 features such as URL-based routing. Which Azure service should the administrator deploy?
Trap 1: Azure Application Gateway.
Azure Application Gateway operates at Layer 7, performing HTTP/HTTPS routing, SSL termination, and URL-path-based forwarding. Because the scenario only requires distributing raw TCP 443 traffic to backend VMs, these application-level features are unnecessary, adding complexity and cost without meeting the basic L4 load-balancing requirement.
Trap 2: Azure Traffic Manager.
Azure Traffic Manager is a DNS-based global load balancer that resolves client queries to regional endpoints based on routing policies such as performance or priority. It does not inspect or forward individual TCP connections to VM IPs, and it cannot use a single public IP to directly balance traffic across backend VMs; therefore it fails the stated requirement.
Trap 3: Azure Front Door.
Azure Front Door is a global HTTP/HTTPS entry point that provides CDN acceleration, Web Application Firewall, and rule-based routing at Layer 7. It is designed for internet-facing web applications that need global edge termination and HTTP-level features, not for simple Layer 4 TCP load balancing on a single public IP, making it an inappropriate choice here.
- A
Azure Application Gateway.
Why wrong: Azure Application Gateway operates at Layer 7, performing HTTP/HTTPS routing, SSL termination, and URL-path-based forwarding. Because the scenario only requires distributing raw TCP 443 traffic to backend VMs, these application-level features are unnecessary, adding complexity and cost without meeting the basic L4 load-balancing requirement.
- B
Azure Load Balancer Standard.
A Standard Load Balancer is the right fit for distributing TCP 443 traffic to healthy backend VMs using a single public IP at Layer 4. It supports health probes and works well for internet-facing workloads that do not need application-level routing. Because the scenario specifically excludes Layer 7 features, the load balancer provides the simplest and most cost-effective design while still meeting availability and traffic distribution requirements.
- C
Azure Traffic Manager.
Why wrong: Azure Traffic Manager is a DNS-based global load balancer that resolves client queries to regional endpoints based on routing policies such as performance or priority. It does not inspect or forward individual TCP connections to VM IPs, and it cannot use a single public IP to directly balance traffic across backend VMs; therefore it fails the stated requirement.
- D
Azure Front Door.
Why wrong: Azure Front Door is a global HTTP/HTTPS entry point that provides CDN acceleration, Web Application Firewall, and rule-based routing at Layer 7. It is designed for internet-facing web applications that need global edge termination and HTTP-level features, not for simple Layer 4 TCP load balancing on a single public IP, making it an inappropriate choice here.