4.6 IP Services — Comprehensive Review

Key Takeaways

  • Know every IP-services port: DHCP UDP 67/68, DNS 53, NTP UDP 123, SNMP UDP 161/162, Syslog UDP 514, TFTP UDP 69, FTP TCP 20/21, SSH 22, Telnet 23.
  • NAT needs ip nat inside/outside on interfaces plus an ip nat inside source rule; overload enables PAT.
  • Secure replacements: SSH (22) for Telnet (23), HTTPS (443) for HTTP (80), SCP/SFTP for FTP/TFTP, SNMPv3 for v1/v2c.
  • Ping-by-IP success but name failure isolates the fault to DNS, not connectivity.
  • Syslog and SNMP logging levels send the configured severity plus everything more severe.
Last updated: June 2026

This section is your single-page revision sheet for IP Services. The blueprint weights this domain at 10%, and most of its points are won on ports, service behavior, and short troubleshooting scenarios rather than long configurations.

Complete Port Reference

ServiceProtocolPort(s)Note
FTP dataTCP20Active-mode data channel
FTP controlTCP21Commands
SSH / SCPTCP22Encrypted access + secure copy
TelnetTCP23Clear text — avoid
SMTPTCP25Mail sending
TACACS+TCP49AAA, Cisco
DNSUDP/TCP53UDP query, TCP zone transfer
DHCP serverUDP67Server listens here
DHCP clientUDP68Client listens here
TFTPUDP69No auth
HTTPTCP80Clear-text web
POP3TCP110Mail retrieval
NTPUDP123Time sync
SNMP pollUDP161GET / SET
SNMP trapUDP162Notifications
HTTPSTCP443Encrypted web
SyslogUDP514Log messages
RADIUS auth / acctUDP1812 / 1813AAA

Service-by-Service Cheat Sheet

ServiceJobOne fact that wins points
DHCPAuto IP configDORA; ip helper-address for relay
DNSName -> IPA = IPv4, AAAA = IPv6
NTPClock syncLower stratum = more accurate
SNMPMonitor/manageOnly v3 is secure; TRAP = agent to manager
SyslogCentral logging0 Emergency ... 7 Debugging
NATAddress translationoverload = PAT; inside local vs global
QoSPrioritize trafficEF = voice = DSCP 46
SSHSecure CLI accessNeeds hostname + domain + RSA key
TFTPSimple transferUDP 69, no auth
FTPFull transferTCP 20/21, authenticated

Secure vs Insecure Pairings

The exam repeatedly rewards choosing the encrypted option. Memorize the swaps:

  • SSH (22) replaces Telnet (23) — encrypted CLI.
  • HTTPS (443) replaces HTTP (80) — encrypted web management.
  • SCP / SFTP replace FTP / TFTP — encrypted file transfer.
  • SNMPv3 replaces v1 / v2c — adds authentication and encryption.

Four Canonical Troubleshooting Scenarios

1. "Users get no IP address." -> DHCP. Confirm the server is up, the client gateway has ip helper-address if the server is on another subnet, the pool still has free addresses, and the excluded range has not swallowed the scope.

2. "Users reach IPs but not names." -> DNS. Connectivity is proven by the IP ping, so check the client's resolver, ping that resolver, and run nslookup. This is the single most common scenario question in the chapter.

3. "Log timestamps disagree across devices." -> NTP. Verify ntp server on each device and show ntp status to confirm synchronization; pair with service timestamps log datetime msec.

4. "Inside users cannot reach the internet." -> NAT. Confirm ip nat inside/outside on the right interfaces, inspect show ip nat translations, check that the NAT ACL permits the client subnet, and verify overload for PAT.

Final Exam-Day Pointers

  • When a question gives a packet capture, the port number usually identifies the service faster than reading the payload — 67/68 means DHCP, 53 means DNS, 123 means NTP.
  • Logging and trap commands are inclusive downward in number: logging trap 4 sends levels 0-4.
  • For NAT labeling drag-and-drops, remember local = inside view, global = outside view; inside = your host, outside = the remote host.
  • Always pick the encrypted protocol when both appear as options unless the question explicitly describes a trusted, isolated management network.

Common Distractor Patterns

IP Services questions often hide the answer behind a plausible-sounding wrong option, so learn the traps. A question may offer ip dhcp relay as the relay command when the real command is ip helper-address — the relay concept is right but the syntax is invented. NAT questions dangle "Policy NAT" as a fourth type; CCNA recognizes only static, dynamic, and PAT. SNMP questions claim "all versions support encryption" — only v3 does. Syslog questions reverse the scale, suggesting level 7 is most critical when 0 (Emergency) is. And port questions swap the DHCP pair, offering 68 for the server when the server listens on 67.

Reading every option to the end, rather than picking the first that looks right, is worth several points across this domain.

A Two-Minute Self-Test Before the Exam

Run this mental checklist and you have covered the bulk of the domain. Can you (1) write the full port table from memory; (2) recite DORA and name the relay command; (3) say which DNS record maps to IPv4 versus IPv6; (4) order the NTP stratums and state that lower is better; (5) place SNMP GET/SET versus TRAP by direction and name the secure version; (6) list the syslog severities 0-7 and explain inclusive-downward logging; (7) identify EF/DSCP 46 for voice and the 150/30/1 voice budget; (8) configure SSH in the correct order; and (9) match each of the four troubleshooting scenarios to its service?

Any "no" answer is your highest-value review target.

On the exam: IP Services is 10% of the 200-301 blueprint and is heavy on recall. If you can reproduce the port table, the secure-versus-insecure pairings, the common distractor patterns, and the four scenarios above, you will capture nearly every point this domain offers.

Test Your Knowledge

On which port does a DHCP server listen for client messages?

A
B
C
D
Test Your Knowledge

A user can ping 8.8.8.8 but cannot open www.google.com. What is the most likely cause?

A
B
C
D
Test Your Knowledge

Which syslog severity level represents the most critical condition?

A
B
C
D
Test Your Knowledge

Which statement best contrasts FTP with TFTP?

A
B
C
D