Monitoring, Log Triage, and Route or Service Troubleshooting Lab

Key Takeaways

  • Separate monitoring evidence, log evidence, path evidence, and service evidence to triage PBQs faster.
  • Interface counters, syslog, SNMP, flow data, and packet captures each answer a different question.
  • Routing issues surface as missing routes, wrong gateways, ACL blocks, or asymmetric paths.
  • Service failures require checking name resolution, port reachability, process health, certificates, and dependencies in order.
  • A clear escalation note states scope, symptoms, timestamps, tests performed, findings, and the next action.
Last updated: June 2026

Monitoring and Troubleshooting Lab

Many N10-009 performance-based questions hand you a small set of logs, counters, route tables, or command outputs. Your job is to decide what changed, where the failure begins, and which fix matches the evidence. CompTIA's published troubleshooting methodology (identify the problem, establish a theory, test the theory, plan and implement, verify, document) frames the correct answer - PBQs often reward following that order rather than jumping to a fix.

Scenario

Users in VLAN 10 report the intranet is unavailable. Users in VLAN 30 reach the same intranet server. Internet access still works for VLAN 10.

EvidenceResult
User IP172.20.10.55/24
User gateway172.20.10.1
Intranet server172.20.30.25
Ping gatewaySuccess
Ping intranet serverFails
DNS lookup of intranet name172.20.30.25 (correct)
TCP 443 test to intranetTimeout
Firewall logDeny 172.20.10.55 to 172.20.30.25 TCP 443, rule 90

DNS resolves correctly, the local gateway responds, and the destination IP is known. The firewall deny log is the strongest clue. The next action is to review the rule set and move or add an approved user-to-intranet HTTPS allow rule above the deny.

Evidence Types

Tool or sourceBest forExample clue
SyslogDevice events and severityInterface down, denied traffic, auth failure
SNMPHealth and performance pollingInterface utilization, errors, CPU, memory
NetFlow / flow dataWho talked to whom and how muchTop talkers, unusual destination ports
Packet capturePacket-level proofTCP SYN retransmits, TLS alert, ARP behavior
Interface countersLink quality and errorsCRC errors, drops, duplex mismatch
Route tablePath selectionMissing default route, wrong next hop
DNS toolsName resolutionWrong record, no response, split-DNS issue

Syslog uses severity levels 0 (emergency) through 7 (debug); a level-3 (error) link-down message outranks a level-6 informational message when triaging. SNMP polls device health, while NetFlow records conversations - use SNMP for "is the link saturated" and NetFlow for "who is saturating it."

Route Triage

SymptomLikely issueUseful commands
Reach local gateway, not remote networkRoute, ACL, firewall, or upstreamping, traceroute, route table
Traceroute stops at the firewallPolicy block or missing route past itfirewall logs, route table
One direction works, return failsAsymmetric routing, missing return routeroute tables on both sides
Only one subnet affectedVLAN interface, ACL, route advertisement, DHCPinterface status, ACL, DHCP lease

Service Triage

Work bottom-up through the stack so you do not chase the wrong layer.

LayerQuestionTest
DNSDoes the name resolve to the expected IP?nslookup or dig
Network pathCan the client reach the destination network?ping or traceroute where allowed
TransportIs the expected port reachable?tcping, nc, Test-NetConnection, capture
ApplicationIs the service process healthy?service status, HTTP response, logs
SecurityIs a firewall, ACL, certificate, or auth control blocking it?firewall logs, TLS details, auth logs

Do not stop at "ping fails" when ICMP is blocked by policy. For web services a TCP 443 test plus firewall logs is far more useful than ping, because many networks drop ICMP while permitting HTTPS.

Example Log Triage

Log lineInterpretation
%LINK-3-UPDOWN: Gi1/0/24 changed state to downPhysical or data-link event on a switchport
Deny TCP 172.20.10.55:51512 to 172.20.30.25:443Firewall policy blocked a web session
DHCPDISCOVER from client, no DHCPOFFER observedDHCP server, relay, VLAN, or trunk issue
OSPF neighbor down, dead timer expiredRouting adjacency failure
High CRC errors on Gi1/0/12Cable, transceiver, interference, or duplex

A duplex mismatch (one side full, the other half) produces late collisions and CRC errors that look like a bad cable - check both interface speed/duplex settings before swapping hardware.

Escalation Note Template

When a PBQ asks you to document the issue, keep it concise and actionable:

  • Scope: VLAN 10 users cannot reach intranet HTTPS; VLAN 30 users can.
  • Time: Reports began after the 09:15 firewall change.
  • Tests: Gateway ping succeeds; DNS resolves; TCP 443 times out.
  • Evidence: Firewall denies VLAN 10 to 172.20.30.25 TCP 443 on rule 90.
  • Next action: Review rule 90; place an approved HTTPS allow rule above the deny, then verify and document.

Common PBQ Traps

  • Replacing cabling when logs show an explicit firewall deny.
  • Treating DNS as broken after the name resolved correctly.
  • Assuming ping failure means the server is down when ICMP is blocked.
  • Ignoring return routes and asymmetric routing.
  • Watching only average bandwidth and missing interface errors or drops.
  • Escalating without timestamps, affected scope, or supporting evidence.
Test Your Knowledge

A client resolves a server name correctly, reaches its gateway, but TCP 443 to the server times out and firewall logs show a deny. What is the most likely cause?

A
B
C
D
Test Your Knowledge

An interface shows high CRC errors and late collisions, but the cable tests fine. What should you check before replacing hardware?

A
B
C
D
Test Your Knowledge

Which evidence source is best for identifying CRC errors and drops on a physical switch interface?

A
B
C
D
Test Your KnowledgeMulti-Select

Which details belong in a useful network escalation note? Select three.

Select all that apply

Affected scope and symptoms
Timestamps or change-window context
Tests performed and evidence found
A guess with no supporting data
A request to ignore the logs