A network administrator is configuring static routing on Cisco router Branch-R1 to reach remote subnet . The routing design requires a primary path using next-hop global unicast address , and a floating static backup path using link-local next-hop address reachable via interface GigabitEthernet0/0/1. Which two commands must be configured on Branch-R1 to fulfill these requirements? (Select two.)
- ipv6 route 2001:db8:3c4d:15::/64 2001:db8:3c4d:12::2Answer
- ipv6 route 2001:db8:3c4d:15::/64 GigabitEthernet0/0/1 fe80::2 130Answer
- Cipv6 route 2001:db8:3c4d:15::/64 fe80::2 130
- Dipv6 route 2001:db8:3c4d:15::/64 GigabitEthernet0/0/1 fe80::2 1
Answer
The correct commands are 'ipv6 route 2001:db8:3c4d:15::/64 2001:db8:3c4d:12::2' for the primary route and 'ipv6 route 2001:db8:3c4d:15::/64 GigabitEthernet0/0/1 fe80::2 130' for the floating static backup route.
For the primary path, specifying the destination IPv6 prefix and the global unicast next-hop address provides sufficient forwarding information to the routing table. For the backup path, using a link-local IPv6 address requires a fully specified route format that explicitly includes the exit interface (GigabitEthernet0/0/1), combined with an administrative distance greater than 1 (such as 130) so that it functions as a floating backup route.
Step-by-Step Solution
Key Concept
IPv6 Static Route Syntax and Link-Local Next-Hop Requirements