Setting up Wi-Fi on a laptop: from connection to troubleshooting

Without a stable Wi-Fi connection, a modern laptop loses half its capabilities. It doesn't matter whether you're working remotely, watching movies, or 4K Whether you're simply checking your email, a good signal is always important. However, even with the most modern equipment, users encounter problems: from the simple absence of a network in the list to sudden connection drops. This article will help you figure out how to set it up correctly. Wi-Fi on a laptop Regardless of the operating system, avoid common errors and optimize network performance.

We will cover not only the basic connection steps, but also advanced settings - from choosing a frequency range (2.4 GHz or 5 GHz) before configuring the adapter parameters. We will pay special attention solving common problems, such as limited network access or low speed. And for those who value security, we offer recommendations for protecting your home network from unauthorized access.

If you've never set up Wi-Fi yourself before, don't worry. The instructions are tailored for beginners, with step-by-step screenshots (interface descriptions) and explanations for each step. Experienced users will find useful life hacks here, such as how to prioritize networks or set up roaming between multiple access points.

1. Preparing for setup: what to check before connecting

Before you begin setup, make sure all hardware and software components are ready to use. Start by checking Wi-Fi adapter - without it, the laptop simply won't be able to detect networks. In most modern models (Lenovo ThinkPad, HP Pavilion, Dell XPS) the adapter is built-in, but some budget or older devices may require an external USB module.

To find out if your laptop has Wi-Fi, follow these steps:

  • 🔍 On your keyboard, find the key with the antenna icon (usually F2, F12 or combination with Fn). Press it - if the indicator lights up, the adapter is activated.
  • 🖥️ In Windows: open device Manager (keys Win + X → "Device Manager") and find the "Network adapters" section. Look for lines mentioning Wireless, Wi-Fi or 802.11.
  • 🍎 In macOS: click on the icon Wi-Fi In the menu bar, select "Open Network Preferences" and then "Advanced." This displays all available interfaces.

If the adapter is not listed, it may be disabled in BIOS/UEFI or requires installation of drivers. On laptops with Intel AX200 or Qualcomm Atheros Adapters can sometimes be helped by updating drivers through the manufacturer's official website, rather than through Windows Update.

⚠️ Note: On some corporate laptops (e.g. Dell Latitude or HP EliteBook) Wi-Fi may be blocked by security policies. In this case, you will need access to settings. BIOS or administrator assistance.
📊 What OS do you use on your laptop?
Windows 10/11
macOS
Linux
Other

2. Connecting to Wi-Fi in Windows 10 and 11

Connection process in Windows It's intuitive, but there are some nuances that affect stability. Let's look at the step-by-step instructions:

  1. Wi-Fi activation:
    • 📶 Click the network icon in the lower right corner of the taskbar (next to the clock).
    • 🔄 If there is no icon, check if the adapter is turned on Network and Control Center (Win + R → enter ncpa.cpl → Enter).
  2. Network selection:

    Find your network in the list of available networks. If it's not there:

    • 🔍 Make sure your router is turned on and broadcasting its SSID (sometimes hidden in the settings).
    • 📡 Try rebooting your router (turn off the power for 30 seconds).
  • Authorization:

    Click on the network name → enter the password. If you see the "Unable to connect" error, check:

    • 🔑 The password is correct (case-sensitive!).
    • 🛡️ Security type (must match the router settings): WPA2-PSK or WPA3).
    • After successful connection Windows The system will automatically save the network and connect to it the next time you turn it on. However, sometimes the system "forgets" the password or connects to a weaker signal. To avoid this:

      Delete old networks in Settings → Network & Internet → Wi-Fi → Manage known networks

      Disable the "Connect automatically" option for unnecessary networks

      Enable the "Connect even if the network isn't broadcasting its name (SSID)" option for hidden networks

      Update adapter driver via device Manager-->

      If your laptop connects but the internet doesn't work, check your settings. IP And DNS:

      1. Open Settings → Network & Internet → Wi-Fi → Adapter Settings.
      2. Right-click on your network → “Properties” → “Internet Protocol Version 4 (TCP/IPv4)”.
      3. Make sure that "Obtain an IP address automatically" and "Obtain DNS server address automatically" are selected.
    ⚠️ Note: Office networks or hotels may use captive portal authentication. After connecting to Wi-Fi, open your browser—a window should appear asking you to enter your login/password or accept the terms and conditions.

    3. Setting up Wi-Fi on macOS (Ventura, Sonoma, and later)

    In the ecosystem Apple The connection process is as simple as possible, but there are some specific points, especially if you are using MacBook Pro/Air with a chip M1/M2Here's how to set up the network:

    1. Click on the icon Wi-Fi in the menu bar (upper right corner). If the icon isn't there, enable it in System Preferences → Network → Wi-Fi → Show Wi-Fi status in menu bar.

    2. Select your network from the list. If it is hidden, click “Join another network” and enter SSID manually.

    3. Enter the password. macOS Sonoma support appeared WPA3, but some older routers may not support this standard. In this case, select WPA2/WPA3 Transition Mode.

    For advanced users, additional options are available:

    • 📊 Network prioritization: “System Preferences” → “Network” → “Wi-Fi” → “Advanced” → drag the networks into the desired order.
    • 🔄 Diagnostics: Hold Option (Alt) and click on the Wi-Fi icon → “Open wireless network diagnostics”.
    • 🛡️ Safety: In the same "Advanced" menu, you can enable the "Use random MAC addresses" option to protect your privacy.
    • If MacBook does not connect to the network 5 GHz, check your router settings: some models (TP-Link Archer C6, ASUS RT-AX55) disable support by default 802.11ac For compatibility with older devices, enable it in the router's web interface.

      4. Connecting to Wi-Fi in Linux (Ubuntu, Mint, Fedora)

      Setting up Wi-Fi in Linux depends on the distribution and the desktop environment used (GNOME, KDE, XFCE). Let's consider a universal method via the terminal and graphical interface.

      Method 1: Graphical interface (GNOME/KDE)

      1. Click on the network icon in the taskbar (usually in the upper right corner).
      2. Select your network from the list and enter the password.
      3. If there is no network, check if the adapter is turned on: Ubuntu This can be done in “Settings” → “Wi-Fi”.

      Method 2: Terminal (for all distributions)

      Use the utility nmcli (NetworkManager):

      # View available networks
      

      nmcli dev wifi list

      Connect to the network (replace SSID and password)

      nmcli dev wifi connect "Network_Name" password "password"

      If NetworkManager not installed (for example, in Arch Linux), use wpa_supplicant:

      # Create a network config
      

      wpa_passphrase "NetworkName" "Password" | sudo tee /etc/wpa_supplicant.conf

      Connect

      sudo wpa_supplicant -B -i wlan0 -c /etc/wpa_supplicant.conf

      sudo dhclient wlan0

      Common problems in Linux:

      • 🐧 Adapter missing: Check the command output ip a or iwconfig. If the interface wlan0 No, perhaps the driver is not installed (for example, for Broadcom or Realtek chips).
      • 🔌 No IP address: Launch sudo dhclient wlan0 or check the settings DHCP in the router.
      ⚠️ Note: In some distributions (for example, Kali Linux) Network services are disabled by default. Enable them with the command sudo systemctl start NetworkManager.

      5. Optimize Wi-Fi speed and stability

      Even if your laptop is connected to the network, speed may be slow due to interference, incorrect settings, or router limitations. Here's how to improve your connection:

      1. Selecting a frequency range

      Parameter 2.4 GHz 5 GHz
      Range High (passes through walls) Low (sensitive to obstacles)
      Speed Up to 150–300 Mbps Up to 1–2 Gbps (at 802.11ac/ax)
      Interference Many (microwaves, other networks) Few
      Suitable for Watching videos, social networks Games, file downloads, 4K streaming

      How to change the range on a laptop:

      • 🖥️ In Windows: Settings → Network & Internet → Wi-Fi → Manage known networks → select the network → “Properties” → manually specify 2.4 or 5 GHz (if the router broadcasts both).
      • 🍎 In macOS: The range is selected automatically, but can be prioritized 5 GHz in the router settings.

      2. Changing the Wi-Fi channel

      If you have multiple networks in your home, they may interfere with each other. Use utilities to analyze the airwaves:

      • 📊 Windows: NetSpot or WiFi Analyzer (from Microsoft Store).
      • 🐧 Linux: sudo iwlist wlan0 scanning | grep Channel.

      In the router's web interface (192.168.1.1 or 192.168.0.1) select the least loaded channel (for example, 1, 6 or 11 For 2.4 GHz).

      3. Updating adapter drivers

      Outdated drivers are a common cause of slow speed. For Windows:

      1. Open device Manager → "Network adapters".
      2. Right-click on the adapter → “Update driver” → “Search automatically”.
      3. If the update does not help, download the driver from the manufacturer's website (for example, for Intel AX201 or Realtek RTL8821CE).

      6. Solving common problems

      Even after proper setup, glitches may still occur. Let's look at common errors and how to fix them.

      Issue 1: "No connections available" or network not showing

      • 🔌 Check if Wi-Fi is enabled on your laptop (hardware switch or Fn + key).
      • 🔄 Restart your router and laptop.
      • 🛠️ In Windows Run troubleshooting: right-click on the network icon → "Troubleshoot".
      • 📡 Make sure your router isn't hiding SSID (the "Hide network" option must be disabled in its settings).

      Problem 2: There is a connection, but the Internet does not work

      • 🌐 Check if the internet works on other devices. If not, the problem is with your router or ISP.
      • 🔧 In Windows run the commands in CMD (as administrator):
        ipconfig /release
        

        ipconfig /renew

        ipconfig /flushdns

      • 🛡️ Check your settings DNSTry using Google's public DNS (8.8.8.8) or Cloudflare (1.1.1.1).

      Problem 3: Constant connection drops

      • 📶 Check your signal strength. If it's weak (1-2 bars), move closer to the router or use repeater.
      • 🔋 Disable power saving mode for the adapter:
        1. Open device Manager → "Network adapters".
        2. Right-click on the adapter → “Properties” → “Power Management” tab.
        3. Uncheck "Allow the computer to turn off this device to save power."
    • 🔄 Update your router's firmware (in its web interface, in the "Administration" or "Update" section).

    Problem 4: Low speed on 5 GHz

    Why might the speed on 5 GHz be lower than on 2.4 GHz?

    This happens if:

    - The laptop and the router are too far apart (5 GHz passes through walls worse).

    - A narrow channel width is selected in the router settings (for example, 20 MHz instead of 40 or 80 MHz).

    - The laptop adapter does not support MU-MIMO or 160 MHz (check model specifications).

    7. Security: How to protect your connection

    Open or poorly secured Wi-Fi networks are vulnerable to attacks such as MITM (man-in-the-middle) or connecting third-party devices. Follow these recommendations:

    1. Setting up the router

    • 🔐 Use WPA3 (or WPA2-PSK, If WPA3 not supported). Avoid outdated WEP.
    • 🔑 Set a complex password (at least 12 characters, including numbers and special characters). Example: K7#pL9!mQ2*x.
    • 📛 Change the default network name (SSID), so that it does not give out the router model (for example, not TP-Link_1234, A MyHomeWiFi).
    • 🚫 Turn it off WPS - This protocol is vulnerable to brute force attacks.

    2. Setting up the laptop

    • 🛡️ In Windows Disable automatic connection to public networks: Settings → Network & Internet → Wi-Fi → Manage known networks → delete unnecessary ones.
    • 🔄 In macOS Enable the "Use random MAC addresses" option (see section 3).
    • 🔒 Use VPN (For example, ProtonVPN or Windscribe) when connecting to public networks.

    3. Additional measures

    • 📡 Set up MAC filtering in the router so that only authorized devices can connect.
    • 🕒 Set a Wi-Fi schedule (for example, turning off at night) in your router settings.
    • 🔍 Regularly check connected devices in the router's web interface (section DHCP Clients or "Connected devices").
    ⚠️ Warning: If you use guest network On your router, make sure it's isolated from the main network. This will prevent guests from accessing your local devices (printers, NAS, etc.).

    8. Advanced settings: for experienced users

    If the basic settings don't produce the desired results, you can optimize Wi-Fi performance at a deeper level.

    1. Traffic prioritization (QoS)

    In the router settings (ASUS, TP-Link, Keenetic) find the section QoS (Quality of Service). Here you can:

    • 🎮 Prioritize traffic for games or video calls.
    • 📥 Limit the speed for certain devices (for example, for children's smartphones).
    • 📤 Block torrents or streaming services during business hours.

    2. Setting up MTU And DNS

    If the pages load slowly, but the test speed is high, the problem may be in MTU (maximum packet size). The optimal value for most networks is 1500, but sometimes it is necessary to reduce it to 1472:

    # On Windows (CMD from admin)
    

    netsh interface ipv4 set subinterface "Connection_Name" mtu=1472 store=persistent

    On Linux

    sudo ifconfig wlan0 mtu 1472

    To speed up website loading, use alternatives DNS:

    • 🌍 Google DNS: 8.8.8.8 And 8.8.4.4.
    • ☁️ Cloudflare: 1.1.1.1 And 1.0.0.1.
    • 🛡️ AdGuard DNS: 94.140.14.14 (blocks ads).

    3. Roaming between multiple access points

    If you have a large home or office, you can set up seamless roaming between multiple routers (or Mesh system How TP-Link Deco). To do this:

    • 📡 All points must broadcast the same network (SSID and password).
    • 🔄 Use different channels for adjacent points (eg. 1, 6, 11 For 2.4 GHz).
    • 📶 Turn on 802.11r (Fast Transition) in the router settings for fast switching.

    4. Network monitoring

    To analyze traffic and identify problems, use the following utilities:

    • 🖥️ Windows: Wireshark, GlassWire.
    • 🐧 Linux: iftop, nload, tcpdump.
    • 🍎 macOS: Little Snitch (paid), nettop (built-in).

    FAQ: Frequently asked questions about setting up Wi-Fi

    🔹 Why can't my laptop detect the 5 GHz network?

    This may be due to:

    • An outdated Wi-Fi adapter (check support 802.11ac in the specifications).
    • Disabled range in the router settings (turn on 5 GHz in the web interface).
    • Regional restrictions (some countries use non-standard channels).

    Solution: Update the adapter driver and check the router settings (for example, in ASUS RT-AX88U needs to be turned on Wireless Mode → 802.11a/n/ac/ax).

    🔹 How to connect to a hidden Wi-Fi network?

    The hidden network does not broadcast its SSID, but you can connect to it manually:

    • IN Windows: Settings → Network & Internet → Wi-Fi → Hidden network → enter SSID and password.
    • IN macOS: Click on the Wi-Fi icon → “Join another network”.
    • IN Linux: nmcli dev wifi connect "SSID" password "password" hidden yes.
    🔹 Can I use my laptop as a hotspot?

    Yes, that's what it's called SoftAP mode (Software Access Point). Instructions:

    • 🖥️ Windows: Settings → Network & Internet → Mobile Hotspot → Select the connection to share.
    • 🍎 macOS: “System Preferences” → “Sharing” → turn on “Internet Sharing” via Wi-Fi.
    • 🐧 Linux: sudo create_ap wlan0 eth0 MyHotspot 12345678 (requires utility create_ap).
    • Limitations: The speed will be lower than with a regular router, and not all adapters support this mode.

    🔹 Why is my Wi-Fi speed slower than my cable connection?

    This is normal, as wireless connections are subject to interference. The main causes are:

    • 📶 Distance to the router and obstacles (walls, furniture).
    • 🔄 Channel overload with other devices.
    • 🛠️ Adapter limitations (e.g. Realtek RTL8188EE supports maximum 150 Mbps).
    • 🔌 Router settings (channel width, standard 802.11n instead of