You are sitting with a laptop, you see the familiar Wi-Fi connection icon, but the browser persistently displays the error “No Internet connection”, and instant messengers refuse to send messages. The situation is annoying, especially when every minute counts. Why is this happening? There can be dozens of reasons - from a banal router failure to complex network protocol conflicts.

This article will not just list possible problems, but will help systematically diagnose malfunction: from checking indicators on the router to analyzing logs Windows or macOS. We will analyze how software failures (for example, error DNS_PROBE_FINISHED_NO_INTERNET), and hardware (overheating of the Wi-Fi module), and also give step by step instructions for every operating system. If you are ready to regain your stable Internet, read on.

1. Checking basic parameters: router and connection

Before you dig deep into your laptop's settings, make sure that the problem is not on the signal source side. Start with physical diagnostics:

  • 🔌 Router power supply: Check if the power light is on. If it flashes red or orange, the device is overheated or faulty. Try unplugging the power supply for 30 seconds, then plugging it in again.
  • 📶 Wi-Fi indicator: The wireless icon on the router should be lit (usually green or blue). If it goes out, press the button Wi-Fi On/Off on the body.
  • 🌐 Internet cable: if you have PPPoE or another type of connection through your ISP, make sure the cable is firmly inserted into the port WAN (usually highlighted in blue).
  • 📱 Test on other devices: connect your smartphone or tablet to the same network. If the Internet works, the problem is in the laptop. If not, the router or provider is to blame.

If other devices don't have access either, try reboot the router via the web interface (usually at 192.168.0.1 or 192.168.1.1). The login and password for logging in are often indicated on a sticker on the bottom of the device (standard ones are admin/admin or admin/password).

⚠️ Attention: If after rebooting the router the indicator DSL or Internet does not light up - contact your provider. There may be problems on the line (cable break, accident at the station).
📊 How often do you have problems with Wi-Fi?
  • Once a week
  • Once a month
  • Only after updates
  • Never happened

2. Diagnostics on a laptop: network settings and drivers

If the router is working, but the Internet is missing only on the laptop, we proceed to checking its settings. Let's start with basic diagnostics:

B Windows open Settings → Network and Internet → Status and click "Network reset" This will return all network components to factory settings. On macOS execute in Terminal:

sudo ifconfig en0 down && sudo ifconfig en0 up

(replace en0 to your network interface, which can be found with the command networksetup -listallhardwareports).

Next check Wi-Fi adapter driver:

  • 🖥️ B Windows: open Device Manager (keys Win + X), find the “Network adapters” section. If next to the name of your Wi-Fi module (for example, Intel Wi-Fi 6 AX200 or Qualcomm Atheros) exclamation mark is on - the driver is not working correctly. Right-click and select Update Driver.
  • 🍎 On macOS: update the system via System settings → Software update. For older models (eg MacBook Pro 2015) may need to be reset SMC (hold Shift + Control + Option + power button 10 seconds).
⚠️ Attention: If after updating the driver in Windows an error appeared Code 10 (“The device cannot start”) - download the driver from the laptop manufacturer’s website (for example, Lenovo Support or HP Software), and not through Windows Update.

Make sure Airplane mode is turned off

Check if Wi-Fi is disabled by the hardware button (on some models Asus or Dell)

Run troubleshooting through “Network Settings”

Try connecting to another network (for example, a mobile hotspot) -->

3. IP and DNS conflicts: why the laptop does not receive an address

One of the most common reasons for the lack of Internet when connected to Wi-Fi is problems with IP address. The laptop may receive an incorrect address (for example, 169.254.x.x), which means that DHCP server The router could not issue it. Or the conflict arises due to manual settings.

To check the current IP:

  • 🪟 B Windows execute in Command line (Win + R → cmd):
ipconfig /all

Look for the block with the name of your Wi-Fi adapter. Parameter IPv4 address must be within the range of your local network (usually 192.168.0.x or 192.168.1.x). If there 169.254.x.x - this is a mistake APIPA (automatic private IP addressing), meaning that the laptop was unable to obtain an address from the router.

To reset the IP do:

ipconfig /release

ipconfig /renew

On macOS or Linux use:

sudo dhclient -r en0  # сброс

sudo dhclient en0 # получение нового IP

If the problem persists, try set IP manually:

  1. B Windows: Settings → Network → Wi-Fi → Hardware Settings → Change adapter settings. Right-click on your connection, select “Properties” → “IP version 4 (TCP/IPv4)” → “Use the following IP address.”
  2. Please indicate:
    • IP address: 192.168.1.100 (if the router has an address 192.168.1.1)
    • Subnet mask: 255.255.255.0
    • Main gateway: 192.168.1.1
    • DNS servers: 8.8.8.8 (Google) or 1.1.1.1 (Cloudflare)
What to do if, after manual IP configuration, the Internet still does not appear?

If after specifying a static IP the connection is not restored, check:

1. **DHCP range of the router** (in the router’s web interface, find the section LAN or DHCP). You may have specified an IP outside the permissible range (for example, the router distributes addresses with 192.168.1.100 to 192.168.1.200, and you entered 192.168.1.201).

2. **IP conflict** - another device on the network can use the same address. Try changing the last digit (for example, from .100 on .105).

3. **Firewall or Antivirus** - temporarily disable them and check the connection.

4. Problems with DNS: why sites don’t open, but Skype works

The situation when Skype, Discord or Telegram connect to servers, but browsers do not open sites, almost always associated with broken DNS servers. DNS (Domain Name System) translates domain names (for example, google.com) to IP addresses. If the DNS does not respond, sites become unavailable, although the Internet connection itself is active.

To check DNS:

  • 🔍 B Windows do:
nslookup google.com

If the answer shows *** Request to [DNS server] timed-out — the server does not respond. Try changing DNS to public:

DNS server IPv4 address Features
Google Public DNS 8.8.8.8, 8.8.4.4 High speed, but may be blocked by some providers
Cloudflare 1.1.1.1, 1.0.0.1 Supports DNS-over-HTTPS (privacy)
OpenDNS 208.67.222.222, 208.67.220.220 Filtering malicious sites
Yandex DNS 77.88.8.8, 77.88.8.1 Optimized for Russian sites

To change DNS in Windows:

  1. Go to Control Panel → Network and Internet → Network and Sharing Center → Change adapter settings.
  2. Right-click on your Wi-Fi connection → “Properties” → “IP version 4 (TCP/IPv4)” → “Use the following DNS server addresses.”
  3. Enter the selected addresses (for example, 1.1.1.1 And 8.8.8.8).

On macOS:

  1. Open System Settings → Network → Wi-Fi → Advanced → DNS.
  2. Add new servers to the list, then click OK.
💡

If after changing the DNS sites begin to open more slowly, try the servers 94.140.14.14 And 94.140.15.15 from AdGuard — they block ads and trackers, speeding up page loading.

5. Hardware problems: overheating, failure of the Wi-Fi module

If all software methods have been tried, but the Internet has not appeared, the reason may lie in hardware laptop. Most often the culprits are:

  • 🔥 Wi-Fi module overheating: in some models (for example, HP Pavilion or Acer Aspire) The wireless adapter is located close to the processor and is overheating. Check the temperature using HWMonitor or Speccy. If the module heats up above 70°C - The laptop needs to be cleaned from dust.
  • 🛠️ Damage to antennas: thin wires connecting the Wi-Fi module to the antennas in the laptop lid may fray or oxidize. Symptoms: weak signal, frequent connection breaks.
  • Module fault: If the laptop does not see any network (even after resetting the BIOS), the adapter itself may have burned out. In this case, only replacement will help (for example, a module Intel AX200 costs ~2000₽).

To check the hardware:

  1. Disconnect the laptop from the network, remove the battery (if removable) and hold down the power button 30 seconds - this will release the residual charge.
  2. If Wi-Fi doesn’t work after turning it on, try connecting external USB adapter (For example, TP-Link TL-WN725N). If the Internet appears with it, the problem is in the internal module.
⚠️ Attention: On laptops Lenovo ThinkPad series T480/T490 And Dell XPS 13/15 Wi-Fi modules are often soldered to the motherboard. Replacing them requires soldering and it is better to trust service centers.

6. Viruses, firewall and antiviruses: hidden blockers

Sometimes the Internet is not available due to software conflict. Viruses, incorrect firewall settings, or aggressive antivirus programs (for example, Kaspersky Internet Security or Avast) can block network traffic.

How to check:

  • 🛡️ Disable the firewall:
    • B Windows: Control Panel → Windows Defender Firewall → Turn it on and off → check “Disable” for private and public networks.
    • On macOS: System Settings → Security and Safety → Firewall → turn it off.
  • 🦠 Check for viruses: use Malwarebytes or Dr.Web CureIt!. Some Trojans (for example, DNSChanger) change DNS settings.
  • 🔄 Resetting network policies: in Windows open Command line as administrator and do:
netsh int ip reset

netsh winsock reset

netsh advfirewall reset

If the Internet appears after disabling the antivirus, add browsers and network applications to exceptions. For example, in Kaspersky this is done through Settings → Advanced → Network settings → Application rules.

💡

If the Internet started working after resetting the firewall, the problem was in the filtering rules. Do not turn the firewall back on until you have configured exceptions for browsers and system processes.

7. Features of operating systems: Windows, macOS, Linux

Each OS has unique Wi-Fi-related pain points. Let's look at the most common ones.

Windows 10/11

  • 🪟 Error: “Connected, no internet access”: often occurs after updates. It helps to roll back the Wi-Fi driver or install the version from the laptop manufacturer's website.
  • 🔄 Resetting the TCP/IP stack: execute in cmd:
netsh int ipv4 reset

netsh int ipv6 reset

macOS (Ventura, Monterey, Big Sur)

  • 🍎 Problems after update: reset NVRAM (hold Option + Command + P + R when turned on 20 seconds).
  • 📡 Wi-Fi connects, but no traffic: delete the network configuration file:
sudo rm /Library/Preferences/SystemConfiguration/NetworkInterfaces.plist

sudo rm /Library/Preferences/SystemConfiguration/preferences.plist

Then restart your laptop.

Linux (Ubuntu, Fedora, Arch)

  • 🐧 Wi-Fi driver missing: check supported adapters with command lspci | grep -i network. If your module (for example, Broadcom BCM4313) is not detected - install the proprietary driver:
sudo apt install firmware-b43-installer  # для Debian/Ubuntu

sudo dnf install broadcom-wl # для Fedora

FAQ: Frequently asked questions and answers

Why does my laptop connect to Wi-Fi, but it says “No Internet access,” although everything works on the phone?

This is a personal sign IP conflict or incorrect DNS settings on a laptop. First try resetting the IP (ipconfig /release And ipconfig /renew on Windows). If that doesn’t help, check to see if you have manually specified a static IP that conflicts with other devices on the network. Also try changing DNS to 8.8.8.8.

After updating Windows, Wi-Fi stopped working. What to do?

Updates often reset or corrupt drivers. Open Device Manager, find your Wi-Fi adapter in the “Network adapters” section, right-click and select “Roll back driver”. If the button is inactive, download the driver from the laptop manufacturer’s website (do not use the version from Windows Update).

The laptop sees the network, but does not connect - it writes “Failed to connect.” What's the matter?

The reasons may be different:

  • 🔑 Invalid password: Even if you are sure that you are entering it correctly, try retyping it in Notepad, then copying it into the input field.
  • 📡 Hidden Network: If the router is configured to hide the SSID, manually add the network in the Wi-Fi settings.
  • 🛠️ Incompatibility of standards: if the router is operating in mode 802.11ac (5 GHz), and the laptop only supports 802.11n (2.4 GHz), connection will be impossible. Change the mode in the router settings.
The Internet works, but is very slow - what should I check?

Most likely the problem is channel overload or non-optimal router settings. Check the speed first Speedtest. If it is below the tariff:

  • 📶 Change the Wi-Fi channel in the router settings (for example, from 6 on 11 in the 2.4 GHz range).
  • 🔄 Reboot your router and laptop.
  • 🛡️ Disable VPN or proxy if used.

If the speed is normal, but sites load slowly, the problem is in DNS (try 1.1.1.1).

Can an antivirus block the Internet?

Yes, and this is one of the most common reasons for the “imaginary” lack of Internet. Antiviruses like Kaspersky, Avast or ESET NOD32 can block network traffic if they consider it suspicious. To check:

  1. Temporarily disable your antivirus (via the tray icon or control panel).
  2. If the Internet is available, add browsers (Chrome, Firefox) in antivirus exceptions.
  3. Check your antivirus firewall settings - sometimes it blocks DNS requests.

If the problem disappears, update your antivirus database or reinstall it.