A network operations engineer is provisioning IPv6 static routing on router Edge-Rtr. The design requirements specify:
1. All default traffic must be forwarded to the primary service provider gateway at global unicast address .
2. A backup static route for internal network must direct traffic to link-local next-hop address across exit interface GigabitEthernet0/0/1, functioning as a floating route to back up a primary OSPFv3 route (administrative distance 110).
Which TWO Cisco IOS configuration commands correctly fulfill these requirements?
- ipv6 route ::/0 2001:db8:1000:1::1Answer
- ipv6 route 2001:db8:abc:10::/64 GigabitEthernet0/0/1 fe80::2 120Answer
- Cipv6 route 2001:db8:abc:10::/64 fe80::2 120
- Dipv6 route 2001:db8:abc:10::/64 GigabitEthernet0/0/1 fe80::2 90
Answer
The correct commands are 'ipv6 route ::/0 2001:db8:1000:1::1' for default routing to the global unicast address, and 'ipv6 route 2001:db8:abc:10::/64 GigabitEthernet0/0/1 fe80::2 120' for the fully-specified floating static route.
The command configuring the default prefix '::/0' to the global unicast address correctly establishes default forwarding. The command referencing prefix '2001:db8:abc:10::/64' with interface 'GigabitEthernet0/0/1', link-local address 'fe80::2', and administrative distance '120' correctly satisfies all syntax rules for link-local next hops and floating route precedence.
Step-by-Step Solution
Key Concept
IPv6 static route configuration syntax, link-local next-hop requirements, and floating static route administrative distance manipulation.