How to connect your computer to the internet via Wi-Fi at home: 5 methods + troubleshooting tips

Connecting your computer to Wi-Fi at home seems like a simple task—until you're faced with a missing built-in adapter, a forgotten network password, or sudden errors like "No internet access." This guide will help you understand all the nuances, from choosing the right hardware to fine-tuning the connection on different operating systems. We'll cover not only standard scenarios for Windows laptops and PCs, but also connection specifics on macOS And Linux, as well as rare cases when the router “does not see” the device or vice versa.

It is important to understand that the connection process depends on three key factors: your computer type (laptop with built-in Wi-Fi or desktop PC), operating system version (Windows 10/11, macOS Ventura/Sonoma, Linux distribution) and router model (standards support 802.11ac/ax, dual-band mode). For example, owners of older PCs without a Wi-Fi adapter will have to purchase an external device, while users macOS — figure out the settings Keychain to save passwords. This article provides step-by-step instructions for each case, as well as a hardware compatibility chart and troubleshooting tips for common errors.

1. Check if your computer has a Wi-Fi adapter

Before attempting to connect to the network, make sure your computer is capable of Wi-Fi. 90% of laptops have a built-in adapter, but this is rare for desktop PCs, which often require an external device.

To check if the adapter is available Windows:

  1. Click Win + R, enter devmgmt.msc and press Enter.
  2. IN Device Manager find the section Network adapters.
  3. Look for devices with names like Wireless, Wi-Fi, 802.11 or models from Intel (AX200), Qualcomm (Atheros), Broadcom.

On macOS the check is even simpler:

  • 📋 Click on the icon Wi-Fi in the menu bar (upper right corner).
  • 🔍 If there is no icon, go to System Preferences → Network and check for the presence of the interface Wi-Fi.
  • 💻 On models Mac Pro or Mac Mini Without a built-in adapter, an external module is required.
⚠️ Please note: On some PC motherboards (e.g. ASUS ROG Strix or MSI MEG) There are built-in Wi-Fi modules, but they are often disabled in the BIOS. Before purchasing an external adapter, check the settings. Advanced → Onboard Devices Configuration.

If you don't have an adapter, you'll have to purchase one. Popular options:

Adapter type Models (examples) Speed Price (2026)
USB (external) TP-Link Archer T3U, ASUS USB-AX56 Up to 1300 Mbps 1500–3500 ₽
PCIe (internal) Intel Wi-Fi 6E AX210, Gigabyte GC-WBAX211 Up to 2400 Mbps 2500–5000 ₽
M.2 (for laptops) Intel AX200NGW, Broadcom BCM94360CD Up to 2400 Mbps 3000–7000 ₽
📊 What type of Wi-Fi adapter are you using?
Built into the laptop
USB adapter
PCIe card
M.2 module
I haven't connected it yet.

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

The standard connection method via the taskbar works 95% of the time, but sometimes additional settings are required—especially if the network is hidden or enterprise authentication is used (for example, in office routers).

Basic method:

  1. Click on the icon Wi-Fi in the lower right corner of the taskbar.
  2. Select your network from the list.
  3. Enter your password and click Next.
  4. Confirm the connection if prompted to share devices on the network.

If the network is not listed:

  • 🔄 Make sure that the SSID broadcast mode is enabled on the router (in the settings) Wireless → Basic Settings).
  • 📡 Check that the adapter is turned on - some laptops have a physical switch or key combination (e.g. Fn + F2 on Lenovo).
  • 🛠️ Update your adapter driver via device Manager (right click on the adapter → Update driver).

For hidden networks (not broadcasting SSID):

  1. Go to Settings → Network and Internet → Wi-Fi.
  2. Click Manage known networks → Add new network.
  3. Enter the network name (SSID), security type (WPA2-Personal or WPA3-Personal) and password.

Has the physical Wi-Fi switch on the laptop been checked?|Are the network adapter drivers updated?|Is the SSID broadcast mode enabled on the router?|Does the security standard (WPA2/WPA3) match the router settings?-->

⚠️ Attention: If after connecting the device the status “No Internet access” appears, but other devices work fine, the problem may be in the settings IPv4. Try manually entering DNS (for example, 8.8.8.8 And 8.8.4.4 from Google) in the connection properties.

3. Connection Features on macOS (Ventura, Sonoma, and later)

On computers Apple The Wi-Fi connection process is as simple as possible, but there are nuances with saving passwords, network priorities, and troubleshooting. For example, macOS can automatically connect to "familiar" networks with a weak signal, ignoring stronger ones.

Standard connection:

  1. Click on the icon Wi-Fi in the menu bar.
  2. Select a network from the list.
  3. Enter your password and click Connect.

If macOS doesn't remember your password:

  • 🔑 Open Keychain Access app (through Spotlight or folder Utilities).
  • 🔍 Find your network in the list and delete the entry.
  • 🔄 Reconnect—the system will prompt you to save your password.

For advanced settings (for example, network priority):

  1. Go to System Preferences → Network → Wi-Fi → Advanced.
  2. Tab Wi-Fi allows you to change the order of connections to networks (drag and drop networks in the list) Preferred networks).
  3. Tab TCP/IP — for manual settings IP- addresses (rarely required).
sudo ifconfig en0 down && sudo ifconfig en0 up

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

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

In Linux distributions, the connection process depends on the desktop environment you are using (GNOME, KDE, XFCE) and network manager (NetworkManager, Wicd). Most commonly used NetworkManager, which provides a graphical interface.

Method 1: Via a 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.
  3. Enter the password and confirm the connection.

Method 2: Via the terminal (universal)

If the GUI is not available or does not work, use nmcli:

# View available networks

nmcli dev wifi list

Connect to the network (replace SSID and PASSWORD)

nmcli dev wifi connect "Network_Name" password "password"

Common problems on Linux:

  • 🐧 There is no driver for the Wi-Fi adapter (relevant for Broadcom and some Realtek). Solution: Install proprietary drivers via Additional drivers (Ubuntu) or dkms.
  • 🔌 The network connects, but there's no internet access. Check your settings. DNS V /etc/resolv.conf or enter them manually:
sudo nano /etc/resolv.conf

Add the following lines:

nameserver 8.8.8.8

nameserver 8.8.4.4

How to find out the model of a Wi-Fi adapter in Linux?

Run the command lspci | grep -i network for PCI devices or lsusb for USB adapters. For example, the output might contain lines like:

03:00.0 Network controller: Intel Corporation Wi-Fi 6 AX200 (rev 1a)

This will help you choose the right driver.

5. Troubleshooting connection issues

Even with the correct settings, errors can still occur. Below are the most common scenarios and how to resolve them.

Problem Possible cause Solution
The network is not displayed in the list. Hidden SSID, incompatible standard (eg. 802.11ax on the old adapter) Manually add a network or update the adapter driver
The connection "hangs" at the stage of obtaining an IP IP address conflict or DHCP is disabled on the router Reboot the router or enter a static IP in the adapter settings
Slow speed or connection interruptions Channel interference, outdated standard 802.11n, weak signal Change the channel on the router (for example, to 40–48 for 5 GHz), update the router firmware
Error: "The network settings stored on this computer do not match the requirements of this network" Mismatch of security type (eg. WPA3 on the router vs WPA2 on PC) Change the security type on your router or update the adapter driver.

Diagnostics via command line (Windows):

If the GUI doesn't help, use command line:

# View all network interfaces

netsh wlan show interfaces

View available networks

netsh wlan show networks

Connect to the network (if you know the SSID and password)

netsh wlan connect name="Network_Name" ssid="Network_Name" interface="Wi-Fi"

⚠️ Attention: If you've lost Wi-Fi after updating to Windows 11 version 24H2, check your adapter's power-saving settings. In some cases, the system disables the adapter to save battery power—this can be fixed in Device Manager → Network Adapter → Power Management (uncheck "Allow shutdown...").

6. Optimize the connection for stable operation

Even if the connection is established, speed and stability may be poor. Here are some ways to optimize performance:

  • 📶 Selecting a frequency range: If your router supports 5 GHz, use it - there is less interference. However, if you are far away from the router, it is better to switch to 2.4 GHz (passes through walls better).
  • 🔄 Change channel: By default, routers often use congested channels (for example, 6 or 11 in the range 2.4 GHz). Check the channel load using the utility Wi-Fi Analyzer (Android) or NetSpot (Windows/macOS) and select the freest one.
  • 🛡️ Updating the router firmware: Outdated firmware may cause compatibility issues. Update the firmware through the router's web interface (usually at 192.168.1.1 or 192.168.0.1).
  • 🔌 QoS settings: If there are many devices on the network (smart TV, game consoles), turn on Quality of Service in the router settings and assign the computer the highest priority.

An example of setting up QoS on a router TP-Link:

  1. Go to the router's web interface (192.168.1.1).
  2. Go to Additional settings → QoS.
  3. Turn on QoS and select the mode By IP address.
  4. Add your computer's IP address (you can find it out with the command ipconfig in Windows) and set the priority to maximum.

7. Alternative ways to connect your PC to the Internet

If Wi-Fi connection is not possible or unstable, consider alternative options:

  • 🌐 Powerline adapters: Transmit internet signals through electrical wiring. Suitable for homes with thick walls where Wi-Fi coverage is poor. Examples: TP-Link AV1000, Devolo Magic 2.
  • 📡 USB modem: If there is no cable internet, you can use a 4G/5G modem (for example, Huawei E3372 or ZTE MF833V). Speed ​​depends on operator coverage.
  • 🔗 MoCA adapters: They use coaxial cable (from the antenna) to transmit internet. This is especially useful for homes with TV cable wiring.
  • 🖥️ Connecting via another computer: If you have a laptop with Wi-Fi, you can share the Internet with your desktop PC via Ethernet or Wi-Fi Direct (in Windows - Mobile hotspot).

How to share internet from a laptop to a PC via Ethernet:

  1. Connect your laptop to your PC using a cable Ethernet.
  2. On your laptop, go to Settings → Network & Internet → Mobile Hotspot.
  3. In the section Distribution via select Ethernet.
  4. Turn on Allow use of my internet connection.

FAQ: Frequently asked questions about connecting a PC to Wi-Fi

My computer can't see any Wi-Fi networks. What should I do?

First, check if your Wi-Fi adapter is enabled:

  • Your laptop may have a physical switch or a key combination (e.g. Fn + F2).
  • IN Device Manager (Windows) or System information (macOS) Make sure the adapter is not disabled.
  • If the adapter is present but not working, update the driver (download it from the manufacturer's website, not via Windows Update).

If you don’t have an adapter, buy an external one (we recommend TP-Link Archer T3U for a budget option or ASUS USB-AX56 for high speed).

How to connect to Wi-Fi without a password (for example, in a hotel)?

Some public networks use port authentication Once connected, open your browser and accept the terms or enter your login and password on the welcome page. If the page doesn't open automatically:

  1. Connect to the network (even without a password).
  2. Open your browser and try to go to any website (for example, google.com).
  3. You should be redirected to the authentication page.
  4. If there is no redirect, enter the address manually. 1.1.1.1 or neverssl.com.

For networks with WPA2-Enterprise (for example, in universities) additional settings will be required: selection of authentication method (PEAP, TTLS) and certificates.

Why does Wi-Fi work on my phone but not on my computer?

This problem is usually due to one of three reasons:

  1. Incompatibility of standards: Your phone may support Wi-Fi 6 (802.11ax), and the computer is only Wi-Fi 4 (802.11n)Solution: Change the operating mode in the router settings to 802.11n (or 802.11ac, if the adapter supports it).
  2. MAC address blocking: There may be a filter enabled on your router. MAC-addresses. Check the section in the router's web interface Wireless → MAC Filter.
  3. Driver issues: Update the Wi-Fi adapter driver on your computer (especially important for Realtek And Medatek).

Also try forget the network on the computer and reconnect:

  • Windows: Settings → Network & Internet → Wi-Fi → Manage known networks → select the network and press Forget.
  • macOS: Remove the network in System Preferences → Network → Wi-Fi → Advanced.
How to boost Wi-Fi signal for a computer?

If the signal is weak (1-2 bars on the Wi-Fi icon), try the following methods:

  • 📍 Move the router closer to the computer or raise it higher (for example, on a cabinet).
  • 📶 Use a repeater (signal amplifier), for example, TP-Link RE605X or Xiaomi Mi Wi-Fi Range Extender Pro.
  • 🛡️ Change the antennas on your router to more powerful ones (with a gain factor 5–9 dBi).
  • 🔄 Configure your router to operate within the range 5 GHz (if the computer adapter supports it).
  • 🖥️ Buy a Wi-Fi adapter with an external antenna (For example, ASUS PCE-AX58BT for PC).

For a temporary solution, you can create hotspot on a smartphone and connect a computer to it if the mobile Internet speed is sufficient.

Is it possible to connect an old computer (without Wi-Fi) to the Internet wirelessly?

Yes, there are several ways:

  1. USB Wi-Fi adapter: The simplest solution. Even a budget model will do. TP-Link TL-WN725N (about 1000 ₽).
  2. Powerline adapter: If you have a power outlet near your computer and router, you can use adapters. TP-Link AV600 (a pair will cost 3000–4000 ₽).
  3. 3G/4G modem: Connects via USB port. For example, Huawei E3372 (around 2000 ₽). Speed ​​depends on the operator's coverage.
  4. Distribution from a phone: Modern smartphones can distribute the Internet via USB (USB tethering) or Wi-Fi (modem mode).
  5. MoCA or HomePlug: If you have a coaxial cable (from the antenna) in your home, you can use adapters goCoax or Devolo dLAN.

For the oldest computers (with Windows XP or Linux (versions before 2010) you may need to search for drivers for the adapter manually.