Cheat sheet: CompTIA Network+ V10 (N10-010) review of ports, subnetting, routing, switching, wireless, security, operations, and troubleshooting.
Use the tables for a quick pre-exam check. Expand a topic’s notes for explanations, examples, and additional distinctions.
Scope and study context
Focus your final review on:
Layering: which device, protocol, address, or failure belongs at which layer.
Subnetting: CIDR, masks, host counts, broadcast/network IDs, and default gateways.
Ports and protocols: default ports, secure alternatives, and TCP/UDP distinctions.
Infrastructure decisions: switching, routing, wireless, WAN, cloud, segmentation, and high availability.
Security controls: AAA, 802.1X, firewalls, VPNs, certificates, ACLs, and common attacks.
Troubleshooting: symptoms, tools, commands, packet flow, and likely root causes.
Use this Cheat Sheet as a final-pass study aid for CompTIA Network+ V10 (N10-010) from CompTIA. The goal is to refresh high-yield networking concepts before you move into topic drills, mock exams, and detailed explanations.
The real exam rewards more than memorized definitions. Be ready to:
Identify the most likely cause of a network symptom.
Choose the best next step, not just a technically correct step.
Read IP addressing, routing, VLAN, wireless, security, and troubleshooting scenarios quickly.
Apply secure-by-default thinking: least privilege, segmentation, encrypted management, logging, and change control.
This page is IT Mastery review support and pairs well with an IT Mastery question bank containing original practice questions, topic drills, mock exams, and detailed explanations.
OSI, TCP/IP, Devices, and Encapsulation
OSI Layer Reference
OSI layer
PDU / unit
Common examples
Devices / controls
Exam traps
7 Application
Data
HTTP, DNS, SMTP, SMB, SNMP, DHCP
Proxies, WAF, application gateways
“Application layer” means network application protocol, not necessarily end-user software.
6 Presentation
Data
TLS/SSL, encryption, compression, encoding
TLS inspection, certificate validation
TLS is often discussed with HTTPS but maps conceptually to presentation/session functions.
5 Session
Data
Session setup/teardown, RPC, NetBIOS session
Session-aware firewalls
Do not confuse session layer with TCP sessions at Layer 4.
4 Transport
Segment/datagram
TCP, UDP, ports, reliability, flow control
L4 firewall, load balancer, NAT/PAT
TCP is connection-oriented; UDP is connectionless but not automatically “bad.”
3 Network
Packet
IPv4, IPv6, ICMP, routing, IPsec
Routers, L3 switches, ACLs
Routers forward by IP; switches forward by MAC unless operating at L3.
2 Data link
Frame
Ethernet, Wi-Fi MAC, VLAN tags, ARP, STP
Switches, bridges, NICs, WAP bridging
VLANs are Layer 2 segmentation; they commonly pair with Layer 3 subnets.
1 Physical
Bits/signals
Copper, fiber, RF, connectors, pinouts
Cables, transceivers, repeaters, hubs
Link light does not guarantee correct IP, VLAN, DNS, or routing.
Notes and examples
Addressing by Layer
Address / identifier
Layer
Scope
Used for
Common command clue
MAC address
2
Local broadcast domain
Ethernet/Wi-Fi frame delivery
arp -a, switch MAC table
IPv4 / IPv6 address
3
Routed network
End-to-end packet delivery
ipconfig, ip addr, ping
TCP/UDP port
4
Host process
Application/service identification
netstat, ss, firewall logs
FQDN / hostname
7
Human-readable name
DNS resolution to address
nslookup, dig
Encapsulation Path
Step
Sender does
Receiver does
Application data
Creates protocol data, such as HTTP request
Interprets application protocol
Transport
Adds TCP/UDP source and destination ports
Delivers data to correct process
Network
Adds source/destination IP addresses
Validates destination IP, routes if needed
Data link
Adds source/destination MAC addresses
Checks local frame delivery
Physical
Sends bits as electrical, optical, or RF signals
Converts signal back to bits
Common trap: a packet going to a remote subnet uses the destination IP of the remote host but the destination MAC of the local default gateway.
Essential Ports and Protocols
Common TCP/UDP Ports
Service / protocol
Port(s)
Transport
Use
Exam cues and traps
FTP data/control
20 / 21
TCP
File transfer
Not encrypted; active/passive modes affect data connection behavior.
SSH
22
TCP
Secure remote shell
Also used by SFTP.
SFTP
22
TCP
Secure file transfer over SSH
Different from FTPS.
Telnet
23
TCP
Remote terminal
Insecure cleartext; avoid when SSH is available.
SMTP
25
TCP
Mail server transfer
Client submission often uses 587 with STARTTLS.
DNS
53
UDP/TCP
Name resolution
UDP common for queries; TCP for zone transfers and large responses.
DHCP server/client
67 / 68
UDP
Dynamic IPv4 configuration
Requires relay/IP helper across routed subnets.
TFTP
69
UDP
Simple file transfer
No authentication; used for lightweight boot/config tasks.
HTTP
80
TCP
Web traffic
Cleartext.
Kerberos
88
TCP/UDP
Authentication tickets
Time synchronization matters.
POP3
110
TCP
Mail retrieval
POP3S commonly uses 995.
NTP
123
UDP
Time synchronization
Critical for Kerberos, certificates, logs, and forensics.
IMAP
143
TCP
Mail access
IMAPS commonly uses 993.
SNMP
161
UDP
Monitoring queries
Prefer SNMPv3 for authentication/encryption.
SNMP trap
162
UDP
Device-generated alerts
Trap/inform direction is device to manager.
LDAP
389
TCP/UDP
Directory access
LDAPS commonly uses 636.
HTTPS
443
TCP
Secure web traffic
Uses TLS certificates; check name, trust chain, and validity.
SMB/CIFS
445
TCP
File/printer sharing
Common in Windows environments.
Syslog
514
UDP/TCP
Log forwarding
TLS-secured syslog commonly uses 6514.
SMTP submission
587
TCP
Authenticated mail submission
Common secure client-to-server submission with STARTTLS.
LDAPS
636
TCP
LDAP over TLS
Encrypts directory queries.
IMAPS
993
TCP
IMAP over TLS
Secure mail access.
POP3S
995
TCP
POP3 over TLS
Secure mail retrieval.
SQL Server
1433
TCP
Microsoft SQL Server
Database access; restrict with firewall rules.
RADIUS auth/accounting
1812 / 1813
UDP
AAA for network access
Common with 802.1X and VPN authentication.
RDP
3389
TCP/UDP
Remote desktop
Exposing directly to the internet is high risk.
SIP
5060 / 5061
TCP/UDP
VoIP signaling
5061 is SIP over TLS.
RTP
Dynamic UDP
UDP
VoIP media stream
Sensitive to latency, jitter, and packet loss.
BGP
179
TCP
Interdomain routing
Used between autonomous systems and providers.
TACACS+
49
TCP
Device administration AAA
Separates authentication, authorization, and accounting.
IKE / IPsec NAT-T
500 / 4500
UDP
IPsec negotiation and NAT traversal
ESP is IP protocol 50, not TCP/UDP port 50.
AH / ESP
Protocol 51 / 50
IP protocol
IPsec integrity/encryption
AH does not provide encryption; ESP can provide encryption and integrity.
Notes and examples
Secure vs Insecure Service Choices
If you see…
Prefer…
Why
Telnet
SSH
Encrypted management plane.
FTP
SFTP or FTPS
Protects credentials and file contents.
HTTP login page
HTTPS
Protects authentication and session data.
SNMPv1/v2c
SNMPv3
Adds authentication and encryption options.
LDAP over untrusted network
LDAPS or LDAP with StartTLS
Protects directory queries and credentials.
Open Wi-Fi
WPA3/WPA2 Enterprise or secure guest design
Reduces unauthorized access and sniffing.
IPv4, IPv6, and Subnetting
Core Subnetting Formulas
\[
\text{Usable IPv4 hosts per subnet} = 2^{\text{host bits}} - 2
\]\[
\text{Number of created subnets} = 2^{\text{borrowed bits}}
\]\[
\text{Block size} = 256 - \text{interesting octet mask value}
\]
Exceptions:
/31 IPv4 can be used for point-to-point links; both addresses are usable in that context.
/32 IPv4 is a single host route.
IPv6 subnetting usually focuses on prefix length and routing design, not broadcast addresses.
Fast IPv4 CIDR Table
CIDR
Mask
Addresses per subnet
Typical usable IPv4 hosts
Block size cue
/16
255.255.0.0
65,536
65,534
1 in 2nd octet
/17
255.255.128.0
32,768
32,766
128 in 3rd octet
/18
255.255.192.0
16,384
16,382
64 in 3rd octet
/19
255.255.224.0
8,192
8,190
32 in 3rd octet
/20
255.255.240.0
4,096
4,094
16 in 3rd octet
/21
255.255.248.0
2,048
2,046
8 in 3rd octet
/22
255.255.252.0
1,024
1,022
4 in 3rd octet
/23
255.255.254.0
512
510
2 in 3rd octet
/24
255.255.255.0
256
254
1 in 3rd octet
/25
255.255.255.128
128
126
128 in 4th octet
/26
255.255.255.192
64
62
64 in 4th octet
/27
255.255.255.224
32
30
32 in 4th octet
/28
255.255.255.240
16
14
16 in 4th octet
/29
255.255.255.248
8
6
8 in 4th octet
/30
255.255.255.252
4
2
4 in 4th octet
/31
255.255.255.254
2
2 for point-to-point
2 in 4th octet
/32
255.255.255.255
1
1 host route
1 address
Subnetting Workflow
Identify the CIDR prefix and subnet mask.
Find the interesting octet: the first octet that is not 255 or 0.
Calculate the block size: 256 minus the mask value in that octet.
List subnet boundaries in increments of the block size.
The network ID is the boundary at or below the IP.
The broadcast is one less than the next boundary.
Usable host range is between network ID and broadcast, except for /31 and /32 cases.
Example: 192.168.10.77/26
Step
Result
Mask
255.255.255.192
Block size
64
Subnet boundaries
.0, .64, .128, .192
Network ID
192.168.10.64
Broadcast
192.168.10.127
Usable hosts
192.168.10.65 through 192.168.10.126
IPv4 Special Ranges
Range
Purpose
Exam cue
10.0.0.0/8
Private IPv4
Not internet-routable without NAT.
172.16.0.0/12
Private IPv4
Includes 172.16.0.0 through 172.31.255.255 only.
192.168.0.0/16
Private IPv4
Common home/small office range.
169.254.0.0/16
APIPA/link-local IPv4
Usually indicates DHCP failure on IPv4 clients.
127.0.0.0/8
Loopback
Tests local TCP/IP stack.
0.0.0.0/0
Default route
“Any IPv4 destination.”
255.255.255.255
Limited broadcast
Local broadcast only; not routed.
224.0.0.0/4
Multicast
One-to-many group traffic.
100.64.0.0/10
Carrier-grade NAT space
Used by providers; not typical enterprise private LAN space.
IPv6 Address Types
IPv6 type
Range / example
Purpose
Trap
Global unicast
2000::/3
Publicly routable IPv6
No NAT is required by design, though firewalls still matter.
Link-local
fe80::/10
Local-link communication
Normal on IPv6 hosts; not equivalent to IPv4 APIPA failure.
Unique local
fc00::/7, commonly fd00::/8
Private internal IPv6
Similar design role to private IPv4, but not the same mechanism.
Multicast
ff00::/8
One-to-many
IPv6 uses multicast heavily; no IPv6 broadcast.
Loopback
::1
Local host
Like 127.0.0.1.
Unspecified
::
No address / default source placeholder
Used before address assignment or in sockets.
Default route
::/0
Any IPv6 destination
IPv6 equivalent of 0.0.0.0/0.
IPv4 vs IPv6 Exam Distinctions
Topic
IPv4
IPv6
Address length
32-bit
128-bit
Broadcast
Yes
No broadcast; uses multicast/anycast
Neighbor mapping
ARP
Neighbor Discovery Protocol using ICMPv6
Autoconfiguration
DHCP common
SLAAC, DHCPv6, or both
NAT
Common due to address conservation
Not required for address conservation
Header
Variable with options
Simplified base header with extension headers
Local-only address
169.254.0.0/16 APIPA
fe80::/10 link-local
Notes and examples
Address ranges and meanings
Range / type
Meaning
Exam cue
10.0.0.0/8
Private IPv4
Internal addressing, NAT needed for internet access
The “minus 2” accounts for the network and broadcast addresses. Exceptions exist for special-use designs such as point-to-point /31 links and host-specific /32 routes.
CIDR
Mask
Addresses
Typical usable hosts
Block size in last octet
/24
255.255.255.0
256
254
256
/25
255.255.255.128
128
126
128
/26
255.255.255.192
64
62
64
/27
255.255.255.224
32
30
32
/28
255.255.255.240
16
14
16
/29
255.255.255.248
8
6
8
/30
255.255.255.252
4
2
4
/32
255.255.255.255
1
1 host route
1
Fast subnet process:
Identify the interesting octet where the mask is not 255 or 0.
Calculate block size: 256 minus the mask value in that octet.
Find the block range containing the IP.
First address is the network; last address is the broadcast.
Usable range is between them.
Example: 192.168.10.77/26
Mask is 255.255.255.192, block size is 64. Blocks are 0–63, 64–127, 128–191, 192–255.
So 192.168.10.77 is in the 64–127 block:
Network: 192.168.10.64
Usable: 192.168.10.65 through 192.168.10.126
Broadcast: 192.168.10.127
IPv4 traps
Symptom
Likely issue
Host can reach local subnet but not remote networks
Mismatches can cause fragmentation or black-hole behavior.
Wireless Networking
Wi-Fi Standards and Bands
Standard
Common name
Bands
Key cue
802.11b
Wi-Fi legacy
2.4 GHz
Old, slow, interference-prone.
802.11a
Wi-Fi legacy
5 GHz
Older 5 GHz standard.
802.11g
Wi-Fi legacy
2.4 GHz
Legacy 2.4 GHz.
802.11n
Wi-Fi 4
2.4 / 5 GHz
MIMO; still encountered.
802.11ac
Wi-Fi 5
5 GHz
Wider channels, higher throughput in 5 GHz.
802.11ax
Wi-Fi 6 / 6E
2.4 / 5 / 6 GHz
OFDMA, dense client support; 6E adds 6 GHz operation.
802.11be
Wi-Fi 7
2.4 / 5 / 6 GHz
Newer high-throughput/low-latency features such as multi-link operation.
Notes and examples
Wireless Design Decisions
Requirement
Prefer
Why
Longer range / wall penetration
2.4 GHz
Better propagation, but more interference and fewer non-overlapping channels.
Higher capacity
5 GHz or 6 GHz
More channels and less congestion.
Dense offices/classrooms
Wi-Fi 6/6E design with proper channel/power planning
Handles many clients more efficiently.
Guest access
Separate SSID/VLAN with captive portal or isolated policy
Limits guest access to internal resources.
Enterprise authentication
WPA2/WPA3 Enterprise with 802.1X/RADIUS
Per-user/device authentication and centralized control.
Small office/simple deployment
WPA3-Personal or WPA2-Personal if required
Uses shared passphrase; easier but less granular.
Voice over Wi-Fi
Surveyed coverage, roaming support, QoS
Sensitive to latency, jitter, and roaming delays.
Wireless Security and Troubleshooting
Symptom / risk
Likely cause
Fix / check
Users connect but cannot reach LAN
Wrong VLAN mapping, ACL, DHCP scope, captive portal state
SSID-to-VLAN mapping, gateway, DHCP lease
Poor throughput near AP
Channel congestion, low data rates, interference, client issue
Channel utilization, band steering, drivers
Frequent disconnects
Roaming thresholds, power levels, interference, authentication timeouts
AP placement, controller logs, RSSI/SNR
Clients cannot authenticate
RADIUS, certificate, EAP type, time mismatch
AAA logs, certificate chain, NTP
Rogue AP / evil twin
Unauthorized AP mimicking SSID
WIDS/WIPS, wired port control, user training
Deauthentication attacks
Wi-Fi management frame abuse
WPA3/PMF where supported, monitoring
Hidden SSID expected to secure network
Misconception
Hidden SSID is not strong security. Use encryption/authentication.
Antenna and RF Terms
Term
Meaning
Omnidirectional
Radiates broadly around antenna; common for general coverage.
Directional
Focuses signal in a direction; useful for point-to-point or targeted coverage.
dBm
Absolute power level measurement.
dBi
Antenna gain relative to isotropic radiator.
RSSI
Received signal strength indicator.
SNR
Signal-to-noise ratio; higher is generally better.
Channel overlap
Adjacent channels interfere, especially in 2.4 GHz.
DFS
5 GHz channels that may change due to radar detection requirements.
Wireless networking review
Area
High-yield points
2.4 GHz
Longer range, more interference, fewer non-overlapping channels
5 GHz
More channels, less crowded, shorter range than 2.4 GHz
6 GHz
More spectrum for newer Wi-Fi deployments; client/AP support required
Channel width
Wider channels can increase throughput but also increase interference risk
Roaming
Depends on coverage overlap, client behavior, and enterprise features
RSSI
Signal strength
SNR
Signal relative to noise; often more useful than raw signal alone
WPA2/WPA3-Personal
Pre-shared key model
WPA2/WPA3-Enterprise
802.1X/EAP with RADIUS-backed authentication
Captive portal
Web-based acceptance/authentication flow
Guest network
Segmented access, usually internet-only
Mesh
APs may use wireless backhaul; placement matters
Wireless symptom mapping:
Symptom
Likely causes
Works near AP but not farther away
Low signal, poor AP placement, antenna issue, obstruction
Slow in crowded area
Co-channel interference, too many clients, channel width, RF congestion
Some clients cannot connect
Security mode mismatch, unsupported band, old drivers, WPA version issue
Drops while moving
Roaming threshold, AP overlap, sticky client, authentication delay
Good signal but poor throughput
Interference, high noise, channel utilization, low data rates, WAN bottleneck
Guest Wi-Fi works but internal resources fail
Segmentation/firewall policy working as designed or misconfigured access rules
Security trap: a strong wireless signal does not mean a secure wireless design. Verify WPA mode, authentication method, guest isolation, management access, and rogue AP controls.
Security Controls and Network Hardening
Authentication, Authorization, and Accounting
Control
Purpose
Exam distinction
Authentication
Proves identity
Password, certificate, token, biometric, MFA.
Authorization
Determines allowed actions
“What can this authenticated identity do?”
Accounting
Records activity
Logs commands, sessions, access times.
RADIUS
Network access AAA
Common for VPN, Wi-Fi, 802.1X; UDP-based.
TACACS+
Device administration AAA
TCP-based; separates AAA functions.
802.1X
Port-based network access control
Supplicant, authenticator, authentication server.
NAC
Enforces access/posture policy
May check device health, identity, compliance.
MFA
Multiple factors
Something you know, have, are, do, or somewhere you are.
Notes and examples
Firewalls, Segmentation, and Inspection
Control
Layer / focus
Use
Stateless ACL
L3/L4 packet fields
Fast filtering; return traffic must be explicitly handled.
Stateful firewall
Connection state
Allows return traffic for established sessions.
NGFW
App/user/content-aware filtering
More context than simple port filtering.
WAF
Web application traffic
Protects HTTP/HTTPS apps from Layer 7 attacks.
IDS
Detects suspicious activity
Alerts; does not normally block inline.
IPS
Blocks suspicious traffic inline
Preventive but can disrupt if false positives occur.
Proxy
Intermediates client/server traffic
Can filter, cache, inspect, authenticate.
DMZ
Semi-trusted segment
Publishes services while limiting internal exposure.
Microsegmentation
Fine-grained east-west controls
Limits lateral movement.
Zero Trust
Never trust solely by network location
Verify identity, device, context, and least privilege.
ACL and Firewall Rule Traps
Rule behavior
What to remember
Top-down processing
First match usually wins.
Implicit deny
Unmatched traffic is often denied by default.
Direction matters
Inbound/outbound is relative to interface or zone.
Source/destination matter
Return traffic behavior depends on statefulness.
More specific before general
Place exceptions before broad deny/allow rules.
Logging is deliberate
Logging every allowed flow can overwhelm systems.
VPN and Secure Tunneling
VPN type
Best fit
Notes
IPsec tunnel mode
Site-to-site network encryption
Encrypts original IP packet inside new packet.
IPsec transport mode
Host-to-host or specific use cases
Protects payload, not entire original IP header.
SSL/TLS VPN
Remote user access through TLS
Often browser/client based.
Split tunnel
Only selected traffic uses VPN
Saves bandwidth but may increase risk.
Full tunnel
All client traffic goes through VPN
Stronger central control; more bandwidth/latency impact.
AP power too high/low, poor overlap, client behavior
Controller events, survey, roaming settings.
Only guest SSID works
Internal SSID VLAN/RADIUS issue
SSID mapping, RADIUS policy, DHCP scope.
2.4 GHz unstable
Interference/overlap
Use channels 1/6/11 where appropriate; reduce overlap.
Security and Access
Symptom
Likely cause
Check
User denied after login
Authorization issue
Group membership, ACL, policy, RADIUS attributes.
Certificate warning
Expired, wrong name, untrusted CA, missing intermediate
Validity, SAN, chain, client trust store.
Logs show repeated failures
Brute force, bad stored password, service account issue
Source IP, lockout, credential rotation.
Unexpected outbound traffic
Malware, misconfigured app, data exfiltration
Firewall logs, NetFlow, EDR, DNS logs.
New firewall rule did not work
Rule order/direction/object mismatch
Hit counts, implicit deny, source/destination zones.
802.1X endpoint stuck unauthenticated
Supplicant, RADIUS, certificate, VLAN assignment
Switch auth state, RADIUS logs, EAP method.
Switching, VLANs, and Layer 2 behavior
Topic
Key point
Common mistake
MAC address table
Switch learns source MAC addresses per port
Assuming switch “knows” destinations before learning
Broadcast domain
VLAN generally defines broadcast boundary
Forgetting broadcasts do not cross routers by default
Collision domain
Each switch port is its own collision domain in modern switched Ethernet
Applying old hub behavior to switches
Access port
Carries one untagged VLAN for an endpoint
Configuring endpoint port as trunk by mistake
Trunk port
Carries multiple VLANs, usually with 802.1Q tags
Native VLAN mismatch or missing allowed VLAN
Native VLAN
Untagged VLAN on a trunk
Security risk if poorly controlled
Voice VLAN
Separates IP phones from data devices
Forgetting QoS or correct port configuration
STP
Prevents Layer 2 loops
Disabling loop prevention without an alternative
LACP
Dynamic link aggregation
Expecting bandwidth gain for one flow in all cases
Port security
Limits MAC behavior on switch ports
Locking out valid devices after moves/changes
High-yield STP clue: if a network suddenly becomes slow, flooded, or unstable after a cabling change, suspect a Layer 2 loop. Broadcast storms can consume switch resources and make many unrelated services appear broken.
VLAN decision rules:
Same VLAN + same subnet: switching should be enough.
Different VLANs: routing is required.
Trunk problem: multiple VLANs affected across a link, but local VLAN traffic may still work.
Access VLAN problem: one endpoint or one access port is affected.
Missing DHCP relay/helper: clients in a VLAN cannot obtain DHCP from a server on another subnet.
Symptom-to-cause quick table
Symptom
First checks
Likely causes
No link light
Cable, port, power, transceiver
Bad cable, disabled port, wrong optic, failed NIC
One user offline
Endpoint IP, cable/Wi-Fi, switch port
DHCP issue, access VLAN, local firewall, bad cable
Whole VLAN offline
SVI/router, trunk, DHCP relay
Trunk misconfig, Layer 3 interface down, ACL
Whole site offline
WAN edge, ISP, routing, power
Provider outage, edge failure, routing issue
Slow network after change
Interfaces, errors, STP, utilization
Loop, duplex mismatch, congestion, bad cable
VoIP choppy
Jitter, loss, QoS, WAN use
Congestion, missing QoS, wireless roaming
Cannot access by name
DNS settings, records, cache
Bad DNS server, missing/incorrect record
Cannot get IP
DHCP scope, relay, VLAN
Exhausted scope, helper missing, rogue DHCP
Internal works, internet fails
Default route, NAT, firewall, ISP
NAT issue, edge route, provider outage
VPN connects but no resources
Routes, split tunnel, DNS, ACL
Missing route, firewall, DNS suffix issue
Certificate warning
Time, hostname, trust chain
Expired cert, wrong CN/SAN, untrusted CA
Intermittent authentication
Time sync, domain reachability, logs
NTP issue, DNS issue, packet loss
High-Yield “Do Not Confuse” List
Do not confuse
Correct distinction
Switch vs router
Switch forwards frames by MAC within a broadcast domain; router forwards packets by IP between networks.
VLAN vs subnet
VLAN is Layer 2 segmentation; subnet is Layer 3 addressing. They often map one-to-one but are not the same thing.
Select wireless bands, security modes, and troubleshooting steps for interference/authentication/roaming.
Choose between static routes, default routes, OSPF, BGP, NAT/PAT, site-to-site VPN, and SD-WAN.
Apply least privilege, segmentation, 802.1X/NAC, firewall rule order, VPN security, and certificate checks.
Select the right tool: cable tester, TDR, OTDR, Wireshark, ping, traceroute, dig/nslookup, netstat/ss, logs.
Exam mindset: how to answer faster
Prompt wording
What it usually wants
Candidate trap
“Best”
Most complete, secure, or operationally appropriate choice
Picking the first technically possible answer
“First” / “next”
Correct troubleshooting sequence
Jumping to replacement, rebuild, or escalation too early
“Most likely”
Cause that fits all symptoms
Focusing on one clue and ignoring contradictions
“Least disruptive”
Minimal change with verification
Choosing a broad outage-causing fix
“Securely”
Encryption, authentication, least privilege, logging
Choosing convenience over security
“Intermittent”
Signal, cabling, duplex, congestion, DHCP, STP, roaming, power
Treating it like a permanent outage
“One user vs many users”
Scope isolation
Troubleshooting the WAN when only one endpoint is affected
Notes and examples
High-yield decision rule:
Define scope: one host, one VLAN, one site, one service, or everyone?
Map the layer: physical, data link, network, transport, application, or identity/security?
Verify before changing: check link, IP settings, gateway, DNS, route, firewall, and service status.
Make one controlled change.
Confirm and document.
OSI and TCP/IP model essentials
Layer
Core idea
Common devices / protocols
Fast exam cue
7 Application
User-facing network services
DNS, DHCP, HTTP/S, SMTP, IMAP, SNMP, SSH
“Service works by IP but not name” often points to DNS
6 Presentation
Formatting, encryption, compression
TLS, certificates, encoding
Certificate or cipher issue
5 Session
Session establishment and teardown
RPC, session tokens
Authentication/session timeout clues
4 Transport
Ports, reliability, flow
TCP, UDP, QUIC
“Port blocked,” retransmissions, handshake
3 Network
Logical addressing and routing
IPv4, IPv6, ICMP, routers, Layer 3 switches
Wrong gateway, bad route, subnet mismatch
2 Data Link
Frames, MACs, VLANs, switching
Ethernet, Wi-Fi MAC, ARP, STP, 802.1Q
VLAN, trunk, MAC table, loop
1 Physical
Signaling and media
Copper, fiber, RF, connectors, optics
No link light, damaged cable, interference
Notes and examples
Common trap: switches are usually Layer 2, but multilayer switches can route at Layer 3. Firewalls, load balancers, and wireless controllers may operate across multiple layers.
Ports and protocols to know cold
Service / protocol
Common port(s)
TCP / UDP
Review note
FTP data / control
20 / 21
TCP
Insecure; separate data/control channels
SSH / SFTP
22
TCP
Secure remote CLI and file transfer
Telnet
23
TCP
Insecure remote CLI; avoid for management
SMTP
25
TCP
Mail transfer between servers
DNS
53
UDP/TCP
UDP common; TCP for zone transfers/large responses
DHCP server/client
67 / 68
UDP
Address leasing; DORA process
TFTP
69
UDP
Simple file transfer; no authentication
HTTP
80
TCP
Unencrypted web
Kerberos
88
TCP/UDP
Ticket-based authentication
POP3
110
TCP
Mail retrieval
NTP
123
UDP
Time sync; critical for auth/logs
IMAP
143
TCP
Mail access/sync
SNMP
161
UDP
Polling/management
SNMP traps
162
UDP
Device alerts to manager
LDAP
389
TCP/UDP
Directory access
HTTPS
443
TCP
TLS-protected web
SMB/CIFS
445
TCP
Windows file/printer sharing
LDAPS
636
TCP
LDAP over TLS
Syslog
514
UDP/TCP
Log forwarding; secure variants may differ
RDP
3389
TCP/UDP
Remote desktop
SIP
5060 / 5061
TCP/UDP
VoIP signaling; 5061 commonly TLS
IKE / IPsec NAT-T
500 / 4500
UDP
VPN negotiation and NAT traversal
Notes and examples
Common traps:
DNS failure can look like “the internet is down” when pinging an IP still works.
DHCP failure may produce an APIPA address in the 169.254.0.0/16 range.
HTTPS is not the same as SSH: HTTPS uses 443; SSH uses 22.
SNMP polling and traps use different ports.
UDP is not automatically “bad”; it is normal for DNS, DHCP, VoIP, NTP, and streaming.
IPv6 essentials
Concept
Review point
Address length
128-bit hexadecimal addressing
Compression
One run of consecutive zero groups can be replaced with double colon
No broadcast
IPv6 uses multicast and anycast, not IPv4-style broadcast
Link-local
FE80::/10; used on local link and for neighbor/router discovery
Loopback
::1
Unspecified
::
Global unicast
Routable IPv6 addresses, commonly within 2000::/3
Unique local
FC00::/7, commonly FD-prefixed in practice
SLAAC
Host can self-configure using router advertisements
DHCPv6
Can provide stateful or additional configuration
NDP
Neighbor Discovery Protocol replaces many ARP-like IPv4 functions
Common IPv6 traps:
Link-local addresses often require an interface identifier because the same link-local range exists on every interface.
IPv6 does not use ARP; it uses Neighbor Discovery with ICMPv6.
Disabling ICMPv6 broadly can break essential IPv6 functions.
IPv6 privacy addresses can complicate logging and troubleshooting if not understood.
Routing and path selection
Routers forward packets between networks. Layer 3 switches can do this at high speed inside campus networks.
Concept
What to remember
Default gateway
Host’s next hop for nonlocal destinations
Default route
Route used when no more specific route matches
Longest prefix match
Most specific matching route wins
Static route
Manually configured; predictable but less adaptive
Dynamic routing
Routers exchange reachability information
OSPF
Link-state interior routing protocol
BGP
Path-vector protocol used between autonomous systems and in large routing designs
RIP
Distance-vector protocol with limited scalability
Route metric
Used to choose among routes within a protocol
Administrative preference/distance
Used to choose between sources of routing information
NAT
Translates addresses
PAT
Many internal hosts share one/few public IPs using ports
Notes and examples
Common routing traps:
A host route or more specific route can override a broader route.
Return path matters; one-way routing can break sessions.
NAT is not routing; NAT changes addresses, while routing chooses paths.
A firewall can block traffic even when routing is correct.
Routing between VLANs requires Layer 3 configuration and correct default gateways.
DNS, DHCP, NTP, and core services
DNS records
Record
Purpose
A
Hostname to IPv4 address
AAAA
Hostname to IPv6 address
CNAME
Alias to another name
MX
Mail exchanger
NS
Authoritative name server
PTR
Reverse DNS lookup
TXT
Text records, often verification or mail security uses
SRV
Service location
SOA
Zone authority and metadata
Notes and examples
DNS decision points:
If IP works but name fails, test DNS.
If internal names fail but public names work, check internal DNS zones/search suffixes.
If some users get old answers, suspect TTL/caching or split-horizon DNS.
If reverse lookup fails, check PTR records, not A records.
Combination of on-premises/private and public cloud resources
Notes and examples
Cloud networking traps:
Security groups/network ACLs can block traffic even when OS firewalls allow it.
Cloud route tables matter; subnets do not automatically have internet access.
Public IP assignment and NAT gateway behavior are separate from internal routing.
Load balancer health checks can fail because of firewall, port, path, or certificate issues.
Overlapping private IP ranges complicate VPNs and hybrid connectivity.
Quality of service and performance
Metric
Meaning
Review cue
Bandwidth
Theoretical or provisioned capacity
“How big is the pipe?”
Throughput
Actual achieved data transfer
Lower due to overhead, congestion, errors
Latency
Delay
High latency hurts interactive apps
Jitter
Variation in delay
VoIP/video quality issue
Packet loss
Dropped packets
Causes retransmissions, poor voice/video
Utilization
How busy a link/device is
Sustained high utilization may cause congestion
Errors
Physical/data-link problems
Cabling, optics, duplex, interference
Discards
Dropped by device queues/policy
Congestion or QoS issue
MTU
Maximum transmission unit
Mismatch can break or degrade traffic
Duplex mismatch
One side full, one side half
Collisions/errors and poor throughput
QoS decision rule: prioritize latency-sensitive traffic such as voice and video, but do not expect QoS to create bandwidth. It manages contention; it does not fix undersized links by itself.
Network operations and documentation
Operational discipline often separates the “technically possible” answer from the best answer.
Practice
Why it matters
Network diagrams
Faster troubleshooting and change planning
Rack diagrams
Physical traceability
IP address management
Prevents overlap, conflicts, and undocumented subnets
Asset inventory
Lifecycle, support, and incident response
Baselines
Identify abnormal utilization, errors, latency, and logs
Lower MTTR improves recovery even if failures still happen.
Backups are only useful if restoration is tested.
Troubleshooting methodology
A structured method prevents random changes and helps you answer “first” and “next” questions.
flowchart TD
A[Identify the problem and scope] --> B[Gather information and check recent changes]
B --> C[Establish a theory of probable cause]
C --> D[Test the theory]
D -->|Theory confirmed| E[Plan action and consider impact]
D -->|Theory not confirmed| C
E --> F[Implement fix or escalate with findings]
F --> G[Verify full functionality]
G --> H[Document cause, fix, and prevention]
Common troubleshooting sequence for connectivity:
Physical/link: link light, cable, Wi-Fi association, power, optics.
Local configuration: IP, mask/prefix, gateway, DNS, VLAN.
Local tests: loopback, own IP, gateway.
Name resolution: DNS server, records, suffix, cache.
Documentation: record fix and update diagrams/configs.
Command-line and diagnostic tools
Tool / command
Use
ping
Basic reachability and latency using ICMP
traceroute / tracert
Path visibility and where forwarding may stop
ipconfig / ifconfig / ip
View or manage IP configuration
nslookup / dig
DNS queries and record validation
arp / ip neigh
Neighbor/MAC resolution checks
route / netstat -r / ip route
Routing table review
netstat / ss
Listening ports and active connections
tcpdump / Wireshark
Packet capture and protocol analysis
nmap
Port scanning and service discovery, where authorized
curl
Test HTTP/S and other application responses
ssh
Secure remote administration
show interface
Interface status, errors, speed/duplex on network devices
show vlan
VLAN assignment review
show mac address-table
Switch learning/forwarding review
show route
Routing table review
show running-config
Current network device configuration review
Notes and examples
Exam trap: a command may prove only one thing. For example, a successful ping to a gateway does not prove DNS works, internet routing works, or an application port is open.
Performance-based task strategy
For configuration-style or scenario-based items:
Read the business requirement first.
Identify constraints: VLANs, subnets, ports, security rules, users, or sites.
Re-check for security wording such as encrypted, least privilege, deny by default, guest-only, or management-only.
Common mistakes:
Using the right subnet on the wrong VLAN.
Allowing too much traffic when the prompt asks for least privilege.
Forgetting return traffic or statefulness.
Misreading source and destination in firewall rules.
Applying a fix to the server when the failure is DNS or routing.
Replacing hardware before checking configuration and logs.
Final high-yield reminders
Layer 1 problems are often simple: power, cable, port, signal, optics.
Layer 2 problems often involve VLANs, trunks, MAC learning, STP, or loops.
Layer 3 problems often involve IP settings, gateways, routes, ACLs, or NAT.
Layer 4 problems often involve ports, TCP/UDP behavior, or firewalls.
Application problems often involve DNS, authentication, certificates, service status, or permissions.
Security answers should favor encryption, segmentation, least privilege, logging, and controlled management access.
Operations answers should favor documentation, change control, baselines, backups, monitoring, and verification.
Troubleshooting answers should follow methodical isolation, not random replacement.
Practice plan after this review
After reviewing these notes, move directly into topic drills for weak areas such as subnetting, ports, VLANs, wireless, routing, DNS/DHCP, security controls, and troubleshooting scenarios. Then use mock exams to practice timing and decision-making. For every missed item in the question bank, read the detailed explanations and write down the rule you should have applied.
Your next practical step: complete a focused set of original practice questions for CompTIA Network+ V10 (N10-010), review every explanation, and retest only the topics where your confidence is still shaky.