Are you trying to connect your laptop to Wi-Fi, but instead of the usual Internet access you see the message “No network access”, “Restricted” or you don’t find your network in the list at all? The problem is familiar to millions of users - according to statistics NetSpot, every fifth person contacts support due to the inability to connect to a wireless network. The reasons may lie in the settings of the laptop itself, or in the router, drivers, or even physical interference.

In this article we will look at all possible scenarios, why the laptop does not connect to Wi-Fi - from a banal disconnected adapter to complex IP address conflicts. You will receive step by step instructions for Windows 10/11, macOS And Linux, and also learn how to diagnose the problem yourself, without resorting to the help of specialists. Let's start with the simplest and gradually move on to advanced methods.

1. Checking basic settings: 5 steps before deep diagnostics

Before digging into the system or router settings, make sure that the problem is not hidden on the surface. Experience shows: in 38% of cases Wi-Fi problems on a laptop can be solved with simple steps that users overlook.

Here's what you need to do first:

  • 🔄 Reboot your router and laptop. Unplug the router for 30 seconds, then plug it back in. Do the same with your laptop. This will clear temporary errors in the operation of network protocols.
  • 📶 Check if Wi-Fi is turned on on your laptop. On the keyboard of many models (Lenovo, HP, Asus) there is a button or combination Fn + F2/F5/F12 (depending on the manufacturer), which disables the wireless module. Also look on the right side of the taskbar (Windows) or in the menu bar (macOS) - the Wi-Fi icon should not be crossed out.
  • 🔌 Make sure the problem is not with the router. Try connecting to the same network from another device (smartphone, tablet). If the Internet works, the problem is in the laptop. If not, the router or provider is to blame.
  • 🔒 Check the password is correct. Sometimes users enter the wrong password several times, after which the system blocks the connection. Remove the network from your saved ones and try connecting again.
  • 🌐 Test different networks. If the laptop does not connect to one network, but sees neighboring ones, the problem is local (for example, MAC filtering on the router). If it does not see any networks, the Wi-Fi module or driver is faulty.
📊 How often do you have problems with Wi-Fi on your laptop?
  • Once a week
  • Once a month
  • Rare, but accurate
  • Never
  • I find it difficult to answer

If after these steps the problem remains, we move on to more serious diagnostic methods. But remember: do not rush to reset the router settings or reinstall the system. In 90% of cases, less radical measures help.

2. Network adapter diagnostics: why the laptop does not see Wi-Fi

If the laptop does not detect wireless networks at all (the list is empty or only “Other networks” is displayed), the network adapter is to blame. This could be either a software failure (driver) or a hardware failure. Let's figure out how to check this.

Checking the adapter status in Windows

B Windows 10/11 open Device Manager (click Win + X → select the appropriate item). In the Network Adapters section, find the device with the words Wireless, Wi-Fi or 802.11 (For example, Intel Wi-Fi 6 AX200 or Qualcomm Atheros QCA61x4).

  • ⚠️ If there is a yellow exclamation mark next to the adapter - the driver does not work correctly or is missing. We'll talk about this in the next section.
  • 🔴 If the adapter is not in the list at all - it is disabled in the BIOS/UEFI or is physically damaged. Check to see if the antenna inside the case is disconnected (this is important after disassembling the laptop).
  • 🟢 If the adapter appears without icons, but it doesn’t pick up the network - try turning it on via the context menu (right click → “Enable”).

☑️ Checking Wi-Fi adapter in Windows

Done: 0 / 5

Check on macOS

On MacBook open About this MacSystem reportNetworkWi-Fi. If the “Status” line indicates Disabled, turn on Wi-Fi through the control panel or check your energy saving settings.

For Linux (Ubuntu/Debian) run in terminal:

lspci | grep -i network

iwconfig

If the team iwconfig does not show wireless interfaces (wlan0, wlp3s0), the adapter is not recognized by the system.

⚠️ Attention: On some laptops Dell And HP The Wi-Fi module may turn off when the battery is low (a setting in the BIOS called Wireless Radio Control). Connect your laptop to the network and check again.

3. Update and reinstall Wi-Fi drivers

Outdated or damaged drivers are one of the most common reasons why a laptop won't connect to Wi-Fi. Manufacturers regularly release updates that correct compatibility errors with new standards (Wi-Fi 6, WPA3) and routers.

How to update driver on Windows

Method 1: Via Device Manager:

  1. Find your Wi-Fi adapter in the list (see previous section).
  2. Right click → Update driverAutomatic search.
  3. If the system finds an update, install it and restart the laptop.

Method 2: Manually from the manufacturer's website:

  1. Find out the exact adapter model (in Device Manager or through the command wmic nic get name in CMD).
  2. Download the driver from the official website:
  • Install the driver and reboot the system.
  • 💡

    If, after updating the driver, Wi-Fi stops working completely, roll it back: in Device Manager, right-click on the adapter → Properties → Driver → Roll Back.

    For macOS and Linux

    On MacBook drivers are updated along with the system via Software update. If Wi-Fi stops working after upgrading macOS, try resetting NVRAM:

    1. Turn off your Mac.
    2. Turn it on by immediately pressing Option + Command + P + R for 20 seconds.
    3. Release the keys and wait for it to load.

    B Linux (Ubuntu/Debian) update the driver via terminal:

    sudo apt update
    

    sudo apt install --reinstall firmware-*-nonfree

    ⚠️ Attention: On laptops with hybrid graphics (NVIDIA Optimus) sometimes Wi-Fi and video card drivers conflict. If Wi-Fi disappears after updating the video driver, try rolling it back or installing the version from the manufacturer's website.

    4. Setting up a router: what prevents the laptop from connecting

    If the laptop sees the network, but does not connect to it (it says “Unable to connect” or “Check password”), the problem may be on the router’s side. Let's look at the key settings that are worth checking.

    Security settings and operating modes

    Go to the router's web interface (usually at 192.168.0.1 or 192.168.1.1, login/password - admin/admin or indicated on the sticker). Check:

    Parameter Recommended value Why is it important
    Wireless network mode (Wireless Mode) 802.11n/ac/ax (mixed) If only 802.11ac, old adapters will not connect.
    Channel width (Channel Width) Auto or 20/40 MHz Too wide a bandwidth (80 MHz) may cause interference.
    Security type (Security Mode) WPA2-PSK or WPA3-PSK WEP unsafe and WPA3 not supported by older devices.
    MAC filtering (MAC Filter) Disabled If it is enabled, but the laptop's MAC is not in the white list, the connection is blocked.

    IP Address and DHCP Conflicts

    If the laptop connects to the network, but the Internet does not work (the “Restricted” icon), the problem may be IP conflict or failure DHCP. Try:

    • 🔄 Restart DHCP:
      • B Windows: ipconfig /releaseipconfig /renew (in CMD on behalf of the administrator).
      • B macOS/Linux: sudo dhclient -rsudo dhclient.
    • 📋 Set IP manually:
      • In the network settings, specify a static IP (for example, 192.168.0.100), mask 255.255.255.0, gateway 192.168.0.1 and DNS 8.8.8.8 (Google).
    • 🔍 Check your router settings:
      • Make sure DHCP enabled (section LAN or DHCP).
      • Try changing the range of distributed IPs (for example, from 192.168.0.100-200 on 192.168.0.50-150).
    How to find a laptop's MAC address to whitelist a router

    On Windows: Open CMD → type ipconfig /all → find the "Physical Address" line for the wireless adapter.

    On macOS: System Settings → Network → Advanced → Ethernet → Ethernet ID.

    On Linux: ifconfig | grep ether or ip a.

    5. Problems with energy saving and sleep patterns

    Modern laptops aggressively save battery power, sometimes turning off the Wi-Fi module in the background. This may manifest itself as periodic connection dropouts or complete inability to connect after sleep/hibernation.

    Disable power saving for Wi-Fi in Windows

    Do the following:

    1. Open Device Manager → find the Wi-Fi adapter.
    2. Right click → Properties → tab Power management.
    3. Uncheck Allow this device to turn off to save power.
    4. Restart your laptop.

    Setting up the power plan

    B Windows 10/11:

    1. Open Settings → System → Power and Sleep → Advanced power settings.
    2. Select active scheme → Change advanced power settings.
    3. Find a section Wireless adapter settings → install Maximum performance for both states (battery and mains).

    On macOS disable the option Slightly dim the display when running on battery power in System Settings → Battery - this indirectly affects the stability of Wi-Fi.

    💡

    If your laptop loses connection after closing the lid, check your sleep settings: on Windows, disable hibernation with the command powercfg /h off, on macOS reset SMC (for Intel-Mac).

    6. Interference and hardware failures

    If you've tried all software methods and your laptop still won't connect to Wi-Fi, it's worth considering physical reasons:

    • 📡 Interference from other devices. Microwaves, cordless phones (DECT), Bluetooth speakers and even neighboring Wi-Fi networks on the same channel can jam the signal. Try changing the channel in the router settings (optimally - 1, 6 or 11 for 2.4 GHz).
    • 🔌 Antenna problems. In laptops, Wi-Fi antennas are connected to the module with thin cables that can become detached if dropped or disassembled. If you have recently cleaned your laptop, check the antenna connections (they are marked as MAIN And AUX).
    • 🔥 Adapter overheating. During prolonged operation, the Wi-Fi module may overheat, especially in compact laptops (Ultrabook). Try cooling the laptop (for example, by placing a book under it for better ventilation) and check the connection.
    • Module failure. If the adapter is not detected by the system and all previous methods did not help, it may be burned out. In this case, only replacement will help (cost - from 1,500 to 5,000 rubles, depending on the model).

    To diagnose interference, use apps like NetSpot (Windows/macOS) or Wifi Analyzer (Android). They will show how busy the channels are and help you choose the freest one.

    7. Alternative ways to connect to the Internet

    If you couldn’t solve the problem with Wi-Fi, but you need the Internet urgently, use alternative methods:

    • 📱 USB tethering from a smartphone. Connect your phone via USB, enable modem mode in the settings (Settings → Wireless & networks → Tethering mode on Android or Settings → Modem mode on iPhone).
    • 🔌 Ethernet via adapter. Buy a USB-Ethernet adapter (costs from 500 rubles) and connect the laptop to the router with a cable. This is a temporary solution, but it is guaranteed to work.
    • 🔄 Powerline adapters. If the router is far away, use adapters that transmit the Internet via electrical wiring (for example, TP-Link AV600).
    • 📶 4G/5G modem. USB modems (Huawei E3372, ZTE MF833) connect like a flash drive and provide Internet access via a mobile network.

    If your laptop won't connect to Wi-Fi due to a hardware problem, these methods will help you stay connected while you search for a solution or prepare for repairs.

    FAQ: Frequently asked questions about problems with Wi-Fi on a laptop

    The laptop connects to Wi-Fi, but the Internet does not work (the “Restricted” icon). What to do?

    This is a typical problem with DHCP or DNS. Try:

    1. Execute in CMD (from admin): netsh winsock resetnetsh int ip reset → reboot.
    2. Register DNS manually: 8.8.8.8 (Google) or 1.1.1.1 (Cloudflare).
    3. Disable IPv6 in connection properties (if not used).

    If that doesn’t help, reset the router to factory settings (button Reset on the rear panel).

    The laptop does not see only my network, but the neighboring ones. What's the matter?

    Probable reasons:

    • Your router is operating in 802.11ac (5 GHz), and the laptop adapter only supports 802.11n (2.4 GHz). Change the mode to Mixed.
    • MAC filtering is enabled and your laptop is not whitelisted.
    • Network hidden (optional Hide SSID), and the laptop did not remember it earlier.

    Solution: Go to your router settings and check these settings.

    After updating Windows, the laptop stopped connecting to Wi-Fi. How can I get everything back?

    New drivers or a conflict with the update are to blame. Follow the steps:

    1. Roll back the Wi-Fi driver via Device Manager (right click → Properties → Driver → Roll Back).
    2. If a rollback is not available, remove the driver and install the version from the laptop manufacturer’s website (not Microsoft!).
    3. Disable automatic driver updates: Settings → Update & Security → Advanced Options → Driver Updates → Disable.
    4. If all else fails, roll back the system to a restore point (before the update).
    The laptop connects to Wi-Fi, but the speed is very low (1-2 Mbps). How to speed it up?

    Reasons for slow Wi-Fi:

    • The router is operating on an overloaded channel (change the channel in the settings).
    • The laptop is far from the router or there is a wall between them (use a repeater Wi-Fi repeater).
    • Power saving mode for Wi-Fi is enabled (disable as described in section 5).
    • Obsolete standard 802.11g (max. 54 Mbps). Switch your router to 802.11n/ac.
    • Interference from other devices (see section 6).

    For a speed test use Speedtest and compare results on a laptop and a smartphone.

    Is it possible to connect a laptop to Wi-Fi without a password if it is saved on another device?

    Yes, there are several ways:

    1. Via QR code (Android 10+): On your phone, open Wi-Fi settings → select network → Share → scan the QR on your laptop (camera required).
    2. Via configuration file (Windows): Export a network profile from another PC with the command netsh wlan export profile name="NETWORK_NAME" folder="PATH", then import on laptop: netsh wlan add profile filename="PATH\FILE.xml".
    3. Via router: go to the router’s web interface and look at the password in the section Wireless Security.

    ⚠️ Attention: password transfer through third-party applications (for example, WiFi Password Share) is not secure - they can store data on their servers.