Port Checker (Single Port)

Check if a specific port is open on a host or IP address. Useful for testing firewall rules and server accessibility.

Enter Host and Port:

Quick Check Common Ports:

What is Port Checking?

A port check tests whether a specific network port on a host is accepting connections. Ports are virtual endpoints that allow network services to communicate. Each service typically uses a standard port number.

Common Uses

  • Firewall Testing: Verify that firewall rules are configured correctly.
  • Server Diagnostics: Check if a web server, database, or other service is running.
  • Network Troubleshooting: Identify connectivity issues between systems.
  • Security Auditing: Find open ports that might be security risks.

Understanding Results

  • Open: The port is accepting connections — the service is running and accessible.
  • Closed: The connection was refused — no service is listening on that port.
  • Filtered/Timeout: The connection timed out — a firewall may be blocking access.

Frequently Asked Questions

What are well-known ports?
Ports 0-1023 are "well-known" ports assigned to standard services. For example, HTTP uses port 80, HTTPS uses 443, SSH uses 22, and FTP uses 21. Ports 1024-49151 are registered ports, and 49152-65535 are dynamic/private ports.
Why can't I connect to a port I know is open?
Several reasons: a firewall might be blocking the connection, the service might only accept connections from specific IPs, or there might be network routing issues. Try using Ping first to verify basic connectivity.
Is port scanning illegal?
Port scanning your own servers is perfectly legal. However, scanning systems you don't own without permission may violate laws in some jurisdictions or terms of service. Always ensure you have authorization before scanning.