ERR_INTERNET_DISCONNECTED: What It Means and How to Fix It

Appears on: Chrome, Edge. ERR_INTERNET_DISCONNECTED means your computer thinks it has no internet connection. Check Wi-Fi, Ethernet, router, and modem status — the fix is almost always at the network layer, not the browser.

What ERR_INTERNET_DISCONNECTED Actually Means

ERR_INTERNET_DISCONNECTED is different from DNS failures or server errors. Chrome received a definitive signal from the operating system's network stack that no network adapter is connected or no internet path exists. It is not a timeout waiting for a server — the OS actively reported that the interface is down or unconnected before Chrome even attempted a connection.

Compare it to other errors: ERR_NAME_NOT_RESOLVED means the connection exists but DNS failed; ERR_CONNECTION_REFUSED means the connection reached a server that rejected it; ERR_INTERNET_DISCONNECTED means the OS network stack says there is nothing to connect through at all.

Most Likely Causes (Ranked)

  1. Wi-Fi disconnected or Ethernet cable unplugged
  2. Router or modem offline
  3. ISP outage
  4. Airplane mode accidentally enabled
  5. Network adapter driver crashed or disabled
  6. Winsock corruption on Windows

OS Network Stack Diagnosis

Windows

Open Settings → System → Troubleshoot → Other troubleshooters → Internet Connections and run the built-in troubleshooter. It detects common adapter and DHCP problems automatically. Also check the adapter status: right-click the network icon in the system tray → Open Network and Internet Settings → Change adapter options. The adapter should show "Connected" or an IP address, not "Disabled" or "Not connected." Run ipconfig in a command prompt — if your adapter shows 169.254.x.x, DHCP failed; if it shows no IP at all, the adapter is not connected to any network.

macOS

Open System Settings → Network. Each interface shows a colored dot: green means connected and active, yellow means connected without internet access, red means disconnected. If Wi-Fi is green but pages fail, open Terminal and run ping 8.8.8.8. If ping succeeds but browsing fails, the issue is DNS or browser state rather than the connection itself. If ping fails, run ping 192.168.1.1 (your gateway IP from Network settings) — if the gateway responds but 8.8.8.8 does not, your router is up but has no internet connection.

Linux

Run ip link to see all interfaces and their state. An interface marked DOWN means it is disabled. Run nmcli device status to see NetworkManager's view of all connections. If the interface is up but has no IP, run ip addr show and check for a valid address. Use nmcli connection up [connection-name] to reconnect a known network.

Physical Checks

For Ethernet: verify the cable is firmly seated at both ends — the RJ45 clip should click. Swap to a different port on the router if available. Try a different cable if you have one. A damaged cable may have intermittent contact that only fails under certain conditions.

Check router and modem indicator lights. A healthy setup typically shows solid power, solid/blinking internet/WAN, and active LAN or wireless lights. A blinking or off WAN/internet light means the modem is not synced with your ISP — this is an ISP-side or modem problem, not a device problem.

Wireless-Specific Steps

If the error is on Wi-Fi: forget the network and rejoin it. On Windows, go to Settings → Network → Wi-Fi → Manage known networks → select the network → Forget. On macOS, go to System Settings → Wi-Fi → click the network → Forget This Network. Reconnect with the password.

Check which band the device is connected to. If connected to 2.4 GHz and the 5 GHz band is available, try 5 GHz — it is less congested and often more stable close to the router. Move the device physically closer to the router to rule out signal strength as the cause.

Winsock Reset (Windows)

A corrupted Winsock catalog can cause ERR_INTERNET_DISCONNECTED even when the adapter shows as connected. Open an elevated Command Prompt and run these commands in sequence, then reboot:

  • netsh winsock reset
  • netsh int ip reset
  • ipconfig /release
  • ipconfig /flushdns
  • ipconfig /renew

Is the Issue Browser-Specific or System-Wide?

If you can open other applications that use the internet (email client, ping, another browser) while Chrome shows ERR_INTERNET_DISCONNECTED, the problem is browser-specific rather than a true disconnection. In that case, clear Chrome's socket pools at chrome://net-internals/#sockets → Flush socket pools, and restart Chrome. If no other internet application works either, the problem is genuinely at the network or OS level.

Frequently Asked Questions

Why does ERR_INTERNET_DISCONNECTED show even though I have Wi-Fi?

Being associated with a Wi-Fi network is not the same as having internet access. Your device can join the SSID, get a local IP from the router via DHCP, and still have no internet if the router's WAN connection to the ISP is down. Test by loading your router's admin page (usually 192.168.1.1) in a browser — if that loads but websites do not, the ISP link is the problem.

Can a VPN cause this error?

Yes. A VPN that disconnects unexpectedly while a kill switch is active will block all internet traffic, causing Chrome to report ERR_INTERNET_DISCONNECTED. Disconnect the VPN entirely and retest to confirm.

Related Guides

More From This Section