Refer to the exhibit. Which command will properly configure an IPv6 static route on R2 that will allow traffic from PC2 to reach PC1 without any recursive lookups by router R2?
- R2(config)# ipv6 route 2001:db8:10:12::/64 2001:db8:32::1
- R2(config)# ipv6 route 2001:db8:10:12::/64 S0/0/0
- R2(config)# ipv6 route ::/0 2001:db8:32::1
- R2(config)# ipv6 route 2001:db8:10:12::/64 S0/0/1
Answers Explanation & Hints:
A nonrecursive route must have an exit interface specified from which the destination network can be reached. In this example 2001:db8:10:12::/64 is the destination network and R2 will use exit interface S0/0/0 to reach that network. Therefore, the static route would be ipv6 route 2001:db8:10:12::/64 S0/0/0. |