Skip to main content

Glossary/Transport

PortTCP port · UDP port

A 16-bit number (0–65535) identifying a specific service or socket on a host. Web is 80/443, SSH is 22, DNS is 53.

Ports are how a single IP can run dozens of services simultaneously. The combination of (source IP, source port, dest IP, dest port, protocol) uniquely identifies one TCP/UDP flow.

Ports under 1024 are "well-known" and conventionally require admin privileges to bind on Unix. Ephemeral ports for outbound connections are picked from the upper range (typically 32768–60999 on Linux).

See also