IPv6 静态路由汇总基本实验
Intention: 使用汇总路由(summary static-route)将全网互联。
 
(R1 Configuration:)
!
ipv6 unicast-routing
!
interface Loopback0
 no ip address
 ipv6 address 1234::1111/128
!
interface Ethernet0/0
 no ip address
 half-duplex
 ipv6 address 1234::2008:1212:1/96
!
ipv6 route 1234::/64 1234::2008:1212:2
!
!
 
(R2 Configuration:)
!
ipv6 unicast-routing
!
interface Ethernet0/0
 no ip address
 half-duplex
 ipv6 address 1234::2008:1212:2/96
!
!
interface Ethernet0/2
 no ip address
 half-duplex
 ipv6 address 1234::2323:2/112
!
interface Ethernet0/3
 no ip address
 half-duplex
 ipv6 address 1234::2424:2/112
!
ipv6 route 1234::1111/128 1234::2008:1212:1
ipv6 route 1234::3333/128 1234::2323:3
ipv6 route 1234::4444/128 1234::2424:4
!
!

(R3 Configuration:)
!
ipv6 unicast-routing
!
!
interface Loopback0
 no ip address
 ipv6 address 1234::3333/128
!
interface Ethernet0/2
 no ip address
 half-duplex
 ipv6 address 1234::2323:3/112
!
ipv6 route 1234::/64 1234::2323:2
!
!

(R4 Configuration:)
!
ipv6 unicast-routing
!
!
interface Loopback0
 no ip address
 ipv6 address 1234::4444/128
!
interface Ethernet0/3
 no ip address
 half-duplex
 ipv6 address 1234::2424:4/112
!
ipv6 route 1234::/64 1234::2424:2
!
!
 
----------------------------
Inspect R1 :
r1#
r1#
r1#ping 1234::3333
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 1234::3333, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 24/89/260 ms
r1#
r1#ping 1234::4444
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 1234::4444, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 28/77/132 ms
r1#
 
Inspect R2:
r2#
r2#PING 1234::1111
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 1234::1111, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 28/56/80 ms
r2#
r2#PING 1234::3333
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 1234::3333, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 12/41/96 ms
r2#
r2#PING 1234::4444
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 1234::4444, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 20/50/104 ms
r2#
 

Inspect R3 :
r3#
r3#ping 1234::1111
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 1234::1111, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 32/82/120 ms
r3#
r3#ping 1234::4444
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 1234::4444, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 24/80/140 ms
r3#
 

Inspect R4 :
r4#
r4#ping 1234::3333
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 1234::3333, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 20/88/208 ms
r4#
r4#ping 1234::1111
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 1234::1111, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 16/57/152 ms
r4#

Notice: when configure IPV6 , you must enter " ip unicast-routing" first!!!