An enterprise core network routes traffic using several dynamic interior and exterior routing protocols alongside static routing rules. Match each routing protocol or forwarding evaluation rule on the left with its exact operational metric or selection characteristic on the right.
- Internal BGP (iBGP)Carries a default administrative distance of 200 and preserves AS_PATH attributes across internal peers without prepending its local AS.
- OSPFv2Uses a link-state metric derived from reference bandwidth over interface bandwidth () with a default administrative distance of 110.
- Internal EIGRPUses a composite metric of minimum bandwidth and cumulative delay by default () with a default administrative distance of 90.
- Longest Prefix MatchPrecedes all administrative distance and protocol metric comparisons during routing table lookup and packet forwarding.
Answer
Internal BGP matches with default AD 200 and AS_PATH preservation; OSPFv2 matches with bandwidth cost metric and AD 110; Internal EIGRP matches with composite bandwidth/delay metric and AD 90; Longest Prefix Match matches with overriding all AD and metric evaluations during lookup.
Each protocol and lookup rule follows strict architectural standards: iBGP operates at AD 200, OSPF calculates cost based on bandwidth with AD 110, EIGRP uses composite metrics with AD 90, and Longest Prefix Match serves as the primary route selection criterion before AD or metrics are evaluated.
Step-by-Step Solution
Key Concept
Routing table path selection order, administrative distance hierarchy, and dynamic protocol metric calculation mechanisms.