Study the common ports, protocols, and service behaviors that Network+ expects you to recognize in deployment and troubleshooting questions.
Port questions in Network+ are usually service-behavior questions. CompTIA is not mainly rewarding raw memorization of numbers. It is rewarding whether you understand what the service does, whether it is secure or legacy, and how the traffic should behave in the path.
RDP: Remote Desktop Protocol for graphical remote administration of Windows systems.
LDAP: Lightweight Directory Access Protocol, a directory-access protocol often used for identity and lookup functions.
The strongest answers usually depend on whether you can distinguish:
| Service or protocol family | Typical clue |
|---|---|
DNS |
users can reach by IP but not by hostname |
DHCP |
client cannot get valid addressing automatically |
HTTPS |
secure web access or API traffic |
SSH / RDP |
remote administration or remote desktop access |
LDAP |
directory lookup or identity integration |
SMTP, IMAP, POP3 |
mail delivery or retrieval behavior |
flowchart LR
A["Client"] --> B["DNS lookup"]
B --> C["Connect to app service"]
C --> D["HTTPS or other application flow"]
What to notice:
DNS problem before HTTPS is ever attempted1tcp 10.10.10.50:22 10.10.20.15:51544 ESTABLISHED
2tcp 10.10.10.80:443 10.10.30.22:49810 ESTABLISHED
3udp 10.10.10.53:53 10.10.30.22:61402
What to notice:
22 strongly suggests secure remote administration via SSH443 is a common secure web or API service port53 points to name-resolution behaviorCompTIA often rewards the answer that prefers the safer management or application choice when the scenario supports it:
SSH over TelnetHTTPS over unsecured web managementThat does not mean “encrypted” automatically makes every answer correct. The service still has to fit the job.
Continue with 1.5 Traffic Types & Communication Patterns to keep the domain flow intact.