Tools/DNS & Network/Ping / Port Checker

Ping / Port Checker

Check if a specific port is open on any host. View latency, service name, and banner info.

Input

Common Ports

Results

Enter a host and port, then click Check.

Well-known ports cheat sheet

PortProtocolService
22TCPSSH (remote shell + SFTP)
25TCPSMTP (email relay, between mail servers)
53UDP/TCPDNS
80TCPHTTP
110TCPPOP3 (legacy email retrieval)
143TCPIMAP (modern email retrieval)
443TCPHTTPS
465TCPSMTPS (SMTP over TLS)
587TCPSMTP submission (client → mail server)
636TCPLDAPS
993TCPIMAPS (IMAP over TLS)
3306TCPMySQL / MariaDB
5432TCPPostgreSQL
6379TCPRedis
8080TCPHTTP alternate (common dev server)
8443TCPHTTPS alternate
27017TCPMongoDB

Open vs Closed vs Filtered — what your result means

  • Open — host accepted the TCP handshake. A service is listening, and the network path allows it. Good.
  • Closed — host responded but no service on that port. The OS sent a RST packet. Means: the host exists, is reachable, just nothing listening on this specific port.
  • Filtered — no response within timeout. A firewall is silently dropping packets. Most common cause: misconfigured security group (AWS), NSG (Azure), or firewalld (Linux). Second most common: the port is open to some source IPs but not yours.

Filtered is the ambiguous case — the port may or may not have a service. From your perspective, indistinguishable from "closed by firewall rule."

Frequently Asked Questions

How do I check if a port is open on a server?

Enter a host and port — the checker attempts a TCP connection and reports open / closed / filtered. Common ports: 22 (SSH), 80 (HTTP), 443 (HTTPS), 3306 (MySQL), 5432 (Postgres), 6379 (Redis), 27017 (MongoDB). Great for firewall troubleshooting.

What's the difference between port open, closed and filtered?

Open = service is listening and accepted the TCP handshake. Closed = host responded but no service on that port. Filtered = no response (firewall likely dropping packets silently). Filtered is the most common symptom of a misconfigured security group.

How is this different from `nmap` or `telnet`?

Same idea — a TCP connect probe from the internet to your server. Nmap is richer (SYN scans, OS detection, service version probes). `telnet host port` is the Unix one-liner. This tool is a browser-based equivalent for quick checks.

Can I scan a range of ports?

Yes. Enter ports as a list (22,80,443) or range (1-1024). Bulk mode reports all results. Scan responsibly — run only against hosts you own or have permission to test.

Why does port 443 show open even though my site is down?

Open means TCP accepts connections. The service behind it (Apache, nginx, your app) might still be broken at the HTTP layer (500 error, hung worker, wrong cert). Combine with our Uptime Checker for HTTP-level status.

Copyright © 2026 BuildStudio. All rights reserved.

Designed and Developed by Webority Technologies

Copied to clipboard