Question

Difficulty: MediumRouting Concepts and Dynamic Routing Protocols

A network administrator is configuring an edge router connected to two upstream service providers. The router learns a default route (0.00.0/00.00.0/0) via eBGP from ISP A with an Administrative Distance of 20 and a metric of 10. Simultaneously, the administrator configures a manual static default route pointing toward ISP B using the default Administrative Distance of 1. If both links are active and healthy, which path will the router install into its Routing Information Base (RIB) for default traffic?

  1. The static route pointing to ISP B, because static routes have a lower Administrative Distance than eBGP routes.Answer
  2. B
    The eBGP route from ISP A, because dynamic routing protocols take precedence over manually configured static routes.
  3. C
    The eBGP route from ISP A, because its metric of 10 is evaluated before Administrative Distance during path selection.
  4. D
    Both routes equally, installing both paths into the routing table to perform equal-cost multipath load balancing.

Answer

The static route pointing to ISP B, because static routes have a lower Administrative Distance than eBGP routes.
When a router receives multiple candidate routes for the exact same network prefix (0.0.0.0/00.0.0.0/0) from different routing protocols or administrative sources, it compares their Administrative Distance (AD). Administrative distance rates trustworthiness, where lower numerical values indicate higher preference. Static routes default to an AD of 1, whereas external BGP (eBGP) routes have a default AD of 20. Because 1 is less than 20, the static route is selected and installed into the active routing table.

Step-by-Step Solution

1
Compare the source protocols of the identical prefix (0.0.0.0/00.0.0.0/0).
Identified two routing sources: Static Route (AD = 1) and eBGP (AD = 20).
When a router receives multiple routes for the exact same prefix length from different routing sources, it evaluates Administrative Distance (AD) first.
2
Select the route with the lower Administrative Distance.
The static route with AD = 1 is selected over the eBGP route with AD = 20.
Lower Administrative Distance values represent higher trustworthiness in routing decision logic.

Key Concept

Routing Table Path Selection & Administrative Distance Hierarchy
Rate this question