Chrome ERR_ADDRESS_UNREACHABLE — Server Cannot Be Reached
Errorchrome errors
Overview
Chrome ERR_ADDRESS_UNREACHABLE indicates the browser cannot establish a network connection to the server's IP address.
Key Details
- DNS resolution succeeded but the IP address is not reachable
- Different from ERR_NAME_NOT_RESOLVED (DNS failure)
- Can indicate the server is down, IP is wrong, or network path is broken
- Common with sites that recently changed hosting providers
- Also appears when trying to reach internal/private IP addresses from external networks
Common Causes
- The website's server is completely down
- DNS cache returning a stale/wrong IP address
- Firewall blocking outbound connections to that IP range
- The website moved to a new IP but DNS TTL has not expired
- Network routing issue between your ISP and the hosting provider
Steps
- 1Check if the site is down for everyone: use downdetector.com or isitdown.site
- 2Flush DNS cache: chrome://net-internals/#dns > Clear host cache
- 3Also flush OS DNS: ipconfig /flushdns (Windows) or sudo dscacheutil -flushcache (Mac)
- 4Try accessing by IP directly (if known) to bypass DNS
- 5Disable VPN or proxy if active and retry
Tags
chromeaddress-unreachablenetworkdnsserver-down
More in Chrome Errors
chrome-err-connection-resetChrome ERR_CONNECTION_RESET — Connection Was Reset
Errorchrome-err-cert-date-invalidChrome ERR_CERT_DATE_INVALID — SSL Certificate Expired
Errorchrome-err-http2-protocol-errorChrome ERR_HTTP2_PROTOCOL_ERROR — HTTP/2 Protocol Failure
Errorchrome-err-insufficient-resourcesChrome ERR_INSUFFICIENT_RESOURCES — Out of Memory
ErrorFrequently Asked Questions
NAME_NOT_RESOLVED means DNS lookup failed (no IP found). ADDRESS_UNREACHABLE means DNS worked but the IP cannot be reached.