When a router processes an incoming IP packet to make a forwarding decision, it evaluates matching candidate routes using a deterministic precedence hierarchy. Place the following routing decision criteria in the correct order of evaluation from first (1st) to last (4th).
- 1Longest prefix match (the route with the most specific matching subnet mask length)
- 2Administrative distance (lowest preference value among competing routing sources)
- 3Metric (lowest internal path cost within the same routing protocol)
- 4Equal-cost load balancing (distributing traffic across tied paths)
Cevap
The correct sequence for router forwarding decision logic is: 1) Longest prefix match, 2) Administrative distance, 3) Metric, and 4) Equal-cost load balancing.
A router evaluates forwarding decisions using a strict hierarchy: first, it determines the longest prefix match (most specific subnet mask matching the destination IP). If multiple routes have the exact same prefix length, it evaluates Administrative Distance to select the route from the most trustworthy source. If multiple routes come from the same routing source with identical prefix lengths, it compares the Metric to pick the path with the lowest cost. Finally, if prefix length, Administrative Distance, and Metric are all equal, the router performs equal-cost load balancing.
Adım Adım Çözüm
Anahtar Kavram
Router Forwarding Precedence Hierarchy