ERR_NAME_NOT_RESOLVED on Mac: 8 quick fixes (2026)
Fix DNS_PROBE_FINISHED_NXDOMAIN or ERR_NAME_NOT_RESOLVED on Mac with 8 tested DNS, hosts file, browser and network checks.
Locahl Team
Table of Contents
- How to fix ERR_NAME_NOT_RESOLVED on Mac
- Understanding the error
- What's happening?
- Possible causes
- Solution #1: Flush DNS cache
- Solution #2: Check the hosts file
- Unblock the domain
- Solution #3: Change DNS servers
- Recommended DNS
- Change DNS on Mac
- Via Terminal
- Solution #4: Disable VPN/Proxy
- Quick test
- Check proxies
- Solution #5: Restart network services
- Disable/re-enable Wi-Fi
- Via Terminal
- Solution #6: Check the firewall
- Check macOS firewall
- Third-party applications
- Solution #7: Renew IP address
- Solution #8: Check if the site is down
- Verification tools
- Test from another device
- Advanced diagnosis
- Check DNS resolution
- Test with a specific DNS
- Check Internet connection
- Decision tree
- One website fails, other websites work
- All websites fail by name, but IP addresses work
- Only local domains fail
- Common developer scenarios
- After editing /etc/hosts
- After switching VPN
- After changing Wi-Fi networks
- After installing security tools
- Local development checklist
- When the site is actually down
- Similar errors
- Prevention
- Use reliable DNS
- Avoid bulky hosts files
- Restart regularly
- Conclusion
"This site can't be reached", "ERR_NAME_NOT_RESOLVED", "DNS_PROBE_FINISHED_NXDOMAIN"... These error messages are frustrating, especially when the Internet works for other sites. This guide will help you resolve these DNS issues on Mac.
How to fix ERR_NAME_NOT_RESOLVED on Mac
To fix ERR_NAME_NOT_RESOLVED (or DNS_PROBE_FINISHED_NXDOMAIN) on Mac, flush the DNS cache with `sudo dscacheutil -flushcache && sudo killall -HUP mDNSResponder`, then reload the page. If it persists, switch to a public DNS (1.1.1.1 or 8.8.8.8), disable any VPN or proxy, and check that the domain is not blocked in /etc/hosts.
Work through the eight fixes below in order, from fastest to most thorough.
Understanding the error
What's happening?
When you type "google.com" in your browser: 1. Your Mac asks for google.com's IP address 2. DNS servers respond with the IP (e.g., 142.250.185.78) 3. Your browser connects to that IP
ERR_NAME_NOT_RESOLVED means step 2 failed.
Possible causes
- Corrupted or stale DNS cache
- Unreachable or slow DNS servers
- Misconfigured hosts file
- Problematic VPN or proxy
- Firewall blocking DNS requests
- The site is actually down
- Internet connection problem
Solution #1: Flush DNS cache
This is the quickest solution and resolves 50% of cases.
sudo dscacheutil -flushcache && sudo killall -HUP mDNSResponderTest immediately by reloading the page.
Solution #2: Check the hosts file
A domain blocked in your hosts file will cause this error.
cat /etc/hosts | grep "problem-domain.com"If the domain appears with 0.0.0.0 or 127.0.0.1, it's blocked.
Unblock the domain
sudo nano /etc/hostsDelete or comment out (#) the concerned line, then flush DNS cache.
Solution #3: Change DNS servers
Your ISP's DNS may be slow or failing.
Recommended DNS
Cloudflare (fast, private)
- 1.1.1.1
- 1.0.0.1
Google (reliable)
- 8.8.8.8
- 8.8.4.4
Quad9 (secure)
- 9.9.9.9
- 149.112.112.112
Change DNS on Mac
1. System Settings > Network 2. Select your connection (Wi-Fi or Ethernet) 3. Details... > DNS 4. Remove existing servers, add new ones 5. Click OK
Via Terminal
# Show current DNS
scutil --dns | grep "nameserver"
# Configure Cloudflare DNS (Wi-Fi)
networksetup -setdnsservers Wi-Fi 1.1.1.1 1.0.0.1Solution #4: Disable VPN/Proxy
VPNs change your DNS servers and can cause problems.
Quick test
1. Disconnect your VPN 2. Flush DNS cache 3. Test the site
If it works, the problem is the VPN. Contact their support or switch VPN servers.
Check proxies
System Settings > Network > Wi-Fi > Details... > Proxies
Disable any configured proxy to test.
Solution #5: Restart network services
Disable/re-enable Wi-Fi
Click Wi-Fi icon > Turn Wi-Fi Off > Wait 10 seconds > Turn back on
Via Terminal
# Restart mDNSResponder
sudo killall -HUP mDNSResponder
# Restart network interface
sudo ifconfig en0 down && sudo ifconfig en0 upSolution #6: Check the firewall
Mac firewall or security applications can block DNS requests.
Check macOS firewall
System Settings > Network > Firewall
Temporarily disable to test.
Third-party applications
Little Snitch, Lulu, or antiviruses can block DNS. Check their rules.
Solution #7: Renew IP address
# Release current IP
sudo ipconfig set en0 DHCP
# Or force renewal
sudo ipconfig set en0 BOOTP && sudo ipconfig set en0 DHCPSolution #8: Check if the site is down
Maybe the problem isn't on your end.
Verification tools
Test from another device
Try accessing the site from your phone on cellular (not Wi-Fi).
Advanced diagnosis
Check DNS resolution
# With nslookup
nslookup google.com
# With dig
dig google.com
# With host
host google.comExpected result: an IP address.
Test with a specific DNS
# Test with Cloudflare DNS
nslookup google.com 1.1.1.1
# Test with Google DNS
nslookup google.com 8.8.8.8If it works with an external DNS but not yours, change your DNS.
Check Internet connection
# Ping Google DNS
ping -c 4 8.8.8.8
# Ping by name (tests DNS)
ping -c 4 google.comIf ping by IP works but not by name, it's a DNS problem.
Decision tree
Use this order when you need a fast diagnosis.
One website fails, other websites work
Likely causes:
- Site DNS is misconfigured.
- Your local DNS cache is stale.
- The domain is blocked in
/etc/hosts. - The browser has cached an old result.
Start with:
dscacheutil -q host -a name example.com
dig example.com
sudo dscacheutil -flushcache && sudo killall -HUP mDNSResponderIf Chrome is the only browser affected, clear Chrome DNS cache:
All websites fail by name, but IP addresses work
Likely causes:
- DNS server outage.
- VPN DNS issue.
- Router DNS problem.
- Firewall blocking port 53 or encrypted DNS.
Test:
ping -c 4 1.1.1.1
ping -c 4 google.com
scutil --dns | grep nameserverIf the IP ping works and domain ping fails, switch DNS servers temporarily.
Only local domains fail
Likely causes:
- Hosts file syntax issue.
- Wrong local server port.
.localconflict with Bonjour.- Missing IPv6 mapping.
Check:
cat /etc/hosts
dscacheutil -q host -a name myproject.test
curl -I http://myproject.testFor local projects, prefer .test over .local.
Common developer scenarios
After editing /etc/hosts
If you mapped a staging domain and Chrome still opens production, do this:
1. Confirm the hosts line. 2. Flush macOS DNS. 3. Clear Chrome DNS cache. 4. Test with curl -I. 5. Verify the web server accepts that hostname.
Example hosts line:
203.0.113.10 staging.example.comAfter switching VPN
VPNs often push their own DNS servers. If the error appears only while the VPN is active:
- Disconnect and test again.
- Switch VPN region.
- Disable "use VPN DNS" if your provider allows it.
- Ask whether internal domains require split DNS.
After changing Wi-Fi networks
Captive portals, hotel Wi-Fi and office networks can hijack DNS. Test with another network or your phone hotspot. If the hotspot works, the problem is network-specific.
After installing security tools
Little Snitch, LuLu, antivirus tools and corporate endpoint agents can block DNS or browser traffic. Temporarily disable rules for the browser and resolver services to test.
Local development checklist
For local domains, verify each layer:
- Hosts entry exists.
- DNS cache is flushed.
- Browser DNS cache is clear.
- Local server is running.
- Server listens on the expected port.
- HTTPS certificate covers the hostname.
- The app router accepts the hostname.
If the issue appears after adding HTTPS locally, read the mkcert certificate error guide.
When the site is actually down
Sometimes your Mac is fine. If dig returns no records from multiple public DNS providers, the domain itself may be misconfigured.
Test with:
dig example.com @1.1.1.1
dig example.com @8.8.8.8
dig example.com @9.9.9.9If all providers return NXDOMAIN, the domain does not resolve publicly. If only one provider fails, it may be DNS propagation or resolver-specific caching.
Similar errors
| Message | Meaning |
|---|---|
| ERR_NAME_NOT_RESOLVED | DNS resolution failed |
| DNS_PROBE_FINISHED_NXDOMAIN | Non-existent domain |
| ERR_CONNECTION_REFUSED | Server found but refuses connection |
| ERR_CONNECTION_TIMED_OUT | Server not responding |
Prevention
Use reliable DNS
Configure Cloudflare (1.1.1.1) or Google (8.8.8.8) as primary DNS.
Avoid bulky hosts files
Too many entries can slow resolution. Use a tool like Locahl to manage cleanly.
Restart regularly
An occasional restart clears caches and resolves latent issues.
Conclusion
The ERR_NAME_NOT_RESOLVED error is almost always related to DNS cache or configured DNS servers. In 90% of cases, flushing DNS cache or changing DNS servers solves the problem.
If the problem persists on only one site, the site itself is probably the cause.
Ready to simplify your workflow?
Stop wasting time with the terminal. Locahl lets you manage your hosts file in a few clicks, with automatic validation and no risk of errors.
- Intuitive visual interface
- Automatic DNS flush
- Multi-environment management
- Automatic backups
- JSON Import/Export
Reader Reviews
"The DNS flush step solved my problem in 30 seconds. I had spent 2 hours searching!"
May 15, 2025
"Great troubleshooting guide. The systematic method helped me identify that my VPN was causing the issue."
August 22, 2025
"Complete and well explained. Could have included more details on ISP issues."
November 10, 2025
Frequently Asked Questions
What does ERR_NAME_NOT_RESOLVED mean?
This error indicates that your browser couldn't resolve the domain name to an IP address. The DNS server didn't find a record for this domain.
What's the difference with DNS_PROBE_FINISHED_NXDOMAIN?
It's the same error with a different name. NXDOMAIN means 'Non-Existent Domain' - the domain doesn't exist or wasn't found.
How do I flush DNS cache on Mac?
Run: sudo dscacheutil -flushcache && sudo killall -HUP mDNSResponder. This command forces DNS resolution updates.
Why does this error only appear on certain sites?
If only one site is affected, the problem likely comes from the site itself (misconfigured DNS) or your local DNS cache.
Can my VPN cause this error?
Yes, VPNs change your DNS servers. If the VPN has issues or slow DNS, you'll see this error. Try disconnecting from the VPN to test.
Related Articles
Mac Network Troubleshooting Checklist
Network troubleshooting guide for Mac developers: ping, nslookup, dig, traceroute, network settings, firewall and DNS debugging.
Locahl Team
How to Flush DNS Cache (Windows, Mac, Linux & Chrome)
How to flush or clear the DNS cache on Windows, Mac, Linux and Chrome. Copy the exact command for your system, learn what flushing DNS does and whether it is safe.
Locahl Team
Developer tools team
/etc/hosts Not Working? Fixes for Windows, Mac & Linux
The hosts file is ignored or /etc/hosts changes do not take effect? Fix it on Windows, Mac and Linux: flush DNS, check syntax, IPv6, line endings, resolver caches and save permissions.
Locahl Team
Developer tools team
Fix DNS_PROBE_FINISHED_NXDOMAIN (2026)
Fix DNS_PROBE_FINISHED_NXDOMAIN in Chrome and Edge: flush DNS, check the hosts file, reset DNS servers and clear the browser cache. Step-by-step solutions.
Locahl Team
Developer tools team
How to Edit the Host File (Windows, Mac & Linux)
Edit the host file on Windows, macOS and Linux: file location, admin rights, syntax, DNS flush, and troubleshooting when changes do not apply.
Locahl Team