How to Fix DNS Server Not Responding in Windows 11
The Problem
Sites fail to open with DNS server isn't responding or DNS_PROBE_FINISHED_NO_INTERNET, but Wi-Fi shows connected. Windows is not translating names (like google.com) into IP addresses—often a local DNS cache, adapter, or router issue, not a dead internet line.
Wi-Fi says "No Internet, secured" with a yellow triangle? Start with fix No Internet, secured—symptoms overlap but the first steps differ slightly.
Symptoms
- Every browser fails; chat apps may still work on IP-based backends.
ping 8.8.8.8works in Command Prompt butping google.comfails.- Problem started after VPN software, parental controls, or a router firmware update.
The Fix: Step-by-Step
Step 1: Quick Browser and Connection Check
- Try another browser or an InPrivate window (extensions can hijack DNS).
- Toggle Wi-Fi off and on, or unplug Ethernet for ten seconds.
- Test another device on the same network. If all devices fail, reboot the router.
Step 2: Flush the DNS Resolver Cache
- Open Terminal (Admin) (
Win + X→ Terminal (Admin)). - Run:
ipconfig /flushdns - Retry a website. If it works briefly then breaks, continue below.
Step 3: Set Public DNS Manually
Bypass flaky ISP DNS.
Win + R→ncpa.cpl→ Enter.- Right-click your active adapter → Properties.
- Select Internet Protocol Version 4 (TCP/IPv4) → Properties.
- Choose Use the following DNS server addresses:
- Preferred:
8.8.8.8 - Alternate:
8.8.4.4(Or Cloudflare:1.1.1.1/1.0.0.1.)
- Preferred:
- Click OK on all dialogs. Open Command Prompt and run:
ipconfig /registerdns
Step 4: Reset Winsock and TCP/IP
Corrupt stacks cause DNS timeouts even with good DNS servers.
- In Terminal (Admin):
netsh winsock reset netsh int ip reset ipconfig /release ipconfig /renew - Restart the PC—this matters; skipping reboot leaves half the reset in place.
Step 5: Disable IPv6 Temporarily (Test Only)
Some routers mishandle IPv6 DNS.
- In adapter Properties, uncheck Internet Protocol Version 6 (TCP/IPv6).
- Test browsing. If fixed, update router firmware or leave IPv6 off until the router is patched—then re-enable IPv6.
Step 6: Remove Stale VPN and Security Filters
- Settings → Network & internet → VPN → remove unused profiles.
- Uninstall old VPN clients (Nord, Express, corporate SSL VPN) if you no longer use them—they leave virtual adapters behind.
- Check third-party "web protection" suites; disable their DNS filtering for a test.
Step 7: Reinstall the Network Adapter
Device Manager → Network adapters → uninstall Wi-Fi or Ethernet → Action → Scan for hardware changes → reboot.
Verify It Worked
In Command Prompt:
nslookup google.com
You should see an address under Non-authoritative answer. If nslookup fails but ping 8.8.8.8 works, DNS on the PC or router is still broken—repeat Step 3 on the router's LAN DNS settings (set to Automatic or forward to 8.8.8.8).
Related guides
How to Fix Mobile Hotspot Not Working in Windows 11
Can't turn on mobile hotspot, or devices won't connect? Fix adapter sharing, metered data, firewall, and driver issues for Windows 11 hotspot.
How to Fix Windows 11 Can't Connect to This Network Error
Wi-Fi password is right but Windows says can't connect to this network? Forget the profile, reset the adapter, and fix driver and security mismatches.
How to Fix Wi-Fi Keeps Disconnecting in Windows 11
Wi-Fi drops every few minutes on a laptop or desktop? Fix power management, drivers, and router settings that cause random disconnects in Windows 11.
How to Fix Windows Firewall Blocking Apps in Windows 11
App blocked by Windows Defender Firewall, can't join a game server, or file sharing fails? Add allow rules, reset firewall defaults, and fix network profile.
How to Fix Ethernet Not Working in Windows 11
Wired internet dead but Wi-Fi works? Check the cable and link lights, reset the adapter, reinstall Ethernet drivers, and fix DHCP on Windows 11.