Routing PBQs and Troubleshooting Route Table Clues

Key Takeaways

  • Routing PBQs combine route tables, interface status, gateways, VLANs, NAT, and protocol clues into one repair task.
  • Read a route table by matching prefix length first, then route source code, then next-hop reachability.
  • A missing route, wrong next hop, down interface, wrong gateway, NAT fault, or ACL can all produce the same user complaint.
  • ping, traceroute, ARP/neighbor tables, interface status, and the route table together localize the failure.
  • Always test the return path and decide whether the failure is routing, switching, translation, or filtering.
Last updated: June 2026

How Routing PBQs Are Built

Performance-based questions (PBQs) present a partial topology - a few routers, a switch, a route table, maybe a NAT or firewall hint - and ask you to restore reachability. The winning approach is always the same disciplined flow: identify the source host, its default gateway, the routed path, the destination's return path, and any policy controls in between. Change the smallest thing that explains all symptoms.

Reading Route-Table Codes

CodeMeaning
C - connectedSubnet directly attached and interface up
L - localA /32 or /128 for the router's own interface IP
S - staticAdministrator configured the route
O - OSPFLearned via OSPF
D - EIGRPLearned via EIGRP (D = DUAL)
B - BGPLearned via BGP
S* - gateway of last resortA default route is present
(no match)Packet dropped unless a default route catches it

Exact code letters vary by vendor, but a PBQ gives enough context. Anchor on four facts per line: source code, destination prefix, next hop, and interface state.

The Troubleshooting Flow

Apply this in order; do not skip ahead:

StepQuestionEvidence / tool
1Is the host configured correctly?IP, mask, default gateway, DNS if name-based
2Can the host reach its gateway?ping gateway, ARP table, VLAN membership
3Does the router know the destination?Route table, longest-prefix match
4Is the next hop reachable?Interface up/up, ARP/neighbor, ping next hop
5Does the destination know the return path?Remote route table and gateway
6Is translation involved?NAT/PAT table, inside vs outside interface roles
7Is policy blocking it?ACL, firewall rule, security group

User-report decoder

User reportBest first clueLikely fix
One internal subnet cannot reach anotherRoute table lacks a specific routeAdd route or advertise the subnet
All offsite networks fail from one VLANWrong host default gatewayFix the DHCP scope or static gateway
Internet fails but private WAN worksDefault route or NAT/PATAdd default route or repair translation
Server gets traffic but replies never arriveReturn path missingAdd reverse route or fix the server gateway
A dynamic route vanished after maintenanceAdjacency downFix interface, protocol settings, or auth

Longest-Match Practice

Destination: 172.16.8.45

RouteNext hop
0.0.0.0/0ISP
172.16.0.0/16WAN-A
172.16.8.0/24WAN-B
172.16.8.32/27WAN-C

Work the math: a /27 covers 32 addresses, so 172.16.8.32/27 spans 172.16.8.32-172.16.8.63. The destination .45 falls inside that block, so WAN-C wins - it is the longest matching prefix. If WAN-C's next hop is down and no alternate is installed for that prefix, the router may drop the packet even though broader /24, /16, and default routes still match. This is why "there is a default route, so it must work" is a flawed assumption: a more specific dead route is still preferred over a healthy broader one.

PBQ Repair Examples

Evidence in the PBQInterpretationAction
Branch has only a default route; HQ subnet should reach via MPLSSpecific private route missingAdd a static route or fix the advertisement
OSPF neighbor absent after a password changeAuthentication mismatchCorrect OSPF auth on both ends
VLAN 30 gateway responds but no inter-VLAN routingMissing route or subinterfaceAdd the routed/subinterface gateway
PAT table empty during internet testNAT not matching trafficFix the NAT ACL or inside/outside roles
Traceroute stops at the firewallFiltering or missing route at that hopCheck route table and firewall policy there

Common Traps and the Exam Tactic

TrapBetter reasoning
Blame DNS when ping by IP already failsLayer 3 reachability must work before name resolution matters
Fix only the source routerReturn-path routing breaks replies just as easily
Sprinkle broad default routes everywhereSpecific internal routes are safer and easier to reason about
Ignore interface statusA perfect route through a down interface forwards nothing
Read a traceroute timeout as definitive failureSome devices silently forward but block ICMP/traceroute responses

Exam tactic

When a PBQ shows many devices, narrate the flow in your head: source host -> default gateway -> router path -> destination gateway -> destination host -> return. Then change the single smallest setting that accounts for every symptom. If one VLAN works and an adjacent one does not, line up their differences: gateway address, VLAN tag, route entry, and ACL. The differing field is almost always the answer. Resist replacing hardware or rewriting whole configs - PBQs reward a precise edit, and the broader, more dramatic option is usually the distractor.

Finally, sanity-check that your fix does not blackhole other traffic, especially when you add or change a default route.

Test Your Knowledge

A server receives packets from a branch subnet, but the branch never receives replies. Which issue should you check first?

A
B
C
D
Test Your Knowledge

A route table contains 192.168.0.0/16 and 192.168.10.0/24. Which entry best matches a packet destined for 192.168.10.75?

A
B
C
D
Test Your KnowledgeMulti-Select

Which two conditions can make a routing problem look like a total connectivity outage to the user?

Select all that apply

A missing default route
An ACL blocking the routed traffic
A correctly installed return path
An accurate route advertisement from the neighbor