If you get the dreaded DNS address could not be found message don’t worry — in most cases it’s an easy fix. Below is a step by step guide that anyone from beginner to tech savvy can follow.
1. Restart Your Router and Device
Sometimes the simplest solution is the best. Restart your router and your computer (or mobile device) and clear out any temporary glitches that may be causing DNS resolution issues. Turn off your router, wait at least 30 seconds then turn it back on. Do the same for your device and try the website again.
2. Clear Browser Cache and Cookies
Your browser may be storing outdated or corrupted data.
- In Chrome: Go to Settings → Privacy and Security → Clear Browsing Data.
- Select Cached images/files and Cookies.
- Restart the browser.
This ensures that your browser fetches fresh DNS information.
3. Flush the DNS Cache
Operating systems keep a local DNS cache to speed up browsing. If it becomes corrupted, it may cause the error.
Windows:
Open Command Prompt and type:
ipconfig /flushdns
Mac:
Open Terminal and run:
sudo dscacheutil -flushcache; sudo killall -HUP mDNSResponder
Linux:
sudo systemd-resolve –flush-caches
After flushing, try reloading the site.
4. Change DNS Servers
If your ISP’s DNS servers are unreliable, switching to a public DNS often fixes the issue.
-
Google DNS:
- Primary: 8.8.8.8
- Secondary: 8.8.4.4
-
Cloudflare DNS:
- Primary: 1.1.1.1
- Secondary: 1.0.0.1
Update these in your network settings, then restart your browser.
5. Reset Network Settings
Network misconfigurations may cause DNS failures.
On Windows, open Command Prompt as admin and type:
netsh int ip reset
netsh winsock reset
- On Mac, remove and re-add your network connection.
- On Mobile devices, toggle Airplane Mode or reset network settings.
6. Disable VPN or Proxy Services
Some VPNs or proxy servers interfere with DNS resolution. Temporarily disable your VPN/proxy and check if the website loads. If it works, switch to a more reliable service or configure your VPN to use custom DNS.
7. Check Your Hosts File
Your computer’s hosts file can override DNS records. If the website’s domain is incorrectly mapped here, you’ll see errors.
- Windows path: C:\Windows\System32\drivers\etc\hosts
- Mac/Linux path: /etc/hosts
Open the file with admin rights and check if the site is blocked or redirected. Remove any suspicious entries.
8. Update Network Drivers (Windows)
Outdated or corrupted network drivers can also cause DNS errors.
- Go to Device Manager → Network Adapters.
- Right-click your active adapter → Update driver.
- Restart your PC after the update.
9. Try a Different Browser or Device
To isolate the problem, test the site on another browser (like Firefox instead of Chrome) or on a different device using the same network. If it works elsewhere, the issue may be browser-specific.
10. Contact Your ISP
If none of the above works, the issue may be with your Internet Service Provider’s DNS servers. Contact your ISP and report the problem. They may suggest alternate DNS configurations or fix an outage on their end.
Leave a Reply