34-H3C MSR系列路由器 GRE和OSPF结合使用典型配置举例
本章节下载: 34-H3C MSR系列路由器 GRE和OSPF结合使用典型配置举例 (216.37 KB)
H3C MSR系列路由器
GRE和OSPF结合使用配置举例
Copyright © 2022 新华三技术有限公司 版权所有,保留一切权利。
非经本公司书面许可,任何单位和个人不得擅自摘抄、复制本文档内容的部分或全部,并不得以任何形式传播。
除新华三技术有限公司的商标外,本手册中出现的其它公司的商标、产品标识及商品名称,由各自权利人拥有。
本文档中的信息可能变动,恕不另行通知。
目 录
本文档介绍了GRE隧道和OSPF相结合使用的典型配置举例。
本文档适用于使用Comware V9软件版本的MSR系列路由器,如果使用过程中与产品实际情况有差异,请参考相关产品手册,或以设备实际情况为准。
本文档中的配置均是在实验室环境下进行的配置和验证,配置前设备的所有参数均采用出厂时的缺省配置。如果您已经对设备进行了配置,为了保证配置效果,请确认现有配置和以下举例中的配置不冲突。
本文假设您已了解GRE隧道和OSPF的相关特性。
如图3-1所示,Device A为某机构总部网关,Device B和Device C为分支网关,运营商为各网关分配了公网IP地址,并保证网关之间可以通信,要求:
· 总部和分支之间建立GRE隧道,通过隧道使各总部、分支机构可以实现互访;
· 配置OSPF协议使网关上存在通过Tunnel接口到达目的地址的路由表项。
图3-1 GRE和OSPF结合使用典型配置举例组网图
设备 |
接口 |
IP地址 |
设备 |
接口 |
IP地址 |
Device A |
GE0/0/1 |
191.2.1.1/24 |
Device B |
GE0/0/1 |
191.3.1.1/24 |
|
GE0/0/2 |
10.1.1.1/24 |
|
GE0/0/2 |
10.7.1.1/24 |
|
Tunnel 1 |
10.5.1.1/24 |
|
Tunnel 1 |
10.5.1.2/24 |
|
Tunnel 2 |
10.6.1.1/24 |
|
|
|
Device C |
GE0/0/1 |
191.4.1.1/24 |
|
|
|
|
GE0/0/2 |
10.8.1.1/24 |
|
|
|
|
Tunnel 2 |
10.6.1.2/24 |
|
|
|
本举例是在MSR2630E-X1设备的R9119P16版本上进行配置和验证的。
配置网关设备之间的IPv4路由协议,确保设备之间IPv4报文能够正常交互,具体配置过程略。
# 配置接口GigabitEthernet0/0/1的IP地址。
<DeviceA> system-view
[DeviceA] interface gigabitethernet 0/0/1
[DeviceA-GigabitEthernet0/0/1] ip address 191.2.1.1 255.255.255.0
[DeviceA-GigabitEthernet0/0/1] quit
# 请参考以上方法配置上图中Device A其它接口的IP地址,配置步骤这里省略。
# 创建Tunnel1接口,并指定隧道模式为GRE over IPv4隧道。
[DeviceA] interface tunnel 1 mode gre
# 配置Tunnel1接口的IP地址。
[DeviceA-Tunnel1] ip address 10.5.1.1 24
# 配置Tunnel1接口的源接口为GigabitEthernet0/0/1。
[DeviceA-Tunnel1] source GigabitEthernet 0/0/1
# 配置Tunnel1接口的目的端地址。
[DeviceA-Tunnel1] destination 191.3.1.1
[DeviceA-Tunnel1] quit
# 创建Tunnel2接口,并指定隧道模式为GRE over IPv4隧道。
[DeviceA] interface tunnel 2 mode gre
# 配置Tunnel2接口的IP地址。
[DeviceA-Tunnel2] ip address 10.6.1.1 24
# 配置Tunnel2接口的源接口为GigabitEthernet0/0/1。
[DeviceA-Tunnel2] source GigabitEthernet 0/0/1
# 配置Tunnel2接口的目的端地址。
[DeviceA-Tunnel2] destination 191.4.1.1
[DeviceA-Tunnel2] quit
# 启动OSPF,并配置其Router ID为10.6.1.1。
[DeviceA] router-id 10.6.1.1
[DeviceA] ospf 1
[DeviceA-ospf-1] area 0
[DeviceA-ospf-1-area-0.0.0.0] network 10.1.1.0 0.0.0.255
[DeviceA-ospf-1-area-0.0.0.0] network 10.5.1.0 0.0.0.255
[DeviceA-ospf-1-area-0.0.0.0] network 10.6.1.0 0.0.0.255
# 配置接口GigabitEthernet0/0/1的IP地址。
<DeviceB> system-view
[DeviceB] interface gigabitethernet 0/0/1
[DeviceB-GigabitEthernet0/0/1] ip address 191.3.1.1 255.255.255.0
[DeviceB-GigabitEthernet0/0/1] quit
# 请参考以上方法配置上图中Device B其它接口的IP地址,配置步骤这里省略。
# 创建Tunnel1接口,并指定隧道模式为GRE over IPv4隧道。
[DeviceB] interface tunnel 1 mode gre
# 配置Tunnel1接口的IP地址。
[DeviceB-Tunnel1] ip address 10.5.1.2 24
# 配置Tunnel1接口的源接口为GigabitEthernet0/0/1。
[DeviceB-Tunnel1] source GigabitEthernet 0/0/1
# 配置Tunnel1接口的目的端地址。
[DeviceB-Tunnel1] destination 191.2.1.1
[DeviceB-Tunnel1] quit
# 启动OSPF,并配置其Router ID为10.7.1.1。
[DeviceB] router-id 10.7.1.1
[DeviceB] ospf 1
[DeviceB-ospf-1] area 0
[DeviceB-ospf-1-area-0.0.0.0] network 10.7.1.0 0.0.0.255
[DeviceB-ospf-1-area-0.0.0.0] network 10.5.1.0 0.0.0.255
# 配置接口GigabitEthernet0/0/1的IP地址。
<DeviceC> system-view
[DeviceC] interface gigabitethernet 0/0/1
[DeviceC-GigabitEthernet0/0/1] ip address 191.4.1.1 255.255.255.0
[DeviceC-GigabitEthernet0/0/1] quit
# 请参考以上方法配置上图中Device C其它接口的IP地址,配置步骤这里省略。
# 创建Tunnel2接口,并指定隧道模式为GRE over IPv4隧道。
[DeviceC] interface tunnel 2 mode gre
# 配置Tunnel2接口的IP地址。
[DeviceC-Tunnel2] ip address 10.6.1.2 24
# 配置Tunnel1接口的源接口为GigabitEthernet0/0/1。
[DeviceC-Tunnel2] source GigabitEthernet 0/0/1
# 配置Tunnel2接口的目的端地址。
[DeviceC-Tunnel2] destination 191.2.1.1
[DeviceC-Tunnel2] quit
# 启动OSPF,并配置其Router ID为10.8.1.1。
[DeviceC] router-id 10.8.1.1
[DeviceC] ospf 1
[DeviceC-ospf-1] area 0
[DeviceC-ospf-1-area-0.0.0.0] network 10.8.1.0 0.0.0.255
[DeviceC-ospf-1-area-0.0.0.0] network 10.6.1.0 0.0.0.255
(1) 从Host A可以ping通Host B。
C:\> ping 10.7.1.2
Pinging 10.7.1.2 with 32 bytes of data:
Reply from 10.7.1.2: bytes=32 time=19ms TTL=253
Reply from 10.7.1.2: bytes=32 time<1ms TTL=253
Reply from 10.7.1.2: bytes=32 time<1ms TTL=253
Reply from 10.7.1.2: bytes=32 time<1ms TTL=253
Ping statistics for 10.7.1.2:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 19ms, Average = 4ms
(2) 从Host A可以ping通Host C。
C:\> ping 10.8.1.2
Pinging 10.8.1.2 with 32 bytes of data:
Reply from 10.8.1.2: bytes=32 time=18ms TTL=253
Reply from 10.8.1.2: bytes=32 time<1ms TTL=253
Reply from 10.8.1.2: bytes=32 time<1ms TTL=253
Reply from 10.8.1.2: bytes=32 time<1ms TTL=253
Ping statistics for 10.8.1.2:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 19ms, Average = 4ms
(3) 从Host B可以ping通Host C。
C:\> ping 10.8.1.2
Pinging 10.8.1.2 with 32 bytes of data:
Reply from 10.8.1.2: bytes=32 time=20ms TTL=251
Reply from 10.8.1.2: bytes=32 time<1ms TTL=251
Reply from 10.8.1.2: bytes=32 time<1ms TTL=251
Reply from 10.8.1.2: bytes=32 time<1ms TTL=251
Ping statistics for 10.8.1.2:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 19ms, Average = 4ms
· Device A
#
interface GigabitEthernet0/0/1
port link-mode route
ip address 191.2.1.1 255.255.255.0
#
interface GigabitEthernet0/0/2
port link-mode route
ip address 10.1.1.1 255.255.255.0
#
interface Tunnel1 mode gre
source GigabitEthernet0/0/1
destination 191.3.1.1
ip address 10.5.1.1 255.255.255.0
#
interface Tunnel2 mode gre
source GigabitEthernet0/0/1
destination 191.4.1.1
ip address 10.6.1.1 255.255.255.0
#
ospf 1
area 0.0.0.0
network 10.1.1.0 0.0.0.255
network 10.5.1.0 0.0.0.255
network 10.6.1.0 0.0.0.255
#
· Device B
#
interface GigabitEthernet0/0/1
port link-mode route
ip address 191.3.1.1 255.255.255.0
#
interface GigabitEthernet0/0/2
port link-mode route
ip address 10.7.1.1 255.255.255.0
#
interface Tunnel1 mode gre
source GigabitEthernet0/0/1
destination 191.2.1.1
ip address 10.5.1.2 255.255.255.0
#
ospf 1
area 0.0.0.0
network 10.7.1.0 0.0.0.255
network 10.5.1.0 0.0.0.255
#
· Device C
#
interface GigabitEthernet0/0/1
port link-mode route
ip address 191.4.1.1 255.255.255.0
#
interface GigabitEthernet0/0/2
port link-mode route
ip address 10.8.1.1 255.255.255.0
#
interface Tunnel2 mode gre
source GigabitEthernet0/0/1
destination 191.2.1.1
ip address 10.6.1.2 255.255.255.0
#
ospf 1
area 0.0.0.0
network 10.8.1.0 0.0.0.255
network 10.6.1.0 0.0.0.255
#
· 《H3C MSR 系列路由器 配置指导(V9)》中的“三层技术-IP业务配置指导”
· 《H3C MSR 系列路由器 命令参考(V9)》中的“三层技术-IP业务命令参考”
· 《H3C MSR 系列路由器 配置指导(V9)》中的“三层技术-路由配置指导”
· 《H3C MSR 系列路由器 命令参考(V9)》中的“三层技术-路由命令参考”
不同款型规格的资料略有差异, 详细信息请向具体销售和400咨询。H3C保留在没有任何通知或提示的情况下对资料内容进行修改的权利!