Wireless Internet has become an integral part of everyday life, but even in 2026, many users face difficulties when connecting their laptop to the Internet for the first time. Wi-Fi networks. Problems can range from a simple lack of drivers to complex network protocol conflicts. This article will help you understand the process from scratch - regardless of whether you use Windows 11, outdated Windows 7, macOS Ventura or distribution Linux.
We won't just list the steps, we'll explain why a laptop may not see the network even with the correct router settings (spoiler: the laptop itself is not always to blame). Let's also consider non-obvious points - for example, how to connect to a hidden network or what to do if the device persistently asks for a password, despite its correctness. For clarity, we added a comparison table of connection methods and a checklist for diagnosing problems.
1. Preparing the laptop for connection
Before attempting to connect to Wi-Fi, make sure your laptop is technically ready for it. Let's start with the obvious: check physical state of the adapter. On most models, the wireless network indicator is located on the front panel or next to the keyboard (usually an antenna icon with waves). If it does not light up or flashes red, there may be a hardware problem.
Next is the software component:
- 🔹 Windows: Open
Device Manager(keysWin + X) and find the "Network adapters" section. There should be an adapter with names like Intel Wi-Fi 6, Qualcomm Atheros or Realtek RTL8xxx. If there is an exclamation mark next to it, the driver needs to be reinstalled. - 🔹 macOS: Go to
About This Mac → System Report → Networks → Wi-Fi. Check the status: "Enabled" and the presence of a MAC address. - 🔹 Linux: In the terminal, enter
lspci | grep -i networkorlsusbfor USB adapters. If the pin is empty, the adapter is not recognized by the system.
Pay special attention Wi-Fi switch on the laptop body (valid for models Lenovo ThinkPad, Dell Latitude and some HP EliteBook). Sometimes it is accidentally switched to the "Off" position. during transportation. Also check the keyboard shortcuts for turning on the network - e.g. Fn + F2 or Fn + F12 (depending on the manufacturer).
- Lenovo
- HP
- Dell
- Asus
- Acer
- Apple MacBook
- Other
2. Step-by-step instructions for Windows
B Windows 10/11 The connection process is as simplified as possible, but there are some nuances. Start by checking airplane mode: Activating it disables all wireless modules. To make sure it is turned off, click Win + A and find the corresponding button in the notification panel.
Next, follow the algorithm:
- Click on the network icon in the lower right corner of the screen (next to the clock).
- Select yours from the list of available networks. If it’s not there, click “Hidden Network” and enter a name (
SSID) manually. - Enter your password (make sure the characters are case-matched!) and click Next.
- When prompted "Do you want this computer to be discoverable...", select Yes (for a home network) or No (for a public network).
If you receive the error "Unable to connect to the network" after entering your password, try:
- 🔄 Reboot the router (turn off the power for 30 seconds).
- 🔧 Forget network:
Settings → Networks and Internet → Wi-Fi → Manage known networks→ select a network and click "Forget". - 🛠️ Update adapter driver via
Device Manager(right click on the adapter → "Update driver").
Check airplane mode
Make sure the adapter is enabled in Device Manager
Reboot your router
Try connecting to a different network (for example, from your phone)
Update your network adapter driver-->
For Windows 7 the process is similar, but the network settings menu looks different: open Control Panel → Network Connections, find "Wireless Network Connection" and right-click to search for available networks.
What to do if Windows asks for a password, but it is correct?
This is a common problem when using a security standard WPA3 on old adapters. Solutions:
1. Switch your router to WPA2-PSK (in the router settings, section "Wireless mode → Security").
2. Update the Wi-Fi adapter driver to the latest version from the manufacturer’s website (not through Windows Update!).
3. If the laptop is older than 2015, you may need to replace the adapter with a model that supports WPA3 (for example, Intel AX200).
3. Connection on macOS: features and life hacks
On MacBook The process of connecting to Wi-Fi is intuitively simpler, but there are specific points. For example, if you've previously connected to that network, your device may automatically use the saved settings—even if the password has changed. To reset them:
- Open
System Settings → Networks. - Select
Wi-Fiin the left menu, then click "Advanced". - In the "Preferred networks" list, find your network, highlight it and click "-", then "OK".
To connect to a hidden network:
- In the Wi-Fi menu (icon in the upper right corner), select "Other networks...".
- In the Network Name field, enter
SSID(network name). - Select security type (
WPA2/WPA3 Personalfor most home networks). - Enter your password and click "Connect".
If macOS stubbornly won't connect, check:
- 🔍 Date and time: Incorrect settings may block the connection. Correct in
System Settings → Date and Time. - 🔄 Reset SMC: On MacBook with a removable battery - turn off the laptop, unplug the power adapter, remove the battery, hold the power button for 5 seconds. For models with a non-removable battery: Turn off your Mac, press
Shift + Control + Option+ power button simultaneously for 10 seconds. - 🛡️ Firewall: Temporary shutdown in
System Settings → Security and Safety → Firewallmay help diagnose the problem.
If your MacBook connects to the network but the internet is not working, try manually setting DNS. To do this, in the Wi-Fi settings (section "Advanced → DNS") add Google servers: 8.8.8.8 And 8.8.4.4.
4. Connection on Linux: terminal vs graphical interface
In distributions based on Ubuntu, Fedora or Arch Linux Connecting to Wi-Fi can be done either through a graphical interface (for example, NetworkManager), and through the terminal. The last method is useful if the adapter driver does not support GUI.
Method 1: GUI (for beginners)
- Click on the network icon in the upper right corner (usually next to the clock).
- Select your network from the list.
- Enter your password and confirm the connection.
Method 2: Terminal (for advanced users)
If the graphical method doesn't work, use nmcli (Network Manager Command Line):
# Посмотреть доступные сетиnmcli dev wifi list
# Подключиться к сети (замените SSID и password)
nmcli dev wifi connect "Имя_сети" password "ваш_пароль"
# Если сеть скрытая, добавьте флаг hidden
nmcli dev wifi connect "Имя_сети" password "ваш_пароль" hidden yes
For distributions without NetworkManager (For example, Debian in minimal installation) use wpa_supplicant:
# Создать конфиг для сетиwpa_passphrase "Имя_сети" "пароль" | sudo tee /etc/wpa_supplicant.conf
# Подключиться
sudo wpa_supplicant -B -i wlan0 -c /etc/wpa_supplicant.conf
# Получить IP-адрес
sudo dhclient wlan0
If the commands return an error Device or resource busy, first disable other processes that manage the network:
sudo systemctl stop NetworkManager
sudo systemctl stop wpa_supplicant
On Linux, Wi-Fi problems are often caused by missing proprietary drivers. For adapters Broadcom or Realtek You may need to install firmware from repositories (for example, package firmware-b43-installer for Broadcom).
5. Table: Comparison of connection methods by OS
| Parameter | Windows 10/11 | macOS | Linux (Ubuntu) |
|---|---|---|---|
| Connection method | Via the notification panel or "Settings → Networks" | Via the Wi-Fi menu in the status bar | Via NetworkManager (GUI) or nmcli (terminal) |
| Support for hidden networks | Yes, through the "Hidden Network" | Yes, through "Other networks..." | Yes, with a flag hidden yes in nmcli |
| Diagnosis of problems | Built-in troubleshooter | "Wireless diagnostics" on Wireless utility |
Teams dmesg | grep wifi, iwconfig |
| Common mistakes | "Could not connect", no drivers | "Wrong password" when the password is correct (resetting SMC helps) | "Device not ready" (firmware required) |
| Additional tools | netsh wlan show drivers |
networksetup -listallhardwareports |
iwlist wlan0 scan, rfkill unblock wifi |
6. Common mistakes and their solutions
Even with the correct settings, the connection may not work. Let's look at typical scenarios and how to resolve them.
Error 1: "Connected, without internet access"
Causes and solutions:
- 🔌 Problems on the provider side: Reboot your router and check if the Internet works on other devices.
- 🌐 Incorrect IP settings: B
Adapter properties(Windows) orAdvanced → TCP/IP(macOS) set automatic IP and DNS acquisition. - 🔒 Blocking by antivirus: Temporary shutdown Kaspersky, Avast or the built-in Windows firewall may help.
Error 2: The laptop does not see the network, but other devices do
Probable reasons:
- 📡 Incompatible Wi-Fi standard: If the router is operating in
802.11ac(5 GHz), and the laptop adapter only supports802.11n(2.4 GHz), the network will not be displayed. Solution: enable support in the router settings2.4 GHzor update the adapter driver. - 🔇 The network is hidden: Make sure that the "Hide SSID" option is not activated in the router settings.
- 🔌 Hardware failure: Try connecting an external USB adapter (such as TP-Link TL-WN725N).
If the laptop connects to the network, but the speed is extremely low (less than 1 Mbps), check the channel settings in the router. Channels 12-14 in the 2.4 GHz band may conflict with other devices. Optimal channels: 1, 6 or 11.
Error 3: Constant connection dropouts
This is one of the most difficult problems, as there can be dozens of reasons. Start with the simplest:
- Change the Wi-Fi channel in the router settings (avoid automatic selection).
- Disable the "Power Saver" feature for the Wi-Fi adapter in
Device Manager → Adapter Properties → Power Management. - Check for interference from other devices (microwaves, cordless phones).
- Update the router firmware (especially important for TP-Link, Asus And D-Link).
How to check signal quality in Linux?
Install the package wavemon (for Debian/Ubuntu: sudo apt install wavemon) and run it in a terminal. The program will show the signal level (Signal), noise (Noise) and the channel used. The optimal signal-to-noise ratio is above 20 dB.
7. Security: how to secure your connection
Connecting to Wi-Fi does not only mean access to the Internet, but also potential risks. The following measures will help minimize threats:
Basic security settings:
- 🔐 Use only
WPA2-PSKorWPA3-PSK. Avoid the obsoleteWEP— hacking it takes less than a minute. - 🖥️ Change the default network name (
SSID): it should not contain the router model (for example,TP-Link_1234). - 🔄 Update your Wi-Fi password regularly (every 3-6 months).
Additional measures:
- 🛡️ Turn it on filtering by MAC addresses in the router settings. This is not a panacea (MAC is easy to fake), but it will add complexity to random connections.
- 🌐 Customize guest network for friends - it is isolated from the main one and does not provide access to local devices.
- 📡 Disable WPS (Wi-Fi Protected Setup) - a vulnerability in the protocol allows you to guess the PIN in a few hours.
For Windows also recommended:
- Turn off file and printer sharing in
Control Panel → Network Settings → Advanced Sharing Settings(for public networks). - Use a VPN (eg. ProtonVPN or Windscribe) when connecting to public networks (cafes, airports).
Even if your Wi-Fi is password protected, attackers can intercept traffic on open networks. Never enter bank or social media passwords while connected to a network with a name like "Free_WiFi" or "Starbucks_Guest" - these could be traps.
8. Frequently asked questions (FAQ)
My laptop does not see Wi-Fi, although there is a network on my phone. What's the matter?
There are several reasons:
- The adapter is physically disabled (check the switch on the case or the key combination
Fn + F2/F12). - The adapter driver is not installed or is damaged (check in
Device Manager). - The router is operating in mode
5 GHz, and your adapter only supports2.4 GHz(check adapter specifications). - The router settings have a MAC address filter enabled, and your laptop is not on the white list.
Start by rebooting your router and laptop. If this does not help, connect the laptop to the router with a cable and update the adapter driver.
How to connect to Wi-Fi without a password (if you forgot)?
If you have access to a router:
- Connect to it via cable.
- In your browser's address bar, enter
192.168.0.1or192.168.1.1(default logins/passwords:admin/adminoradmin/empty). - Go to section
Wireless → Securityand look at the password.
If there is no access:
- On Windows: passwords of saved networks can be viewed in
Control Panel → Network Connections → Manage Wireless Networks(right click on the network → "Properties → Security"). - On macOS: open
bunch of keys, find the name of the network and double-click on it.
⚠️ Attention: Using other people's Wi-Fi networks without the owner's permission is a violation of the law (Article 272 of the Criminal Code of the Russian Federation “Illegal access to computer information”).
Why is Wi-Fi slow on a laptop but fast on a phone?
Possible causes and solutions:
- 📶 Weak signal: The laptop may be further from the router than the phone. Check the signal level in
Control Panel → Networks → Wi-Fi Status. - 🔄 Channel congestion: Phones often automatically switch to a less busy channel. Manually change the channel on the router (optimal: 1, 6 or 11 for 2.4 GHz).
- 🖥️ Driver side limitation: B
Device Manageropen the properties of the adapter and on the "Advanced" tab, check the settings like802.11n/ac Wireless Mode— set the maximum value. - 🛡️ Background updates: B Windows check if the system is downloading updates (open
Settings → Update & Security).
Also try disabling QoS in the router settings - sometimes this function distributes traffic incorrectly.
Is it possible to connect a laptop to Wi-Fi without an adapter?
Yes, but with restrictions:
- USB adapter: Buy an external adapter (from 300 rubles, for example, TP-Link TL-WN725N).
- Smartphone as a modem: Activate the hotspot on your phone and connect your laptop to its Wi-Fi.
- Ethernet cable: If the router is nearby, connect via cable (speed and stability will be higher).
- Powerline adapters: They transmit the Internet via electrical wiring (useful if the router is in another room).
Without a hardware Wi-Fi module or its equivalent, an over-the-air connection is impossible.
How to connect to public Wi-Fi with authorization (for example, in a hotel)?
Algorithm of actions:
- Connect to the network as usual (a password may not be required).
- Open your browser. An authorization window should appear. If not, enter any address (for example,
http://neverssl.com). - Enter authorization data (room number, last name or code from the receipt).
- If the Internet does not work after authorization, check the proxy settings in the system (should be disabled).
For Windows the team can also help CMD:
netsh winhttp reset proxy
⚠️ Attention: On public networks, your traffic may be intercepted. Do not log into personal bank accounts or email without a VPN.