Static vs Dynamic Routing and Route Selection
Key Takeaways
- Network+ routing questions test how routers choose paths, not vendor-specific command memorization.
- Static routes are manually configured and predictable, while dynamic routing protocols learn and adapt to topology changes.
- Route selection follows longest prefix match first, then administrative distance, then metric when multiple candidates remain.
- Default routes send traffic toward a next hop when no more specific route exists.
- The N10-009 exam is current in 2026 and covers five domains: Networking Concepts 23%, Network Implementation 20%, Network Operations 19%, Network Security 14%, and Network Troubleshooting 24%.
Routing moves packets between IP networks. A router compares the destination IP address to its routing table, chooses the best matching route, and forwards the packet out the selected interface or to the selected next hop.
For Network+ N10-009, routing belongs primarily to Domain 2, Network Implementation, which is 20% of the exam. The current 2026 domain weights are:
| Domain | Weight |
|---|---|
| Networking Concepts | 23% |
| Network Implementation | 20% |
| Network Operations | 19% |
| Network Security | 14% |
| Network Troubleshooting | 24% |
Route Sources
| Route type | How it appears | Best use | Main risk |
|---|---|---|---|
| Connected route | Interface has an IP address and is up | Directly attached networks | Disappears if interface goes down |
| Local route | Address assigned to the router interface | Reaching the router interface itself | Usually not manually changed |
| Static route | Administrator configures destination and next hop | Small networks, stub networks, backups | Does not adapt unless tracked or changed |
| Default route | Route to 0.0.0.0/0 or ::/0 | Send unknown destinations upstream | Bad default can blackhole traffic |
| Dynamic route | Learned from OSPF, EIGRP, BGP, or another protocol | Larger or changing topologies | Requires protocol design and monitoring |
Static vs Dynamic Routing
| Feature | Static routing | Dynamic routing |
|---|---|---|
| Configuration effort | Manual per route | Protocol configuration plus policy |
| Adaptation | Does not adapt by itself | Can reconverge after failures |
| Overhead | Very low | Uses CPU, memory, and protocol traffic |
| Predictability | High | Depends on metrics and protocol state |
| Scale | Good for simple or stub paths | Better for many networks or many routers |
| Troubleshooting clue | Check exact destination, mask, and next hop | Check neighbors, advertisements, metrics, and filters |
Static routing is not less professional than dynamic routing. It is often the right answer for a stub network with one exit path, a management network, or a backup route with a higher administrative distance. Dynamic routing becomes valuable when the topology has multiple routers, multiple paths, frequent changes, or a need for automatic failover.
Route Selection Order
Routers do not simply pick the route with the lowest metric from every possible route. They narrow the choice in this order:
- Longest prefix match: the most specific destination prefix wins.
- Administrative distance: if multiple route sources provide the same prefix length, the most trusted source wins.
- Metric: if the same routing protocol provides multiple comparable routes, the best metric wins.
Example Route Table Decision
Destination packet: 10.10.40.25
| Route | Source | Administrative distance | Metric | Matches? |
|---|---|---|---|---|
| 0.0.0.0/0 via 203.0.113.1 | Static default | 1 | 0 | Yes |
| 10.10.0.0/16 via 10.1.1.1 | OSPF | 110 | 20 | Yes |
| 10.10.40.0/24 via 10.2.2.2 | Static | 1 | 0 | Yes |
| 10.10.40.0/25 via 10.3.3.3 | OSPF | 110 | 30 | Yes |
The router uses 10.10.40.0/25 because /25 is the longest matching prefix for 10.10.40.25. The OSPF administrative distance does not matter until routes have the same prefix length.
Administrative Distance and Metric
| Concept | Meaning | Exam clue |
|---|---|---|
| Administrative distance | Trustworthiness of the route source | Static route may beat OSPF for the same prefix |
| Metric | Protocol-specific path cost | OSPF cost, EIGRP composite metric, BGP path attributes |
| Equal-cost multipath | Multiple same-cost routes installed | Load sharing across equivalent next hops |
| Floating static route | Static route with higher administrative distance | Backup route appears only when primary disappears |
Scenario Guidance
When a host cannot reach a remote subnet, first confirm the host IP settings and local gateway. Then trace the path outward:
| Check | What it proves |
|---|---|
| Host default gateway is correct | Host can send off-subnet traffic to the router |
| Router has a route to destination | Forward path exists |
| Return router has a route back | Reply path exists |
| ACL/firewall permits traffic | Routing is not being mistaken for filtering |
| Next hop is reachable | Route points to a usable neighbor or interface |
Common Traps
| Trap | Better reasoning |
|---|---|
| Choose the lowest metric across all protocols | Longest prefix and administrative distance are considered first |
| Add a default route to fix one missing internal route | A default may hide the symptom and send traffic the wrong way |
| Troubleshoot only the forward path | Many routing failures are return-path failures |
| Assume connected routes are manually configured | They appear when an addressed interface is operational |
PBQ Practice Prompt
You are given three routers and a route table. Branch users can reach the internet but not the data center subnet 10.50.20.0/24. The branch router has only a default route to the ISP and no route to the private WAN. The best PBQ move is to add a specific route for 10.50.20.0/24 toward the WAN next hop, then verify that the data center router has a route back to the branch subnet.
A router has routes to 10.20.0.0/16 and 10.20.30.0/24. Which route is used for traffic to 10.20.30.44?
Which route is commonly used as a backup and configured with a higher administrative distance than the primary route?
Which checks are most relevant when routing to a remote subnet fails? Select two.
Select all that apply