Port Checker

    Check if a port is open on a host. Includes a reference guide for common ports and their uses.

    Ports 80 and 443 can be tested directly from your browser. Other ports require a dedicated tool due to browser security restrictions.

    Common Ports Reference

    PortServiceProtocolCommon Use
    21FTPTCPFile transfer
    22SSHTCPSecure remote access
    23TelnetTCPUnencrypted remote access (legacy)
    25SMTPTCPEmail sending
    53DNSUDP/TCPDomain name resolution
    80HTTPTCPUnencrypted web traffic
    110POP3TCPEmail retrieval
    143IMAPTCPEmail access (with server sync)
    443HTTPSTCPSecure (TLS) web traffic
    465SMTPSTCPSecure email sending
    993IMAPSTCPSecure email access
    995POP3STCPSecure email retrieval
    3306MySQLTCPMySQL database server
    3389RDPTCPWindows Remote Desktop
    5432PostgreSQLTCPPostgreSQL database server
    5900VNCTCPRemote desktop (VNC)
    6379RedisTCPRedis in-memory data store
    8080HTTP AltTCPAlternative HTTP / dev servers
    8443HTTPS AltTCPAlternative HTTPS port
    27017MongoDBTCPMongoDB database server

    Click any row to populate the port number in the checker above.

    Understanding Ports

    What Is a Port?

    A network port is a virtual endpoint for communication on a device. It's a number (0–65535) that tells the operating system which application should handle incoming network traffic.

    Open vs Closed Ports

    An open port has an application actively listening for connections. A closed port refuses connections. Filtered ports are blocked by a firewall and give no response.

    Why It Matters

    Open ports can be security vulnerabilities if not properly secured. Port scanning is used by network admins to audit firewall rules and by attackers to find attack surfaces.