Common Network Ports Reference

Well-known and commonly used network ports. Search by number, protocol, or service name.

27 entries
PortProtocolServiceWhat it's for
20/21TCPFTPFile Transfer Protocol — data (20) and control (21).
22TCPSSHSecure Shell — remote login, tunnels, SFTP and SCP.
23TCPTelnetLegacy unencrypted remote login. Avoid; use SSH.
25TCPSMTPServer-to-server email delivery.
53TCP/UDPDNSDomain name resolution.
67/68UDPDHCPAutomatic IP address assignment (server 67, client 68).
80TCPHTTPUnencrypted web traffic.
110TCPPOP3Email retrieval (download-and-delete model).
123UDPNTPNetwork time synchronization.
143TCPIMAPEmail retrieval with server-side folders.
161/162UDPSNMPNetwork device monitoring (agent 161, traps 162).
389TCP/UDPLDAPDirectory services (users, groups, auth).
443TCPHTTPSTLS-encrypted web traffic.
445TCPSMBWindows file and printer sharing.
465TCPSMTPSEmail submission over implicit TLS.
587TCPSMTP SubmissionEmail submission from clients (STARTTLS).
993TCPIMAPSIMAP over TLS.
995TCPPOP3SPOP3 over TLS.
1433TCPMS SQL ServerMicrosoft SQL Server database.
3306TCPMySQLMySQL / MariaDB database.
3389TCPRDPWindows Remote Desktop.
5432TCPPostgreSQLPostgreSQL database.
5900TCPVNCRemote desktop (VNC).
6379TCPRedisRedis key-value store.
8080TCPHTTP-altCommon alternative HTTP port for dev servers and proxies.
8443TCPHTTPS-altCommon alternative HTTPS port.
27017TCPMongoDBMongoDB database.

FAQ

What's the difference between TCP and UDP?

TCP is connection-oriented and guarantees ordered delivery; UDP is connectionless and faster but doesn't guarantee delivery — used where speed matters more (DNS lookups, time sync, streaming).

What are 'well-known' ports?

Ports 0–1023, reserved by IANA for standard services. Ports 1024–49151 are registered ports; 49152–65535 are ephemeral/dynamic.