December 2006
Intermediate to advanced
1188 pages
72h 8m
English
You want to connect two IPv6 networks through an existing IPv4 network that doesn’t natively support IPv6.
The easiest way to pass IPv6 traffic through a section of IPv4 network that doesn’t offer native IPv6 support is to create a simple GRE tunnel:
Router1#configure terminalEnter configuration commands, one per line. End with CNTL/Z. Router1(config)#interfaceRouter1(config-if)#Loopback1ip addressRouter1(config-if)#10.15.1.11 255.255.255.255exitRouter1(config)#interfaceRouter1(config-if)#Tunnel1ipv6 addressRouter1(config-if)#BBBB:1::1/126ipv6 ripRIP_PROCenableRouter1(config-if)#tunnel sourceRouter1(config-if)#10.15.1.11tunnel destinationRouter1(config-if)#172.16.11.9exitRouter1(config)#endRouter1#
And then you configure the device on the other end similarly:
Router9#configure terminalEnter configuration commands, one per line. End with CNTL/Z. Router9(config)#interfaceRouter9(config-if)#Loopback1ip addressRouter9(config-if)#172.16.11.9 255.255.255.255exitRouter9(config)#interfaceRouter9(config-if)#Tunnel1ipv6 addressRouter9(config-if)#BBBB:1::2/126ipv6 ripRIP_PROCenableRouter9(config-if)#tunnel sourceRouter9(config-if)#172.16.11.9tunnel destinationRouter9(config-if)#10.15.1.11exitRouter9(config)#endRouter9#
This example is actually simpler than a lot of GRE tunnel configuration examples because the protocol used to support the tunnel end points is different from the protocol ...
Read now
Unlock full access