MB Networks
TOOL-20 · Reference
Searchable table of well-known TCP and UDP ports. Search by port number, service name, or description.
| Port | Proto | Service | Description |
|---|
Ports 0–1023 are IANA's well-known range, reserved for specific standard services (22 SSH, 80 HTTP, 443 HTTPS, 3389 RDP) — on most systems, binding to one of these requires elevated privileges. Ports 1024–49151 are registered (still assigned to specific services by convention, like 3306 MySQL or 5432 PostgreSQL, but not privilege-restricted), and 49152–65535 are ephemeral, used as temporary source ports for outbound connections, never assigned to a fixed service.
Knowing whether a port is TCP, UDP, or both changes what a firewall rule actually needs to allow — DNS (53) uses both, most web traffic is TCP-only, and getting this wrong is a common cause of a firewall rule that looks right but silently blocks half the expected traffic.
TCP is connection-oriented and guarantees delivery order (web traffic, SSH, email); UDP is connectionless and faster but doesn't guarantee delivery (DNS queries, video streaming, VoIP). Some services, like DNS on port 53, use both for different purposes — UDP for typical queries, TCP for large responses.
It's a decades-old Unix convention, still enforced on Linux/macOS/BSD by default: binding to a well-known port (0–1023) requires elevated privileges specifically so an unprivileged process can't impersonate a standard service like SSH or HTTP on its expected port.
They're the temporary source port your OS assigns automatically for outbound connections — when your browser connects to a web server on port 443, your side of that connection uses a random ephemeral port (typically 49152–65535) that gets released once the connection closes.
Related tools
Networking
HTTP Status Code Reference
Searchable HTTP status code reference with descriptions, common causes, and usage notes. Filter by category: 2xx, 3xx, 4xx, 5xx.
Open →Networking
CIDR Aggregator
Paste a list of IP addresses or CIDR blocks and get the minimal set of CIDR ranges that covers them all. Useful for firewall ACLs and route summarization.
Open →Networking
DNS Lookup
Look up DNS records, domain registration (RDAP/WHOIS), and IP geolocation for any domain or IP address. No install, no sign-up.
Open →Networking
MAC Address Vendor Lookup
Look up the manufacturer of any network device by MAC address. Queries the IEEE OUI database to identify the vendor from the first 3 octets.
Open →Networking
PoE Budget Calculator
Add your PoE devices and check total draw against your switch's power budget — with common PoE class presets for APs, cameras, and phones.
Open →Networking
IPv4 Subnet Calculator
Enter any IPv4 address and prefix length to instantly see network address, broadcast, usable hosts, subnet mask, wildcard mask, and a bit-level breakdown. Works for any /0–/32.
Open →Based on IANA well-known port assignments