How to Fix DNS_PROBE_FINISHED_NXDOMAIN Error in Chrome

2 min read

Understanding the DNS_PROBE_FINISHED_NXDOMAIN Error in Chrome

The DNS_PROBE_FINISHED_NXDOMAIN error in Chrome occurs when your browser cannot find the domain name you are trying to access. This error typically indicates an issue with DNS configuration on your device. Common solutions include releasing and renewing your IP address, changing DNS servers, and flushing the DNS cache.

Quick Fixes to Try First

  • Check your internet connection and ensure it is stable.
  • Restart your router and modem.
  • Try accessing the website in Incognito mode (Windows: Ctrl + Shift + N, Mac: Cmd + Shift + N).
  • Disable any browser extensions that could be interfering with your connection.

How to Fix DNS_PROBE_FINISHED_NXDOMAIN on Windows

Releasing and Renewing IP Address

  1. Press Windows + R to open the Run dialog box.
  2. Type cmd and press Enter.
  3. In the Command Prompt, type ipconfig /release and press Enter.
  4. Next, type ipconfig /renew and press Enter.
  5. Restart Chrome and check if the issue persists.

Changing DNS Servers

  1. Go to Control Panel > Network and Internet > Network and Sharing Center.
  2. Click on your active network connection.
  3. Select Properties.
  4. Double-click on Internet Protocol Version 4 (TCP/IPv4).
  5. Select Use the following DNS server addresses and enter:
    Preferred: 8.8.8.8
    Alternate: 8.8.4.4
  6. Click OK to save changes.

Flushing DNS Cache

  1. Open the Command Prompt as an administrator.
  2. Type ipconfig /flushdns and press Enter.
  3. Restart your computer and check Chrome again.

Restarting DNS Client Service

  1. Press Windows + R, type services.msc, and hit Enter.
  2. Find DNS Client in the list and right-click it.
  3. Select Restart.

How to Fix DNS_PROBE_FINISHED_NXDOMAIN on macOS

Releasing and Renewing IP Address

  1. Open System Preferences and go to Network.
  2. Select your active network connection and click Advanced.
  3. Go to the TCP/IP tab.
  4. Click Renew DHCP Lease.
  5. Click OK and close the window.

Changing DNS Servers

  1. Open System Preferences and go to Network.
  2. Select your active network and click Advanced.
  3. Go to the DNS tab.
  4. Click the + button to add new DNS servers:
    8.8.8.8
    8.8.4.4
  5. Click OK and then Apply.

Flushing DNS Cache

  1. Open Terminal (found in Applications > Utilities).
  2. Type sudo killall -HUP mDNSResponder and press Enter.
  3. Enter your password if prompted.

How to Fix DNS_PROBE_FINISHED_NXDOMAIN on Linux

Flushing DNS Cache

  1. Open Terminal.
  2. Type sudo systemd-resolve --flush-caches and press Enter.
  3. Type sudo /etc/init.d/networking restart to restart the network services.

Changing DNS Servers

The process may vary depending on the Linux distribution. Generally, you can update the DNS settings in your network manager or by editing the /etc/resolv.conf file.

Conclusion

The DNS_PROBE_FINISHED_NXDOMAIN error in Chrome can be frustrating, but with these troubleshooting steps, you should be able to resolve it across various platforms. If the problem persists, consider consulting your ISP or checking for more detailed network configuration issues. For additional guidance, visit the official Google Chrome Help page.