| Port | Proto | Service | Description |
|---|
About the Port Reference
Every network service listens on a port, and most troubleshooting eventually comes down to “is that port open, and what is supposed to be on it?” This reference covers the ports IT support technicians and network administrators actually meet: web and mail protocols, Windows and Active Directory traffic, VPNs, databases, VoIP, printing, virtualisation and monitoring. Use the search box for a port number or service name, or filter by category.
Ports 0–1023 are the IANA “well-known” range, 1024–49151 are registered ports, and 49152–65535 are dynamic/ephemeral ports used for outbound connections. Remember that a port number is only a convention — nothing stops an administrator running SSH on 2222 or a web server on 8080, which is why port scans report the service actually responding, not just the number.
How to Use This Tool
3389, smtp and kerberos all work.sql surface MSSQL, MySQL and PostgreSQL together.Common Use Cases
- Writing firewall rules. Confirm exactly which ports and protocols a new printer, camera system or application server needs before opening anything wider than necessary.
- Interpreting port scans. Turn a raw nmap result into meaning — 445 open on an unknown host says something very different from 8080.
- Security reviews. Spot legacy risk quickly: telnet (23), unencrypted FTP (21) or SMBv1-era services listening where they shouldn't be.
- Troubleshooting connectivity. When "the app doesn't work" turns out to be a blocked port, look up what the app actually uses and test that specific port.
- Certification study. A searchable, annotated port list beats flashcards for CompTIA, CCNA and similar exams — search by service and self-test.
Quick Testing Commands
- Windows:
Test-NetConnection host -Port 443in PowerShell checks TCP reachability. - Linux/macOS:
nc -zv host 443orcurl -v telnet://host:443. - What is listening locally?
netstat -ano(Windows) orss -tlnp(Linux). - Firewall rules: allow the specific port and protocol, not broad ranges — and note TCP vs UDP matters.