Have you ever encountered a situation where you urgently need to know which wireless network your computer is connected to, but the name Wi-Fi Is your device not showing up in the taskbar? Or perhaps you manage multiple access points in your office and want to make sure it's connected to the correct network? This task seems simple, but the solution varies greatly depending on the operating system, driver version, and even the network adapter model.
In this article we will look at all possible methods — from basic (through the graphical interface) to advanced (using the command line and scripts). You will learn how to check the current connection on Windows 10/11, macOS And Linux, as well as what to do if the network name isn't displayed or hidden. We'll pay special attention to diagnosing issues when the computer is connected to the network, but its name isn't detected.
1. Methods for Windows: From the taskbar to the command line
On most computers running Windows name of the current network Wi-Fi It's displayed directly in the notification area (tray). However, if the network icon is hidden or shows generic information (for example, "Connected, no internet access"), you'll have to dig deeper.
Here 4 reliable ways find out the network name on Windows 10/11:
- 🖥️ Via the control panel: Open
Settings → Network and Internet → Wi-FiThe "Connected" section will display the network name and its status. - 📋 Via Network and Sharing Center: Right-click the network icon in the system tray → "Open network & internet settings" → "Wi-Fi" → "Manage known networks." The current network will be marked as "Connected."
- 💻 Via command line: Enter the command
netsh wlan show interfacesand find the lineSSID(network name). - 🔍 Via PowerShell: Do it
(Get-NetAdapter -Physical | Where-Object {$_.MediaType -eq "Native 802.11"} | Get-NetConnectionProfile).Name.
If you use Windows 7 or an older version, the path will be slightly different: Control Panel → Network and Internet → Network and Sharing CenterThere, in the "Connections" section, the active network will be indicated.
2. macOS: Where to find the name of the Wi-Fi network
On computers Apple The process of checking the current connection is as simple as possible. The icon is always displayed in the top panel (menu bar). Wi-Fi, by clicking on which you can see:
- 🔵 Current network (highlighted with a tick).
- 📶 Signal level (number of "sticks" next to the name).
- 🔒 Security type (if the network is password protected).
If the icon is hidden, you can return it via System Preferences → Control Panel → Wi-Fi (check the box "Show Wi-Fi status in menu bar").
For advanced users, a terminal is available. Run the command:
/System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport -I | grep " SSID"
The response will contain a string SSID: NETWORK_NAME.
3. Linux: Universal Commands for All Distributions
IN Linux The verification methods depend on the network manager used (NetworkManager, Wicd, connman) and interface (graphical or console). Here are the universal methods:
- 🐧 Through
nmcli(NetworkManager):nmcli -t -f active,ssid dev wifi | grep '^yes' | cut -d':' -f2The command will display the name of the active network.
- 📡 Through
iwconfig:iwconfig 2>&1 | grep "ESSID:" | awk '{print $4}' | sed 's/ESSID://'Works on most distributions, but may require root privileges.
- 🖥️ Via the graphical interface: Depending on your environment (GNOME, KDE, XFCE), look for the network icon in the taskbar. Ubuntu With GNOME This is the upper right corner.
In distributions without NetworkManager (for example, on servers), the network name can only be found out through low-level utilities like iw or ip, but they require root privileges and knowledge of the network interface name (usually wlan0 or wlp3s0).
What to do if the iwconfig command returns "no wireless extensions"
This means your network adapter isn't recognized by the system as wireless. Possible causes:
- There are no drivers for the Wi-Fi adapter.
- The adapter is disabled by hardware (for example, by a button on the laptop).
- You are connected via cable (Ethernet), not Wi-Fi.
Check the command output lspci | grep -i network or lsusb to identify the adapter.
4. If the network name is not displayed: possible reasons
Sometimes the computer is connected to Wi-Fi, but her name is not determined in any of the ways. Here 5 most common reasons and solutions:
| Cause | How to check | Solution |
|---|---|---|
| Network is hidden (hidden SSID) | Try connecting to the network manually by entering its name. | Check the network name with your administrator or look at the router sticker. |
| The adapter driver is not working correctly. | Open device Manager (Windows) or run dmesg | grep -i wifi (Linux). |
Update or reinstall the driver. |
| The network uses enterprise authentication (802.1X) | When connecting, you are asked for login/password. | Check with your IT department for connection parameters (e.g. EAP type). |
| The adapter is connected to the network but has no IP address. | Do it ipconfig /all (Windows) or ip a (Linux). |
Check your router's DHCP settings or assign IP manually. |
| The network uses MAC address filtering. | Try connecting from another device. | Add your computer's MAC address to the allowed list on the router. |
If none of these methods help, try connecting to the network from another device (such as a smartphone) and compare the settings. The issue may lie in the router configuration.
Check if the Wi-Fi adapter is enabled (physical button or Fn+key)
Update your network card driver
Reboot your router
Try connecting to a different network
Reset network settings on your computer-->
5. Checking through the router: who is connected to my network
If you need to know not only which network your computer is connected to, but also check all connected devices (for example, to search for "unnecessary" gadgets), do the following:
- Open the router's web interface by entering into your browser
192.168.0.1,192.168.1.1or another address (indicated on the device sticker). - Log in (the default login and password are often
admin/adminoradmin/password). - Find a section like
DHCP Clients List,Connected DevicesorLocal area network. - In the list of devices, find your computer by hostname or MAC address.
In some routers (for example, TP-Link or ASUS) has a "Network Map" feature that visually displays all connected devices and their traffic. This is useful for diagnosing connection issues.
6. Third-party Wi-Fi monitoring utilities
If the standard OS tools do not provide enough information, you can use specialized programs. Here 3 proven tools:
- 🔧 WirelessNetView (Windows): Shows all available networks, including hidden ones, as well as connection details (channel, signal strength, security type). Download from NirSoft.
- 📊 NetSpot (macOS/Windows): Not only displays the current network, but also creates a heat map of Wi-Fi coverage. Useful for optimizing router placement.
- 🐧 Wavemon (Linux): A console utility with a styled interface
ncurses. Shows signal strength, speed, channel and SSID. Installed via package manager (sudo apt install wavemon).
These programs are especially useful if you administer multiple networks or need to check signal quality at different points in the room.
7. How to find out the password for the current Wi-Fi network
If you need not only the network name but also its password (for example, to connect a new device), here's how to do it:
On Windows:
- Open
Settings → Network and Internet → Wi-Fi. - Click "Manage known networks" → select your network → "Properties".
- In the "Security Options" section, check the "Show entered characters" box.
On macOS:
- Open
Applications → Utilities → Keychain. - Find your network name in the list.
- Check the "Show password" box and enter your Mac account password.
On Linux:
Run the command:
sudo grep psk= /etc/NetworkManager/system-connections/*
Or for wpa_supplicant:
sudo cat /etc/wpa_supplicant/wpa_supplicant.conf
FAQ: Frequently asked questions about connecting to Wi-Fi
Is it possible to find out the name of the Wi-Fi network to which the computer was connected a week ago?
Yes, but the methods depend on the OS:
- Windows: In the command line, run
netsh wlan show profiles— This will display a list of all saved networks. To see the password for a specific network, enternetsh wlan show profile name="NETWORK_NAME" key=clear. - macOS: All networks are stored in the Keychain (see section above).
- Linux: Check the files in
/etc/NetworkManager/system-connections/or/etc/wpa_supplicant/.
Please note: If a network was connected manually without saving, its name will not remain in the history.
Why does my computer connect to my neighbor's network instead of mine?
This happens due to the network priority in the settings. How to fix:
- On Windows: Open
Settings → Network & Internet → Wi-Fi → Manage known networks, select your network and click "Move up" in the priority list. - On macOS: Open
System Preferences → Network → Wi-Fi → Advancedand drag your network to the first place in the list. - On Linux (NetworkManager): Edit the network configuration file in
/etc/NetworkManager/system-connections/, adding a linepriority=100.
Also check if the function is enabled on your router Wi-Fi Roaming (wandering), which can automatically switch devices between access points.
How can I check which network my computer is connected to if I don't have administrator rights?
Without administrator rights, you won't be able to use some commands (for example, netsh in Windows or iwconfig in Linux), but there are workarounds:
- Use the graphical interface (control panel or Wi-Fi tray icon).
- On Windows try the command
ipconfig /all- it will show the name of the network adapter andDNS suffix, which sometimes contains the name of the network. - On macOS Network data is available through
System information(Apple → About This Mac → System Report → Network).
If even these methods don't work, try connecting another device (for example, a smartphone) to the same router and look at the network name there.
Is it possible to determine the name of the Wi-Fi network to which a computer is connected using its MAC address?
No, MAC address refers to the computer's network adapter, not the access point. However, you can:
- Find out the MAC address of your adapter (via
ipconfig /allon Windows orifconfigon Linux/macOS). - Then go to the router settings and find your MAC in the list of connected devices - the network name (SSID) is usually indicated next to it.
This is an indirect method, but it works if you have access to the router's web interface.
What should I do if my computer is connected to Wi-Fi, but the internet isn't working?
The problem can be at different levels. Step-by-step diagnostics:
- Check if the internet works on other devices (smartphone, tablet). If not, the problem is with your ISP or router.
- Do it
ping 8.8.8.8in the command line:- If the ping works, but websites don't open, there's a problem with DNS (try changing the DNS server to
8.8.8.8or1.1.1.1). - If ping doesn't work, check your IP settings (they should be
Receive automaticallyor a correct static IP).
- If the ping works, but websites don't open, there's a problem with DNS (try changing the DNS server to
If all else fails, try connecting to the router via cable—this will help determine whether the problem is with Wi-Fi or network settings.