How to Fix DNS_PROBE_FINISHED_NO_INTERNET

PC
Paquito Jr Conde
β€’ Mar 14, 2026
How to Fix DNS_PROBE_FINISHED_NO_INTERNET

This message often pops up in Google Chrome (and can show in other browsers too). It basically means your browser couldn't talk to a DNS server to turn a website name (like google.com) into an IP address β€” or your device simply has no internet.

⚠️ Common Causes

  • ❌ No internet connection β€” Wi-Fi or Ethernet got disconnected.
  • 🌐 DNS server problems β€” your ISP's DNS is slow or down.
  • πŸ–₯️ Broken network settings β€” corrupted cache, wrong IP, or proxy issues.
  • πŸ”’ Firewall/antivirus blocking β€” security tools might block DNS lookups.
  • πŸ“‘ Router/modem glitches β€” hardware needs a reboot or firmware update.
  • πŸ’» Driver or system issues β€” outdated network drivers or OS network stack problems.

πŸ› οΈ Step-by-step Fixes (Friendly Guide)

βœ… 1. Do the simple checks first

  • See if other devices can get online. If none can, the router/modem or ISP is likely the problem.
  • If only one device shows the error, it’s that device β€” not the whole network.
  • Restart the router/modem: unplug for 30 seconds, plug back in.
  • Turn Wi-Fi off and back on, or disconnect and reconnect the Ethernet cable.

βœ… 2. Flush the DNS cache

Clearing the DNS cache can fix stale or corrupt entries.

Windows:

Press Win + R β†’ type cmd β†’ Enter
    ipconfig /flushdns
    ipconfig /release
    ipconfig /renew
    

Mac:

Open Terminal and run:
    sudo dscacheutil -flushcache; sudo killall -HUP mDNSResponder
    

Linux (varies by distro):

Try:
    sudo systemd-resolve --flush-caches
    

βœ… 3. Switch your DNS server

If your ISP DNS is flaky, use a public DNS like Google or Cloudflare.

  • Google DNS: 8.8.8.8 and 8.8.4.4
  • Cloudflare DNS: 1.1.1.1 and 1.0.0.1

On Windows: Control Panel β†’ Network and Internet β†’ Network Connections β†’ right-click your network β†’ Properties β†’ Internet Protocol Version 4 (TCP/IPv4) β†’ Properties β†’ choose "Use the following DNS server addresses" and enter the values above.

βœ… 4. Restart the DNS Client service (Windows)

Press Win + R, type services.msc, find DNS Client, then right-click β†’ Restart.

βœ… 5. Temporarily disable firewall / antivirus

Some security apps can block DNS. Turn them off briefly to test β€” if internet returns, add exceptions for your browser or DNS traffic.

βœ… 6. Reset browser settings (if the issue is browser-specific)

In Chrome: Settings β†’ Reset settings. Also clear cached files (Ctrl + Shift + Del) and select "Cached images and files".

βœ… 7. Reset the network stack (Windows)

Open Command Prompt as administrator and run:

netsh int ip reset
    netsh winsock reset
    

Then restart the PC.

βœ… 8. Update network drivers

Open Device Manager β†’ Network adapters β†’ right-click your adapter β†’ Update driver.

βœ… 9. Router-level fixes (advanced)

Log in to your router (usually 192.168.1.1 or 192.168.0.1), check DNS settings and set them to Google or Cloudflare if needed. Also look for firmware updates.

🎯 Quick Summary

DNS_PROBE_FINISHED_NO_INTERNET means either: no internet connection or DNS can’t be reached. Start with the basics β€” check other devices and reboot your router. Then flush DNS, try public DNS servers, and reset network settings. If the problem keeps happening, it might be your ISP, a faulty router, or a driver/OS issue.

If you want, I can give you a short checklist you can print or a one-click batch script for Windows to run the common fixes. πŸ‘

Helpful? Share this guide

Comments (0)

No comments yet. Be the first to share your thoughts!

Leave a Reply