N10-010 — CompTIA Network+ V10 Quick Reference

Compact CompTIA Network+ V10 (N10-010) review of ports, subnetting, routing, switching, wireless, security, operations, and troubleshooting.

How to Use This Quick Reference

This independent Quick Reference is for candidates preparing for the real CompTIA Network+ V10 (N10-010) exam. Use it to quickly reinforce high-yield facts, troubleshooting logic, and decision points.

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.

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.

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.

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

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.

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.

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.

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.

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.

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.

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.

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.

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
## 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.

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.

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.

Practical Next Step

Use this Quick Reference as a checklist, then complete timed CompTIA Network+ V10 (N10-010) practice sets that force subnetting, port recognition, topology interpretation, and troubleshooting from realistic symptoms.

Browse Certification Practice Tests by Exam Family