IPv4/IPv6业务共存技术:用来保证这两种网络协议可以在公共互联网中共同工作,在IPv6发展过程中这些技术可以帮助IPv6业务在现有的IPv4网络基础架构上工作主要包括两大类:隧道技术和双协议栈技术。IPv4/IPv6业务互操作技术主要包括NAT-PT技术,和SIIT技术(不常用) 各种技术基于Cisco平台的具体配置如下:
R1(config)#int fa0/0
R1(config-if)#ipv6 address 2000::1/16
R1(config-if)#no shut
R1(config-if)#ipv6 rip bjxh en //将接口通过RIP协议通告出去
R1(config)#int s1/0
R1(config-if)#ip address 202.106.0.1 255.255.255.0
R1(config-if)#no shut
----基本网络配置----
R1(config-if)#interface tunnel 0
R1(config-if)#ipv6 address 2001::1/16
R1(config-if)#no shut
R1(config-if)#tunnel source 202.106.0.1 //隧道的源是本地出口的IPv4地址
R1(config-if)#tunnel destination 202.106.0.2 //隧道的目的地是对端路由器的IPv4地址
R1(config-if)#tunnel mode ipv6ip
R1(config-if)#ipv6 rip bjxh en //将隧道通过RIP协议通告出去
------隧道和路由配置部分------
R2(config)#int s1/0
R2(config-if)#ip add 202.106.0.2 255.255.255.0
R2(config-if)#no shut
R2(config-if)#int s1/1
R2(config-if)#ip add 202.106.1.1 255.255.255.0
R2(config-if)#no shut
----基本网络配置----
R2(config-if)#int t 0
R2(config-if)#ipv add 2001::2/16
R2(config-if)#no shut
R2(config-if)#tunnel source 202.106.0.2
R2(config-if)#tunnel destination 202.106.0.1
R2(config-if)#tunnel mode ipv6ip
R2(config-if)#ipv rip bjxh en //将隧道通过RIP协议通告出去
R2(config-if)#int t 1
R2(config-if)#ipv add 2002::1/16
R2(config-if)#no shut
R2(config-if)#tunnel source 202.106.1.1
R2(config-if)#tunnel destination 202.106.1.2
R2(config-if)#tunnel mode ipv6ip //将隧道通过RIP协议通告出去
R2(config-if)#ipv rip bjxh en
------隧道和路由配置部分------
R3(config)#int fa0/0
R3(config-if)#ipv add 2003::1/16
R3(config-if)#no shut
R3(config-if)#ipv rip bjxh en
R3(config-if)#int s1/0
R3(config-if)#ip add 202.106.1.2 255.255.255.0
R3(config-if)#no shut
----基本网络配置----
R3(config-if)#int t 0
R3(config-if)#ipv add 2002::2/16
R3(config-if)#no shut
R3(config-if)#tu sou 202.106.1.2
R3(config-if)#tu de 202.106.1.1
R3(config-if)#tu mo ipv6ip
R3(config-if)#ipv rip bjxh en //将隧道通过RIP协议通告出去
------隧道和路由配置部分------
IPv6 Routing Table - 8 entries
Codes: C - Connected, L - Local, S - Static, R - RIP, B - BGP
U - Per-user Static route
I1 - ISIS L1, I2 - ISIS L2, IA - ISIS interarea, IS - ISIS summary
O - OSPF intra, OI - OSPF inter, OE1 - OSPF ext 1, OE2 - OSPF ext 2
ON1 - OSPF NSSA ext 1, ON2 - OSPF NSSA ext 2
D - EIGRP, EX - EIGRP external
R 2000::/16 [120/3]
via FE80::CA6A:101, Tunnel0
R 2001::/16 [120/2]
-----部分省略------
Sending 5, 100-byte ICMP Echos to 2000::1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 84/146/172 ms