You turned on Wi-Fi on your laptop, but it stubbornly refuses to connect to the network - is this a familiar situation? This problem may occur on both new devices Lenovo ThinkPad or MacBook Pro, and on older models Acer Aspire or HP Pavilion. The reasons range from trivial (turned-off adapter) to complex (damaged drivers or hardware failures). In this article we will look at all possible scenarioswhy the laptop doesn’t pick up Wi-Fi, and we’ll give specific instructions for every operating system.
It is important to understand: if the laptop doesn't see the network at all (the list of available connections is empty) or sees but doesn't connect (hangs on "Obtaining an IP address"), the solution algorithms will be different. We have structured the material so that you can quickly find your case - from simple checks to in-depth diagnostics. Let's start with the most obvious and gradually move on to rare but critical problems.
1. Checking basic settings: router and laptop
Before digging into the operating system settings, make sure that the problem is not on the hardware side. Start with the router - it is often the source of problems. Reboot your router (unplug from the socket for 30 seconds) and check the indicators: are the lights on? Power, Wi-Fi And Internet? If the wireless network indicator blinks abnormally (for example, red), there is a problem.
Next check:
- 🔌 Router power: is it connected to a 220V network? Is there damage to the power supply?
- 📡 Wi-Fi operating mode: some routers (for example, TP-Link Archer C6) have a wireless network on/off button on the body.
- 🔒 MAC Address Restriction: A filter may be enabled in your router settings that blocks your laptop. Check the section in the web interface
Wireless → Wireless MAC Filter. - 🔄 Wi-Fi channel and standard: if the router is operating in mode
802.11n/ac(5 GHz), and the laptop only supports802.11b/g(2.4 GHz), connection will be impossible.
On your laptop, make sure that:
- ✈️ Airplane mode is off (on Windows 10/11 check in the notification center or tap
Win + A). - 🔗 Wi-Fi adapter is included: On some models (eg Dell Latitude) there is a hardware switch on the case or a key combination
Fn + F2. - 🔋 Power saving does not turn off the adapter: in
Device Managercheck the properties of the network card (more on this in the next section).
- Constantly
- Once a week
- Once a month
- Very rare
- Never
2. Diagnostics of the network adapter in Windows
If basic checks don't help, it's time to look into the operating system settings. On Windows 7/10/11 The most common problems are related to drivers or power saving. Open Device Manager (Win + X → Device Manager) and find the section Network adapters. Devices like this should appear here Intel Wi-Fi 6 AX200 or Qualcomm Atheros QCA61x4.
Pay attention to the icons next to the adapter name:
- ⚠️ Yellow triangle — the driver is not working correctly or the device is disabled.
- ❌ Red cross — the adapter is disabled manually or by the system.
- 🔄 Arrows in a circle — Windows tries to install the driver, but an error occurs.
If the adapter is disabled, right-click on it and select Engage. If the problem is in the driver:
- Right click on the adapter →
Update driver→Automatic search. - If that doesn't help, download the driver from the laptop manufacturer's website (for example, for ASUS ZenBook - on support.asus.com).
- Remove the current driver (
Remove device), restart your laptop and install the downloaded one.
Another common reason is energy saving. In the adapter properties, go to the tab Power management And uncheck from point Allow this device to turn off to save power. This is true for laptops HP, Lenovo And Acer, where aggressive power plans are enabled by default.
☑️Checking the adapter in Windows
3. Problems with IP address and DNS: how to fix
If the laptop sees the network, but an error appears when connecting "Failed to obtain an IP address" or "Limited", the problem lies in the TCP/IP settings. This may occur due to a failure in the router's DHCP server or an IP address conflict. To fix this:
- Open
Command lineon behalf of the administrator (Win + X → Command Prompt (Administrator)). - Enter the commands one by one:
ipconfig /releaseipconfig /renew
ipconfig /flushdns - Reboot your laptop and router.
If this doesn't help, try assigning a static IP address manually:
- Go to
Control Panel → Network Connections(orSettings → Network and Internet → Wi-Fi → Configure adapter settings). - Right click on your Wi-Fi connection →
Properties→IP version 4 (TCP/IPv4)→Properties. - Select
Use the following IP addressand enter:- IP address:
192.168.1.100(last digit can be anything from 2 to 254) - Subnet mask:
255.255.255.0 - Main gateway:
192.168.1.1(or the address of your router indicated on the sticker) - DNS servers:
8.8.8.8And8.8.4.4(Google DNS)
- IP address:
Attention! If after assigning a static IP the Internet does not work, return the settings to Obtain an IP address automatically. There may be a problem with the router - try connecting another device (smartphone, tablet) to the same network. If there is a mistake there too, reset the router to factory settings (using the Reset button for 10 seconds).
What to do if resetting the router did not help?
If the problem persists after resetting, check:
- Router firmware version (update via the web interface if a new one is available).
- Security settings: disable WPA3 (try WPA2-PSK) or temporarily remove the password for the test.
- Channel operating mode: manually set channel 6 or 11 for 2.4 GHz (in routers Keenetic or MikroTik this is done in the section Wi-Fi → Advanced).
4. Specific problems on macOS
On laptops MacBook Air/Pro Wi-Fi problems are often related to system crashes or conflicts after updates. If your Mac won't connect to the network, start with these steps:
- Reset SMC (system management controller):
- Turn off your Mac.
- Press and hold
Shift + Control + Option(left side of keyboard) + power button for 10 seconds. - Release the keys and turn on your Mac.
- Removing network settings:
- Open
System Settings → Network. - Select
Wi-Fi → Advanced. - Delete all saved networks by clicking
–at the bottom of the list. - Click
OKand restart your Mac.
- Open
- Creating a new network configuration:
- B
System Settings → NetworkClick on the gear at the bottom of the list of interfaces. - Select
Manage virtual interfaces → + → Wi-Fi. - Name the new configuration (for example,
Wi-Fi 2) and connect to the network through it.
- B
If after updating macOS (for example, to Sonoma or Ventura) Wi-Fi stopped working, try roll back the driver:
- Open
Terminal(Programs → Utilities → Terminal). - Enter the command:
sudo rm -rf /Library/Preferences/SystemConfiguration/NetworkInterfaces.plistsudo rm -rf /Library/Preferences/SystemConfiguration/preferences.plist - Restart your Mac.
Attention! On MacBook with chips Apple M1/M2 Wi-Fi problems may be due to hardware limitations. For example, some models do not support 5 GHz networks in 80 MHz — you will have to manually set the channel width in the router 40 MHz or 20 MHz.
5. Problems on Linux: drivers and kernel modules
On distributions Ubuntu, Debian or Fedora Wi-Fi problems often come down to missing proprietary drivers or kernel module conflicts. If your laptop does not see the network, run in the terminal:
lspci -knn | grep -iA3 net
This command will show the network card model. For example, if you see a line with Broadcom BCM43142, which means you need a driver bcmwl-kernel-source. Install it:
sudo apt update
sudo apt install bcmwl-kernel-source
For cards Realtek RTL8821CE or RTL8188EE You may need to manually compile the driver:
- Download the driver from GitHub (for example, rtl8821ce).
- Install dependencies:
sudo apt install build-essential dkms linux-headers-$(uname -r) - Follow the instructions from
READMErepository.
If Wi-Fi connects but keeps dropping out, try disabling power saving for the module:
sudo iwconfig wlo1 power off
(replace wlo1 to the name of your interface, which can be found with the command ip a).
For a temporary solution (for example, on Kali Linux) you can use a USB adapter with a chip Ralink RT5370 — it is supported out of the box by most distributions.
6. Hardware faults: how to diagnose
If software methods do not help, the problem may be gland. Here are the signs of hardware problems:
- 🔌 Wi-Fi adapter is not detected in
Device Manager(or defined as "Unknown device"). - 🔥 Laptop overheats - the network card may turn off due to thermal throttling (relevant for MSI GS66 or Alienware m15).
- 🛠️ Damage to antennas — if the laptop was dropped or disassembled, the antenna cables from the Wi-Fi module could come off.
- 🔋 Motherboard failure - if the adapter is built-in (for example, Intel AX201 on the board), replacing it may require soldering.
For diagnostics:
- Test the adapter on another device: remove the Wi-Fi module (in most laptops it is removable and secured with one screw) and connect it to another PC via an adapter M.2 NGFF to USB.
- Use LiveCD: boot from flash drive Ubuntu Live or Hiren’s BootCD. If Wi-Fi works, the problem is in the OS, if not, it’s in the hardware.
- Ring the antennas: Using a multimeter, check the integrity of the cables from the adapter to the antennas (they usually run along the screen hinges).
Attention! If the laptop is under warranty, do not disassemble it yourself - this will void the warranty. At the service center, diagnostics are carried out using specialized equipment (for example, Fluke Networks AirCheck).
| Symptom | Probable Cause | Solution |
|---|---|---|
| The laptop does not see any network | The adapter is disabled or there is no driver | Check Device Manager, update driver |
| Sees networks, but does not connect | Incorrect password or router settings | Reset your router, check your password |
| Connects, but no internet | Problems with IP/DNS or ISP | Assign a static IP, change DNS to 8.8.8.8 |
| Wi-Fi works, but very slow | Noise on the channel or weak signal | Change the channel in the router, use 5 GHz |
| Adapter disappears after reboot | Driver or BIOS conflict | Update BIOS, reinstall driver |
7. Alternative connection methods
If you cannot solve the problem with Wi-Fi, use alternative methods of connecting to the Internet:
- 📱 USB tethering from a smartphone: connect your phone via USB and enable modem mode in the settings (on Android or iPhone).
- 🖥️ Ethernet adapter: use adapter USB-to-Ethernet (For example, TP-Link UE300) for wired connection.
- 📡 4G/5G modem: USB modems like Huawei E3372 or ZTE MF833V will provide Internet without dependence on Wi-Fi.
- 🔄 Powerline adapters: if the router is far away, use adapters TP-Link AV600transmitting the Internet via electrical wiring.
For a temporary solution on Windows, you can create virtual Wi-Fi adapter via command line:
netsh wlan set hostednetwork mode=allow ssid=MyVirtualWiFi key=12345678
netsh wlan start hostednetwork
After that, connect to the created network MyVirtualWiFi and distribute the Internet through Settings → Network → Mobile hotspot.
If you urgently need the Internet and Wi-Fi is not working, try connecting to a hidden network manually. On Windows: Settings → Network → Wi-Fi → Hidden network, enter your name (SSID) and password. On macOS: From the list of networks, select Others... and enter your details.
FAQ: Frequently asked questions about problems with Wi-Fi on a laptop
❓ Why does the laptop see Wi-Fi, but does not connect, it says “Failed to connect”?
This is a typical authentication error. Check:
- The password is correct (enter it manually, not via the clipboard).
- Router security mode: if enabled
WPA3, tryWPA2-PSK. - Restriction on MAC addresses in the router settings.
Also try “forgetting” the network in the laptop settings and connecting again.
❓ The laptop connects to Wi-Fi, but the Internet does not work. What to do?
Most likely the problem is with IP or DNS. Run on the command line:
ping 8.8.8.8
ping ya.ru
If the first ping passes, but the second one does not, change the DNS to 8.8.8.8 And 8.8.4.4 in the connection properties. If both ping do not work, check your router settings or contact your provider.
❓ After updating Windows, Wi-Fi stopped working. How to return?
Updates often break drivers. Try:
- Roll back driver: in
Device Managerright click on the adapter →Properties → Driver → Roll Back. - Install the driver from the laptop manufacturer's website (not through Windows Update!).
- If that doesn't help, roll back the system to a restore point (
Control Panel → Recovery).
❓ On a MacBook, Wi-Fi connects, but keeps dropping out. What's the matter?
On macOS this is often due to power saving settings or channel conflicts. Try:
- Disable feature
Automatic connection to the networkinSystem Settings → Network → Wi-Fi → Advanced. - Set a fixed channel in the router (for example,
6for 2.4 GHz) insteadAuto. - Reset network settings via
Terminal:sudo ifconfig en0 downsudo ifconfig en0 up(replace
en0to your interface, you can find it with the commandnetworksetup -listallhardwareports).
❓ Can an antivirus block a Wi-Fi connection?
Yes, some antiviruses (for example, Kaspersky, Avast or ESET NOD32) have a built-in firewall that can block network connections. Check:
- Antivirus firewall settings (section
NetworkorProtection). - Temporarily disable the antivirus (don't forget to turn it back on!).
- Exceptions for network adapters in antivirus settings.
Also check the standard Windows Firewall (Control Panel → Firewall) - sometimes it blocks new connections.