hiện tại em đang demo bài lab về ipv6 tunnel,rắc rối của em là không định tuyến RipNG cho r4 và r5 thấy nhau đc,mặc dù r4 và cả r5 đều ping đc qua ipv6 của tunnel
ở R1 em cấu hình như sau
R1
hostname R1
!
interface Serial1/0
ip address 192.168.2.1 255.255.255.0
serial restart-delay 0
!
interface Serial1/1
ip address 192.168.1.1 255.255.255.0
serial restart-delay 0
router rip
network 192.168.1.0
network 192.168.2.0
!
!
no ip http server
no ip http secure-server
R4
hostname R4
ipv6 unicast-routing
interface Tunnel0
no ip address
ipv6 address 3000::2/64
tunnel source Serial1/0
tunnel destination 192.168.1.2
tunnel mode ipv6ip
!
!
interface Serial1/0
ip address 192.168.2.2 255.255.255.0
ipv6 address 2000::2/64
ipv6 enable
ipv6 rip aaa enable
serial restart-delay 0
!
router rip
network 192.168.2.0
!
!
ipv6 router rip aaa
R5
hostname R5
!
!
ipv6 unicast-routing
!
interface Tunnel0
no ip address
ipv6 address 3000::3/64
tunnel source Serial1/0
tunnel destination 192.168.2.2
tunnel mode ipv6ip
!
interface Serial1/0
ip address 192.168.1.2 255.255.255.0
ipv6 address 2000::3/64
ipv6 enable
ipv6 rip aaa enable
serial restart-delay 0
!
router rip
network 192.168.1.0
!
ipv6 router rip aaa
Comment