A network engineer intends to establish a redundant path to a remote office subnet . The primary path learns the route dynamically via eBGP (administrative distance of ). The engineer attempts to configure a backup floating static route through an IPsec tunnel interface, intended to activate only if the primary eBGP session fails. However, the engineer enters the configuration command: `ip route 10.45.0.0 255.255.0.0 172.16.1.2 15`. Under normal operating conditions with both connections active, which path will the router install into the routing table for traffic destined to , and why?
- The router will install the static route via next-hop 172.16.1.2 because lower administrative distance values are prioritized over higher values, causing the static route (AD 15) to override the eBGP route (AD 20).Cevap
- BThe router will install the eBGP route because dynamic routing protocol metrics automatically take precedence over static route administrative distance values.
- CThe router will install the eBGP route because exterior gateway protocols maintain absolute priority in the routing control plane over locally configured static routes.
- DThe router will load-balance packets across both paths because both routes match the destination prefix length identically.
Cevap
The router will select the static route via next-hop 172.16.1.2 because an administrative distance of 15 is numerically lower and therefore more preferred than eBGP's administrative distance of 20.
When a router receives multiple routes for the exact same destination prefix length from different routing protocols or administrative sources, it uses Administrative Distance (AD) to decide which route to populate into the routing table. Lower AD values represent higher preference. Because eBGP has a default AD of 20 and the misconfigured static route was given an AD of 15, the router prefers 15 over 20, causing the intended 'backup' static route to be active during normal operation.
Adım Adım Çözüm
Anahtar Kavram
Administrative Distance vs Floating Static Route Configuration