N10-010 — CompTIA Network+ V10 Cheat Sheet

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.
  • Distinguish Layer 1, Layer 2, Layer 3, Layer 4, and application-layer problems.
  • 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 layerPDU / unitCommon examplesDevices / controlsExam traps
7 ApplicationDataHTTP, DNS, SMTP, SMB, SNMP, DHCPProxies, WAF, application gateways“Application layer” means network application protocol, not necessarily end-user software.
6 PresentationDataTLS/SSL, encryption, compression, encodingTLS inspection, certificate validationTLS is often discussed with HTTPS but maps conceptually to presentation/session functions.
5 SessionDataSession setup/teardown, RPC, NetBIOS sessionSession-aware firewallsDo not confuse session layer with TCP sessions at Layer 4.
4 TransportSegment/datagramTCP, UDP, ports, reliability, flow controlL4 firewall, load balancer, NAT/PATTCP is connection-oriented; UDP is connectionless but not automatically “bad.”
3 NetworkPacketIPv4, IPv6, ICMP, routing, IPsecRouters, L3 switches, ACLsRouters forward by IP; switches forward by MAC unless operating at L3.
2 Data linkFrameEthernet, Wi-Fi MAC, VLAN tags, ARP, STPSwitches, bridges, NICs, WAP bridgingVLANs are Layer 2 segmentation; they commonly pair with Layer 3 subnets.
1 PhysicalBits/signalsCopper, fiber, RF, connectors, pinoutsCables, transceivers, repeaters, hubsLink light does not guarantee correct IP, VLAN, DNS, or routing.
Notes and examples

Addressing by Layer

Address / identifierLayerScopeUsed forCommon command clue
MAC address2Local broadcast domainEthernet/Wi-Fi frame deliveryarp -a, switch MAC table
IPv4 / IPv6 address3Routed networkEnd-to-end packet deliveryipconfig, ip addr, ping
TCP/UDP port4Host processApplication/service identificationnetstat, ss, firewall logs
FQDN / hostname7Human-readable nameDNS resolution to addressnslookup, dig

Encapsulation Path

StepSender doesReceiver does
Application dataCreates protocol data, such as HTTP requestInterprets application protocol
TransportAdds TCP/UDP source and destination portsDelivers data to correct process
NetworkAdds source/destination IP addressesValidates destination IP, routes if needed
Data linkAdds source/destination MAC addressesChecks local frame delivery
PhysicalSends bits as electrical, optical, or RF signalsConverts 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 / protocolPort(s)TransportUseExam cues and traps
FTP data/control20 / 21TCPFile transferNot encrypted; active/passive modes affect data connection behavior.
SSH22TCPSecure remote shellAlso used by SFTP.
SFTP22TCPSecure file transfer over SSHDifferent from FTPS.
Telnet23TCPRemote terminalInsecure cleartext; avoid when SSH is available.
SMTP25TCPMail server transferClient submission often uses 587 with STARTTLS.
DNS53UDP/TCPName resolutionUDP common for queries; TCP for zone transfers and large responses.
DHCP server/client67 / 68UDPDynamic IPv4 configurationRequires relay/IP helper across routed subnets.
TFTP69UDPSimple file transferNo authentication; used for lightweight boot/config tasks.
HTTP80TCPWeb trafficCleartext.
Kerberos88TCP/UDPAuthentication ticketsTime synchronization matters.
POP3110TCPMail retrievalPOP3S commonly uses 995.
NTP123UDPTime synchronizationCritical for Kerberos, certificates, logs, and forensics.
IMAP143TCPMail accessIMAPS commonly uses 993.
SNMP161UDPMonitoring queriesPrefer SNMPv3 for authentication/encryption.
SNMP trap162UDPDevice-generated alertsTrap/inform direction is device to manager.
LDAP389TCP/UDPDirectory accessLDAPS commonly uses 636.
HTTPS443TCPSecure web trafficUses TLS certificates; check name, trust chain, and validity.
SMB/CIFS445TCPFile/printer sharingCommon in Windows environments.
Syslog514UDP/TCPLog forwardingTLS-secured syslog commonly uses 6514.
SMTP submission587TCPAuthenticated mail submissionCommon secure client-to-server submission with STARTTLS.
LDAPS636TCPLDAP over TLSEncrypts directory queries.
IMAPS993TCPIMAP over TLSSecure mail access.
POP3S995TCPPOP3 over TLSSecure mail retrieval.
SQL Server1433TCPMicrosoft SQL ServerDatabase access; restrict with firewall rules.
RADIUS auth/accounting1812 / 1813UDPAAA for network accessCommon with 802.1X and VPN authentication.
RDP3389TCP/UDPRemote desktopExposing directly to the internet is high risk.
SIP5060 / 5061TCP/UDPVoIP signaling5061 is SIP over TLS.
RTPDynamic UDPUDPVoIP media streamSensitive to latency, jitter, and packet loss.
BGP179TCPInterdomain routingUsed between autonomous systems and providers.
TACACS+49TCPDevice administration AAASeparates authentication, authorization, and accounting.
IKE / IPsec NAT-T500 / 4500UDPIPsec negotiation and NAT traversalESP is IP protocol 50, not TCP/UDP port 50.
AH / ESPProtocol 51 / 50IP protocolIPsec integrity/encryptionAH does not provide encryption; ESP can provide encryption and integrity.
Notes and examples

Secure vs Insecure Service Choices

If you see…Prefer…Why
TelnetSSHEncrypted management plane.
FTPSFTP or FTPSProtects credentials and file contents.
HTTP login pageHTTPSProtects authentication and session data.
SNMPv1/v2cSNMPv3Adds authentication and encryption options.
LDAP over untrusted networkLDAPS or LDAP with StartTLSProtects directory queries and credentials.
Open Wi-FiWPA3/WPA2 Enterprise or secure guest designReduces 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

CIDRMaskAddresses per subnetTypical usable IPv4 hostsBlock size cue
/16255.255.0.065,53665,5341 in 2nd octet
/17255.255.128.032,76832,766128 in 3rd octet
/18255.255.192.016,38416,38264 in 3rd octet
/19255.255.224.08,1928,19032 in 3rd octet
/20255.255.240.04,0964,09416 in 3rd octet
/21255.255.248.02,0482,0468 in 3rd octet
/22255.255.252.01,0241,0224 in 3rd octet
/23255.255.254.05125102 in 3rd octet
/24255.255.255.02562541 in 3rd octet
/25255.255.255.128128126128 in 4th octet
/26255.255.255.192646264 in 4th octet
/27255.255.255.224323032 in 4th octet
/28255.255.255.240161416 in 4th octet
/29255.255.255.248868 in 4th octet
/30255.255.255.252424 in 4th octet
/31255.255.255.25422 for point-to-point2 in 4th octet
/32255.255.255.25511 host route1 address

Subnetting Workflow

  1. Identify the CIDR prefix and subnet mask.
  2. Find the interesting octet: the first octet that is not 255 or 0.
  3. Calculate the block size: 256 minus the mask value in that octet.
  4. List subnet boundaries in increments of the block size.
  5. The network ID is the boundary at or below the IP.
  6. The broadcast is one less than the next boundary.
  7. Usable host range is between network ID and broadcast, except for /31 and /32 cases.

Example: 192.168.10.77/26

StepResult
Mask255.255.255.192
Block size64
Subnet boundaries.0, .64, .128, .192
Network ID192.168.10.64
Broadcast192.168.10.127
Usable hosts192.168.10.65 through 192.168.10.126

IPv4 Special Ranges

RangePurposeExam cue
10.0.0.0/8Private IPv4Not internet-routable without NAT.
172.16.0.0/12Private IPv4Includes 172.16.0.0 through 172.31.255.255 only.
192.168.0.0/16Private IPv4Common home/small office range.
169.254.0.0/16APIPA/link-local IPv4Usually indicates DHCP failure on IPv4 clients.
127.0.0.0/8LoopbackTests local TCP/IP stack.
0.0.0.0/0Default route“Any IPv4 destination.”
255.255.255.255Limited broadcastLocal broadcast only; not routed.
224.0.0.0/4MulticastOne-to-many group traffic.
100.64.0.0/10Carrier-grade NAT spaceUsed by providers; not typical enterprise private LAN space.

IPv6 Address Types

IPv6 typeRange / examplePurposeTrap
Global unicast2000::/3Publicly routable IPv6No NAT is required by design, though firewalls still matter.
Link-localfe80::/10Local-link communicationNormal on IPv6 hosts; not equivalent to IPv4 APIPA failure.
Unique localfc00::/7, commonly fd00::/8Private internal IPv6Similar design role to private IPv4, but not the same mechanism.
Multicastff00::/8One-to-manyIPv6 uses multicast heavily; no IPv6 broadcast.
Loopback::1Local hostLike 127.0.0.1.
Unspecified::No address / default source placeholderUsed before address assignment or in sockets.
Default route::/0Any IPv6 destinationIPv6 equivalent of 0.0.0.0/0.

IPv4 vs IPv6 Exam Distinctions

TopicIPv4IPv6
Address length32-bit128-bit
BroadcastYesNo broadcast; uses multicast/anycast
Neighbor mappingARPNeighbor Discovery Protocol using ICMPv6
AutoconfigurationDHCP commonSLAAC, DHCPv6, or both
NATCommon due to address conservationNot required for address conservation
HeaderVariable with optionsSimplified base header with extension headers
Local-only address169.254.0.0/16 APIPAfe80::/10 link-local
Notes and examples

Address ranges and meanings

Range / typeMeaningExam cue
10.0.0.0/8Private IPv4Internal addressing, NAT needed for internet access
172.16.0.0/12Private IPv4Includes 172.16.0.0 through 172.31.255.255
192.168.0.0/16Private IPv4Common small office/home range
169.254.0.0/16APIPA / link-localDHCP failed or unavailable
127.0.0.0/8LoopbackLocal TCP/IP stack testing
224.0.0.0/4MulticastOne-to-many delivery
255.255.255.255Limited broadcastLocal segment broadcast
0.0.0.0Default/unspecifiedDefault route or unspecified source

Subnetting quick method

For standard IPv4 subnet questions:

\[ \text{Usable IPv4 hosts} = 2^{\text{host bits}} - 2 \]

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.

CIDRMaskAddressesTypical usable hostsBlock size in last octet
/24255.255.255.0256254256
/25255.255.255.128128126128
/26255.255.255.192646264
/27255.255.255.224323032
/28255.255.255.240161416
/29255.255.255.248868
/30255.255.255.252424
/32255.255.255.25511 host route1

Fast subnet process:

  1. Identify the interesting octet where the mask is not 255 or 0.
  2. Calculate block size: 256 minus the mask value in that octet.
  3. Find the block range containing the IP.
  4. First address is the network; last address is the broadcast.
  5. 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

SymptomLikely issue
Host can reach local subnet but not remote networksWrong or missing default gateway
Host has 169.254.x.x addressDHCP failure, DHCP scope issue, VLAN helper/relay issue
Two hosts cannot communicate despite same VLANWrong subnet mask, host firewall, duplicate IP, bad cable
Intermittent connectivityDuplicate IP, flapping link, DHCP conflict, STP changes
Can ping IP but not hostnameDNS issue
Can resolve name but cannot connect to servicePort blocked, service down, routing/firewall issue

Core Network Services

DHCP

ConceptDetail
PurposeAutomatically assigns IP settings such as IP address, mask/prefix, gateway, DNS servers, lease time, and options.
DORA processDiscover, Offer, Request, Acknowledgment.
PortsServer UDP 67, client UDP 68.
Relay/IP helperRequired when clients and DHCP server are separated by a router.
ReservationMaps a known MAC/client identifier to a predictable IP lease.
Scope exhaustion symptomClients fail to get leases or receive APIPA addresses.
Common optionsDefault gateway, DNS server, domain name, NTP server, PXE/boot options.
Notes and examples

DNS Records

RecordPurposeExample use
AName to IPv4host.example.com to 192.0.2.10
AAAAName to IPv6host.example.com to IPv6 address
CNAMEAlias to canonical namewww alias to another hostname
MXMail exchangerDirects mail for a domain
NSAuthoritative name serverDelegates/identifies DNS authority
PTRReverse lookupIP address to hostname
TXTText metadataSPF, DKIM, DMARC, domain verification
SRVService locatorLocates services such as directory or voice services
SOAStart of authorityZone metadata and serial information
CAACertificate authority authorizationLimits which CAs may issue certificates

DNS Troubleshooting Cues

SymptomLikely issueCheck
Can ping IP, not hostnameDNS resolution problemClient DNS server, zone record, search suffix, firewall to port 53
Wrong destination IPStale record or cacheDNS cache, TTL, split-horizon DNS
Internal name resolves externallyDNS suffix or resolver order issueClient resolver configuration
Reverse lookup failsMissing PTRReverse zone delegation/record
Intermittent resolutionMultiple DNS servers disagreeZone replication, conditional forwarders, stale records

Monitoring and Management Protocols

ServiceUseKey distinction
SNMP pollingManager queries device metricsUses UDP 161.
SNMP traps/informsDevice sends events to managerUses UDP 162.
SyslogCentralized log forwardingFacility/severity support; secure transport may use TLS.
NTPTime synchronizationRequired for reliable logs, Kerberos, certificates, and correlation.
NetFlow/IPFIXFlow telemetryShows who talked to whom, how much, and when; not full packet capture.
LLDPNeighbor discoveryVendor-neutral Layer 2 discovery protocol.
IPAMAddress managementTracks subnets, DHCP scopes, DNS, and assignments.

Syslog Severity

SeverityNameMeaning
0EmergencySystem unusable
1AlertImmediate action needed
2CriticalCritical condition
3ErrorError condition
4WarningWarning condition
5NoticeNormal but significant
6InformationalInformational message
7DebugDebug-level detail

Switching, VLANs, and Ethernet

Switching Concepts

ConceptMeaningExam cue
MAC address table / CAM tableMaps MAC addresses to switch portsBuilt by learning source MAC addresses.
Unknown unicast floodingSwitch floods when destination MAC is unknownNot the same as broadcast.
Broadcast domainArea reached by Layer 2 broadcastVLANs separate broadcast domains.
Collision domainShared medium where collisions can occurMostly historical with full-duplex switching.
Access portCarries one VLAN, usually untaggedUsed for endpoints.
Trunk portCarries multiple VLANsUses 802.1Q tagging.
Native VLANUntagged VLAN on an 802.1Q trunkMismatches can create connectivity/security issues.
Inter-VLAN routingRoutes between VLANs/subnetsRequires router, L3 switch, or firewall.
Port mirroring / SPANCopies traffic to analyzer portUsed for packet capture/IDS visibility.
LACP / link aggregationBundles multiple linksAdds redundancy and aggregate capacity; both sides must agree.
STPPrevents Layer 2 loopsBlocking a port can be normal behavior.
PoEPower over EthernetPowers APs, phones, cameras, sensors.
Notes and examples

VLAN and Trunk Troubleshooting

SymptomLikely causeCheck
Host cannot reach local VLAN peersWrong access VLAN, port disabled, bad cable, endpoint IP issueSwitchport VLAN, link light, MAC table
Same VLAN works, other VLANs failMissing gateway, inter-VLAN routing, ACL/firewallDefault gateway, SVI/router interface, ACL logs
VLAN works on one switch but not anotherTrunk not allowing VLAN or native VLAN mismatchTrunk allowed list, tagging, STP state
Intermittent outages or high broadcast trafficLayer 2 loop or stormSTP topology changes, MAC flapping, storm control
Voice phone works but PC behind it failsVoice/data VLAN configuration issueVoice VLAN, access VLAN, LLDP-MED, DHCP options
New AP cannot serve SSIDsTrunk/native VLAN or PoE issueAP switchport mode, VLAN tags, PoE budget/status

Spanning Tree and Loop Prevention

ControlUseNotes
STP/RSTPPrevents bridging loopsRSTP converges faster than original STP.
Root bridgeLogical center of STP topologyPlace intentionally in campus designs.
BPDU guardShuts port receiving unexpected BPDUsCommon on access/edge ports.
Root guardPrevents unexpected root bridge takeoverProtects STP design.
PortFast / edge portSpeeds endpoint port forwardingDo not use on switch-to-switch links unless design supports it.
Storm controlLimits broadcast/multicast/unknown unicast stormsHelps contain loops and misbehaving devices.

Ethernet Media and Connectors

Medium / itemUseNotes
UTP copperCommon Ethernet cablingUses RJ45; typical Ethernet channel limit is 100 meters.
STP/shielded copperEMI-prone environmentsRequires proper grounding to be effective.
Multimode fiberShorter fiber runs, data centers/campusesOften uses LED/VCSEL sources; common with LC connectors.
Single-mode fiberLonger-distance fiberUses laser optics; common for WAN/campus backbone links.
DAC / twinaxShort data center connectionsCommon between switches/servers in racks.
CoaxialCable broadband, legacy Ethernet, RFUses connectors such as F-type or BNC depending on system.
RJ45Twisted-pair Ethernet connectorDo not call the cable itself “RJ45”; RJ45 is the connector style.
LCSmall fiber connectorCommon on SFP/SFP+ optics.
SCLarger fiber connectorOlder/common fiber patching.
SFP/SFP+/QSFPModular transceiversMatch speed, fiber type, wavelength, and connector.

Cable and Physical Tools

ToolBest forNot for
Cable testerWire map, opens, shorts, split pairsFull protocol analysis
CertifierValidating cabling against standardsQuick casual link checks
Toner/probeFinding cable pathsMeasuring throughput
TDRLocating copper cable faults/distance to breakApplication-layer issues
OTDRFiber break/loss locationCopper testing
Light meterFiber optical power/lossIP routing issues
Loopback plugTesting port transmit/receiveEnd-to-end service validation
Crimper/punchdownTerminating copperDiagnosing DNS or routing

Routing, NAT, WAN, and Traffic Flow

Routing Decision Logic

DecisionRule
Same subnet?Host ARPs/uses neighbor discovery for destination host and sends directly.
Remote subnet?Host sends frame to default gateway MAC, with destination IP still set to remote host.
Router lookupLongest prefix match wins before general/default routes.
Default routeIPv4 0.0.0.0/0; IPv6 ::/0.
Metric/costUsed to choose between comparable routes.
TTL/hop limitDecremented by routers; prevents infinite loops.
Notes and examples

Routing Protocol and Route Type Selection

OptionBest fitKey distinction
Connected routeDirectly attached networkAutomatically known when interface is up/up.
Static routeSmall/stable routes, default route, backup routeSimple but manual; does not adapt unless tracked.
Default routeSend unknown destinations upstreamCommon toward ISP or core firewall.
OSPFDynamic internal routingLink-state IGP; uses areas and cost.
BGPProvider, internet edge, multi-homing, policy routingPath-vector EGP; policy and AS path matter.
RIPLegacy/simple dynamic routingHop-count based; rarely preferred in modern designs.
Route redistributionConnecting routing domainsCan introduce loops or suboptimal paths if poorly controlled.

NAT and PAT

TypeMeaningUse case
Static NATOne private address to one public addressPublishing a specific internal host.
Dynamic NATPrivate addresses mapped to pool of public addressesOutbound access with public pool.
PAT / NAT overloadMany private hosts share one/few public IPs using portsCommon internet access design.
SNATChanges source addressOutbound NAT.
DNAT / port forwardingChanges destination address/portInbound publishing through firewall/load balancer.
NAT-TEncapsulates IPsec through NATUses UDP 4500.

Trap: NAT is not a substitute for firewall policy. It can hide internal addresses, but access control still depends on filtering rules.

WAN and Remote Connectivity

TechnologyUseDecision cue
Leased line / private circuitDedicated predictable connectivityHigher control, provider-managed circuit.
MPLSProvider WAN with traffic engineering/VPN servicesOften used for enterprise site-to-site WANs.
Broadband internetCost-effective site/user connectivityPair with VPN/SD-WAN for security/control.
CellularBackup WAN, mobile, temporary sitesUseful for failover and rapid deployment.
Site-to-site VPNEncrypted tunnel between networksConnects offices/cloud networks over untrusted networks.
Client-to-site VPNRemote user accessEndpoint identity, MFA, posture, and split/full tunnel matter.
SD-WANPolicy-based WAN overlayChooses paths by app, performance, and policy.
Direct cloud connectionPrivate connectivity to cloud providerUsed for predictable hybrid cloud connectivity.

QoS and Performance Terms

TermMeaningHigh-yield use
BandwidthMaximum data-carrying capacityMore bandwidth does not always fix latency.
ThroughputActual achieved data rateAffected by loss, congestion, protocol overhead.
LatencyOne-way or round-trip delayVoice/video/interactive apps are sensitive.
JitterVariation in delayVoIP/video quality issue.
Packet lossDropped packetsCauses retransmissions, poor voice/video, slow apps.
DSCPLayer 3 QoS markingUsed for classifying/queuing traffic.
CoS/802.1pLayer 2 QoS markingVLAN tag priority bits.
ShapingBuffers and smooths trafficReduces drops by controlling rate.
PolicingDrops/remarks traffic above rateEnforces limits more harshly.
MTUMaximum transmission unitMismatches can cause fragmentation or black-hole behavior.

Wireless Networking

Wi-Fi Standards and Bands

StandardCommon nameBandsKey cue
802.11bWi-Fi legacy2.4 GHzOld, slow, interference-prone.
802.11aWi-Fi legacy5 GHzOlder 5 GHz standard.
802.11gWi-Fi legacy2.4 GHzLegacy 2.4 GHz.
802.11nWi-Fi 42.4 / 5 GHzMIMO; still encountered.
802.11acWi-Fi 55 GHzWider channels, higher throughput in 5 GHz.
802.11axWi-Fi 6 / 6E2.4 / 5 / 6 GHzOFDMA, dense client support; 6E adds 6 GHz operation.
802.11beWi-Fi 72.4 / 5 / 6 GHzNewer high-throughput/low-latency features such as multi-link operation.
Notes and examples

Wireless Design Decisions

RequirementPreferWhy
Longer range / wall penetration2.4 GHzBetter propagation, but more interference and fewer non-overlapping channels.
Higher capacity5 GHz or 6 GHzMore channels and less congestion.
Dense offices/classroomsWi-Fi 6/6E design with proper channel/power planningHandles many clients more efficiently.
Guest accessSeparate SSID/VLAN with captive portal or isolated policyLimits guest access to internal resources.
Enterprise authenticationWPA2/WPA3 Enterprise with 802.1X/RADIUSPer-user/device authentication and centralized control.
Small office/simple deploymentWPA3-Personal or WPA2-Personal if requiredUses shared passphrase; easier but less granular.
Voice over Wi-FiSurveyed coverage, roaming support, QoSSensitive to latency, jitter, and roaming delays.

Wireless Security and Troubleshooting

Symptom / riskLikely causeFix / check
Users connect but cannot reach LANWrong VLAN mapping, ACL, DHCP scope, captive portal stateSSID-to-VLAN mapping, gateway, DHCP lease
Poor throughput near APChannel congestion, low data rates, interference, client issueChannel utilization, band steering, drivers
Frequent disconnectsRoaming thresholds, power levels, interference, authentication timeoutsAP placement, controller logs, RSSI/SNR
Clients cannot authenticateRADIUS, certificate, EAP type, time mismatchAAA logs, certificate chain, NTP
Rogue AP / evil twinUnauthorized AP mimicking SSIDWIDS/WIPS, wired port control, user training
Deauthentication attacksWi-Fi management frame abuseWPA3/PMF where supported, monitoring
Hidden SSID expected to secure networkMisconceptionHidden SSID is not strong security. Use encryption/authentication.

Antenna and RF Terms

TermMeaning
OmnidirectionalRadiates broadly around antenna; common for general coverage.
DirectionalFocuses signal in a direction; useful for point-to-point or targeted coverage.
dBmAbsolute power level measurement.
dBiAntenna gain relative to isotropic radiator.
RSSIReceived signal strength indicator.
SNRSignal-to-noise ratio; higher is generally better.
Channel overlapAdjacent channels interfere, especially in 2.4 GHz.
DFS5 GHz channels that may change due to radar detection requirements.

Wireless networking review

AreaHigh-yield points
2.4 GHzLonger range, more interference, fewer non-overlapping channels
5 GHzMore channels, less crowded, shorter range than 2.4 GHz
6 GHzMore spectrum for newer Wi-Fi deployments; client/AP support required
Channel widthWider channels can increase throughput but also increase interference risk
RoamingDepends on coverage overlap, client behavior, and enterprise features
RSSISignal strength
SNRSignal relative to noise; often more useful than raw signal alone
WPA2/WPA3-PersonalPre-shared key model
WPA2/WPA3-Enterprise802.1X/EAP with RADIUS-backed authentication
Captive portalWeb-based acceptance/authentication flow
Guest networkSegmented access, usually internet-only
MeshAPs may use wireless backhaul; placement matters

Wireless symptom mapping:

SymptomLikely causes
Works near AP but not farther awayLow signal, poor AP placement, antenna issue, obstruction
Slow in crowded areaCo-channel interference, too many clients, channel width, RF congestion
Some clients cannot connectSecurity mode mismatch, unsupported band, old drivers, WPA version issue
Drops while movingRoaming threshold, AP overlap, sticky client, authentication delay
Good signal but poor throughputInterference, high noise, channel utilization, low data rates, WAN bottleneck
Guest Wi-Fi works but internal resources failSegmentation/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

ControlPurposeExam distinction
AuthenticationProves identityPassword, certificate, token, biometric, MFA.
AuthorizationDetermines allowed actions“What can this authenticated identity do?”
AccountingRecords activityLogs commands, sessions, access times.
RADIUSNetwork access AAACommon for VPN, Wi-Fi, 802.1X; UDP-based.
TACACS+Device administration AAATCP-based; separates AAA functions.
802.1XPort-based network access controlSupplicant, authenticator, authentication server.
NACEnforces access/posture policyMay check device health, identity, compliance.
MFAMultiple factorsSomething you know, have, are, do, or somewhere you are.
Notes and examples

Firewalls, Segmentation, and Inspection

ControlLayer / focusUse
Stateless ACLL3/L4 packet fieldsFast filtering; return traffic must be explicitly handled.
Stateful firewallConnection stateAllows return traffic for established sessions.
NGFWApp/user/content-aware filteringMore context than simple port filtering.
WAFWeb application trafficProtects HTTP/HTTPS apps from Layer 7 attacks.
IDSDetects suspicious activityAlerts; does not normally block inline.
IPSBlocks suspicious traffic inlinePreventive but can disrupt if false positives occur.
ProxyIntermediates client/server trafficCan filter, cache, inspect, authenticate.
DMZSemi-trusted segmentPublishes services while limiting internal exposure.
MicrosegmentationFine-grained east-west controlsLimits lateral movement.
Zero TrustNever trust solely by network locationVerify identity, device, context, and least privilege.

ACL and Firewall Rule Traps

Rule behaviorWhat to remember
Top-down processingFirst match usually wins.
Implicit denyUnmatched traffic is often denied by default.
Direction mattersInbound/outbound is relative to interface or zone.
Source/destination matterReturn traffic behavior depends on statefulness.
More specific before generalPlace exceptions before broad deny/allow rules.
Logging is deliberateLogging every allowed flow can overwhelm systems.

VPN and Secure Tunneling

VPN typeBest fitNotes
IPsec tunnel modeSite-to-site network encryptionEncrypts original IP packet inside new packet.
IPsec transport modeHost-to-host or specific use casesProtects payload, not entire original IP header.
SSL/TLS VPNRemote user access through TLSOften browser/client based.
Split tunnelOnly selected traffic uses VPNSaves bandwidth but may increase risk.
Full tunnelAll client traffic goes through VPNStronger central control; more bandwidth/latency impact.
Clientless VPNBrowser-accessible appsLimited to supported application types.

Certificates and PKI

ConceptMeaningCommon failure
CAIssues/signs certificatesUntrusted root/intermediate CA.
Certificate chainTrust path from leaf to rootMissing intermediate certificate.
CN/SANNames certificate is valid forHostname mismatch warning.
Validity periodNot before/not after datesExpired or not-yet-valid certificate.
CRL/OCSPRevocation checkingRevocation service unreachable.
Private keySecret key corresponding to certificateKey compromise invalidates trust.
CSRCertificate signing requestGenerated before certificate issuance.

Common Attacks and Mitigations

Attack / riskWhat happensMitigations
ARP poisoningAttacker manipulates IPv4 MAC mappingsDynamic ARP inspection, DHCP snooping, segmentation.
DHCP starvationExhausts DHCP poolDHCP snooping, port security, rate limits.
Rogue DHCPUnauthorized server gives bad settingsDHCP snooping, NAC, switch controls.
DNS poisoningVictims resolve to malicious addressDNSSEC where used, secure resolvers, cache protection.
VLAN hoppingAttacker abuses trunk/tagging behaviorDisable unused trunks, set native VLAN carefully, no dynamic trunking.
MAC floodingOverloads switch MAC tablePort security, storm control.
Evil twinFake Wi-Fi AP mimics legitimate SSIDEnterprise auth, certificate validation, WIDS/WIPS.
DoS/DDoSResource exhaustionRate limiting, filtering, upstream protection, redundancy.
Brute forceRepeated login attemptsMFA, lockout, rate limits, strong credentials.
Lateral movementCompromised host pivots internallySegmentation, least privilege, EDR, monitoring.
MisconfigurationAccidental exposure or outageChange control, review, backups, baselines.

Modern Network Architectures

Campus, Data Center, Cloud, and Edge

ArchitectureDescriptionChoose when
Three-tier campusAccess, distribution, coreTraditional enterprise LAN segmentation and scalability.
Collapsed coreDistribution and core combinedSmaller networks needing simplified design.
Spine-leafEvery leaf connects to every spineLow-latency east-west traffic in data centers.
SDNCentralized control/programmatic network managementNeed automation, policy abstraction, dynamic provisioning.
SD-WANOverlay WAN with policy-based path choiceMultiple WAN links, application-aware routing, branch optimization.
Cloud VPC/VNetIsolated virtual network in cloudCloud workloads, hybrid connectivity, security groups/routes.
Hybrid cloudMix of on-premises and cloud resourcesGradual migration, regulatory/data locality, existing systems.
Edge computingCompute close to users/devicesLow latency, local processing, IoT/industrial use cases.
Notes and examples

Virtualization and Cloud Networking

ConceptMeaningExam cue
vSwitchSoftware switch inside hypervisorConnects VMs to virtual/physical networks.
Port groupLogical VM network settingsOften maps to VLAN/security policy.
Overlay networkEncapsulated virtual networkSupports tenant isolation and mobility.
Security groupInstance/workload-level filteringCloud-native stateful firewall concept.
Network ACLSubnet-level stateless filtering in many cloudsSeparate from security groups.
Load balancerDistributes trafficL4 uses IP/ports; L7 uses application context.
AutoscalingAdds/removes workloads based on demandRequires stateless design or shared state handling.
Bastion/jump hostControlled admin entry pointAvoids exposing many management interfaces.
CASBCloud access security brokerVisibility/control for SaaS/cloud usage.
SASE/SSESecurity functions delivered as cloud servicesBlends identity, secure access, and policy enforcement.

High Availability and Resilience

RequirementDesign optionNotes
Link redundancyLACP, redundant paths, diverse circuitsAvoid single points of failure.
Gateway redundancyFHRP such as VRRP-like designsVirtual default gateway for hosts.
Device redundancyActive/passive or active/active pairsCheck state synchronization and failover behavior.
Power resilienceUPS, generators, dual power suppliesUPS handles short outages and graceful shutdown.
Geographic resilienceMultiple sites/regionsConsider data replication and routing.
Traffic distributionLoad balancing, anycast, DNS steeringMatch solution to L4/L7 and failover needs.
Recovery planningBackups, configuration archives, rollback plansTest restore, not just backup creation.

Operations, Documentation, and Change Control

Documentation Types

Document / artifactPurpose
Physical diagramCabling, racks, patch panels, device locations.
Logical diagramVLANs, subnets, routing, firewalls, WAN/cloud links.
IP address plan / IPAMTracks subnets, static assignments, DHCP scopes, DNS records.
Rack elevationShows device placement, power, cabling density.
BaselineNormal performance/utilization for comparison.
Standard operating procedureRepeatable operational steps.
Change planScope, risk, implementation steps, test plan, rollback plan.
Incident reportTimeline, impact, root cause, remediation, lessons learned.
Notes and examples

Change Management Checklist

StepWhat to verify
RequestBusiness reason, owner, affected systems.
Risk assessmentImpact, dependencies, outage window, backout complexity.
ApprovalAuthorized stakeholders agree to timing and scope.
BackupConfigurations and data needed for rollback are captured.
ImplementationSteps are clear, ordered, and assigned.
ValidationTests prove service is working after change.
RollbackPredefined trigger and steps if validation fails.
DocumentationDiagrams, IPAM, CMDB, and runbooks are updated.

Metrics to Recognize

MetricUse
AvailabilityWhether a service is reachable/usable.
UtilizationPercent of capacity consumed.
Error ratePhysical or logical errors indicating faults.
LatencyTime delay; important for voice, video, apps.
JitterDelay variation; especially important for voice/video.
Packet lossIndicates congestion, errors, drops, or wireless issues.
CPU/memoryDevice health and capacity.
Interface discardsDropped frames/packets due to congestion or policy.
Interface errorsCabling, duplex, optic, NIC, or physical-layer issue.

Troubleshooting Commands and Tools

Common Commands

Syntax varies by operating system and tool version, but these are high-yield patterns.

## Windows examples
ipconfig /all
ping 192.0.2.10
tracert example.com
nslookup example.com
netstat -ano
arp -a
route print
Notes and examples
## Linux/macOS examples
ip addr
ip route
ping 192.0.2.10
traceroute example.com
dig example.com
ss -tulpen
arp -a
sudo tcpdump -i eth0 port 53

Command Selection Matrix

Need to know…Tool / commandWhat it tells you
Local IP, mask, gateway, DNSipconfig /all, ip addr, ip routeClient configuration and routing defaults.
Basic reachabilitypingICMP reachability and latency, if ICMP is allowed.
Path to destinationtracert, tracerouteRouter hops and where path may stop.
DNS answernslookup, digResolver behavior and DNS records.
Listening portsnetstat, ssLocal services and connections.
MAC/IP mappingsarp -a, neighbor tableLayer 2 resolution for local subnet.
Packet detailsWireshark, tcpdumpActual frames/packets, handshakes, retransmissions.
Open remote portsPort scannerService exposure and filtering behavior.
Interface status/errorsSwitch/router interface commands, monitoringLink state, speed, duplex, errors, discards.

Troubleshooting Method

StepPractical action
1. Identify the problemGather symptoms, scope, users affected, recent changes.
2. Establish a theoryStart with likely layer/domain based on evidence.
3. Test the theoryUse targeted commands/tools; do not guess randomly.
4. Plan and implement fixConsider impact, approval, backup, and rollback.
5. Verify functionalityConfirm user service and monitor for recurrence.
6. DocumentRecord root cause, fix, and prevention.

Symptom-to-Cause Troubleshooting Tables

Client Connectivity

SymptomMost likely areasFast checks
No link lightCable, port disabled, bad NIC/SFP, power, patchingSwap cable, check switchport, verify transceiver.
Link light but no IPDHCP, VLAN, NAC, scope exhaustionLease status, switch VLAN, DHCP logs, 802.1X state.
IPv4 address is 169.254.x.xDHCP failureDHCP server, relay, VLAN, client firewall, scope.
Can ping gateway onlyRouting, firewall, upstream outageDefault route, ACL, next hop, ISP/WAN status.
Can ping IP but not nameDNSResolver address, records, suffix, port 53.
Some sites work, others failDNS, MTU, filtering, routing, proxyCompare IP vs name, test HTTPS, check PMTUD/firewall.
Intermittent disconnectsCabling, duplex, wireless roaming, power save, IP conflictInterface errors, logs, duplicate IP detection.
Slow first connectionDNS delay, proxy, authentication, ARP/NDResolver timing, proxy logs, packet capture.
Notes and examples

Switching and VLANs

SymptomLikely causeWhat to inspect
Host in wrong subnetWrong VLAN or DHCP scopeAccess VLAN, DHCP scope, IPAM.
New VLAN not reachable across switchesTrunk allowed VLAN missingTrunk config, VLAN database, STP state.
Broadcast stormLayer 2 loopSTP logs, MAC flapping, recent cabling changes.
MAC address appears on multiple portsLoop, virtualization movement, spoofingSwitch MAC table, topology, security logs.
Only one side of link works wellDuplex/speed mismatch or cable pair issueInterface errors, negotiated speed/duplex, cable test.
PoE device rebootsInsufficient power, bad cable, device drawPoE status, power budget, cable quality.

Routing and WAN

SymptomLikely causeCheck
Remote subnet unreachableMissing route, wrong gateway, ACL/firewallRouting table, traceroute, firewall logs.
Route loopsBad redistribution/static routesTTL exceeded, repeated hops in traceroute.
Asymmetric trafficDifferent forward/return pathsStateful firewall drops, NAT state, routing policy.
VPN connects but no internal accessMissing routes, split tunnel policy, firewall, DNSRoute table, VPN pool, ACL, internal DNS.
Site-to-site VPN downIKE/IPsec mismatch, NAT-T, credentials/cert, peer IPPhase negotiation logs, UDP 500/4500, ESP.
High WAN latencyCongestion, path issue, provider problemInterface utilization, QoS queues, provider circuit tests.

Wireless

SymptomLikely causeCheck
Weak signalDistance, obstacles, antenna placementSurvey, RSSI/SNR, AP location.
Good signal but slowInterference, congestion, channel width, client capabilityChannel utilization, band, drivers, AP load.
Authentication failuresRADIUS/cert/EAP/time issueAAA logs, NTP, certificate trust.
Roaming problemsAP power too high/low, poor overlap, client behaviorController events, survey, roaming settings.
Only guest SSID worksInternal SSID VLAN/RADIUS issueSSID mapping, RADIUS policy, DHCP scope.
2.4 GHz unstableInterference/overlapUse channels 1/6/11 where appropriate; reduce overlap.

Security and Access

SymptomLikely causeCheck
User denied after loginAuthorization issueGroup membership, ACL, policy, RADIUS attributes.
Certificate warningExpired, wrong name, untrusted CA, missing intermediateValidity, SAN, chain, client trust store.
Logs show repeated failuresBrute force, bad stored password, service account issueSource IP, lockout, credential rotation.
Unexpected outbound trafficMalware, misconfigured app, data exfiltrationFirewall logs, NetFlow, EDR, DNS logs.
New firewall rule did not workRule order/direction/object mismatchHit counts, implicit deny, source/destination zones.
802.1X endpoint stuck unauthenticatedSupplicant, RADIUS, certificate, VLAN assignmentSwitch auth state, RADIUS logs, EAP method.

Switching, VLANs, and Layer 2 behavior

TopicKey pointCommon mistake
MAC address tableSwitch learns source MAC addresses per portAssuming switch “knows” destinations before learning
Broadcast domainVLAN generally defines broadcast boundaryForgetting broadcasts do not cross routers by default
Collision domainEach switch port is its own collision domain in modern switched EthernetApplying old hub behavior to switches
Access portCarries one untagged VLAN for an endpointConfiguring endpoint port as trunk by mistake
Trunk portCarries multiple VLANs, usually with 802.1Q tagsNative VLAN mismatch or missing allowed VLAN
Native VLANUntagged VLAN on a trunkSecurity risk if poorly controlled
Voice VLANSeparates IP phones from data devicesForgetting QoS or correct port configuration
STPPrevents Layer 2 loopsDisabling loop prevention without an alternative
LACPDynamic link aggregationExpecting bandwidth gain for one flow in all cases
Port securityLimits MAC behavior on switch portsLocking 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

SymptomFirst checksLikely causes
No link lightCable, port, power, transceiverBad cable, disabled port, wrong optic, failed NIC
One user offlineEndpoint IP, cable/Wi-Fi, switch portDHCP issue, access VLAN, local firewall, bad cable
Whole VLAN offlineSVI/router, trunk, DHCP relayTrunk misconfig, Layer 3 interface down, ACL
Whole site offlineWAN edge, ISP, routing, powerProvider outage, edge failure, routing issue
Slow network after changeInterfaces, errors, STP, utilizationLoop, duplex mismatch, congestion, bad cable
VoIP choppyJitter, loss, QoS, WAN useCongestion, missing QoS, wireless roaming
Cannot access by nameDNS settings, records, cacheBad DNS server, missing/incorrect record
Cannot get IPDHCP scope, relay, VLANExhausted scope, helper missing, rogue DHCP
Internal works, internet failsDefault route, NAT, firewall, ISPNAT issue, edge route, provider outage
VPN connects but no resourcesRoutes, split tunnel, DNS, ACLMissing route, firewall, DNS suffix issue
Certificate warningTime, hostname, trust chainExpired cert, wrong CN/SAN, untrusted CA
Intermittent authenticationTime sync, domain reachability, logsNTP issue, DNS issue, packet loss

High-Yield “Do Not Confuse” List

Do not confuseCorrect distinction
Switch vs routerSwitch forwards frames by MAC within a broadcast domain; router forwards packets by IP between networks.
VLAN vs subnetVLAN is Layer 2 segmentation; subnet is Layer 3 addressing. They often map one-to-one but are not the same thing.
DNS vs DHCPDNS resolves names; DHCP assigns configuration.
NAT vs firewallNAT translates addresses; firewall enforces traffic policy.
TCP vs UDPTCP provides connection-oriented reliability; UDP is lightweight and used by many real-time/query protocols.
SSH vs TLSSSH secures remote shell/file transfer; TLS secures many application protocols such as HTTPS.
SFTP vs FTPSSFTP runs over SSH; FTPS is FTP secured with TLS.
IDS vs IPSIDS alerts; IPS blocks inline.
APIPA vs IPv6 link-localIPv4 APIPA often signals DHCP failure; IPv6 link-local is normal and required.
Trunk vs access portTrunk carries multiple VLANs with tags; access port usually carries one untagged VLAN.
Port security vs firewall portPort security controls switch access by MAC/device; firewall ports are TCP/UDP service identifiers.
Latency vs bandwidthLatency is delay; bandwidth is capacity. Increasing bandwidth may not reduce delay.
Authentication vs authorizationAuthentication verifies identity; authorization grants permissions.

Rapid Final Review Checklist

Before practice or exam day, confirm you can:

  • Identify OSI layers from a symptom, protocol, device, address, or PDU.
  • Calculate network ID, broadcast, host range, and usable hosts for common IPv4 CIDR masks.
  • Recognize private IPv4, APIPA, loopback, multicast, default routes, and IPv6 address types.
  • Match common protocols to ports and know secure alternatives.
  • Explain DHCP DORA, DNS record types, SNMP polling/traps, syslog severity, and NTP importance.
  • Troubleshoot “IP works but name fails,” “same VLAN works but remote fails,” and “VPN connects but no access.”
  • Distinguish access ports, trunks, native VLANs, STP behavior, LACP, and inter-VLAN routing.
  • 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 wordingWhat it usually wantsCandidate trap
“Best”Most complete, secure, or operationally appropriate choicePicking the first technically possible answer
“First” / “next”Correct troubleshooting sequenceJumping to replacement, rebuild, or escalation too early
“Most likely”Cause that fits all symptomsFocusing on one clue and ignoring contradictions
“Least disruptive”Minimal change with verificationChoosing a broad outage-causing fix
“Securely”Encryption, authentication, least privilege, loggingChoosing convenience over security
“Intermittent”Signal, cabling, duplex, congestion, DHCP, STP, roaming, powerTreating it like a permanent outage
“One user vs many users”Scope isolationTroubleshooting the WAN when only one endpoint is affected
Notes and examples

High-yield decision rule:

  1. Define scope: one host, one VLAN, one site, one service, or everyone?
  2. Map the layer: physical, data link, network, transport, application, or identity/security?
  3. Verify before changing: check link, IP settings, gateway, DNS, route, firewall, and service status.
  4. Make one controlled change.
  5. Confirm and document.

OSI and TCP/IP model essentials

LayerCore ideaCommon devices / protocolsFast exam cue
7 ApplicationUser-facing network servicesDNS, DHCP, HTTP/S, SMTP, IMAP, SNMP, SSH“Service works by IP but not name” often points to DNS
6 PresentationFormatting, encryption, compressionTLS, certificates, encodingCertificate or cipher issue
5 SessionSession establishment and teardownRPC, session tokensAuthentication/session timeout clues
4 TransportPorts, reliability, flowTCP, UDP, QUIC“Port blocked,” retransmissions, handshake
3 NetworkLogical addressing and routingIPv4, IPv6, ICMP, routers, Layer 3 switchesWrong gateway, bad route, subnet mismatch
2 Data LinkFrames, MACs, VLANs, switchingEthernet, Wi-Fi MAC, ARP, STP, 802.1QVLAN, trunk, MAC table, loop
1 PhysicalSignaling and mediaCopper, fiber, RF, connectors, opticsNo 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 / protocolCommon port(s)TCP / UDPReview note
FTP data / control20 / 21TCPInsecure; separate data/control channels
SSH / SFTP22TCPSecure remote CLI and file transfer
Telnet23TCPInsecure remote CLI; avoid for management
SMTP25TCPMail transfer between servers
DNS53UDP/TCPUDP common; TCP for zone transfers/large responses
DHCP server/client67 / 68UDPAddress leasing; DORA process
TFTP69UDPSimple file transfer; no authentication
HTTP80TCPUnencrypted web
Kerberos88TCP/UDPTicket-based authentication
POP3110TCPMail retrieval
NTP123UDPTime sync; critical for auth/logs
IMAP143TCPMail access/sync
SNMP161UDPPolling/management
SNMP traps162UDPDevice alerts to manager
LDAP389TCP/UDPDirectory access
HTTPS443TCPTLS-protected web
SMB/CIFS445TCPWindows file/printer sharing
LDAPS636TCPLDAP over TLS
Syslog514UDP/TCPLog forwarding; secure variants may differ
RDP3389TCP/UDPRemote desktop
SIP5060 / 5061TCP/UDPVoIP signaling; 5061 commonly TLS
IKE / IPsec NAT-T500 / 4500UDPVPN 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

ConceptReview point
Address length128-bit hexadecimal addressing
CompressionOne run of consecutive zero groups can be replaced with double colon
No broadcastIPv6 uses multicast and anycast, not IPv4-style broadcast
Link-localFE80::/10; used on local link and for neighbor/router discovery
Loopback::1
Unspecified::
Global unicastRoutable IPv6 addresses, commonly within 2000::/3
Unique localFC00::/7, commonly FD-prefixed in practice
SLAACHost can self-configure using router advertisements
DHCPv6Can provide stateful or additional configuration
NDPNeighbor 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.

ConceptWhat to remember
Default gatewayHost’s next hop for nonlocal destinations
Default routeRoute used when no more specific route matches
Longest prefix matchMost specific matching route wins
Static routeManually configured; predictable but less adaptive
Dynamic routingRouters exchange reachability information
OSPFLink-state interior routing protocol
BGPPath-vector protocol used between autonomous systems and in large routing designs
RIPDistance-vector protocol with limited scalability
Route metricUsed to choose among routes within a protocol
Administrative preference/distanceUsed to choose between sources of routing information
NATTranslates addresses
PATMany 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

RecordPurpose
AHostname to IPv4 address
AAAAHostname to IPv6 address
CNAMEAlias to another name
MXMail exchanger
NSAuthoritative name server
PTRReverse DNS lookup
TXTText records, often verification or mail security uses
SRVService location
SOAZone 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.

DHCP DORA

StepMeaning
DiscoverClient broadcasts looking for DHCP servers
OfferServer offers address configuration
RequestClient requests offered lease
AcknowledgeServer confirms lease

DHCP troubleshooting cues:

  • APIPA address: client did not receive a lease.
  • Wrong subnet address: incorrect VLAN, rogue DHCP, or DHCP scope issue.
  • No default gateway/DNS: DHCP option problem.
  • Remote VLAN cannot get leases: DHCP relay/helper may be missing.

NTP

Time synchronization is critical for:

  • Kerberos and other authentication systems
  • Log correlation
  • Certificates and TLS validation
  • Security investigations
  • Distributed systems

If authentication or certificate behavior looks inconsistent, verify time before chasing complex causes.

Cabling, media, and physical layer checks

Media / componentReview point
UTP copperCommon Ethernet cabling; susceptible to distance and interference limits
STP copperShielding helps in high-interference environments when grounded correctly
FiberImmune to electromagnetic interference; supports longer distances
Multimode fiberCommon within buildings/data centers over shorter distances
Single-mode fiberLonger-distance fiber links
LC / SC / ST / MPOFiber connector families; match connector and transceiver
SFP/SFP+/QSFPModular transceivers; speed, fiber type, wavelength, and distance must match
Patch panelCable termination and organization point
Punchdown blockTermination for structured cabling
PoEPower and data over Ethernet; budget and standard compatibility matter
Console cableOut-of-band device management
Loopback plugTests interface transmit/receive behavior
Notes and examples

Tools to associate with symptoms:

ToolUse
Cable testerContinuity, pinout, opens/shorts/miswires
CertifierValidates cable performance to a standard/category
Toner/probeTraces cable runs
TDRLocates copper cable faults by distance
OTDRLocates fiber faults/reflection/loss by distance
Light meterMeasures optical power
Wi-Fi analyzerChecks channels, signal, noise, utilization
Protocol analyzerCaptures and inspects packets
MultimeterElectrical measurements
Environmental monitorTemperature, humidity, power, water alerts

Physical-layer trap: do not start with routing protocol changes when the link light is off, optics are mismatched, or cabling was recently moved.

Network security essentials

ControlPurposeExam cue
FirewallEnforce traffic policyAllow/deny by address, port, application, zone
ACLPacket filtering rule setOften near routers/switches/firewalls
IDSDetect suspicious activityAlerts but may not block
IPSDetect and block suspicious activityInline prevention
VPNEncrypted tunnelRemote access or site-to-site
802.1XPort-based network access controlSwitch/Wi-Fi authentication
RADIUSCentralized AAA, common with 802.1XEnterprise wireless/wired auth
TACACS+Device administration AAACommon for network device admin
NACEnforces device/user posture before accessQuarantine/remediation networks
DMZExposes public services while segmenting internal networkWeb server not directly inside LAN
WAFProtects web applicationsHTTP/S application-layer filtering
SIEMAggregates and correlates security logsInvestigation and alerting
PKICertificates, trust chains, keysTLS, VPN, device identity
MFAAdds authentication factorStronger login security
Least privilegeMinimum necessary accessAvoid broad admin/network rights
Notes and examples

Common attacks and defenses:

ThreatDescriptionUseful controls
ARP poisoningAttacker manipulates Layer 2 address resolutionDynamic ARP inspection, segmentation, monitoring
Rogue DHCPUnauthorized DHCP server gives bad settingsDHCP snooping, port controls
VLAN hoppingAttempt to access other VLANsDisable unused trunks, set native VLAN carefully, restrict allowed VLANs
Evil twin APFake AP impersonates legitimate networkWPA-Enterprise, user training, WIDS/WIPS
Deauthentication attackForces Wi-Fi clients to disconnectModern protections where supported, monitoring
DNS poisoningBad DNS answers redirect usersSecure DNS operations, monitoring, validation
On-path attackAttacker intercepts trafficTLS, VPN, certificate validation
DoS/DDoSResource exhaustionRate limiting, upstream filtering, redundancy
Credential attackPassword guessing/reuse/theftMFA, lockout, monitoring, least privilege
Social engineeringManipulates people/processesTraining, verification procedures

Secure management defaults:

  • Prefer SSH over Telnet.
  • Prefer HTTPS over HTTP for management interfaces.
  • Prefer SNMPv3 over older community-string-based SNMP.
  • Disable unused ports and services.
  • Use centralized authentication where appropriate.
  • Log administrative actions.
  • Back up configurations securely.
  • Restrict management access to approved networks.

Architecture: LAN, WAN, cloud, virtualization, and resilience

Architecture topicReview points
LANLocal switching, VLANs, access/distribution/core design ideas
WANConnects sites; latency, provider dependency, redundancy matter
SD-WANPolicy-based path selection across multiple transports
MPLSProvider-managed private WAN transport concept
VPNEncrypted connectivity over untrusted networks
Site-to-site VPNConnects networks
Remote access VPNConnects individual users/devices
Load balancerDistributes traffic across backend services
Reverse proxyFronts servers and can centralize TLS/security functions
CDNCaches content closer to users
High availabilityRemoves or reduces single points of failure
ClusteringMultiple systems act together for service continuity
Virtual switchConnects VMs/containers to virtual and physical networks
NAT modeVirtual workload shares host/network address translation
Bridged modeVirtual workload appears directly on the network
Host-only networkIsolated to host and guests
Public cloudProvider-operated shared cloud infrastructure
Private cloudDedicated cloud-style environment
Hybrid cloudCombination 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

MetricMeaningReview cue
BandwidthTheoretical or provisioned capacity“How big is the pipe?”
ThroughputActual achieved data transferLower due to overhead, congestion, errors
LatencyDelayHigh latency hurts interactive apps
JitterVariation in delayVoIP/video quality issue
Packet lossDropped packetsCauses retransmissions, poor voice/video
UtilizationHow busy a link/device isSustained high utilization may cause congestion
ErrorsPhysical/data-link problemsCabling, optics, duplex, interference
DiscardsDropped by device queues/policyCongestion or QoS issue
MTUMaximum transmission unitMismatch can break or degrade traffic
Duplex mismatchOne side full, one side halfCollisions/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.

PracticeWhy it matters
Network diagramsFaster troubleshooting and change planning
Rack diagramsPhysical traceability
IP address managementPrevents overlap, conflicts, and undocumented subnets
Asset inventoryLifecycle, support, and incident response
BaselinesIdentify abnormal utilization, errors, latency, and logs
Change managementReduces outage risk and creates rollback paths
Configuration backupsEnables recovery after failed changes/device loss
Patch/firmware managementSecurity and stability
Log managementTroubleshooting, compliance, investigations
Capacity planningAvoids reactive upgrades
Standard operating proceduresRepeatable, auditable operations
Incident response planClear actions during outages/security events
Business continuity / disaster recoveryService restoration planning
Notes and examples

Availability formulas may appear conceptually:

\[ \text{Availability} = \frac{\text{Uptime}}{\text{Uptime} + \text{Downtime}} \times 100\% \]\[ \text{Availability} \approx \frac{\text{MTBF}}{\text{MTBF} + \text{MTTR}} \]

Remember the meaning:

  • MTBF: average time between failures.
  • MTTR: average time to repair/restore.
  • 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:

  1. Physical/link: link light, cable, Wi-Fi association, power, optics.
  2. Local configuration: IP, mask/prefix, gateway, DNS, VLAN.
  3. Local tests: loopback, own IP, gateway.
  4. Name resolution: DNS server, records, suffix, cache.
  5. Path: routing, firewall, NAT, ACLs, VPN.
  6. Service: listening port, application logs, authentication, certificates.
  7. Performance: latency, loss, jitter, congestion, errors.
  8. Documentation: record fix and update diagrams/configs.

Command-line and diagnostic tools

Tool / commandUse
pingBasic reachability and latency using ICMP
traceroute / tracertPath visibility and where forwarding may stop
ipconfig / ifconfig / ipView or manage IP configuration
nslookup / digDNS queries and record validation
arp / ip neighNeighbor/MAC resolution checks
route / netstat -r / ip routeRouting table review
netstat / ssListening ports and active connections
tcpdump / WiresharkPacket capture and protocol analysis
nmapPort scanning and service discovery, where authorized
curlTest HTTP/S and other application responses
sshSecure remote administration
show interfaceInterface status, errors, speed/duplex on network devices
show vlanVLAN assignment review
show mac address-tableSwitch learning/forwarding review
show routeRouting table review
show running-configCurrent 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:

  1. Read the business requirement first.
  2. Identify constraints: VLANs, subnets, ports, security rules, users, or sites.
  3. Draw a quick mental map of traffic flow.
  4. Configure only what the prompt requires.
  5. Verify consistency: subnet/gateway, VLAN/trunk, route, ACL/firewall direction, DNS/DHCP options.
  6. 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.

Put the review into practice

Browse Certification Practice Tests