PracticeBlogFlashcardsEspañol

High-Yield Ports and Protocols Table

Key Takeaways

  • Port questions usually test the service, transport protocol, secure alternative, or troubleshooting implication.
  • Know common administrative, web, name resolution, email, file transfer, directory, and monitoring ports.
  • TCP is connection-oriented; UDP is common for low-overhead queries, streaming, and discovery.
  • Secure replacements such as HTTPS, SSH, SFTP, SNMPv3, and LDAPS are common exam cues.
  • When a service fails, check DNS, reachability, port filtering, service status, and authentication in order.
Last updated: April 2026

High-Yield Ports and Protocols

Network+ N10-009 expects you to recognize common services by port, choose safer alternatives, and use port behavior during troubleshooting. Do not memorize the table as isolated trivia. Tie each port to a symptom.

Core Reference Table

ServicePortTransportWhat it doesExam cue
FTP data20TCPFile transfer data channelLegacy clear-text file transfer
FTP control21TCPFile transfer commandsUse SFTP or FTPS when security is required
SSH22TCPSecure remote shell and tunnelingSecure admin access
SFTP22TCPFile transfer over SSHSecure replacement for FTP in many scenarios
Telnet23TCPClear-text remote shellAvoid for secure administration
SMTP25TCPMail transfer between serversMail relay or outbound mail filtering
DNS53UDP/TCPName resolution and zone transfersUDP for most queries, TCP for zone transfers and large responses
DHCP server67UDPServer side of IPv4 address assignmentClient broadcasts discover
DHCP client68UDPClient side of IPv4 address assignmentAPIPA may indicate DHCP failure
TFTP69UDPSimple file transferDevice boot or config transfer, no built-in security
HTTP80TCPUnencrypted web trafficRedirect to HTTPS when possible
NTP123UDPTime synchronizationCertificates, logs, and Kerberos depend on accurate time
SNMP161UDPMonitoring queriesPrefer SNMPv3 for authentication and encryption
SNMP trap162UDPDevice-initiated alertMonitoring alert from device to manager
LDAP389TCP/UDPDirectory queriesDirectory lookup without TLS by default
HTTPS443TCPEncrypted web trafficWeb app, API, or secure management page
SMB445TCPWindows file and printer sharingFile share access or blocked lateral movement
Syslog514UDP/TCPLog forwardingCentralized log collection
LDAPS636TCPLDAP over TLSSecure directory queries
IMAP over TLS993TCPSecure mailbox retrievalMail client retrieval
POP3 over TLS995TCPSecure mailbox retrievalDownload-style mail retrieval
RDP3389TCP/UDPRemote desktopRemote GUI administration; restrict exposure
SIP5060/5061TCP/UDPVoice session signalingVoIP call setup; 5061 commonly uses TLS

Troubleshooting With Ports

SymptomUseful check
Website name fails before connectingDNS on 53, resolver configuration, DNS records
Website resolves but browser times outTCP 443 reachability, firewall logs, web service status
Device has APIPA addressDHCP broadcast path, relay, scope, VLAN, UDP 67/68
Secure switch admin failsSSH on 22, management ACL, local account or AAA
File share unavailableSMB on 445, name resolution, firewall, share permissions
Monitoring shows no device metricsSNMP version, community or credentials, ACL, UDP 161

Secure Alternatives

Avoid when possiblePreferWhy
TelnetSSHEncrypted remote administration
FTPSFTP or FTPSProtects credentials and file contents
HTTP login pagesHTTPSProtects sessions and credentials
SNMPv1 or SNMPv2cSNMPv3Adds authentication and encryption options
LDAP for sensitive queriesLDAPS or LDAP with StartTLSProtects directory traffic

Common Traps

  • Assuming DNS is UDP only; TCP is used for zone transfers and some large responses.
  • Confusing SSH and SFTP because both commonly use TCP 22.
  • Treating a closed port as proof that routing is broken.
  • Opening RDP or management services broadly instead of restricting source networks.
  • Forgetting that application authentication can fail even when the port is reachable.
  • Choosing Telnet or FTP when the question asks for secure management or transfer.
Test Your Knowledge

Which port is most commonly associated with SSH and SFTP?

A
B
C
D
Test Your Knowledge

A client has an APIPA address. Which service path should be checked first?

A
B
C
D
Test Your KnowledgeMulti-Select

Which are secure or more secure replacements for legacy clear-text options? Select three.

Select all that apply

SSH instead of Telnet
SFTP instead of FTP
HTTPS instead of HTTP for login pages
Telnet instead of SSH
FTP instead of SFTP