Switching from cable connection to Wi-Fi It seems like a simple task until you encounter typical problems: the laptop “doesn’t see” the network, the speed drops 10 times, or the system stubbornly clings to Ethernet, ignoring wireless adapters. This guide will help you avoid pitfalls, from basic setup to resolving hidden conflicts between network interfaces.
We will analyze the process for three operating systems - Windows 10/11, macOS And Linux (for example Ubuntu/Debian), we will pay attention to the diagnostics of drivers and router, and also explain why sometimes Disconnecting the cable physically is not enough to automatically switch to Wi-FiIf your laptop is older than 5 years, a separate section will help you check the wireless module's compatibility with modern standards. 802.11ac/ax.
Spoiler: in 30% of cases, the problem lies not in the laptop, but in the router settings - for example, in the disabled mode WPA3 or a hidden SSID. We'll check this in the last section.
Why doesn't my laptop automatically switch to Wi-Fi?
The main reason is - network connection priority in the OS. Default Windows And macOS prefer a wired connection (Ethernet), even if the speed Wi-Fi higher. This is built into the route selection algorithms: the cable is considered more stable.
The second common problem is IP address conflictIf the laptop received the address by DHCP via cable, and then you pull the cord, the system may "forget" to request a new Wi-Fi address. As a result, the connection status is stuck at "No internet access».
- 🔌 Ethernet takes priority: The OS ignores Wi-Fi while the cable is connected (even if it is not active).
- 🔄 DNS cache: Old wired connection entries are interfering with name resolution over Wi-Fi.
- 🚫 Disabled adapter: The wireless module can be deactivated in
Device Manageror throughfn keys. - 📡 Problems with the router: The network is hidden (SSID is not broadcast), MAC filtering is enabled, or the router is in the mode
802.11n(and your laptop only supports802.11ac).
Before you delve into the settings, run a basic check:
Disconnect the Ethernet cable from your laptop | Check if the Wi-Fi indicator on the laptop is lit (if applicable) | Make sure the router is turned on and distributing Wi-Fi (the WLAN indicator is blinking) | Try connecting to the network from your phone to see if it works -->
ASUS|Lenovo|HP|Acer|Dell|Apple MacBook|Other-->
Disabling wired internet: the correct procedure
Simply removing the cable from the port isn't enough. If done incorrectly, the system may become stuck with the old settings. Follow this procedure:
- Save open files and close programs that use the network (torrents, cloud services).
- Open
Command line(Win + R→ entercmd) and run:ipconfig /releaseThis will reset the current IP address obtained from DHCP.
- Physically disconnect the cable Ethernet from the laptop.
- In the same command line, run:
ipconfig /renewTo force a request for a new address (already for Wi-Fi).
If after this the Wi-Fi indicator on the laptop does not light up, check:
- 🔧 Hardware switch: On some models (eg, Lenovo ThinkPad or HP EliteBook) there is a physical button or slider to turn off Wi-Fi.
- ⌨️ Key combination: Click
Fn + F2(or anotherF-keywith an antenna icon). On MacBook - checkSystem Preferences → Network.
Setting up Wi-Fi on Windows 10 and 11: Step-by-Step
IN Windows The process of connecting to Wi-Fi is standard, but there are nuances with network priorities and drivers.
Method 1: Via the taskbar
- Click on the icon networks in the lower right corner (next to the clock).
- In the list of available networks, select yours, enter the password and click
Connect. - If the network is not listed, click
Hidden network→ enterSSIDand password manually.
Method 2: Via Settings (if automatic connection doesn't work)
- Open
Start → Settings → Network & Internet → Wi-Fi. - Turn on the switch
Wi-Fi(if it is turned off). - Click
Managing known networks→ select your network →Connect. - If there is no network, click
Add a networkand enter the data manually.
If after connection the indicator shows “No internet access", execute:
netsh winsock resetnetsh int ip reset
ipconfig /flushdns
Then restart your laptop.
What to do if Windows stubbornly clings to Ethernet?
In some Windows 10/11 builds, Ethernet priority is locked at the Group Policy level. To fix this:
1. Click Win + R, enter gpedit.msc (for Pro versions only).
2. Go to Computer Configuration → Administrative Templates → Network → QoS Packet Scheduler.
3. Find the parameter Limit reserved bandwidth and set the value 0.
4. Restart your PC.
Wi-Fi setup on macOS
On MacBook the process is simpler, but there are specific points with service order of networks And diagnostics.
Connecting to the network
- Click on the Wi-Fi icon in the menu bar (upper right corner).
- Select a network from the list. If it is not there, click
Other networks...and enterSSIDmanually. - Enter your password and click
Connect.
If macOS ignores Wi-Fi in favor of Ethernet
IN macOS network priority is configured in System Preferences → Network:
- Open
System Preferences → Network. - In the left menu, select
Wi-Fi, then click the gear →Set service order.... - Drag and drop
Wi-Fito the first position on the list.
If the Internet does not work after connecting:
- 🔄 Reboot your router and MacBook.
- 🛠️ Reset network settings:
System Preferences → Network → Wi-Fi → Advanced → Reset. - 📡 Check your router's Wi-Fi channel: MacBook Channels older than 2015 may not be supported
160 MHzin standard802.11ac.
Switching to Wi-Fi in Linux (Ubuntu/Debian)
IN Linux The process depends on the network manager used - NetworkManager (graphical interface) or netplan/systemd-networkd (console). Let's consider both options.
Method 1: Via NetworkManager (GUI)
- Click on the network icon in the upper right corner (next to the battery).
- Select
Wi-Fi is not connected→Select network. - Find your network, enter the password and connect.
Method 2: Via terminal (if there is no GUI)
Use the command nmcli:
# View available networksnmcli dev wifi list
Connect to the network (replace SSID and PASSWORD)
nmcli dev wifi connect "NETWORK_NAME" password "PASSWORD"
If there is no internet after connecting, check:
- 🔌 Interface status:
ip a(must be an IP address in your network range, for example192.168.1.x). - 🌐 Routes:
ip route(there must be a recorddefault via 192.168.1.1). - 🔒 DNS:
cat /etc/resolv.conf(there must be DNS addresses, for example8.8.8.8).
If nmcli can't find any networks, please refresh the list:
nmcli dev wifi rescan
Solving the "unmanaged" device problem in Linux
If nmcli shows that the Wi-Fi adapter is in a state unmanaged, execute:
1. Open the file /etc/NetworkManager/NetworkManager.conf.
2. Find the line [ifupdown] and add below it:
managed=true
3. Restart the service:
sudo systemctl restart NetworkManager
Checking and updating Wi-Fi drivers
If the laptop does not see the network at all or connects, but the Internet does not work, the problem may be in driversThis is especially true for Windows after updates or for Linux on new laptop models.
How to check a driver in Windows
- Open
device Manager(Win + X → Device Manager). - Expand the branch
Network adapters. - Find the device with the names
Wireless,Wi-Fior802.11(For example, Intel Wi-Fi 6 AX200 or Qualcomm Atheros QCA61x4). - If there is an exclamation mark next to the device, right-click →
Update driver.
For automatic updates, use:
- 🔄 Windows Update:
Settings → Windows Update → Check for updates. - 🖥️ Manufacturer's website: Download the driver for your laptop model (for example, from the website ASUS, Lenovo or Dell).
- 🛠️ Specialized utilities: For adapters Intel — Intel Driver & Support Assistant, For Realtek - package from the official website.
Updating drivers in Linux
IN Ubuntu/Debian For most Wi-Fi adapters, drivers are installed automatically through firmwareIf the network is not working:
# Update package listsudo apt update
Install proprietary drivers (if needed)
sudo apt install firmware-iwlwifi # For Intel
sudo apt install firmware-realtek # For Realtek
For adapters Broadcom (found in MacBook and some HP):
sudo apt install firmware-b43-installer
Diagnosing router problems
If your laptop doesn't connect to Wi-Fi, but other devices (phone, tablet) work fine, the problem is in the settings. router. Check these parameters:
| Parameter | Recommended value | How to check |
|---|---|---|
| Wi-Fi mode | 802.11ac (or 802.11n/ac/ax for compatibility) |
In the router's web interface: Wireless Network → Mode |
| Channel | Auto (or manual) 1, 6, 11 for 2.4 GHz) |
Wireless Network → Channel |
| Channel width | 20/40 MHz for 2.4 GHz, 80 MHz for 5 GHz |
Wireless Network → Advanced Settings |
| Security | WPA2-PSK or WPA3-PSK |
Wireless Network → Security |
| Hiding the SSID | Disabled (if enabled, the laptop will not see the network) | Wireless Network → SSID Settings |
How to access router settings:
- Find out the IP address of the router (usually
192.168.1.1or192.168.0.1). - Open your browser, enter the address in the bar and click
Enter. - Enter login/password (by default it is often
admin/adminor indicated on the router sticker).
If Wi-Fi stops working after making changes:
- ⚡ Reset the router to factory settings (button
Resetfor 10 seconds). - 📡 Check if filtering by is enabled
MAC address(in the router settings →Wireless Network → MAC Filter). - 🔄 Update your router firmware (section
System → Software Update).
Common mistakes and their solutions
Let's look at typical scenarios when switching to Wi-Fi doesn't go as planned.
Error: "We couldn't connect to this network" (Windows)
Reasons and solutions:
- 🔑 Incorrect password: Make sure you enter the password for your Wi-Fi, and not for your provider's personal account.
- 📶 Weak signal: Bring the laptop closer to the router or check the antennas on the adapter (relevant for PCIe Wi-Fi cards).
- 🔧 IP conflict: Manually set the IP address in your network range (e.g.
192.168.1.100with a mask255.255.255.0).
Error: Wi-Fi connects, but there is no internet (all OS)
Diagnostics:
- Check if the Internet works on other devices (phone, tablet).
- If not, reboot the router.
- If yes, run it in the terminal (Windows:
cmd, Linux/macOS:Terminal):ping 8.8.8.8If there is a ping, but the sites do not open, the problem is with
DNS. Write it manually8.8.8.8And8.8.4.4(DNS Google).
Error: Laptop does not detect 5 GHz networks
Possible reasons:
- 📡 The router is configured only for
2.4 GHz(check in your router settings). - 🖥️ The laptop's Wi-Fi adapter does not support it.
5 GHz(valid for older models before 2015). - 🚫 The router mode is disabled
802.11a/n/acfor the 5 GHz range.
How do you know if your laptop supports 5GHz?
In Windows
1. Open Command line.
2. Perform:
netsh wlan show drivers
3. Find the line Supported radio typesIf there is. 802.11a or 802.11ac — 5 GHz supported.
FAQ: Answers to frequently asked questions
Is it possible to use Wi-Fi and Ethernet at the same time?
Yes, but traffic will only go through one connection (priority). Windows can be customized channel merging through Bridge (V Control Panel → Network Connections), but this requires manual configuration and isn't always stable. For most tasks, a single active connection is sufficient.
Why did the speed drop 10 times after switching to Wi-Fi?
Possible reasons:
- You are connected to the network
2.4 GHzinstead of5 GHz(maximum speed 2.4 GHz - ~150 Mbps versus ~1 Gbps at 5 GHz). - Compatibility mode is enabled in the router.
802.11b/g/n, which limits the speed. - The laptop is located far from the router, or there are many obstacles in the way (walls, furniture).
- The Wi-Fi adapter driver is out of date or is running in power saving mode.
Solution: Connect to the network 5 GHz, update your drivers and check your router settings.
How to restore Ethernet if Wi-Fi is unstable?
Simply plug the cable back in. If the system doesn't switch automatically:
- Turn off Wi-Fi manually (via the network icon or
device Manager). - IN Windows perform in
cmd:ipconfig /releaseipconfig /renew - IN Linux restart
NetworkManager:sudo systemctl restart NetworkManager
Do I need to turn off Ethernet before connecting to Wi-Fi?
Not required, but recommended. If the cable remains connected, the system can continue to use it for internet, ignoring Wi-Fi. Physically disconnecting the cable ensures that traffic goes through the wireless network. The exception is if you're configuring backup connection (for example, Wi-Fi as a backup channel when the cable is broken).
Can switching to Wi-Fi affect security?
Yes, but only if:
- You are connecting to public network (in a cafe, airport) without
VPN. - The router uses an outdated protocol.
WEPorWPA(instead ofWPA2/WPA3). - Disabled
firewallor antivirus.
Recommendations:
- Use
WPA3(orWPA2IfWPA3(not supported). - Turn it off
WPSin the router settings (this is a vulnerable protocol). - For public networks use
VPN(For example, ProtonVPN or Windscribe).
⚠️ AttentionRouter settings (especially firmware and Wi-Fi standards) may vary depending on the model and software version. If you lose internet after changing the settings, reset the router to factory settings (press the button). Reset) and configure it again.
⚠️ Attention: On laptops with Linux some Wi-Fi adapters (eg Broadcom BCM43xx) require the installation of proprietary drivers. Without them, the network may be unstable or even unavailable. Check your adapter's compatibility on the manufacturer's website.