Have you ever found yourself needing to connect a new device to Wi-Fi but can't remember the name of your network? Or trying to figure out which of the available access points belongs to your neighbor and which belongs to your office router? Wi-Fi network name (SSID) — This is a unique identifier that distinguishes your wireless network from others. Without it, connecting to the internet becomes impossible, and sometimes knowing it can help resolve connection issues.
In this article, we'll cover all possible ways to find out the name of a Wi-Fi network—from simple methods (viewing it on a connected device) to advanced ones (using router settings or the command line). You'll learn how to find the SSID on Windows, macOS, Android And iOS, as well as what to do if the network is hidden or the device isn't connected. We'll pay special attention to security aspects—why you shouldn't disclose your network name and how to protect yourself from scammers who might use it.
Whether you're a beginner or an experienced user, there's a solution for every situation. And if you're an office network administrator or the owner of a public Wi-Fi hotspot, you'll learn how to check which devices are connected to your hotspot and whether anyone else is using it.
1. How to find out the Wi-Fi name on a connected device
The easiest way is to look up the network name on a device that's already connected to it. This works on smartphones, laptops, tablets, and even smart TVs. Let's look at step-by-step instructions for each platform.
On Android And iOS The network name is displayed directly in the notification panel or in the Wi-Fi settings. Windows And macOS You can find it in the list of available networks or through system utilities. If the network is hidden (not broadcasting its SSID), its name will still be visible on the connected device.
- 📱 Android: Swipe down from the top of the screen → find the Wi-Fi icon → press and hold it → the window that opens will show the name of the current network.
- 🍎 iPhone/iPad: Open
Settings → Wi-Fi→ the name of the active network will be next to the checkmark. - 💻 Windows 10/11: Click on the Wi-Fi icon in the tray → the current network will be highlighted and marked as
"Connected". - 🖥️ macOS: Click on the Wi-Fi icon in the menu bar → the active network is marked with a check mark.
If your device isn't connected to the network but you know the password, you can try connecting and then disconnecting immediately—the name will appear in your connection history. However, this method won't work for hidden networks (we'll discuss this in the next section).
2. Methods for hidden Wi-Fi networks (without broadcasting SSID)
Some networks are configured not to broadcast their network name (SSID). This is done for added security, but it can make connecting new devices more difficult. If you know a network exists but don't see it in the list, there are several ways to find its name.
The most reliable method is to look into your router settings. To do this:
- Connect to the router via cable or through an already saved connection (if you have one).
- Open your browser and enter the router's IP address (usually
192.168.0.1or192.168.1.1). - Enter your login and password (by default it is often
admin/adminor indicated on the device sticker). - Find the section
Wi-FiorWireless network- there will be a field thereNetwork name (SSID).
If you don't have access to the router, but you are connected to the network on one of your devices, you can use the command line:
- 🪟 Windows: Open
Command line(Win + R → cmd) and enter:netsh wlan show interfacesIn the line
SSIDwill be the name of the network. - 🐧 macOS/Linux: In the terminal, run:
iwconfigor for macOS:
/System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport -ILook for the line
SSID.
Why do networks hide SSIDs?
Hiding the network name (SSID) doesn't make it completely invisible to malicious users—experienced hackers can detect its presence by other means (such as the router's MAC address). However, it makes it more difficult for random users to connect and reduces the network load from connection attempts by unauthorized devices.
3. Viewing the Wi-Fi name through the router settings
If you're a network administrator or have access to the router, the most reliable way to find (or change) its name is to access the device's control panel. This method works for all router models: TP-Link, ASUS, D-Link, Keenetic, MikroTik and others.
The instructions are universal, but the interface may differ slightly depending on the manufacturer:
| Step | Action | Note |
|---|---|---|
| 1 | Connect to the router via cable or Wi-Fi. | For the first connection, use the data from the sticker on the router. |
| 2 | Open your browser and enter the router's IP address (e.g. 192.168.0.1). |
You can find out your IP via the command line: ipconfig (Windows) or ifconfig (macOS/Linux). |
| 3 | Enter your login and password (by default it is often admin/admin). |
If it doesn't work, reset the router using the button Reset (hold for 10 seconds). |
| 4 | Go to the section Wi-Fi, Wireless network or Wireless. |
On some routers you need to select first Basic Settings. |
| 5 | Find the field SSID or Network name - this is the name of Wi-Fi. |
Here you can also change the name if necessary. |
Attention! If you rent an apartment or use corporate Wi-Fi, changing your router settings without permission from the network administrator is prohibited. Doing so may disrupt internet service for other users.
Make sure you are connected to the correct network|Check your router's IP address (don't enter random numbers)|Use an official browser (Chrome, Firefox, Safari)|Don't save your password in the browser on a public PC-->
4. How to find out the Wi-Fi name on Windows using the command line
For users Windows command line (CMD) is a powerful network diagnostic tool. It not only reveals the current network name but also provides additional information, such as connection speed, security type, router MAC address, and other parameters.
Open Command line (Win + R → enter cmd → Enter) and use one of the commands:
- 🔍 View the current network:
netsh wlan show interfacesLook for the line
SSID— this is the name of your network. - 📡 List of all available networks (including hidden ones if they were connected earlier):
netsh wlan show networksIn the section
IEEE 802.11 networkAll detected networks will be listed. - 📊 Detailed information about the network (including channel, authentication type):
netsh wlan show networks mode=bssidHere you can even see networks that do not broadcast SSIDs, but were discovered earlier.
Important: If the network is hidden and has never connected to your device, the command line won't display its name. In this case, the only solution is to access the router settings or use specialized network scanning software (e.g., Wireshark or inSSIDer).
For advanced users: If you need to save network information to a file for later analysis, add to the command > filename.txt. For example:
netsh wlan show interfaces > wifi_info.txt
File wifi_info.txt will appear in the current folder (usually C:\Users\Your_user_name).
5. Find Wi-Fi name on macOS and Linux
Users macOS And Linux can also find out the name of their network through the terminal. Unlike Windows, here the commands differ, but provide no less detailed information.
On macOS there is a built-in utility airport, which allows you to obtain information about your current connection. To use it:
- Open
Terminal(can be found viaSpotlighton clickCmd + Space). - Enter the command:
/System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport -I - Find the line
SSID— this is the name of your network.
For Linux (including distributions based on Ubuntu, Debian, Fedora) the team will do iwconfig or nmcli:
- 🐧 Method 1 (iwconfig):
iwconfigLook for the section with the name of your wireless adapter (usually
wlan0orwlp3s0). In the lineESSIDwill be the network name. - 🐧 Method 2 (nmcli):
nmcli connection show --activeIn the column
NAMEThe name of the active connection will be displayed.
If you use Linux On a laptop with multiple network adapters, check the name of the wireless interface using the command:
ip a
or
iw dev
Then put it in the team iwconfig, For example:
iwconfig wlp3s0
alias wifi='sudo /System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport -I'
After this, it will be enough to simply enter wifi in the terminal.-->
6. Finding the Wi-Fi name on mobile devices (Android and iOS)
On smartphones and tablets, finding the current network name is easiest—it's displayed directly in the settings. However, there are some nuances worth knowing, especially if the network is hidden or the device isn't connected.
On Android the path to the information may differ depending on the OS and shell version (MIUI, One UI, ColorOS etc.), but the general scheme is as follows:
- Open
Settings. - Go to the section
Wi-FiorNetwork and Internet → Wi-Fi. - Click the gear icon (⚙️) next to the connected network.
- The network name will be displayed at the top of the screen (
SSID).
On iPhone or iPad the process is even simpler:
- Open
Settings. - Select
Wi-Fi. - Next to the check mark (✓) there will be the name of the active network.
If the network is hidden and not connected, Android You can try adding it manually:
- In the Wi-Fi settings, tap
Add a network. - Enter the proposed network name (if known).
- Please specify the security type (
WPA2/WPA3) and password. - If the connection was successful, the name is correct.
Attention! On some devices Android (especially with custom firmware) it may not be possible to view the hidden network name without connecting. In this case, only access to the router or a specialized app like WiFi Analyzer.
7. Additional methods: applications and specialized software
If standard methods don't work (for example, the network is hidden and the router is unavailable), you can use third-party programs. They scan the airwaves and display all available networks, including those that don't broadcast their SSID.
For Windows And macOS will do:
- 🖥️ inSSIDer — professional Wi-Fi network analyzer, shows channels, signal strength and hidden SSIDs.
- 🖥️ Wireshark - a powerful network analyzer that can detect hidden networks by data packets (requires operating skills).
- 🖥️ NetSpot — a utility for visualizing Wi-Fi coverage, displays all networks within range.
For Android:
- 📱 WiFi Analyzer (from VREM Software) - shows all networks, including hidden ones, indicating the channel and signal level.
- 📱 Network Analyzer - scans networks and provides detailed information about each access point.
For iOS the choice of programs is limited due to politics Apple, but you can try:
- 🍎 AirPort Utility — official app from Apple, allows you to scan networks (you need to enable the mode
Wi-Fi Scannerin the settings). - 🍎 Fing — identifies devices on the network and can show the name of the access point.
Warning! Using network scanning software in public places (airports, cafes, hotels) may be considered a hacking attempt. Always obtain permission from the network administrator before scanning.
8. Security: Why You Shouldn't Share the Name of Your Wi-Fi Network
Knowing your Wi-Fi network name (SSID) is only the first step to connecting. However, even this information can be used by hackers to launch an attack. Here's why you shouldn't share your network name with strangers:
- 🔓 Dictionary attacksIf your password is weak, hackers can use the network name to guess combinations (for example, if the SSID contains your last name or company name).
- 🎭 Fake access points: Scammers can create a network with the same name but without a password to intercept your traffic.
- 📡 Network congestion: If the network name is known to many people, other devices may try to connect to it, which will slow down your Internet.
- 🕵️ Location tracking: Your unique SSID can be used to determine your location (for example, through databases like Wiggle).
To protect your network:
- Use complex password (at least 12 characters, with letters, numbers and special characters).
- Turn it off SSID broadcast (hide the network) if this does not create inconvenience.
- Turn on MAC address filtering (allow connection only to trusted devices).
- Regularly update your router firmware - this closes the vulnerabilities.
- Use guest network for temporary connections (for example, for friends).
If you notice suspicious activity (unknown devices on the network, unexplained slow internet), immediately change your password and check your router settings for unauthorized changes.
FAQ: Frequently asked questions about finding a Wi-Fi network name
Is it possible to find out the name of a Wi-Fi network I've connected to before but am currently out of range of?
Yes, most devices save your connection history:
- Windows:
netsh wlan show profiles— will show all saved networks. - macOS:
security find-generic-password -wa "Network_Name"(if the password is saved in the keychain). - Android/iOS: In the Wi-Fi settings there is usually a section
Saved networksorWell-known networks.
However, if the network is hidden and has not been connected for a long time, its name may not be displayed.
How can I find out the name of my Wi-Fi network if my router has been reset to factory settings?
After resetting the router, the network name returns to the factory default (indicated on the sticker on the device). It's usually something like this:
- TP-Link_1234 (For TP-Link),
- ASUS_5G (For ASUS),
- Keenetic-1234 (For Keenetic).
If there is no sticker, try standard combinations: admin, wireless, default.
Is it possible to determine the router model by the Wi-Fi network name?
Sometimes yes. Many manufacturers use part of the model or brand name in the SSID. For example:
MikroTik-2.4GHz→ router MikroTik,DIR-615→ model D-Link DIR-615,RT-AC68U→ router ASUS RT-AC68U.
However, many users rename networks, so this method is not always accurate.
What should I do if the Wi-Fi network name is displayed in hieroglyphs or unknown symbols?
This can happen for several reasons:
- Incorrect encoding in the router settings (try changing the name to Latin).
- There is a problem with your Wi-Fi adapter drivers (please update them).
- Virus attack (check your device with antivirus software).
If the problem occurs on all devices, go to the router settings and rename the network using only Latin letters and numbers.
How can I protect myself if someone finds out the name of my Wi-Fi network?
Knowing the SSID alone doesn't grant access to the network, but it can be used for attacks. To stay safe:
- Change network name (do not use personal information).
- Install complex password (minimum 12 characters, with capital letters and numbers).
- Turn on WPA3 (if the router supports it).
- Turn it off WPS (this is a vulnerable protocol).
- Set up MAC address filtering (allow only your devices).
If you suspect someone has connected to your network without permission, change your password and check the list of devices in your router settings.