4.6 IP Services — Comprehensive Review

Key Takeaways

  • DHCP, DNS, NTP, SNMP, syslog, NAT, and QoS are all testable IP services — know their ports and protocols.
  • DHCP uses UDP 67/68; DNS uses UDP/TCP 53; NTP uses UDP 123; SNMP uses UDP 161/162; Syslog uses UDP 514.
  • NAT is configured with ip nat inside/outside on interfaces and ip nat inside source for translation rules.
  • SSH (TCP 22) replaces Telnet (TCP 23); HTTPS (TCP 443) replaces HTTP (TCP 80).
  • TFTP (UDP 69) is for simple file transfers; FTP (TCP 20/21) supports authentication and directory listing.
Last updated: March 2026

IP Services — Comprehensive Review

This section consolidates all IP services into a single review reference. Use it to verify your knowledge of ports, protocols, and service behavior.

Complete Port Number Reference

ServiceProtocolPort(s)Notes
FTP DataTCP20Active mode data transfer
FTP ControlTCP21Command/control channel
SSHTCP22Encrypted remote access
TelnetTCP23Unencrypted remote access (avoid)
SMTPTCP25Email sending
DNSUDP/TCP53UDP for queries, TCP for zone transfers
DHCP ServerUDP67Server listens on this port
DHCP ClientUDP68Client listens on this port
TFTPUDP69Simple file transfer
HTTPTCP80Unencrypted web
POP3TCP110Email retrieval
NTPUDP123Time synchronization
SNMPUDP161Queries (GET, SET)
SNMP TrapUDP162Notifications
HTTPSTCP443Encrypted web
SyslogUDP514Log messages
TACACS+TCP49AAA (Cisco proprietary)
RADIUS AuthUDP1812AAA authentication
RADIUS AcctUDP1813AAA accounting

Service Summary Table

ServiceWhat It DoesKey Exam Fact
DHCPAuto-assigns IP config to clientsDORA process; ip helper-address for relay
DNSResolves hostnames to IPsUDP 53 for queries; A record = IPv4
NTPSynchronizes clocksStratum levels; UDP 123
SNMPMonitors/manages devicesv3 for security; GET/SET/TRAP
SyslogCentralizes log messagesSeverity 0-7; 0=Emergency, 7=Debug
NATTranslates IP addressesPAT = overload; inside local/global
QoSPrioritizes trafficEF=voice (DSCP 46); AF=data
SSHSecure remote accessReplaces Telnet; needs hostname + domain + RSA keys
TFTPSimple file transferUDP 69; no authentication
FTPFull file transferTCP 20/21; supports authentication

Common Exam Scenarios

Scenario 1: "Users cannot get IP addresses"

  • Check DHCP server status
  • Verify ip helper-address on the client's default gateway
  • Check DHCP pool configuration (excluded addresses, pool range)
  • Verify the DHCP scope has available addresses

Scenario 2: "Users can reach IP addresses but not hostnames"

  • DNS is not working
  • Check DNS server configuration on clients (ipconfig /all)
  • Verify DNS server is reachable (ping the DNS server IP)
  • Test with nslookup

Scenario 3: "Log timestamps don't match between devices"

  • NTP is not configured or not synchronized
  • Check ntp server configuration on all devices
  • Verify NTP is synchronized (show ntp status)

Scenario 4: "Internal users cannot reach the internet"

  • Check NAT configuration (ip nat inside/outside on interfaces)
  • Verify NAT translation table (show ip nat translations)
  • Check the ACL associated with NAT
  • Verify the overload keyword for PAT
Test Your Knowledge

Which port does the DHCP server listen on?

A
B
C
D
Test Your Knowledge

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

A
B
C
D
Test Your Knowledge

Which syslog severity level represents the MOST critical messages?

A
B
C
D
Test Your Knowledge

What is the key difference between FTP and TFTP?

A
B
C
D