Why Wi-Fi won't connect on a computer without internet access: A complete breakdown of the reasons

Do you see the familiar Wi-Fi icon with an exclamation point in the Windows system tray, and the connection status says "No internet access"? This situation is doubly annoying when other devices (smartphones, tablets) are connected to the same network and work without problems. In 80% of cases, the problem lies not with the ISP, but with the settings. your computer, drivers, or network settings conflicts.

This article isn't about trivial advice like "reboot your router" (although we'll cover that from a technical perspective, too). We'll dive into DHCP protocols, analysis ipconfig, diagnostics network adapters and we'll even look at rare cases where an antivirus or VPN is to blame. Get ready: you'll have to look into device Manager, command line and settings TCP/IP.

Spoiler: if you have In Windows 11 with Fast Startup and Hybrid Sleep enabled, in 30% of cases the problem is solved by disabling one checkbox in the power options.But first things first.

1. DHCP Issues: Why Your Computer Isn't Received an IP Address

The most common reason for "Wi-Fi without internet" is a protocol failure. DHCP (Dynamic Host Configuration Protocol). This protocol automatically assigns your PC IP address, subnet mask, gateway And DNS serversIf DHCP fails, Windows assigns itself an "alternative" address such as 169.254.x.x - this is a sure sign of a problem.

How to check:

  1. Open Command line (Win + R → enter cmd).
  2. Enter the command:
    ipconfig /all
  3. Find the line IPv4 address for your Wi-Fi adapter. If it starts with 169.254, DHCP did not work.

Reasons for DHCP failure:

  • 🔌 The router does not issue an IP address.: MAC address limitation, address pool exhausted, or DHCP server disabled in settings.
  • 🖥️ The network adapter is blocked: The driver is frozen or Windows has set it to the "Disabled" status.
  • Conflict with antivirus software: some programs (for example, Kaspersky or Avast) block DHCP requests, considering them suspicious activity.

Solutions:

  1. Restart the DHCP client manually:
    netsh int ip reset
    

    ipconfig /release

    ipconfig /renew

  2. Check your router settings: go to the web interface (usually 192.168.0.1 or 192.168.1.1) and make sure the DHCP server is enabled.
📊 What kind of router do you have?
TP-Link
ASUS
Xiaomi
D-Link
Zyxel
Another

2. Wi-Fi Adapter Driver Failure: How to Diagnose and Fix

The network card driver is the "translator" between Windows and the hardware. If it's corrupted, outdated, or conflicting with the system, Wi-Fi may connect to the network but not the internet. This is especially true for laptops with adapters. Intel AX200/AX210, Qualcomm Atheros or Realtek RTL88xx.

Signs of driver problems:

  • 🔍 In Device Manager There is a yellow triangle next to the adapter.
  • 🔄 Wi-Fi periodically disconnects and reconnects.
  • 📉 Connection speed is limited (for example, it shows 1 Mbps instead of 300 Mbps).

How to check the driver:

  1. Click Win + X → select device Manager.
  2. Expand the branch Network adapters.
  3. Find your Wi-Fi adapter (e.g. Intel(R) Wi-Fi 6 AX200).
  4. Right click → Properties → tab Driver.

Solutions:

  • 🔄 Update your driver: Click "Update driver" → "Search automatically." If Windows says the driver is up-to-date, download it manually from the laptop or adapter manufacturer's website.
  • 🗑️ Uninstall and reinstall the driver:
    1. IN Device Manager remove the adapter (right click → Remove device).
    2. Restart your PC - Windows will reinstall the driver.
  • ⚙️ Driver rollback: If the problem appeared after an update, roll back to the previous version (the “Roll back” button in the driver properties).
  • Make sure the adapter is enabled in Device Manager|

    Check for a yellow triangle with an exclamation mark|

    Update driver via Windows Update|

    Download the driver from the manufacturer's official website|

    Restart your PC after installing the driver-->

    ⚠️ Attention: If after uninstalling the driver the Wi-Fi adapter has disappeared from Device Manager and does not appear after reboot, check if it is disabled in BIOS/UEFI (chapter Advanced → Onboard Devices).

    3. IP Address Conflicts: How to Find and Fix Them

    If two devices on the network receive the same IP address, a conflict occurs, and Windows blocks the internet connection. This can happen if:

    • 📱 Someone manually assigned a static IP that is already taken.
    • 🔄 The router "forgot" to release the IP after the device was turned off (for example, after a sudden shutdown).
    • 🖥️ The PC is configured with a static IP address that is not in the router's DHCP range.
    • How to check for a conflict:

      1. Open Command line and enter:
        arp -a
      2. Check if there are any duplicates IP addresses with different MAC addresses.

    Solutions:

    • 🔄 Restart your router: This will reset the DHCP table and release the occupied IPs.
    • 📝 Configure static IP correctly:
      1. Go to Control Panel → Network and Sharing Center → Change adapter settings.
      2. Right-click on Wi-Fi → PropertiesInternet Protocol version 4 (TCP/IPv4).
      3. If the “Use the following IP address” box is checked, make sure that it is outside the router’s DHCP range (for example, if the router is distributing 192.168.1.100–192.168.1.200, appoint 192.168.1.50).
  • 🔍 Eliminate the duplicate device: If the conflict is caused by another PC/smartphone, change its IP or reboot.
  • Symptom Probable cause Solution
    Wi-Fi connects, but no internet. ipconfig address 169.254.x.x DHCP did not assign an IP address. Restart the DHCP client (ipconfig /releaseipconfig /renew)
    The connection is broken after 1-2 minutes IP conflict or driver failure Check arp -a, update the driver
    The Internet only works after rebooting the router. The DHCP address pool has been exhausted. Increase the IP range in the router settings
    Wi-Fi connects, but pages won't open. Incorrect DNS servers Register Google DNS (8.8.8.8, 8.8.4.4)

    4. DNS issues: why websites don't open when connected

    If the connection status says “No Internet access”, but ping 8.8.8.8 in the command line it goes successfully, and ping ya.ru - No, it's our fault. DNS serversIt's like the internet's phone book: if it's unavailable, the browser doesn't know which IP corresponds to which domain. vk.com or google.com.

    Reasons for DNS failure:

    • 🌍 The provider's DNS server is not responding. (often happens with small local internet providers).
    • 🔒 VPN or antivirus redirects DNS to their servers, which are unavailable.
    • 📜 The DNS cache in Windows is corrupted. (for example, after an incorrect shutdown of the PC).
    • How to fix:

      1. Ping your provider's DNS server:
        ping 192.168.1.1

        (replace with your router's IP address). If there's no response, the problem is with your router or ISP.

      2. Change DNS to public:
        1. Go to Wi-Fi Properties → Internet Protocol Version 4 (TCP/IPv4).
        2. Select "Use the following DNS server addresses".
        3. Enter: 8.8.8.8 And 8.8.4.4 (Google) or 1.1.1.1 (Cloudflare).
      3. Clear your DNS cache:
        ipconfig /flushdns

      5. Power Settings: Why Wi-Fi Disables in Sleep Mode

      Windows 10 and 11 aggressively optimize power consumption, sometimes disabling network adapters to conserve battery life. If you notice that Wi-Fi drops after idle time or when running on battery power, your power settings may be to blame.

      How to check:

      1. Open Control Panel → Power Options.
      2. Click Change plan settings → Change advanced power settings.
      3. Find the section Wireless Network Adapter Settings → Power Saving Mode.

      Solutions:

      • Disable power saving for Wi-Fi:
        1. In Advanced Power Settings, set both plugged in and battery power to "Maximum performance".
    • 🔌 Disable Fast Startup:
      1. Go to Control Panel → Power Options → Choose what the power buttons do.
      2. Click Change settings that are currently unavailable.
      3. Uncheck "Turn on fast startup".
    ⚠️ Attention: On some laptops (eg. Lenovo ThinkPad or Dell XPS) the manufacturer installs its own power management utilities (for example, Lenovo Vantage). They can override Windows settings. Open these programs and disable Wi-Fi optimization.

    6. Router-side issues: what to check first

    If everything is configured correctly on your computer, but there's still no internet, the router is to blame. Here are the key diagnostic steps:

    Router Checklist:

    Check the indicators (are the WAN and Wi-Fi lights on) |

    Reboot the router (unplug for 30 seconds)|

    Make sure the ISP cable is firmly inserted into the WAN port|

    Log into the router's web interface and check your internet connection status.

    Update your router firmware (if a new version is available) -->

    Common router problems:

    • 🔌 No connection with the provider: Check if the indicator light is on WAN/InternetIf not, there is a problem with the line (call your provider).
    • 📡 Wi-Fi is disabled in the settings: go to the router's web interface (usually 192.168.0.1 or 192.168.1.1) and make sure the wireless network is turned on.
    • 🔄 Channel congestionIf you have many devices connected to your router, it may be choking. Try disconnecting some of your devices.
    • 🛠️ Outdated firmware: update the router software via the web interface (section Administration → Firmware Upgrade).
    • How to check your connection with your provider:

      1. Connect the provider's cable directly to the PC (bypassing the router).
      2. If the internet works, the problem is with the router. If not, call your provider.
    What should I do if my router won't open the web interface?

    If when entering 192.168.0.1 or 192.168.1.1 The page does not open:

    1. Check that the PC is connected to the router via cable or Wi-Fi.

    2. Reset the router to factory settings (button Reset on the back panel, hold for 10-15 seconds).

    3. Try a different browser (for example, Firefox or Edge).

    4. Make sure that your PC's IP is in the router's subnet (for example, if the router 192.168.1.1, the PC must have an address 192.168.1.x).

    7. The impact of antiviruses, VPNs, and firewalls on your connection

    Security programs often block network activity they deem suspicious. For example, Kaspersky Internet Security may block DHCP requests, and NordVPN — redirect all traffic through your servers that are temporarily unavailable.

    How to check the impact of software:

    • 🛡️ Disable your antivirus Wait for 5-10 minutes and check the connection. If Wi-Fi works, add the network to the exceptions list.
    • 🌐 Disable VPN: some services (for example, ProtonVPN or Windscribe) change traffic routes, which leads to a lack of internet.
    • 🔥 Check Windows Firewall:
      1. Open Control Panel → Windows Firewall.
      2. Click "Turn firewall on or off" and temporarily disable it for private networks.

    Common culprits:

    Program Problem Solution
    Kaspersky, Avast, ESET NOD32 Blocks DHCP or DNS Add the network to the trusted zone or disable the firewall
    NordVPN, ExpressVPN Redirects traffic through unavailable servers Disable your VPN or change your server location.
    Windows Firewall Blocks outgoing connections Temporarily disable or add an exception for your browser

    8. Hardware failures: when the hardware is to blame

    If you have tried all software methods but Wi-Fi still does not work, it is possible hardware failureThis is relevant for:

    • 💻 laptops, which have been dropped or subjected to impact (damage to Wi-Fi antennas).
    • 🖥️ PCs with PCI-e Wi-Fi adapters (For example, TP-Link Archer T6E), which could fail.
    • 🔌 Routers, overheated or damaged by a power surge.
    • How to diagnose:

      1. Check Wi-Fi on another device: If none of your gadgets connect to the router, the problem is with it.
      2. Connect your PC via cable: if the Internet works, the Wi-Fi adapter is to blame.
      3. Look in device Manager: If the adapter is marked as "Unidentified device" or disappears from the list, it is faulty.

    Solutions:

    • 🔧 Replace the Wi-Fi adapter: For a PC, you can buy an external USB adapter (for example, TP-Link TL-WN823N).
    • 📡 Check your router's antennas: If one of them is damaged, the signal will be weak or absent.
    • 🔌 Use a signal repeater (For example, Xiaomi Wi-Fi Repeater), if the problem is a weak signal.
    • ⚠️ AttentionIf your router makes unusual sounds (squeaking, crackling) or becomes very hot, unplug it immediately. These are signs of a short circuit or failing capacitors.

      FAQ: Frequently asked questions about Wi-Fi without internet

      Why does Wi-Fi connect, but pages don't open, while Skype/Telegram work?

      This is a sign of a problem with DNSApps like Skype or Telegram use direct IP addresses to connect to servers, while browsers rely on DNS. Solution: Change your DNS servers to 8.8.8.8 And 8.8.4.4 (instructions in section 4).

      Wi-Fi stopped working after a Windows update. What should I do?

      Windows updates often reset drivers or network settings. Try:

      1. Roll back the Wi-Fi adapter driver (section 2).
      2. Reset network settings:
        netsh winsock reset
        

        netsh int ip reset

      3. Remove last update: Settings → Update & Security → View update history → Uninstall updates.
      Wi-Fi works on my phone, but not on my PC. What's wrong?

      If other devices are connected correctly, the problem is localized to your computer. Check:

      • Wi-Fi adapter driver (section 2).
      • IP and DNS settings (sections 3 and 4).
      • Antivirus or firewall (section 7).

      Also try connecting your PC to a different Wi-Fi network (for example, using your phone's hotspot mode). If the problem persists, the adapter or Windows is at fault.

      My router is giving me a "No Internet" error. What does this mean?

      This means the router can't connect to the provider's network. Reasons:

      • 🔌 Problems with the provider's line (call support).
      • 📡 Incorrect connection settings (for example, incorrect VLAN ID or connection type PPPoE/Dynamic IP).
      • 🔄 Router firmware failure (try resetting it to factory settings).

      Go to the router's web interface and check the Internet connection status (section Status or WAN).

      How to reset Windows network settings to factory defaults?

      This is a radical solution that works in 90% of cases. Instructions:

      1. Open Settings → Network & Internet → Status → Network reset.
      2. Click "Reset Now" and confirm.
      3. After restarting your PC, all network adapters and settings will return to the state they were in after installing Windows.

      ⚠️ After the reset, you will have to re-enter your Wi-Fi network passwords!