DNS resolution failed
Your domain can't be translated to an IP address, so nothing can connect to your site at all. Your site shows as Down in DomainDash.
Symptom
- DomainDash marks the uptime check as Down with error code
dns_resolution_failed - Browser shows "ERR_NAME_NOT_RESOLVED", "ERR_NAME_RESOLUTION_FAILED", or "This site can't be reached — DNS_PROBE_FINISHED_NXDOMAIN"
- Running
dig example.comreturnsNXDOMAIN(no records found) orSERVFAIL(nameserver error) nslookup example.comorhost example.comreturns "can't find example.com: No answer"
What it means
Every connection to a website starts with a Domain Name System (DNS) lookup: converting a human-readable domain name (like example.com) into an IP address the network can route to. If that lookup fails, nothing can connect — the browser doesn't even attempt a TCP connection. You'll see "This site can't be reached" rather than a server error.
The dns_resolution_failed uptime error means the lookup failed right now, during a live check.
The most common culprits are an expired domain, a deleted DNS record, or a nameserver that's down or misconfigured.
Common causes
- Domain registration has expired — once the grace period ends, the domain is removed from DNS and returns
NXDOMAIN - A/AAAA records were accidentally deleted from the DNS provider
- Nameservers were changed at the registrar but the new nameservers aren't configured with the correct records yet
- The registrar has placed a hold on the domain (
clientHoldorserverHoldstatus) due to a billing issue or suspected abuse - DNSSEC signatures are misconfigured or expired, causing DNSSEC-validating resolvers to refuse to return the records
- The nameservers themselves are down or unreachable, returning
SERVFAIL - A public DNS resolver issue (rare and usually transient — verify by trying a different resolver)
How to fix
Confirm DNS is failing. Run:
bashdig example.comAn
NXDOMAINresult means no records exist for this domain. ASERVFAILmeans the nameserver returned an error. Try a different resolver to rule out a resolver-specific issue:bashdig example.com @8.8.8.8 dig example.com @1.1.1.1If only one resolver fails, the issue may be transient or resolver-specific. If all fail, the problem is with your domain's DNS configuration.
Check your domain registration status. Run:
bashwhois example.comLook for the
Expiry DateandStatusfields. If the domain has expired, you'll need to renew it at your registrar — contact them urgently — most registrars offer a short grace period, but it's time-sensitive. A status ofclientHoldorserverHoldmeans the registrar has suspended the domain; contact them to resolve the billing or compliance issue.Verify your nameservers are configured correctly. Check the NS records:
bashdig NS example.comCompare the nameservers returned against what's shown in your registrar's DNS management panel. If they don't match — for example after a recent DNS provider migration — update the nameservers at your registrar.
Confirm your A/AAAA records exist. Query directly against an external resolver:
bashdig A example.com @8.8.8.8An empty ANSWER section means there's no A record. Log in to your DNS provider and ensure an A record pointing to your server's IP address exists for the root domain (
@).Check for DNSSEC validation failures. If your domain uses DNSSEC and the signatures are misconfigured or expired, validating resolvers will return
SERVFAIL. Use an online DNSSEC analyser (such as Verisign's DNSSEC Debugger) to check. If DNSSEC is the issue and you're not actively managing it, you can disable it at your registrar or DNS provider.Re-verify and allow time for propagation. After making changes:
bashdig example.com @1.1.1.1DNS changes propagate based on the Time to Live (TTL) of the old records — low-TTL records update in minutes; high-TTL records can take several hours. Once the record resolves correctly, click "Check now" in DomainDash to confirm.
How to verify
After fixing:
- Run
dig example.com @8.8.8.8— the ANSWER section should contain your server's IP address. - Run
curl -v https://example.com— the request should now connect successfully. - In DomainDash, go to the site's uptime tab and click "Check now". Status should flip from Down to Healthy.
Related
- Connection refused — if DNS resolves but the server rejects connections
- Connection timeout — if DNS resolves but the server doesn't respond
- Site is down — if you're not sure which uptime issue you have
- Uptime — how DomainDash runs uptime checks
