When your home Wi-Fi starts to slow down or devices suddenly disconnect from the network, the problem often lies in port conflictsWi-Fi ports (not to be confused with physical ports on a router!) are virtual channels through which data is transferred between devices on the local network and the internet. If a port is busy, blocked, or malfunctioning, it can lead to connection failures, slow speeds, or even complete loss of network access.
In this article you will learn how check Wi-Fi ports on the router in different ways: from simple methods via the web interface to advanced tools like Telnet And WiresharkWe'll look at which ports are used by default for popular services (for example, 80 for HTTP or 443 (for HTTPS), how to identify "suspicious" connections, and what to do if the port is closed or blocked by your provider. These instructions are relevant for routers. TP-Link, ASUS, Keenetic, MikroTik and other brands.
What are Wi-Fi ports and why should you check them?
Ports in the context of Wi-Fi are virtual door numbers, through which devices exchange data. Each type of traffic (for example, web pages, online games, or video calls) uses specific ports. For example:
- 🌐
80— standard port for HTTP (regular websites) - 🔒
443— port for HTTPS (secure sites) - 🎮
27015-27050- ports for online games (for example, Counter-Strike or Minecraft) - 📡
53— port for DNS queries (address translation)
If the port busy (for example, two devices at the same time) or blocked (provider, firewall or router settings), this can cause:
- 🐢 Slow internet speed on specific websites or in games
- 🚫 Unable to connect to some services (for example, Discord or Zoom)
- ⚡ Sudden connection breaks, especially under high load
Checking ports helps to identify:
- 🔍 Which ports are open and accessible to external connections (this is important for security!)
- 🛠️ Conflicts between devices on the local network
- 🚨 Suspicious activity (e.g. unauthorized connections)
Method 1: Checking ports via the router's web interface
The easiest way is to use router admin panel. Most modern models (TP-Link Archer C6, ASUS RT-AX88U, Keenetic Giga) allow you to view active connections and ports in use.
Instructions:
- 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 router sticker). - Go to the section
Local area network(orDHCP,Devices,Network card— the name depends on the model). - Find the tab
Ports,Port ForwardingorActive connections.
Example for TP-Link:
Advanced → NAT Forwarding → Port Triggering
Here you will see a table with IP addresses of devices, protocols (TCP/UDP) and port numbers. Pay attention to ports with the status LISTENING (waiting for connection) or ESTABLISHED (active compounds).
What to look for in the router's web interface
⚠️ Attention: If your router settings don't have a ports section, your model may not support detailed monitoring. In this case, use alternative methods (see below).
Method 2: Windows Command Prompt (via netstat And ping)
If you have a computer on Windows 10 or Windows 11, you can check ports without additional programs - using built-in utilities netstat And ping.
Step 1: View active connections
Open Command line (Win + R → enter cmd → Enter) and run:
netstat -ano | findstr "LISTENING"
This command will show all the ports that are being listened to (waiting for incoming connections). Please note the columns:
Local Address— IP and port of your device (for example,192.168.1.100:8080)PID— the ID of the process that is using the port (can be checked in Task Manager)
Step 2: Checking port availability
To find out if a specific port is open on a router or external server, use:
telnet [IP address] [port]
Example (port check) 80 on the router):
telnet 192.168.1.1 80
If the port is open, you'll see a blank screen or a server message. If it's closed, you'll see an error. Failed to open connection.
⚠️ Attention: Utilitytelnetmay be disabled by default in Windows 10/11To enable it, go toControl Panel → Programs → Turn Windows features on or offand markTelnet client.
Method 3: Using specialized programs
For more in-depth diagnostics, free utilities are suitable:
- 🔍 Advanced Port Scanner — scans ports on the local network and displays open services.
- 🛡️ Wireshark — analyzes network traffic in real time (for advanced users).
- 🌐 Angry IP Scanner — quickly scans IP addresses and ports on the network.
Example of working with Advanced Port Scanner:
- Download and install the program from official website.
- Enter the IP address range of your network (e.g.
192.168.1.1-192.168.1.255). - Run the scan and wait for the results.
The program will show:
- 🟢 Open ports (green status)
- 🔴 Closed ports (red status)
- 🔒 Services running on each port (e.g.
HTTP,FTP)
Important: If you see open ports 21 (FTP), 22 (SSH) or 3389 (RDP) on unknown IP addresses may indicate a network vulnerability. Disable them in your router settings!
Method 4: Checking ports on the router via Telnet or SSH
For advanced users, there is the option to connect to the router via console and run commands to check the ports. This method works on routers with firmware DD-WRT, OpenWRT or MikroTik RouterOS.
Step 1: Connecting to the Router
Use the program PuTTY (For Windows) or terminal (Linux/macOS):
ssh admin@192.168.1.1
Enter the password (the default is often empty or admin).
Step 2. Commands for checking ports
For MikroTik:
/ip firewall connection print
For OpenWRT:
netstat -tuln
These commands will show all active connections, including IP, ports, and protocols.
Step 3: Checking a specific port
To find out if a port is busy 8080:
lsof -i :8080
If the port is busy, you will see the process that is using it.
⚠️ Attention: Not all routers supportSSHorTelnetby default. On budget models (TP-Link TL-WR840N, D-Link DIR-300) This functionality is often disabled. You can enable it in the web interface (sectionSystem toolsorControl).
Method 5: Online services for checking ports
If you need to check, Is the port open for external access? (for example, for a game server or IP camera), use online tools:
- 🌍 YouGetSignal — checks open ports by IP.
- 🔗 PortChecker — tests a specific port for accessibility from the Internet.
- 🛡️ Gibson Research ShieldUP - analyzes port vulnerabilities.
How to use:
- Find out your external IP address (for example, on the website 2ip.ru).
- Enter the IP and port number in the field on the service website.
- Run the scan.
If the port is closed and you need to open it (for example, for Minecraft servers or NAS), set up Port Forwarding in the router:
Advanced → NAT Forwarding → Port Forwarding
| Port | Purpose | Security risk | Recommendation |
|---|---|---|---|
21 |
FTP (file transfer) | High (legacy protocol) | Use SFTP (port 22) or turn it off |
22 |
SSH (remote control) | Medium (requires a strong password) | Change the default port to another one (eg. 2222) |
80, 443 |
HTTP/HTTPS (websites) | Low (if there are no vulnerabilities) | Leave open if you are using a web server. |
3389 |
RDP (remote desktop) | Very high (frequent target of attacks) | Close the port or use a VPN |
Method 6: Checking ports on Android or iOS
If you don't have a computer handy, you can check the ports directly from your smartphone:
For Android:
- 📱 Install the application Network Scanner or Fing.
- 🔍 Run a network scan—the program will show all devices and open ports.
- 📊 Click on a device to see details (including the ports used).
For iOS:
- 📱 Use Network Analyzer or iNetTools.
- 🌐 Enter your router's IP address and run a port check.
- ⚠️ Pay attention to ports with unusual services (for example,
Telnetat the port23).
Example of a report in Fing:
Device: 192.168.1.100 (Xiaomi Mi Box)
Open Ports:
- 80 (HTTP)
- 554 (RTSP, streaming video)
- 1900 (SSDP, for DLNA)
⚠️ Attention: Mobile apps may not display all ports due to OS limitations. For a complete diagnosis, it's best to use a PC.
Method 7: Analyze router logs
If the ports are working erratically (they open and then close), the reason can be found in router logsMost models keep an event log that records:
- 🔄 Attempts to connect to ports
- 🚫 Firewall blocking
- ⚡ DHCP or NAT errors
How to view logs:
- Log into your router's web interface.
- Find the section
System tools→Magazine(orLogs,System Log). - Look for entries mentioning ports, such as:
[Firewall] Drop TCP packet from 192.168.1.105:54321 to 192.168.1.1:80
[NAT] Port forwarding: 8080 → 192.168.1.100:80
If you see a lot of entries like this Drop (blocking), this could mean:
- 🛡️ The router's firewall is blocking legitimate connections (set up exceptions).
- 🕵️ Someone is trying to connect to your ports (check security).
What to do if there are a lot of errors in the logs?
If the logs are full of messages about port blocking 445 (SMB) or 3389 (RDP), this is a sign that your network is being scanned by bots. It is recommended:
1. Change external IP (reboot the router).
2. Close unnecessary ports in Port Forwarding.
3. Enable DDoS protection in your router settings (if available).
Common Wi-Fi Port Problems and Solutions
Let's look at typical situations and ways to correct them:
Problem 1: The port is occupied by another device
Symptoms: Error Address already in use when starting a program (for example, a game server).
Solution:
- 🔄 Reboot your router and device.
- 🛠️ Change the port in the program settings (for example, from
8080on8081). - 🔍 Find the process occupying the port (via
netstat -ano | findstr "[port]"), and complete it.
Problem 2: The port is closed by the ISP
Symptoms: Port does not open even after configuration Port Forwarding.
Solution:
- 📞 Check with your ISP to see if they are blocking ports (especially
80,443,25). - 🔄 Try using a different port (for example,
8080instead of80). - 🛡️ Connect via VPN (some providers block ports only for "clean" IPs).
Problem 3: Port conflict on the local network
Symptoms: Devices periodically lose connection, especially when using torrents, online games, or IP cameras simultaneously.
Solution:
- 📊 Assign static IP addresses to devices in the router (section
DHCP → Address Reservation). - 🔄 Separate ports for different devices (for example, a camera -
554, gaming PC -27015). - 🛠️ Turn on
QoS(Quality of Service) in the router to prioritize traffic.
FAQ: Answers to Frequently Asked Questions
❓ How do I know which port my IP camera is using?
Typically IP cameras are used:
80- web interface554— streaming video (RTSP)1935— RTMP (for broadcasts)
The exact port is specified in the camera's instructions or in its web interface (section Network or Port).
❓ Why isn't port 80 opening even though I've configured Port Forwarding?
Possible reasons:
- The provider is blocking the port
80(try it8080). - The firewall on the device (or router) is blocking incoming connections.
- The device's IP address has changed (set up DHCP reservation).
Check your router logs for errors and temporarily disable the firewall for testing.
❓ Is it possible to check ports on a router without accessing its settings?
Yes, but with restrictions:
- Use
netstatornmapon the connected device. - Scan the router via Advanced Port Scanner (please specify its IP, for example,
192.168.1.1). - For external ports, use online services (see Method 5).
However, without access to the admin panel, you will not be able to change the port settings.
❓ Which ports should be closed for security?
Close or reconfigure the following ports if they are not in use:
| Port | Danger |
|---|---|
21 (FTP) |
Transmitting passwords in cleartext |
23 (Telnet) |
Remote control without encryption |
139, 445 (SMB) |
Vulnerabilities to ransomware |
3389 (RDP) |
A common target of brute force attacks |
Use Port Forwarding only for necessary services and always change the default ports (eg. 22 → 2222).
❓ How can I check if my neighbor is using my Wi-Fi through open ports?
Signs of an unauthorized connection:
- 📡 Unknown devices in the router's DHCP client list.
- 🔌 Active ports on other IPs (for example,
192.168.1.105:4444). - 🐢 A sharp drop in speed for no apparent reason.
What to do:
- Change your Wi-Fi password to a complex one (at least 12 characters, with numbers and symbols).
- Enable MAC address filtering on your router.
- Turn it off
WPSand a guest network if they are not needed.