Are you trying to connect to a wireless network, but your laptop stubbornly ignores your attempts? Is the Wi-Fi icon crossed out with a red cross, are no networks visible, or is the connection constantly dropping? This problem is familiar to millions of users—and it can have dozens of different causes, from a simple disabled adapter to complex conflicts in the router settings.
In this article we will look at all possible reasons, which can cause a laptop to fail to connect to Wi-Fi—from hardware faults to software glitches. You'll learn how to diagnose the problem. Windows 10/11, macOS And Linux, which router settings to check first, and when to contact a service center. And also— A list of commands for quick diagnostics via the command line that will save you hours of searching for solutions.
Whether you're experiencing problems after a system update, moving to a new apartment, or simply trying to turn on your laptop, our instructions will help you restore network access without the hassle of hiring a technician.
1. Checking basic settings: what to do first
Before digging deep into system settings or disassembling the router, make sure the problem isn't just a surface issue. In 30% of cases, Wi-Fi issues are caused by simple things that can be fixed in a few clicks.
Start with the most obvious:
- 🔄 Restart your laptop and routerTurn off both devices for 30 seconds, then turn on the router first, followed by the laptop after a minute. This will clear any temporary glitches in the network adapters.
- 📶 Check if Wi-Fi is enabled on your laptop.Most models have a physical button or key combination (e.g.
Fn + F2on ASUS,Fn + F5on Lenovo). The wireless network icon on the key will tell you which one you need. - 🔌 Make sure your router is distributing Wi-Fi.The light with the antenna icon on the router body should be lit. If it's blinking orange or not lit at all, the problem is with the router itself.
- 🔒 Check if your password is correctEven if you are sure that you are entering it correctly, try entering it again - it may be enabled.
Caps Lockor the keyboard language is lost.
If Wi-Fi still doesn't work after these steps, proceed to a more in-depth diagnosis. But first, answer one question:
Important! If a laptop sees network, but does not connect to specific (for example, your home network), but it connects to neighboring or public networks, the problem is most likely in your router settings. If the laptop does not see any network, the problem is in the adapter or drivers.
2. Diagnosing the network adapter: is it even enabled?
A common cause of no Wi-Fi is a disabled network adapter. This can occur after a system update, a power outage, or accidental key presses. You can check its status in Device Manager or System Preferences.
For Windows 10/11:
- Click
Win + Xand select device Manager. - Expand the tab Network adapters.
- Find the device with the words Wireless, Wi-Fi or 802.11 (For example, Intel Wireless-AC 9560 or Qualcomm Atheros QCA61x4).
- If there's a down arrow next to the name, the adapter is disabled. Right-click and select Activate the device.
For macOS:
- Open System Preferences → Network.
- Select Wi-Fi in the left menu.
- If the status Disabled, click Connect.
For Linux (Ubuntu/Debian):
sudo lshw -C network | grep -A 10 "Wireless"
sudo ip link set wlan0 up # where wlan0 is the name of your adapter
If the adapter is enabled but networks are still not showing up, try update driver (More on this in the next section.) If the adapter isn't listed at all, it may be physically damaged.
3. Driver issues: update or roll back
Outdated, corrupted, or incompatible drivers are one of the main causes of Wi-Fi problems. This is especially true after major Windows updates (for example, upgrading from Windows 10 on 11) or after a clean installation of the system.
How to check and update a driver on Windows:
- Open device Manager (
Win + X → Device Manager). - Find your Wi-Fi adapter in the section Network adapters.
- Right click → Update driver → Automatic search.
- If Windows reports that the driver is up to date, but the problem persists, try remove device (right click → Remove device), then restart your laptop. The system will reinstall the driver.
If automatic update does not help:
- 🔍 Download the driver from official website of the laptop manufacturer (not from the Microsoft website!) To do this, enter the laptop model (for example, Lenovo IdeaPad 5) in the search engine and add the word support.
- 🔄 If the problem appeared after updating the driver - roll it backIn the Device Manager, select Properties → Driver → Roll Back Driver.
- 🛠️ For older laptops (manufactured before 2018) you may need manual installation drivers via
Install from the specified locationin the device manager.
On macOS Drivers are updated along with the system through Software updateOn . Linux Sometimes you need to install proprietary drivers (for example, for adapters) Broadcom):
sudo apt install firmware-b43-installer # for Broadcom
sudo reboot
How can I find out the model of my Wi-Fi adapter if it is not detected by the system?
Open Command Prompt (Win + R → cmd) and enter:
wmic nic get name, manufacturer
If the adapter does not appear, try:
systeminfo | findstr /B /C:"OS Name" /C:"System Manufacturer" /C:"System Model"
This will show you the laptop model that you can use to find the driver.
4. Router settings conflicts: what to check first
If your laptop sees other networks but can't connect to your home network, the problem is most likely with your router settings. Here are the key settings to check:
| Parameter | What could be wrong? | How to fix |
|---|---|---|
| Wi-Fi operating mode | The router is operating in the mode 802.11n or 802.11ac, and the laptop adapter only supports 802.11b/g (relevant for older laptops). |
In the router settings (192.168.0.1 or 192.168.1.1) select mixed mode: 802.11b/g/n or 802.11a/b/g/n/ac. |
| Channel width | Channel width too wide (40 MHz or 80 MHz) may cause interference. |
Install 20 MHz for the range 2.4 GHz (especially in apartment buildings). |
| Security type | Outdated WEP or new WPA3 may not be supported by the adapter. |
Use WPA2-PSK (AES) - this is the most compatible option. |
| Hidden network (SSID) | If the network is hidden, the laptop will not be able to connect to it without manually entering the name. | Temporarily make the network visible or enter the SSID manually in the connection settings. |
| MAC filtering | The router may have a list of allowed devices by MAC address. | Disable filtering or add the laptop's MAC address to the list. |
To access your router settings:
- Connect your laptop to the router via cable (if Wi-Fi is not working).
- Open your browser and type
192.168.0.1or192.168.1.1(the address may differ - look on the router sticker). - Enter your login and password (usually
admin/adminoradmin/password). - Go to the section Wi-Fi or Wireless network.
Attention! ⚠️ Some providers (eg. Rostelecom or Beeline) block access to router settings if it's rented. In this case, contact support and ask them to check your Wi-Fi settings.
5. IP Addressing Issues: DHCP vs. Static Settings
If your laptop connects to the network, but the internet doesn't work (there's an exclamation mark on the Wi-Fi icon), the problem may be IP conflict or a DHCP failure. This occurs when the router cannot automatically assign the correct IP address to the laptop.
How to check and fix:
For Windows:
- Open Command line (
Win + R → cmd). - Enter one by one:
ipconfig /releaseipconfig /renew
ipconfig /flushdns - Restart your laptop.
If that doesn't help, assign the IP manually:
- Open Control Panel → Network and Internet → Network and Sharing Center → Change adapter settings.
- Right click on Wireless network → Properties.
- Select Internet Protocol version 4 (TCP/IPv4) → Properties.
- Install:
- IP address:
192.168.1.X(where X is a number from 10 to 254, not occupied by other devices). - Subnet mask:
255.255.255.0. - Default gateway:
192.168.1.1(or192.168.0.1, see router settings). - DNS:
8.8.8.8And8.8.4.4(Google DNS).
- IP address:
For macOS/Linux:
- 🍎 On Mac: System Preferences → Network → Wi-Fi → Advanced → TCP/IP. Select Manually and enter the data as for Windows.
- 🐧 On Linux: Edit the file
/etc/network/interfacesor usenmtuiin the terminal.
Attention! ⚠️ If after manually setting up your IP address, the internet works, but other devices stop connecting to the network, it means you assigned an address that is already taken. Check the list of connected devices in the router settings (section DHCP or Local area network).
6. Interference and weak signal: how to strengthen the connection
If your laptop connects to Wi-Fi, but the connection constantly drops, the speed is low, or the network disappears when you move around the room, the problem is signal qualityThis is especially true for the range 2.4 GHz, which is overloaded in urban conditions.
How to improve the signal:
- 📡 Change Wi-Fi channel. In the router settings (
192.168.1.1) select the channel manually (for example,6or11For2.4 GHz). Use apps like Wi-Fi Analyzer (Android) or NetSpot (Windows/macOS) to find the freest channel. - 🔄 Switch to
5 GHzThis band is less crowded and faster, but has a smaller coverage area. It's suitable if the laptop is located near the router. - 📍 Change the location of the routerIt should be located in the center of the apartment, away from walls, metal objects and household appliances (microwaves, refrigerators).
- 🛡️ Upgrade your router antennasIf your router has detachable antennas, buy more powerful ones (for example, with a gain factor
5 dBior7 dBi). - 🔌 Use a signal repeater (repeater) or Mesh system, if the area of the apartment is large.
Checking signal strength in Windows:
- Open Command line (
Win + R → cmd). - Enter:
netsh wlan show interfaces - Find the line SignalIf the value is lower
50%— the signal is weak.
For macOS: hold down the key Option (Alt) and click on the Wi-Fi icon in the menu bar. The signal strength information will appear in the drop-down list (RSSI). Optimal value: from -50 dBm to -70 dBm.
Signal level above 50% (-70 dBm and above)
The router is in the center of the apartment.
The Wi-Fi channel is not overloaded (checked using Wi-Fi Analyzer)
The laptop and router are in the same room (for testing)
The router's antennas are directed vertically (for better horizontal coverage)-->
7. Viruses, firewalls and third-party programs
Sometimes Wi-Fi doesn't work because software conflict: Your antivirus is blocking the connection, Windows Firewall is disabling the network, or a virus has changed your network settings. Here's what to check:
Windows Firewall:
- Open Control Panel → Windows Firewall.
- Select Enabling and disabling the firewall.
- Please disable it temporarily for private And public networks.
- Try connecting to Wi-Fi. If it works, add an exception for your network.
Antiviruses and VPN:
- 🛡️ Temporarily disable your antivirus (Kaspersky, ESET, Avast etc.) and check the connection.
- 🌍 Disable VPN clients (NordVPN, ProtonVPN), if they are installed.
- 🔧 In the antivirus settings, find the section Net or Firewall and add your Wi-Fi network to the exceptions.
Viruses and malware:
- Check the system with Malwarebytes or Dr.Web CureIt!.
- Remove suspicious programs from Autoloads (
Ctrl + Shift + Esc → Startup). - Check the file
hosts(path:C:\Windows\System32\drivers\etc\hosts). It should contain only the line127.0.0.1 localhost. Remove everything else.
Attention! ⚠️ Some viruses (for example, Trojans DNSChanger) change DNS settings, causing Wi-Fi to connect but websites to fail. If no websites work after connecting to the network, enter the following in the command line:
ipconfig /flushdnsnetsh int ip reset
netsh winsock reset
8. Hardware malfunctions: when it's time to visit a service center
If none of the above methods helped, the problem may be in physical malfunction adapter or other laptop components. Here are some signs that it's time to call a specialist:
- 💻 Laptop doesn't see any network, although Wi-Fi is enabled and the drivers are updated.
- 🔌 Adapter disappears from Device Manager or is defined as unknown device.
- 🔥 Laptop overheats in the Wi-Fi adapter area (usually near the keys)
F1-F12). - 🛠️ Appear on the screen artifacts or a laptop turns off when connected to Wi-Fi.
- 🔄 The problem has appeared after a fall, liquid spill, or repair.
What you can do yourself before visiting the service center:
- Connect external Wi-Fi adapter (costs from 500 rubles). If the network works with it, the problem is with the built-in adapter.
- Check it out, Is the antenna coming loose? From the Wi-Fi module (relevant if the laptop has been dropped). To do this, disassemble the laptop (if you have experience) and make sure the black and white wires (antennas) are securely connected to the module.
- Reset BIOS settings (remove the battery for 10 minutes or use a jumper
CLR_CMOSon the motherboard).
Repair cost:
- Wi-Fi module replacement: from 1,500 to 4,000 rubles (depending on the laptop model).
- Re-soldering antennas: from 2,000 rubles.
- Diagnosis: usually for free, if you do the repairs in the same service center.
Attention! ⚠️ If the laptop is under warranty — do not disassemble it yourself! This will void the warranty. Contact the brand's official service center (Lenovo, HP, Dell and others).
How to find an official service center?
1. Go to the laptop manufacturer's website (for example, support.lenovo.com).
2. Enter the serial number of your device (usually on a sticker on the bottom).
3. Select a section Warranty and repair or Service centers.
4. Make sure the center has the status Authorized or Official.
FAQ: Frequently asked questions about laptop Wi-Fi issues
My laptop connects to Wi-Fi, but the internet isn't working. What should I do?
1. Check if the internet works on other devices (phone, tablet). If not, the problem is with your internet provider.
2. In the command line, enter:
ping 8.8.8.8
ping ya.ru
If the first ping works but the second doesn't, there's a DNS issue. Set up your DNS manually. 8.8.8.8 And 8.8.4.4.
3. Restart your router and laptop.
The Wi-Fi works, but the speed is very slow. What's wrong?
The reasons may be as follows:
- The router is overloaded (many devices connected).
- Weak signal (check the level in
netsh wlan show interfaces). - Interference from neighboring networks (change the channel in the router settings).
- Speed limitation by the provider (check your tariff).
To test, connect your laptop to the router via cable. If the cable speed is high, the problem is with your Wi-Fi.
My Wi-Fi stopped working after a Windows update. How do I fix it?
1. Roll back the adapter driver:
- Open device Manager.
- Find your Wi-Fi adapter → Properties → Driver → Roll Back Driver.
2. If a rollback is not possible, download the driver from the laptop manufacturer's website (not from the Microsoft website!).
3. Check if the service has been disabled Autoconfig (WLAN):
sc config Wlansvc start= auto
sc start Wlansvc
The laptop doesn't see my network, but it does see the neighboring ones. Why?
Possible reasons:
- Your network is hidden (this option is enabled) Hide SSID in the router).
- It's enabled in the router MAC address filtering, and your laptop is not on the approved list.
- The router is operating in the mode
802.11ac, and your adapter only supports802.11n. - Wrong region in the router settings (for example, installed
USA, and you are in Russia).
Solution: Go to your router settings (192.168.1.1) and check these parameters.
Is it possible to use a USB Wi-Fi adapter if the built-in one is broken?
Yes, this is the simplest and cheapest solution. USB adapters (for example, TP-Link TL-WN725N or ASUS USB-AC56) start at 500 rubles and are suitable for any laptop. The main thing is to choose an adapter that supports your range (2.4 GHz or 5 GHz).
Advantages:
- No need to disassemble the laptop.
- Can be connected to any USB port.
- Some models support
Wi-Fi 6(faster than built-in adapters).
Flaws:
- Takes up a USB port.
- It may stick out and get in the way (there are compact models the size of a flash drive).