Difficulty: Easy
Correct Answer: IGRP has a lower administrative distance.
Explanation:
Introduction / Context:
Routers often learn the same destination via multiple routing protocols. The decision process first compares administrative distance (AD), a trust ranking per protocol, before considering metrics. Understanding AD explains why a route from one protocol wins over another in the routing information base (RIB).
Given Data / Assumptions:
Concept / Approach:
Administrative distance ranks source credibility. Since IGRP's AD (100) is lower than RIP's (120), the router installs the IGRP-learned route and discards the RIP route from the main table (though it may be kept as a backup depending on platform). Metric comparisons matter only within routes from the same protocol; cross-protocol selections never compare RIP hop count with IGRP composite metric.
Step-by-Step Solution:
List candidate routes grouped by protocol.Pick the group with the lowest AD (IGRP).Within that group, select the best metric (if multiple IGRP paths exist).Install the winning IGRP route in the RIB.
Verification / Alternative check:
Check platform defaults: show ip protocols shows AD; show ip route displays installed protocol codes and reasons. Changing AD (distance command) can alter selection order.
Why Other Options Are Wrong:
Common Pitfalls:
Assuming a “better metric” in RIP can override IGRP; it cannot if AD differs.
Final Answer:
IGRP has a lower administrative distance.
Discussion & Comments