High-Yield Ports and Protocols Table

Key Takeaways

  • Port items on N10-009 test the service, its transport (TCP vs UDP), the secure alternative, and the troubleshooting implication, not raw memorization.
  • Know administrative, web, name-resolution, email, file-transfer, directory, time, and monitoring ports cold because they recur in scenario stems.
  • TCP is connection-oriented (handshake, ordered delivery); UDP is low-overhead and used for DNS queries, DHCP, NTP, SNMP, TFTP, and streaming.
  • Secure replacements such as SSH (22), HTTPS (443), SFTP (22), SNMPv3, LDAPS (636), and IMAPS (993)/POP3S (995) are frequent correct answers.
  • When a service fails, work the order: DNS resolution, Layer 3 reachability, port filtering, service status, then authentication.
Last updated: June 2026

High-Yield Ports and Protocols

The CompTIA Network+ N10-009 exam (up to 90 questions in 90 minutes, passing score 720 on a 100–900 scale) expects you to recognize a service from its port, pick the safer alternative, and use port behavior to drive troubleshooting. Objective 1.4 explicitly lists ports and protocols, and they reappear inside Security and Troubleshooting items. Do not memorize the table as isolated trivia—tie each port to a symptom and a transport.

Transport matters. TCP (Transmission Control Protocol) is connection-oriented: it performs the three-way handshake (SYN, SYN-ACK, ACK), guarantees ordered delivery, and retransmits lost segments. UDP (User Datagram Protocol) is connectionless and lightweight, so it carries DNS queries, DHCP, NTP, SNMP, TFTP, and real-time voice/video where retransmission would add harmful delay.

Core Reference Table

ServicePortTransportWhat it doesExam cue
FTP data20TCPFile-transfer data channelLegacy clear-text transfer
FTP control21TCPFile-transfer commandsUse SFTP or FTPS when secure
SSH22TCPSecure shell and tunnelingSecure admin access
SFTP22TCPFile transfer over SSHSecure FTP replacement
Telnet23TCPClear-text remote shellNever for secure admin
SMTP25TCPServer-to-server mailOutbound relay/filtering
DNS53UDP/TCPName resolution; zone transfersUDP for queries, TCP for zone transfer
DHCP server/client67/68UDPIPv4 address assignmentAPIPA = DHCP failure
TFTP69UDPTrivial file transferDevice boot/config, no security
HTTP80TCPUnencrypted webRedirect to HTTPS
Kerberos88UDP/TCPAuthentication ticketsTime-sensitive (NTP dependency)
NTP123UDPTime syncCerts, logs, Kerberos depend on it
SNMP161UDPMonitoring queriesPrefer SNMPv3
SNMP trap162UDPDevice-initiated alertDevice-to-manager alert
LDAP389TCP/UDPDirectory queriesNo TLS by default
HTTPS443TCPEncrypted web/APISecure mgmt page
SMB445TCPWindows file/printer shareLateral-movement target
Syslog514UDP/TCPLog forwardingCentralized logging
LDAPS636TCPLDAP over TLSSecure directory
IMAPS993TCPSecure mailbox retrievalLeaves mail on server
POP3S995TCPSecure mailbox retrievalDownloads mail
SQL (MS)1433TCPMicrosoft SQL ServerDB connectivity
RDP3389TCP/UDPRemote desktopRestrict exposure
SIP5060/5061TCP/UDPVoIP signaling5061 commonly TLS

Troubleshooting With Ports

SymptomUseful check
Name fails before connectingDNS on 53, resolver config, records
Resolves but browser times outTCP 443 reachability, firewall logs, service status
Device has APIPA (169.254.x.x)DHCP path, relay, scope, VLAN, UDP 67/68
Secure switch admin failsSSH on 22, management ACL, AAA
File share unavailableSMB 445, name resolution, share permissions
No device metrics in monitoringSNMP version, community/credentials, ACL, UDP 161
Clocks drift, certs/logs misbehaveNTP on UDP 123, stratum source

Secure Alternatives

  • Telnet → SSH (encrypted remote administration)
  • FTP → SFTP or FTPS (protects credentials and file contents)
  • HTTP login → HTTPS (protects sessions and credentials)
  • SNMPv1/v2c → SNMPv3 (adds authentication and privacy)
  • LDAP → LDAPS or LDAP with StartTLS (protects directory traffic)

Worked Scenario: Email Client Cannot Receive Mail

A user reports that Outlook can send but not receive. The send path uses SMTP, so outbound on port 25 (or the submission port) is healthy. Receiving uses either IMAP or POP3. Modern, secure clients should retrieve mail over IMAPS (993) or POP3S (995), both encrypted with TLS. If the client was configured for legacy plaintext IMAP (143) or POP3 (110) and the mail provider disabled clear-text retrieval, the symptom is exactly "send works, receive fails." The fix is to reconfigure the account to the secure retrieval port, which also explains why N10-009 pairs each clear-text port with its TLS counterpart.

Notice the diagnostic logic: identify the function (receive), map it to candidate protocols (IMAP/POP3), then check whether the secure or insecure variant is required by policy.

Why Time and Authentication Ports Recur

Two ports show up far more often than their obscurity suggests. NTP (UDP 123) underpins certificate validation, log correlation, and Kerberos. If clocks drift more than five minutes, Kerberos (UDP/TCP 88) rejects tickets and certificate checks may fail, producing login errors that look unrelated to time. RADIUS centralizes authentication for VPN, 802.1X wired ports, and Wi-Fi; a failed RADIUS path makes every downstream service appear broken even though the underlying network is fine.

When a stem describes widespread authentication failures after a server change, suspect NTP or the AAA server before blaming individual application ports.

Common Traps

  • Assuming DNS is UDP only; TCP 53 is used for zone transfers and oversized responses.
  • Confusing SSH and SFTP because both ride TCP 22.
  • Treating a closed port as proof that routing is broken.
  • Exposing RDP (3389) broadly instead of restricting source networks or using a jump host.
  • Forgetting that application authentication can fail even when the port is reachable.
  • Choosing Telnet or FTP when the stem says "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 shows a 169.254.x.x 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