An organization is designing a disaster recovery strategy for a web-based portal hosted in the West Europe and North Europe regions. The solution must support SSL/TLS offloading at the routing layer to reduce decryption overhead on the backend web servers, and it must achieve the lowest possible recovery time objective (RTO) for traffic redirection during a regional failover. Which routing service and configuration should you recommend?
- AAzure Traffic Manager, because it uses DNS-based routing to resolve client queries to the healthiest regional IP, offloads SSL/TLS at the DNS level, and offers a low TTL to minimize failover time.
- BAzure Front Door, because it operates at Layer 4 to distribute non-HTTP traffic globally, offloads SSL/TLS encryption, and relies on DNS updates to route around regional failures.
- Azure Front Door, because it uses Anycast routing to terminate SSL/TLS at the edge and immediately redirects client traffic to the healthy region without relying on client DNS cache updates.Answer
- DAzure Traffic Manager combined with Azure Application Gateway in each region, because Traffic Manager offloads SSL/TLS for all inbound requests and performs path-based routing to the regional Application Gateways.
Answer
Azure Front Door, because it uses Anycast routing to terminate SSL/TLS at the edge and immediately redirects client traffic to the healthy region without relying on client DNS cache updates.
The correct choice is the option that recommends Azure Front Door for SSL/TLS termination and edge-based failover. Azure Front Door utilizes Anycast routing to direct client traffic to the nearest Point of Presence (PoP), where SSL/TLS handshakes are completed (offloading decryption from backend servers). Because it routes traffic at Layer 7 and uses split-TCP, it detects backend failures via health probes and immediately diverts traffic to the healthy region at the network level, avoiding the latency associated with DNS client caching and TTL expiration.
Step-by-Step Solution
Key Concept
Anycast-based Layer 7 routing (Azure Front Door) vs DNS-based routing (Azure Traffic Manager) for global load balancing and disaster recovery.
Estimated Time:1m 30s