A network engineer must configure path redundancy on a Cisco IOS router for reaching the remote IPv6 prefix . The primary path must forward packets through interface GigabitEthernet0/0/1 using the next-hop router's link-local IPv6 address . The secondary backup path must forward packets toward the global unicast next-hop IPv6 address only if the primary path fails. Which TWO Cisco IOS commands are required to satisfy these requirements?
- ipv6 route 2001:db8:4000:50::/64 GigabitEthernet0/0/1 fe80::2Answer
- ipv6 route 2001:db8:4000:50::/64 2001:db8:1000:20::2 130Answer
- Cipv6 route 2001:db8:4000:50::/64 fe80::2
- Dipv6 route 2001:db8:4000:50::/64 GigabitEthernet0/0/2 2001:db8:1000:20::2
Answer
The correct configuration requires both the command specifying the local exit interface alongside the link-local next-hop address ('ipv6 route 2001:db8:4000:50::/64 GigabitEthernet0/0/1 fe80::2') and the command defining a higher administrative distance for the backup route ('ipv6 route 2001:db8:4000:50::/64 2001:db8:1000:20::2 130').
The combination of using a fully-specified route syntax for link-local next-hops ('GigabitEthernet0/0/1 fe80::2') and appending an elevated Administrative Distance of 130 for the global unicast backup path ensures that link-local scoping syntax rules are respected and that the backup route remains floating until primary path failure.
Step-by-Step Solution
Key Concept
IPv6 Static Route Syntax & Floating Static Administrative Distance