You are on page 1of 5

IPv6: Implementing Dual Stack

1. Open NetLabs: http://74.92.78.45 2. Reserve lab.

3. Choose class.

4. Choose exercise.

5. Pick your time.

6. Confirm reservation with these settings.

7. Choose Im done

8. Enter lab now or come back when your reservation was scheduled.

9. Topology

10. Verify status.

11. View interface status on Router1. Select R1 and a window opens. Press enter a couple of times to get started. Router>enable Router#show ipv6 interface brief FastEthernet0/0 [administratively down/down] FastEthernet0/1 [administratively down/down] Serial0/0/0 [administratively down/down] Serial0/0/1 [administratively down/down] Router# 12. Configure Router1 Router#configure terminal Enter configuration commands, one per line. End with CNTL/Z. Router(config)#hostname Router1 Router1(config)#interface fastethernet 0/0 Router1(config-if)# ip address 172.16.100.1 255.255.255.252 Router1(config-if)# no shutdown Router1(config-if)# ipv6 address 2001::1/125 Global publicly routed Internet address because the first 3 bits are 001. Dual Stack because the router will run IPv4 and IPv6. Router1(config-if)#end Router1#

13. Configure Router2 Router#configure terminal Enter configuration commands, one per line. End with CNTL/Z. Router(config)#hostname Router2 Router2(config)#interface fastethernet 0/0 Router2(config-if)# ip address 172.16.100.2 255.255.255.252 Router2(config-if)# no shutdown Router2(config-if)# ipv6 address 2001::2/125 Global publicly routed Internet address because the first 3 bits are 001. Dual Stack because the router will run IPv4 and IPv6. Router2(config-if)#end Router2#

14. View the interfaces on the Router RouterX#show ip interface brief Interface IP-Address FastEthernet0/0 172.16.100.x FastEthernet0/1 unassigned Serial0/0/0 unassigned Serial0/0/1 unassigned RouterX#show ipv6 interface brief FastEthernet0/0 2001::x FastEthernet0/1 Serial0/0/0 Serial0/0/1 [up/up] [administratively down/down] [administratively down/down] [administratively down/down]

OK? Method Status Protocol YES manual up up YES manual administratively down down YES manual administratively down down YES manual administratively down down

15. PING from Router 1 Router1#ping 172.16.100.2 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.100.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 1/1/4 ms Router1#ping ipv6 2001::2 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 2001::1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 0/0/4 ms Router1#

16. PING from Router 2 Router2#ping 172.16.100.1 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 172.16.100.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 1/1/4 ms Router2#ping ipv6 2001::1 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 2001::1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 0/0/4 ms Router2#

You might also like