IPv6 addresses have been pre-configured on the routers. The serial connections use link-local addresses only.
Enable IPv6 routing on each router.
Use SLAAC to configure IPv6 addresses on the PCs. What IPv6 address was configured on each PC?
Configure static routes on the routers to allow PC1 and PC2 to ping each other. The path via R2 should be used only as a backup path.
1. Enable IPv6 routing on each router.
1
ipv6 unicast-routing
2. Use SLAAC to configure IPv6 addresses on the PCs.
What IPv6 address was configured on each PC?
Simply go to config -> settings and enable Gateway to “automatic”. It will generate a default gateway which is likely R1’s address FE80::290:2BFF:FECC:A101, which was learned from R1’s NDP RA messages.
In FastEthernet0, IPv6 configuration should also be automatically generated for PC1, which generates a IPv6 address. The network prefix is learned from R1, and the 2nd half was generated using EUI-64.
Since this is an ethernet interface, directly attached static routes cannot be used. I personally used a fully specified static route, but a recursive static route is also viable.
The route from R1 -> R2 is slightly different. R2 doesn’t actually have an IPv6 address; however, R2 does have a link-local address.
S0/0/0 is a serial interface, so normally a directly attached static route could be possible. However, since the next-hop is a link-local address, a fully specified address is required.
Note that since the route is a backup route, an AD of 5 is configured. Static routes have an AD of 1 in Cisco ISO, so anything higher than 1 would work.
Pinging 2001:DB8:0:3:240:BFF:FE69:9B18 with 32 bytes of data:
Reply from 2001:DB8:0:3:240:BFF:FE69:9B18: bytes=32 time=10ms TTL=126 Reply from 2001:DB8:0:3:240:BFF:FE69:9B18: bytes=32 time<1ms TTL=126 Reply from 2001:DB8:0:3:240:BFF:FE69:9B18: bytes=32 time<1ms TTL=126 Reply from 2001:DB8:0:3:240:BFF:FE69:9B18: bytes=32 time=1ms TTL=126
Ping statistics for 2001:DB8:0:3:240:BFF:FE69:9B18: Packets: Sent = 4, Received = 4, Lost = 0 (0% loss), Approximate round trip times in milli-seconds: Minimum = 0ms, Maximum = 10ms, Average = 2ms