You turned on your laptop, but there is no Internet - despite the fact that Wi-Fi works stably on your phone or tablet. Is this a familiar situation? Problems with a wireless connection can arise for dozens of reasons: from a simple router failure to a driver conflict. In this article we will look at all possible scenarioswhy the laptop does not connect to Wi-Fi, and we will give step by step instructions for Windows, macOS and Linux.
It is important to understand that the algorithm of actions depends on the symptoms: the laptop may can't see the network at all, see but don't connect, or connect, but without Internet access. We have structured the material so that you can quickly find a solution to your specific problem - without unnecessary technical details. If you are not confident in your abilities, start with simple steps (rebooting the router) and gradually move on to more complex ones (setting up DNS or updating the BIOS).
1. Diagnose the problem: determine the type of fault
Before you begin repairs, you need to clearly understand what aspect of Wi-Fi is broken?. The solution depends on this. Here are the key questions to answer:
- 🔍 The laptop does not see any Wi-Fi networks (including neighboring ones)? This may indicate problems with the adapter or its drivers.
- 📶 The network is visible, but the connection does not occur (hangs on "Obtaining an IP address")? Perhaps the router settings have gone wrong or the antivirus is blocking it.
- 🌐 There is a connection, but the Internet does not work ("No network access" icon)? The problem is most likely on the ISP or DNS side.
- ⚡ Wi-Fi disconnects periodically or is it very slow? The culprit may be overheating of the adapter or interference from other devices.
If you have Windows 10/11, press Win + X → Network connections and check the connection status. On macOS pinch Option and click on the Wi-Fi icon in the menu bar - expanded information about the network will appear. On Linux run the command:
iwconfig
- Can't see the network at all
- Sees but doesn't connect
- Connects, but no internet
- Wi-Fi is unstable
- Another problem
Please note indicators on the router: If the Wi-Fi light is off or flashing red, the problem is on the router side. If the indicator is normal, but the laptop does not receive a signal, look for the reason in your device.
2. Basic checks: router, cables and settings
In 60% of cases, the problem is solved by simple actions that many people miss. Start with these:
- Reboot your router. Unplug it for 30 seconds, then plug it back in. Wait until it loads completely (usually 1-2 minutes).
- Check cables. Make sure the cable from your ISP is firmly inserted into the port
WAN(usually blue) on the router. If you are using a PPPoE connection, reconnect to it in the router's web interface. - Disable VPN/proxy. These services may block access to the network. On Windows, check the settings in
Settings → Network and Internet → VPN. - Try another device. Connect your phone or tablet to the same network. If the Internet works, the problem is in the laptop.
If after rebooting the router Wi-Fi works, but the speed leaves much to be desired, check broadcast channel in the router settings. Channels 1, 6 and 11 are usually less crowded. To change the channel:
- Go to the router's web interface (usually at
192.168.1.1or192.168.0.1). - Enter your login/password (usually
admin/adminor indicated on the router sticker). - Find a section
WirelessorWi-Fi→Channeland select another channel.
If you have a dual-band router (2.4 GHz + 5 GHz), try connecting to a 5 GHz network - it is less susceptible to interference, but has a shorter range.
3. Problems with the Wi-Fi adapter: drivers and hardware failures
If the laptop does not see the network at all, the culprit is often network adapter. Here's how to check if it's working:
For Windows:
- Click
Win + X→Device Manager. - Expand the thread
Network adapters. - Find a device with words Wireless, Wi-Fi or 802.11 (For example, Intel Wi-Fi 6 AX200).
- If there is an exclamation mark next to the adapter, right-click →
Update driver.
If the adapter is displayed normally, but the networks are still not visible, try:
- 🔄 Reinstall driver: Right click on the adapter →
Remove device, then restart your laptop. Windows will install the driver automatically. - 📥 Install the driver manually. Download it from the laptop manufacturer's website (for example, support.lenovo.com for Lenovo or support.hp.com for HP).
- ⚡ Enable adapter. Sometimes it turns off randomly. For this purpose in
Device Managerright click on the adapter →Engage.
For macOS:
On MacBook Wi-Fi problems are often solved by resetting SMC And NVRAM:
- Turn off your MacBook.
- Clamp
Shift + Control + Option(left side of the keyboard) + power button for 10 seconds. - Release the keys and turn on the laptop.
If this doesn't help, check your network settings in System Settings → Network. Remove your current Wi-Fi connection and add it again.
☑️ Checking the Wi-Fi adapter
For Linux:
In the terminal, run the commands:
lspci | grep -i network # Проверка наличия адаптераsudo lshw -C network # Детальная информация
sudo rfkill unblock all # Разблокировка адаптера, если он заблокирован
If the adapter is detected but does not work, install proprietary drivers (for Broadcom or Realtek):
sudo ubuntu-drivers autoinstall # Для Ubuntu/Debian
sudo pacman -S broadcom-wl # Для Arch Linux
4. IP and DNS settings: when the connection is "without network access"
If the laptop connects to Wi-Fi, but the Internet does not work (exclamation mark icon), the problem may lie in incorrect network settings. Most often this is:
- 🔢 Wrong IP address (conflict with other devices on the network).
- 🌍 Down DNS servers (for example, if the provider blocks access).
- 🔒 Firewall or antivirus, blocking the connection.
First try to get the IP address automatically:
For Windows:
- Open
Command line(Win + R→ entercmd). - Run the commands one by one:
ipconfig /releaseipconfig /renew
ipconfig /flushdns - Restart your laptop.
For macOS/Linux:
In the terminal run:
sudo dhclient -r # Освободить текущий IP
sudo dhclient # Получить новый IP
If automatically obtaining an IP does not help, try register DNS manually. For example, use public DNS from Google (8.8.8.8 And 8.8.4.4) or Cloudflare (1.1.1.1):
| Operating system | Path to settings | Actions |
|---|---|---|
| Windows 10/11 | Settings → Network and Internet → Wi-Fi → Hardware settings |
Select "Manual", specify IP 192.168.1.X (where X is a number from 2 to 254) and DNS 8.8.8.8. |
| macOS | System Settings → Network → Wi-Fi → Advanced → DNS |
Add 8.8.8.8 And 1.1.1.1 to the list of DNS servers. |
| Linux (Ubuntu) | /etc/resolv.conf or Settings → Network |
Edit the file: nameserver 8.8.8.8. |
If the Internet started working after changing the DNS, the problem was a blocking on the part of the provider or a failure of its DNS servers.
5. Software conflicts: antiviruses, VPNs and services
Sometimes third party programs interfere with the normal operation of Wi-Fi. Most common culprits:
- 🛡️ Antiviruses (Kaspersky, Avast, ESET) - can block network connections.
- 🌐 VPN clients (NordVPN, OpenVPN) - change traffic routes.
- 🔧 Windows Services (For example,
WLAN AutoConfig) - if they are disabled, Wi-Fi will not work.
To check the effect of your antivirus:
- Temporarily disable real-time protection.
- Try connecting to Wi-Fi.
- If the Internet appears, add the network to your antivirus exceptions or change the program.
To check VPN:
- Disable VPN in the system tray or through settings.
- Run the command in the terminal (Linux/macOS) or
Command line(Windows):netsh winhttp reset proxy # Для Windowssudo networksetup -setwebproxystate "Wi-Fi" off # Для macOS
If you suspect a Windows service failure:
- Click
Win + R, enterservices.msc. - Find a service
WLAN AutoConfig. - Make sure she launched and startup type -
Automatically.
How to completely remove a VPN client if it blocks the Internet?
Often, uninstalling through Programs and Features does not remove all files. Use utilities like Revo Uninstaller or CCleanerto clean up residual files and registry entries. After removal, restart your laptop and check the connection.
6. Hardware faults: when to take your laptop to a service center
If none of the software methods help, the problem may be hardware. Here are the signs that it’s time to contact a service center:
- 🔌 Wi-Fi adapter is not detected in
Device Manager(even after reinstalling the drivers). - 🔥 Laptop overheats and turns off Wi-Fi for protection (typical for older models HP Pavilion or Acer Aspire).
- 📡 Wi-Fi antennas are damaged (for example, after a laptop falls).
- 🔋 Eating problems — the adapter turns off when running on battery power.
A critical sign of hardware failure: if Wi-Fi only works when the laptop is connected to the charger, but disappears when switching to the battery, this indicates wear on the capacitors in the adapter power circuit. In this case, replacement of the adapter or soldering of components is required.
You can check it yourself:
- Antenna condition. Open the back cover of the laptop (if the warranty allows it) and make sure that the antenna wires are tightly connected to the adapter.
- Overheating. Use the program HWMonitor (Windows) or iStat Menus (macOS) for temperature monitoring.
If the laptop is older than 5 years and has been dropped before, there is a high probability of microcracks on the adapter board. In this case, repairs will cost less than replacing the entire module.
⚠️ Attention: Do not attempt to solder components on the board yourself unless you have experience. Improper repairs can damage the entire motherboard.
7. Alternative connection methods if Wi-Fi does not work
While you are looking for a solution, you can temporarily use other methods of connecting to the Internet:
- 📱 Mobile hotspot. Share the Internet from your smartphone (on Android:
Settings → Hotspot and tethering). - 🖥️ USB modem. Connect a 4G modem (for example, Huawei E3372) to the USB port.
- 🔌 Ethernet adapter. Buy an adapter USB-to-Ethernet (For example, TP-Link UE300) and connect to the router with a cable.
- 🔄 Powerline adapters. Use your home wiring to carry the Internet (eg. TP-Link AV600).
If you urgently need Internet on your laptop, but Wi-Fi does not work, the fastest way is hotspot from a smartphone. To do this:
- On Android: go to
Settings → Wireless & networks → Tethering mode. - On iPhone:
Settings → Modem mode. - Connect your laptop to the created network using the password from your phone screen.
⚠️ Attention: When using a mobile hotspot, monitor your traffic consumption. Some operators block Internet distribution or limit speed after exceeding the limit.
FAQ: Frequently asked questions about problems with Wi-Fi on a laptop
Why doesn't the laptop see Wi-Fi, but the phone does?
This is a sign of a problem with Wi-Fi adapter on a laptop. Possible reasons:
- The adapter driver is out of date or damaged.
- The adapter is disabled in
Device Manageror via a function key (for example,Fn + F2on Lenovo). - Hardware failure (damage to the antennas or the module itself).
Start by updating your drivers and making sure your adapter is turned on.
How to reset network settings on Windows 10/11?
Follow these steps:
- Open
Settings → Network and Internet → Status. - Scroll down and click
Network reset. - Confirm the action and restart your laptop.
This will delete all saved networks and return the network components to factory settings.
Can a virus block Wi-Fi?
Yes, some viruses (for example, Trojan.Win32.DNSChanger) change DNS or routing settings, which leads to a lack of Internet. To check:
- Scan your system with an antivirus (for example, Malwarebytes or Dr.Web CureIt!).
- Check the file
hosts(on Windows it is located along the pathC:\Windows\System32\drivers\etc\hosts) for suspicious entries.
Why does Wi-Fi only work near the router?
This indicates weak signalwhich can be called:
- Faulty antennas in a laptop or router.
- Interference from other devices (microwaves, cordless phones).
- Incorrect transmission power settings on the router.
Try changing the Wi-Fi channel on the router (for example, from automatic to fixed 6th) or reducing the channel width to 20 MHz in the settings.
How to connect to Wi-Fi without a password (if you forgot)?
If you have previously connected to this network on a laptop, you can find out the password like this:
For Windows:
- Open
Command lineon behalf of the administrator. - Run the command:
netsh wlan show profile name="ИМЯ_СЕТИ" key=clear - Find the line
Key Contents- this is the password.
For macOS:
- Open
Terminal. - Run the command:
security find-generic-password -wa "ИМЯ_СЕТИ"