Port Scanner Online — Check Open Ports and Network Connectivity

Scripts 閲覧

What Is a Network Port?

A port is a logical number (0–65535) that identifies a specific service running on a server. The IP address gets you to the machine; the port number gets you to the right service. Think of it as an apartment building: the IP is the street address, the port is the unit number.

  • Well-known ports (0–1023): Assigned by IANA to standard protocols — HTTP (80), HTTPS (443), SSH (22)
  • Registered ports (1024–49151): Common applications — MySQL (3306), Redis (6379), PostgreSQL (5432)
  • Dynamic ports (49152–65535): Assigned temporarily by the OS for client-side connections

Common Port Numbers Reference

PortProtocolService
21TCPFTP (file transfer)
22TCPSSH (secure remote login)
25TCPSMTP (mail sending)
53TCP/UDPDNS (domain resolution)
80TCPHTTP (web)
443TCPHTTPS (secure web)
3306TCPMySQL database
5432TCPPostgreSQL database
6379TCPRedis cache
8080TCPHTTP alternate (dev environments)

Common Use Cases for Port Scanning

  • Server operations: Verify a service is actually listening on its expected port
  • Firewall debugging: Confirm firewall rules allow or block the correct ports
  • Security auditing: Identify which ports are exposed and close unnecessary ones
  • API connectivity testing: Confirm database or API ports are reachable from the internet (or are properly blocked)

How to Check Open Ports Online

Use tool.tl's port scanner:

  1. Go to tool.tl/portscan
  2. Enter a domain name or IP address
  3. Select ports to check or enter custom port numbers
  4. Results show each port's status: Open, Closed, or Filtered

Understanding Port Status

  • Open: Port is reachable and a service is actively listening — connection succeeds
  • Closed: Port is reachable but no service is listening — the service may be stopped
  • Filtered: Firewall is dropping probe packets — port state is unknown (most common security configuration)

Combining Network Tools for Troubleshooting

  • Ping: Check if a host is reachable at all (ICMP)
  • Traceroute: See which routing hops packets take to reach a server
  • DNS Lookup: Verify domain name resolution is working correctly
  • WHOIS: Look up domain or IP ownership and registration

Frequently Asked Questions

Scanning your own servers is completely legal and standard practice. Scanning servers you don't own without authorization may violate laws (such as the Computer Fraud and Abuse Act in the US). Online port checkers perform external probes of public-facing ports, similar to what any internet connection test does — but high-volume scanning of others' infrastructure carries legal risk.

Why do ports 80/443 show as closed but my website loads fine?

Most likely your server is behind a CDN or reverse proxy (like Cloudflare) — the server IP and the CDN edge IP are different, so scanning the origin server IP won't show the same results as the public website. Check the actual IP from your browser's developer tools vs. what you're scanning.

Is the tool free?

Yes — tool.tl's port scanner is completely free, checks common ports quickly, and requires no account.