配置IPv6 over IPv4 GRE隧道示例

组网需求

如图1,两个IPv6网络分别通过SwitchA和SwitchC与IPv4公网中的SwitchB连接,客户希望两个IPv6网络中的PC1和PC2实现互通。

其中PC1和PC2上分别指定SwitchA和SwitchC为自己的缺省网关。

图1配置IPv6 over IPv4 GRE隧道组网图

配置思路

要实现IPv6协议中的PC1和PC2通过IPv4公网互通。需要在SwitchA和SwitchC之间建立直连链路,部署GRE隧道,通过静态路由指定到达对端的报文通过Tunnel接口转发,PC1和PC2就可以互相通信了。

配置GRE隧道实现IPv6协议互通的思路如下:

  1. 配置物理接口的IP地址,并配置IPv4静态路由,实现设备可以通过IPv4网络通信。

  2. 在SwitchA和SwitchC上创建Tunnel接口,创建GRE隧道,并在SwitchA和SwitchC上配置经过Tunnel接口的IPv6静态路由,使PC1和PC2之间的流量通过GRE隧道传输,实现PC1和PC2互通。

操作步骤

  • SwitchA的配置文件
html 复制代码
#
sysname SwitchA
#    
ipv6      
#  
vlan batch 10 30
#
interface Vlanif10
 ip address 20.1.1.1 255.255.255.0
#
interface Vlanif30
 ipv6 enable
 ipv6 address FC00:1::1/64
#
interface Eth-Trunk1  
 service type tunnel
#
interface GigabitEthernet0/0/1
 port link-type trunk
 port trunk allow-pass vlan 10
#
interface GigabitEthernet0/0/2
 port link-type access
 port default vlan 30
#
interface GigabitEthernet0/0/3
 eth-trunk 1 
#
interface Tunnel 0/0/0
 ipv6 enable
 ipv6 address 2001:db8:1::1/64
 tunnel-protocol gre
 source 20.1.1.1
 destination 30.1.1.2
 eth-trunk 1
#
ip route-static 30.1.1.0 255.255.255.0 20.1.1.2
#                                                                               
ipv6 route-static FC00:2:: 64 Tunnel0/0/0 
#
return
  • SwitchB的配置文件
html 复制代码
#
sysname SwitchB
#
vlan batch 10 20
#
interface Vlanif10
 ip address 20.1.1.2 255.255.255.0
#
interface Vlanif20
 ip address 30.1.1.1 255.255.255.0
#
interface GigabitEthernet0/0/1
 port link-type trunk
 port trunk allow-pass vlan 10
#
interface GigabitEthernet0/0/2
 port link-type trunk
 port trunk allow-pass vlan 20
#
return
  • SwitchC的配置文件
html 复制代码
#
sysname SwitchC
#    
ipv6     
#
vlan batch 20 30
#
interface Vlanif20
 ip address 30.1.1.2 255.255.255.0
#
interface Vlanif30
 ipv6 enable
 ipv6 address FC00:2::1/64
#
interface Eth-Trunk1  
 service type tunnel
#
interface GigabitEthernet0/0/1
 port link-type trunk
 port trunk allow-pass vlan 20
#
interface GigabitEthernet0/0/2
 port link-type access
 port default vlan 30
#
interface GigabitEthernet0/0/3
 eth-trunk 1 
#
interface Tunnel0/0/0
 ipv6 enable
 ipv6 address 2001:db8:1::2/64
 tunnel-protocol gre
 source 30.1.1.2
 destination 20.1.1.1
 eth-trunk 1
#
ip route-static 20.1.1.0 255.255.255.0 30.1.1.1
#                                                                               
ipv6 route-static FC00:1:: 64 Tunnel0/0/0
#
return
相关推荐
hfut02886 分钟前
第25章 interface
linux·服务器·网络
Sinowintop2 小时前
易连EDI-EasyLink SFTP文件传输
运维·服务器·网络·sftp·edi·ftp·国产edi软件
likuolei3 小时前
XML DOM 节点类型
xml·java·服务器
风123456789~4 小时前
【Linux专栏】显示或隐藏行号、批量注释
linux·运维·服务器
谢尔登5 小时前
简单聊聊webpack摇树的原理
运维·前端·webpack
只想安静的写会代码6 小时前
centos/ubuntu/redhat配置清华源/本地源
linux·运维·服务器
susu10830189116 小时前
ubuntu多块硬盘挂载到同一目录LVM方式
linux·运维·ubuntu
r***F2626 小时前
【漏洞复现】CVE-2019-11043(PHP远程代码执行漏洞)信息安全论文_含漏洞复现完整过程_含Linux环境go语言编译环境安装
linux·golang·php
smaller_maple7 小时前
linux问题记录1
linux·运维·服务器
报错小能手8 小时前
讲讲libevent底层机制
linux·服务器