TCP/UDP Port Lookup

Search well-known, registered and dynamic ports by number or service.

Search a curated IANA-style port reference by number or service name to find the protocol, transport (TCP/UDP), service description and port range — well-known, registered and dynamic.

What is the difference between well-known, registered and dynamic ports?

IANA splits the port space into three ranges. Well-known ports (0–1023) are assigned to core services and usually need elevated privileges to bind. Registered ports (1024–49151) are assigned to specific applications on request. Dynamic or ephemeral ports (49152–65535) are not assigned and are used for the client side of outbound connections.

Find what runs on a port — or which port a service uses

When you see traffic on port 5432 or need to know where to point a client for redis, this tool answers both directions. Search by a port number to see the conventional service, or by a service name to find its standard port — along with the transport protocol (TCP, UDP, or both) and which IANA range the number falls in.

How it works

The page carries a curated list of common port assignments, each with its number, the transports it uses, a service name, and a description. A numeric query is matched exactly against the port number and is also classified into one of the three IANA ranges: well-known (0–1023), registered (1024–49151), or dynamic/ephemeral (49152–65535). A text query is matched case-insensitively against the service name and description, so mail surfaces SMTP, IMAP, and POP3 entries together. Results show every transport the service is registered for.

Tips and notes

Binding to a well-known port (below 1024) normally requires root or an explicit capability on Linux, which is why services like web servers often drop privileges after binding. Standard ports are conventions: clients default to them, but any service can be moved to a free port. On the public internet, treat exposure of high-risk ports — Telnet (23), SMB (445), RDP (3389), database ports — as something to firewall by default. This list covers common assignments; the full IANA Service Name and Transport Protocol Port Number Registry is authoritative for the long tail.