A network engineer needs to manually configure a backup route on Router R1 toward the remote prefix . The primary route to this subnet is learned via OSPFv3 with an administrative distance of 110. The engineer must use the neighboring router's link-local address reachable through interface GigabitEthernet0/0/1. What complete Cisco IOS global configuration command must be entered to establish this route as a floating static route with an administrative distance of 130?
Answer:R1(config)# 【ipv6 route 2001:db8:cafe:40::/64 GigabitEthernet0/0/1 fe80::250:56ff:fe9a:12ab 130】
Answer
The complete command required is 'ipv6 route 2001:db8:cafe:40::/64 GigabitEthernet0/0/1 fe80::250:56ff:fe9a:12ab 130'.
To route IPv6 traffic using a link-local address (FE80::/10) as the next hop, Cisco IOS requires a fully specified static route syntax that defines the local exit interface followed by the link-local address. Without specifying the exit interface, the router cannot determine which local physical or logical link reaches that link-local address. Additionally, appending the administrative distance value 130 ensures the static route remains inactive in the routing table until the primary OSPFv3 route (AD 110) fails.
Step-by-Step Solution
Key Concept
Fully Specified IPv6 Floating Static Route Configuration