How to connect to home Wi-Fi from a laptop: instructions with pictures and tips

Connecting a laptop to your home Wi-Fi seems like a simple task—until you encounter errors like “No internet connection” or “Unable to connect to this network.” Even if you’re not new to this, new versions Windows 11, updates macOS Sonoma or features Linux distributions can cause confusion. In this article, we'll cover all current connection methods—from basic password entry to manual configuration. IP addresses and solutions to problems with hidden networks.

We will pay special attention to typical errors: why the laptop “sees” the network, but does not connect, how to bypass router restrictions MAC addresses, and what to do if you forgot your Wi-Fi password. At the end, you'll find FAQ with answers to frequently asked questions and a table of laptop compatibility with modern standards Wi-Fi 6/6E.

📊 What operating system do you use?
Windows 10/11
macOS
Linux
ChromeOS
Other

1. Preparation: What to check before connecting

Before attempting to connect to Wi-Fi, make sure the problem isn't rooted in basic issues. Start by checking router:

  • 🔌 Nutrition: The indicators on the router body should be steadily lit (not flashing red). If the light Wi-Fi goes out - press the wireless network power button (usually with an antenna icon).
  • 📡 Opening hours: on some models (TP-Link Archer AX55, ASUS RT-AX86U) there is a switch 2.4G/5G. Make sure it is not in position Off.
  • 🔄 Reboot: If the network was previously working but is now unavailable, unplug the router for 30 seconds and then plug it back in. This will reset the DHCP cache.

Next, check laptop:

  • ✈️ Airplane Mode: V Windows click Win + A and make sure the mode is disabled. macOS — look in the upper right corner (airplane icon).
  • 🔧 Wi-Fi adapter: V Device Manager (Windows) or System information (macOS) check that the adapter is turned on and is not marked with a yellow exclamation mark.
⚠️ Attention: If you're connecting to a public network (such as a cafe or hotel), you may need to log in through your browser. In this case, the login page will open automatically after connecting.

2. Standard connection via Windows 10/11

In most cases, connecting to Wi-Fi in Windows It comes down to a few clicks. Here are the step-by-step instructions:

  1. Open the list of networks: click on the icon Wi-Fi in the lower right corner of the taskbar (next to the clock). If there is no icon, click Win + A.
  2. Select network: Find the name of your network in the list (SSID). If it is not there, check if Wi-Fi is turned on on your laptop (key F2, F12 or a combination Fn + F2 (depending on the model).
  3. Enter password: After selecting the network, a password entry field will appear. Make sure the letter case matches (password Password And password - different!).
  4. Connect: click NextIf the password is correct, the message will appear after a few seconds. Connected.

If the internet doesn't work after connecting, but there's an exclamation mark next to the Wi-Fi icon, try:

  • 🔄 Restart your laptop.
  • 📡 Specify manually DNS: go to Settings → Network & Internet → Wi-Fi → Configure adapter settings, find your connection, right-click → Properties → Internet Protocol Version 4 (TCP/IPv4) → specify DNS 8.8.8.8 (Google) or 1.1.1.1 (Cloudflare).

The Wi-Fi icon is active (not crossed out)

The network is visible in the list of available ones.

The password was entered correctly (check Caps Lock)

After connecting there is no exclamation mark-->

⚠️ Attention: On some laptops (Lenovo Legion, HP Omen) There is a separate Wi-Fi disable button on the case - check its position.

3. Connecting on macOS (including Sonoma and Ventura)

On MacBook The process for connecting to Wi-Fi is slightly different, but no less intuitive. Follow these steps:

  1. Activate Wi-Fi: click on the icon Wi-Fi in the menu bar (upper right corner). If it's not there, go to System Preferences → Network and turn on Wi-Fi.
  2. Select network: Find yours in the drop-down list SSIDIf there is no network, press Refresh the list of networks.
  3. Enter password: After selecting the network, a window with a password field will appear. macOS Sonoma can be used Touch ID for autofill if the password is saved in the keychain.
  4. Confirm: click ConnectIf the password is correct, the Wi-Fi icon will turn black (in older versions, it will be gray with check marks).

If macOS stubbornly refuses to connect, try:

  • 🔄 Forget network: V System Preferences → Wi-Fi Find your network, click on the three dots → Forget this network, then reconnect.
  • 🛠️ Reset network settings: open Terminal and enter:
    sudo ifconfig en0 down && sudo ifconfig en0 up

    (you will need to enter the administrator password).

On MacBook Pro/Air with a chip M1/M2 there may be a problem connecting to networks Wi-Fi 6E (6 GHz). In this case, temporarily switch the router to the mode Wi-Fi 6 (5 GHz) through its web interface.

4. Connecting to Linux (Ubuntu, Mint, Fedora, etc.)

IN Linux The connection process depends on the desktop environment you are using (GNOME, KDE, XFCE). Let's consider a universal method through NetworkManager (works on most distributions):

  1. Open network settings: Click the Wi-Fi icon in the taskbar (usually in the upper right corner). If there is no icon, launch nm-applet in the terminal.
  2. Select network: Find yours in the list SSIDIf there is no network, make sure that the Wi-Fi adapter is not disabled (rfkill list in the terminal).
  3. Enter password: After selecting the network, a window with a password field will appear. In some distributions (for example, Kali Linux) you may need to specify the security type (WPA2-PSK or WPA3-PSK).

If the GUI doesn't work, connect via terminal:

nmcli dev wifi connect "NETWORK_NAME" password "PASSWORD"

To check the connection, enter:

ping -c 4 8.8.8.8

If there is a ping, but the sites do not open, the problem is DNS. Corrected by the command:

sudo resolvectl dns wlan0 8.8.8.8

(replace wlan0 on your interface, you can find out with the command ip a).

What to do if Linux doesn't see the Wi-Fi adapter?

If the team lspci | grep -i wireless or lsusb If your adapter isn't showing up, it's likely the driver is missing. For most adapters, Intel And Broadcom Installing the package will help firmware-iwlwifi (Debian/Ubuntu) or broadcom-wl (Arch Linux).

5. Connect to a hidden Wi-Fi network

Hidden Networks (hidden SSID) don't broadcast their name, so connecting to them using the standard method isn't possible. Here's how to do it on different operating systems:

operating system Instructions
Windows 10/11
  1. Open Settings → Network and Internet → Wi-Fi.
  2. Click Manage known networks → Add new network.
  3. Enter the network name (SSID), select the security type (WPA2-Personal) and enter the password.
macOS
  1. Open System Preferences → Wi-Fi.
  2. Click Other networks...Other....
  3. Enter SSID, select the security type and password.
Linux (NetworkManager)
nmcli dev wifi connect "NETWORK_NAME" password "PASSWORD" hidden yes

If you don't know SSID hidden network, it can be found out:

  • 📱 Via another device (smartphone, tablet) already connected to this network - the name will be displayed in the Wi-Fi settings.
  • 🖥️ Via the router's web interface (usually at 192.168.0.1 or 192.168.1.1, login/password — admin/admin or indicated on the router sticker).
⚠️ Attention: Hidden networks do not provide additional security! SSID It's still transmitted in the clear when connecting. For protection, it's best to use WPA3 and a complex password.

6. Solving common errors

Even if you've done everything correctly, errors can still occur. Let's look at the most common ones:

Error: "We couldn't connect to this network" (Windows)

Reasons and solutions:

  • 🔑 Incorrect password: Check the letter case and symbols. If the password was copied, enter it manually (sometimes hidden characters are copied).
  • 📡 Incompatible router settings: Go to the router's web interface and check:
    • Security type: must be WPA2-PSK or WPA3-PSK (Not WEP!).
    • Channel width: for 2.4 GHz select 20 MHz, For 5 GHz40 MHz or 80 MHz.
  • 🔄 Reset network settings: V Windows 11 go to Settings → Network & Internet → Advanced network settings → Network reset.

Error: "Wi-Fi is connected, but there is no internet access."

Possible reasons:

  • 🌐 Problems with the provider: Check if the internet works on other devices.
  • 🔢 Invalid IP or DNS: V Network and Control Center (Windows) or System settings (macOS) set automatic IP and DNS acquisition.
  • 🔒 MAC address blocking: If your router is configured to distribute only to certain devices, add MAC address your laptop to the white list (you can find it with the command ipconfig /all V Windows or ifconfig V Linux/macOS).

Error: "Network out of range" (on MacBook)

This error often appears on MacBook with chips M1/M2 when trying to connect to the network 5 GHzSolutions:

  • 🔄 Restart your router and laptop.
  • 📡 Change the channel in your router settings 5 GHz from automatic to fixed (for example, 36 or 48).
  • 🔧 Turn off the feature 802.11r (Fast Roaming) in the router - it may conflict with macOS.

7. How to connect without a password (if you forgot it)

If you've forgotten your Wi-Fi password but have access to the router or another device already connected to the network, there are several ways to restore access:

Method 1: View the password on the connected device

  • 🖥️ Windows:
    1. Open Settings → Network and Internet → Wi-Fi.
    2. Click Managing known networks, select your network → Properties.
    3. Scroll to Network password and press Show symbols.
  • 📱 Android: required root rights or an app like WiFi Password Viewer (does not work on all devices).
  • 🍎 macOS: open A bunch of keys (through Spotlight), find the network name and double-click → check the box Show password.
  • Method 2: Recover your password via your router

    1. Connect your laptop to the router via cable (LAN).
    2. Open your browser and enter the router's address (usually 192.168.0.1 or 192.168.1.1).
    3. Enter your login and password (default - admin/admin, if you haven't changed it).
    4. Go to the section Wi-Fi (or Wireless) → Security (Security). There will be a field. Password (Password or Pre-Shared Key).
    ⚠️ Attention: If you can't log into your router (forgot your login or password), you'll need to reset it to factory settings. To do this, press and hold the button Reset Press and hold the reset button on the back of the router for 10–15 seconds. After the reset, the network name and password will be the default ones (indicated on the router's sticker).

    FAQ: Frequently asked questions about connecting to Wi-Fi

    My laptop can't see the 5 GHz network. What should I do?

    Possible reasons:

    • Your Wi-Fi adapter does not support 5 GHz (valid for older laptops before 2015).
    • The range is disabled in the router 5 GHz (check the settings section Wireless → Basic Settings).
    • On Windows mode disabled 802.11a (included in Device Manager → Adapter Properties → Advanced).

    Solution: Switch to the network 2.4 GHz or update the adapter driver.

    Why is Wi-Fi slow on my laptop but fine on my phone?

    Reasons:

    • The laptop is connected to a congested channel. 2.4 GHz (change the channel in the router to 1, 6 or 11).
    • The Wi-Fi adapter driver is out of date (update it via device Manager).
    • The laptop is far from the router or there is a wall between them (use repeater or Mesh system).
    • It's turned on in the router QoS, which limits the speed for laptops (disable it in the settings).
    Is it possible to connect to Wi-Fi without a password if you know the MAC address?

    No, knowledge MAC addresses by itself does not allow you to connect to a secure network. However, if the router is configured to filter by MAC, you can add your laptop's address to the whitelist (but you will still need a password).

    How to connect to Wi-Fi in a public place (hotel, airport)?

    Instructions:

    1. Connect to the network (usually it is passwordless or has a simple password like 12345678).
    2. Open your browser – the authorization page should appear automatically.
    3. Enter your details (room number, last name, code from SMS, etc.).
    4. If the page does not open, enter any address in the browser (for example, google.com).

    If authorization fails, please check:

    • Is VPN disabled (some networks block VPN connections).
    • Does the internet work on other devices?
    Why doesn't my laptop connect to Wi-Fi after updating Windows?

    A common problem after major updates (Windows 11 23H2 etc.). Solutions:

    • Uninstall your Wi-Fi adapter driver Device Manager and reboot your laptop - the system will install it again.
    • Download the latest driver from the laptop manufacturer's website (Dell, HP, Lenovo).
    • Rollback update: Settings → Windows Update → Update history → Uninstall updates.