Question

Difficulty: MediumRouting Concepts and Dynamic Routing Protocols

An enterprise router receives dynamic routing updates from multiple protocols for the exact same destination network prefix. Place the processing steps in the correct order that the router follows to evaluate these updates and install the optimal path into the Forwarding Information Base (FIB).

  1. 1Receive routing updates containing the destination IP prefix and subnet mask from dynamic routing processes.
  2. 2Evaluate Administrative Distance (AD) to prioritize the route from the most trustworthy routing protocol source.
  3. 3Compare protocol-specific metrics if multiple routes exist from the same routing protocol.
  4. 4Install the winning route entry into the Forwarding Information Base (FIB) for hardware packet forwarding.

Answer

The correct sequence begins with receiving the routing updates, followed by evaluating Administrative Distance across different protocols, comparing metrics within the winning protocol, and finally installing the selected route into the Forwarding Information Base.
When a router learns multiple routes to the exact same prefix, it first receives all update advertisements. It then uses Administrative Distance (AD) to evaluate protocol trustworthiness. If the preferred protocol advertises multiple candidate paths, the router uses the protocol metric to break the tie. Finally, the chosen route is moved into the Forwarding Information Base (FIB) for rapid data plane forwarding.

Step-by-Step Solution

1
Ingest incoming routing protocol updates.
The router places candidates for the destination prefix into the control plane buffer.
Updates must be received before path selection decision logic can run.
2
Filter incoming routes based on Administrative Distance (AD).
The protocol with the lowest AD value (e.g., OSPF at 110 vs RIP at 120) is chosen.
Metrics are incompatible across different protocols, so AD is used first to select the most reliable routing source.
3
Compare metrics among candidate paths from the winning protocol.
The path with the lowest metric (lowest cost) within that specific protocol is chosen.
When multiple paths are advertised by the same protocol, metric comparison resolves path preference.
4
Commit the best path to the Forwarding Information Base (FIB).
The FIB is updated with the next-hop IP and outgoing interface.
The FIB handles hardware-accelerated packet forwarding based on the control plane's selection.

Key Concept

Route Selection Hierarchy (Administrative Distance vs Metric and FIB Programming)
Rate this question