Have you noticed your internet has slowed down, and your router's web interface is showing unknown devices? Or do you just want to monitor who's using your network? Find out how many are connected to Wi-Fi There are several ways to access devices—from viewing the list in the router settings to using mobile apps and specialized utilities. In this article, we'll cover all the current methods, including the nuances for different router models and operating systems.
It is important to understand that the number of connected clients can affect not only the internet speed, but also network securityUnauthorized connection of someone else's device poses a risk of data leakage, virus infection, or even the use of your IP address for illegal activities. Therefore, it is recommended to check the list of devices regularly, especially if you haven't changed your Wi-Fi password for more than six months.
We will look at methods for different scenarios: from basic checking through the router's web interface to advanced methods using Wireshark or the command line. If you're unsure of your technical skills, start with the first sections. For experienced users, instructions on analyzing traffic and blocking suspicious devices are at the end of the article.
1. Checking via the router's web interface
The most reliable and universal way is to access your router's control panel. Most modern routers display a list of connected devices in real time, including their MAC addresses, IP and even names (if they are broadcast by the gadget). The instructions are suitable for TP-Link, ASUS, Keenetic, Zyxel, MikroTik and other popular brands.
To open the web interface:
- Find out
IP addressyour router. Usually it's192.168.0.1or192.168.1.1You can check it via the command line (ipconfigon Windows orifconfigon macOS/Linux) or look at the sticker on the device body. - Enter the address into the address bar of your browser (for example,
http://192.168.0.1). - Log in using your login and password (often by default)
admin/adminoradmin/password, if you haven't changed it).
The next steps depend on the router model:
- 🔹 TP-Link: Go to
Wireless Mode → Wireless Mode StatisticsorDHCP → DHCP Client List. - 🔹 ASUS: Open
Network mapin the main menu - all connected devices, including wired ones, are displayed here. - 🔹 Keenetic: In the section
DevicesYou will see a list of gadgets indicating the connection type (Wi-Fi or Ethernet). - 🔹 Zyxel: Go to
Network → Local Network → DHCP Client List.
Some routers allow block suspicious devices directly from the web interface. For example, in ASUS just click on the device in Network map and choose Block. IN TP-Link To do this you need to go to Wireless Mode → MAC Filtering and add the address to the blacklist.
What should I do if I can't access my router settings?
If the page does not open, check:
1. Connect to the router (try rebooting it).
2. The entered IP address is correct (sometimes manufacturers use non-standard addresses, for example, 192.168.8.1 For Xiaomi).
3. Disable your VPN or proxy—they may be blocking access to your local network.
4. Reset the router to factory settings (button Reset on the back panel) if you forgot your password.
2. Using mobile applications
If accessing your router settings is inconvenient, you can use specialized smartphone apps. They scan your local network and display all connected devices, including those using Wi-Fi. Most of these utilities are free, but may contain ads.
Popular apps for Android And iOS:
- 📱 Fing - defines the devices, their
MACAndIP, and also checks for open ports. There's a notification feature for new connections. - 📱 NetScan — scans the network and sorts devices by type (smartphones, PCs, printers, etc.). Maintains scan history.
- 📱 WiFi Analyzer (Android only) - In addition to the list of devices, it shows the load on Wi-Fi channels and helps you choose the best one for connection.
- 📱 IP Tools — a multifunctional utility with the ability to ping and trace routes.
How to use such applications:
- Download and install the program from the official store (Google Play or App Store).
- Connect to your Wi-Fi network.
- Start the scan (usually the button
ScanorScanon the main screen). - Wait for the process to complete - the application will show a list of devices with their
IP,MACand the manufacturer.
Via the router's web interface|Mobile app|Command line|I haven't tested it yet-->
The advantage of mobile apps is convenience and speed. However, they may not show devices connected via cable (Ethernet) or those using a static IPFor a complete picture, it's best to combine this method with checking through a router.
⚠️ Attention: Some applications require root rights on Android for advanced features (such as device locking). Without them, they operate in a limited mode.
3. Command line (Windows, macOS, Linux)
For users who prefer to work without a graphical interface, there are ways to check connected devices through command line or terminalThis method is universal and works on all operating systems, but requires minimal knowledge of network commands.
Instructions for different OS:
Windows
Open Command line (Win + R → enter cmd → Enter) and run the following commands:
arp -aping 192.168.1.1 -n 1
arp -a
The first command will show the cache ARP-table, but it may be incomplete. To update the data, send a ping packet to the router address (replace 192.168.1.1 on your own), and then re-run arp -aAs a result, you will see a list IP And MAC addresses all devices on the local network.
macOS / Linux
IN Terminal execute:
nmap -sn 192.168.1.0/24
This command will scan everything IP addresses in the range 192.168.1.1–192.168.1.255 and will display a list of active devices. If your network uses a different range (for example, 192.168.0.x), replace 192.168.1.0/24 to the current one.
For more detailed information (e.g. open ports) use:
nmap -O 192.168.1.1-255
⚠️ Attention: Team nmap It may be blocked by some routers or antivirus programs as suspicious activity. If scanning doesn't work, check your firewall settings.
Scan results can be saved to a file for further analysis:
nmap -sn 192.168.1.0/24 -oN scan_results.txt
4. Viewing through Windows settings (without the command line)
If you use Windows 10 or Windows 11, you can view a list of connected devices without using commands. To do this:
- Open
Parameters(Win + I). - Go to
Network and Internet → Wi-Fi. - Click on your network name and select
Properties. - Scroll down to the section
Network properties— the number of connected devices will be indicated here (though without details).
More detailed information can be obtained through Network and Sharing Center:
- Right-click on the Wi-Fi icon in the tray and select
Open Network and Internet settings. - Click on
Configuring adapter settings. - Double-click on your Wi-Fi connection and select
Wireless Network → Details.
However, this method only shows devices connected to your computer as an access point (if you're distributing Wi-Fi), but it doesn't display other router clients. For a complete list, it's best to use the router's web interface or nmap.
5. Advanced Methods: Wireshark and Traffic Monitoring
If you need to not only find out the number of connected devices, but also analyze their activity (for example, who consumes the most traffic), you can use professional tools like Wireshark or GlassWire.
Wireshark is a powerful network packet analyzer that allows you to see all traffic on your network, including:
- 📊
IP addressesAndMAC addressesdevices. - 📊 The protocols they use (HTTP, DNS, Netflix, etc.).
- 📊 Volume of transmitted and received data.
- 📊 Suspicious activity (e.g. port scanning).
How to use Wireshark:
- Download and install the program from official website.
- Select the network interface (Wi-Fi adapter) and click
Start. - Enter in the filter
wlanto display only wireless traffic. - Analyze the packets: in the column
SourceorDestinationwill be displayedIPAndMAC addressesdevices.
Wireshark even shows devices that are not visible in the router's web interface (for example, if they are connected via a VPN or use non-standard network settings). However, for beginners, this tool can be complex - it requires an understanding of the basics of network protocols.
Alternative - GlassWire (free version available). This program has a more user-friendly interface and visualizes traffic by device and application. It's suitable for monitoring internet usage in real time.
⚠️ Attention: Usage Wireshark On public networks (for example, in a cafe or airport), this may be considered an attempt to intercept someone else's traffic. In some countries, this violates privacy laws.
6. How to block unknown devices
If you find any unknown devices in the list of connected devices, you can block them. The methods depend on your router model:
| Router brand | Path to blocking settings | Additional options |
|---|---|---|
| TP-Link | Wireless Mode → MAC Filtering |
You can add MAC blacklist or whitelist. |
| ASUS | Local Network → DHCP Server → Reservation/Blocking |
There is a binding function IP To MAC. |
| Keenetic | Devices → [Select device] → Block |
You can set a traffic limit for your device. |
| Zyxel | Network → Local Network → Client List |
Supports blocking by IP And MAC. |
| MikroTik | IP → DHCP Server → Leases |
Requires knowledge RouterOS for customization. |
General blocking recommendations:
- 🔒 Try it first change Wi-Fi password - This will disable all third-party users.
- 🔒 Use WPA3 instead of WPA2 (if the router supports it).
- 🔒 Turn on MAC address filtering, but remember that an experienced user can substitute
MAC. - 🔒 Turn it off
WPS- This protocol is vulnerable to hacking.
Change your password to a complex one (at least 12 characters)|Enable WPA3 or WPA2-AES|Disable WPS|Update your router firmware|Hide the SSID (not recommended for home networks)|Configure MAC address filtering-->
If blocking doesn't help, your router may be hacked or vulnerable. In this case:
- Reset to factory settings (
Reset). - Update your firmware to the latest version.
- Check your router for malware (for example, through Dr.Web CureIt!).
7. Common mistakes and their solutions
Users often encounter problems when trying to find out the number of connected devices. Let's look at the most common ones:
Problem 1: The router's web interface does not open.
- 🔌 Check the physical connection (Ethernet cable or Wi-Fi).
- 🔌 Make sure you enter the correct one
IP address(watch it throughipconfig). - 🔌 Try a different browser or clear your cache.
- 🔌 If the router is new, it may require initial setup via a mobile app (for example, TP-Link Tether).
Problem 2: Unknown devices are displayed in the list of devices MAC addresses, but they cannot be blocked.
- 🔍 Check if there are any smart devices (lamps, cameras, speakers) connected to the router that you may have forgotten about.
- 🔍 Some routers show their own services as separate devices (for example, a guest network).
- 🔍 If the address belongs to the router manufacturer (check via MAC Vendors Lookup), it may be an internal process.
Problem 3: Teams arp or nmap do not show all devices.
- 🔄 Make sure the devices are active (not in sleep mode).
- 🔄 Check the scanning range (e.g.
192.168.0.0/24instead of192.168.1.0/24). - 🔄 Some devices may block ICMP packets (ping), which is why they are not displayed in
nmap.
Problem 4: After the blocking MAC addresses the device still connects.
- 🔄 Make sure the filtering is
MACenabled in the router settings. - 🔄 Some devices (especially on Android) can be changed by accident
MACwhen connecting. - 🔄 Try blocking your device
IP(but remember thatIPmay change when reconnecting).
FAQ: Answers to frequently asked questions
Is it possible to find out which websites connected devices visit?
Yes, but for this you need special tools like Wireshark or setting DNS servers with logging (for example, Pi-hole). A regular router does not store the history of visited websites, with the exception of some models with parental controls (for example, ASUS AiProtection).
Please note: intercepting traffic without user consent may violate privacy laws.
Why does the list of devices show more connections than there actually are?
This can happen for several reasons:
- 📱 Some devices (e.g. smartphones) create multiple connections for different services (e.g.
Google Play Services). - 📱 The router can show devices that were previously connected but have not yet been released
IP(check DHCP lease time). - 📱 Smart devices (lamps, speakers) can create background connections.
To clear the list, reboot the router or reduce the lease time. DHCP in the settings.
How can I find out how many devices are connected to Wi-Fi from my phone without apps?
On Android You can use built-in tools:
- Open
Settings → Wi-Fi. - Click on your network and select
Network managementorAdditionally. - In some firmware (for example, MIUI on Xiaomi) there is a section
Connected devices.
On iPhone There is no such function - you will have to use applications or the router's web interface.
Is it possible to limit the number of devices connected to Wi-Fi?
Yes, many routers allow you to set connection limits. For example:
- 🔄 In TP-Link:
Wireless Mode → Wireless Settings → Max Clients. - 🔄 In ASUS:
Wireless Network → General → Maximum Clients.
If there is no such option, you can manually block unnecessary devices through MAC filtering.
What should I do if my router doesn't show connected devices?
Possible causes and solutions:
- 🔌 Outdated firmware - update it.
- 🔌 Some routers (especially budget ones) do not support displaying a list of devices.
- 🔌 Check if it is enabled
DHCP server(if disabled, devices can connect with staticIP, which do not appear in the list).
If nothing helps, use third-party utilities like Fing or nmap.