An Azure service that provides a cloud content delivery network with threat protection.
Hi Maitree Leekha ,
Thank you for sharing the details. Based on the symptoms, this appears to be related to Azure Front Door health probe reachability (DNS resolution or connectivity) rather than an application issue.
Azure Front Door sends health probes from multiple global edge locations to all configured origins, and any failure to receive a valid response (including DNSFailure, DNSTimeout, or connection timeout) is treated as an unhealthy signal.
Since the issue started immediately after disabling a region and is impacting all origins with intermittent reliability drops, this is most likely due to DNS resolution inconsistencies or transient connectivity issues from certain edge locations, possibly triggered by the configuration change. Such issues can occur even when backend applications are healthy.
Could you please help confirm the following:
- Are the origin hostnames (FQDNs) publicly resolvable consistently from different geographic regions?
- Are you using Azure DNS or a third-party DNS provider? Any recent DNS changes or low TTL values?
- Do the failures occur across all edge locations or only specific regions (based on FrontDoorHealthProbeLogs)?
- Are there any firewall, NSG, or origin-level restrictions that could block requests from certain Front Door POPs?
- Is the origin accessible over the configured protocol/port (HTTP/HTTPS) from external endpoints at all times?
You can validate DNS resolution from an Azure context using Cloud Shell:
nslookup <origin-FQDN>
This helps confirm whether the origin hostname is resolving correctly. Inconsistent or delayed resolution can contribute to DNSFailure/DNSTimeout errors observed in health probes.
Let me know the results!