PORT SCANNER
Online Port Scanner
Instantly check if any TCP port is open on your public IP address. Test port forwarding, firewall rules, and service accessibility — free, no signup.
Check Any Port
Checking against 216.73.217.138
Common Ports
Scan the 12 most common TCP ports at once
Web
80HTTP
443HTTPS
8080HTTP Alt
8443HTTPS Alt
Access
22SSH
21FTP
3389RDP
25SMTP
Database
3306MySQL
5432PostgreSQL
6379Redis
27017MongoDB
What is a Port Scanner?
A port scanner tests whether TCP ports on your IP address are reachable from the public internet. When you run a service — a web server, database, or SSH daemon — it listens on a specific port number. This tool connects to each port and reports whether it's open (accepting connections), closed (actively refusing), or filtered (silently blocked by a firewall).
Common use cases
- Verify port forwarding is configured correctly on your router
- Check if a service (web server, SSH, database) is publicly accessible
- Audit your firewall rules — confirm ports you expect closed are actually blocked
- Debug connectivity issues between client and server
Understanding Port Status
Open A service is actively listening and accepted our TCP connection. The port is reachable from the internet.
Closed No service is listening, but the port is reachable. The host responded with a TCP RST (reset) packet.
Filtered A firewall is silently dropping packets. No response was received within the timeout window (1.5s).
Common Ports Reference
| Port | Service | Used For |
|---|---|---|
| 21 | FTP | File Transfer Protocol — legacy file sharing |
| 22 | SSH | Secure Shell — encrypted remote terminal access |
| 25 | SMTP | Simple Mail Transfer Protocol — email sending |
| 53 | DNS | Domain Name System — hostname resolution (UDP) |
| 80 | HTTP | HyperText Transfer Protocol — unencrypted web |
| 443 | HTTPS | HTTP over TLS — encrypted web traffic |
| 3306 | MySQL | MySQL database server |
| 3389 | RDP | Windows Remote Desktop Protocol |
| 5432 | PostgreSQL | PostgreSQL database server |
| 6379 | Redis | Redis in-memory cache and message queue |
| 8080 | HTTP Alt | Alternative HTTP port, common in development |
| 8443 | HTTPS Alt | Alternative HTTPS port |
| 27017 | MongoDB | MongoDB document database server |