MGBF结合OSPF--HCIA

简介: MGBF结合OSPF--HCIA

一、R6为ISP只能配置IP地址,R1-R5的环回为私有网段

1.首先给各个设备分配IP并设置缺省使全网可达,并用ping命令检查

二,R1/2/3为星型的拓扑结构(MGRE),R1为中心站点

R1

[r1]int Tunnel 0/0/0
[r1-Tunnel0/0/0]ip add 192.168.7.1 24
[r1-Tunnel0/0/0]tunnel-protocol gre p2mp 
[r1-Tunnel0/0/0]source 16.0.0.1
Sep 18 2022 18:43:45-08:00 r1 %%01IFNET/4/LINK_STATE(l)[0]:The line protocol IP 
on the interface Tunnel0/0/0 has entered the UP state. 
[r1-Tunnel0/0/0]nhrp network-id 100

R2

[r2]int t0/0/0
[r2-Tunnel0/0/0]ip add 192.168.7.2 24 
[r2-Tunnel0/0/0]tunnel-protocol gre p2mp 
[r2-Tunnel0/0/0]source GigabitEthernet 0/0/0
Sep 18 2022 18:44:47-08:00 r2 %%01IFNET/4/LINK_STATE(l)[0]:The line protocol IP 
on the interface Tunnel0/0/0 has entered the UP state.  
[r2-Tunnel0/0/0]nhrp network-id 100
[r2-Tunnel0/0/0]nhrp entry 192.168.7.1 16.0.0.1 register 

R3

[r3]int t0/0/0
[r3-Tunnel0/0/0]ip add 192.168.7.3 24
[r3-Tunnel0/0/0]tunnel-protocol gre p2mp 
[r3-Tunnel0/0/0]source GigabitEthernet 0/0/0
Sep 18 2022 18:46:16-08:00 r3 %%01IFNET/4/LINK_STATE(l)[0]:The line protocol IP 
on the interface Tunnel0/0/0 has entered the UP state. 
[r3-Tunnel0/0/0]nhrp network-id 100
[r3-Tunnel0/0/0]nhrp entry 192.168.7.1 16.0.0.1 register 

三,R1/4/5为全连的MGRE结构

1.以R1为中心

R1配置

[r1]int t0/0/1
[r1-Tunnel0/0/1]ip add 192.168.8.1 24
[r1-Tunnel0/0/1]tunnel-protocol gre p2mp
[r1-Tunnel0/0/1]source 61.0.0.1
Sep 18 2022 19:00:23-08:00 r1 %%01IFNET/4/LINK_STATE(l)[0]:The line protocol IP 
on the interface Tunnel0/0/1 has entered the UP state.  
[r1-Tunnel0/0/1]nhrp network-id 200

R4

[r4]int t0/0/1
[r4-Tunnel0/0/1]ip add 192.168.8.2 24
[r4-Tunnel0/0/1]tunnel-protocol gre p2mp
[r4-Tunnel0/0/1]source g0/0/0
Sep 18 2022 19:02:34-08:00 r4 %%01IFNET/4/LINK_STATE(l)[0]:The line protocol IP 
on the interface Tunnel0/0/1 has entered the UP state. 
[r4-Tunnel0/0/1]nhrp network-id 200
[r4-Tunnel0/0/1]nhrp entry 192.168.8.1 61.0.0.1 register

R5

[r5]int t0/0/1
[r5-Tunnel0/0/1]ip add 192.168.8.3 24 
[r5-Tunnel0/0/1]tunnel-protocol gre p2mp 
[r5-Tunnel0/0/1]source g0/0/0
Sep 18 2022 19:03:48-08:00 r5 %%01IFNET/4/LINK_STATE(l)[0]:The line protocol IP 
on the interface Tunnel0/0/1 has entered the UP state. 
[r5-Tunnel0/0/1]nhrp network-id 200
[r5-Tunnel0/0/1]nhrp entry 192.168.8.1 61.0.0.1 register

2.以R4为中心

R4

[r4-Tunnel0/0/1]source 46.0.0.1
[r4-Tunnel0/0/1]nhrp network-id 400

R1

[r1-Tunnel0/0/1]source g0/0/0
[r1-Tunnel0/0/1]nhrp network-id 400
[r1-Tunnel0/0/1]nhrp entry 192.168.8.2 46.0.0.1 register

R5

[r5-Tunnel0/0/1]source g0/0/0
[r5-Tunnel0/0/1]nhrp network-id 400
[r5-Tunnel0/0/1]nhrp entry 192.168.8.2 46.0.0.1 register

3.以R5为中心

R5

[r5-Tunnel0/0/1]source 56.0.0.1
[r5-Tunnel0/0/1]nhrp network-id 500

R1

[r1-Tunnel0/0/1]nhrp network-id 500 
[r1-Tunnel0/0/1]nhrp entry 192.168.8.3 56.0.0.1 register

R4

[r4-Tunnel0/0/1]nhrp network-id 500
[r4-Tunnel0/0/1]nhrp entry 192.168.8.3 56.0.0.1 register

四,所有私有网段可以互相通讯,使用OSPF完成

## 由于MGRE环境不支持组播,所以需要开启伪广播
[r1-Tunnel0/0/0]nhrp entry multicast dynamic
## 在R1-5上开启OSPF
## 由于通道p2p为点到点所以改为 broadcast
ospf network-type broadcast
# 需进入每个接口修改

 最后查看路由表且所有私有网段可互相通讯

目录
相关文章
|
6月前
|
运维 网络协议 网络架构
【HCIA】06.静态路由
【HCIA】06.静态路由
23 0
|
3月前
|
网络虚拟化
华为eNSP网络配置综合练习一(vlan +MSTP+VLANif+VRRP+ 静态路由+单臂路由+STP+BFD)
华为eNSP网络配置综合练习一(vlan +MSTP+VLANif+VRRP+ 静态路由+单臂路由+STP+BFD)
57 1
|
6月前
|
网络协议 算法 数据库
【HCIA】07.OSPF(一)
【HCIA】07.OSPF
29 0
|
6月前
|
监控 网络协议 数据库
【HCIA】07.OSPF(二)
【HCIA】07.OSPF
24 0
|
6月前
|
网络协议 Shell 网络架构
【锐捷】OSPF 多区域配置
【锐捷】OSPF 多区域配置
50 0
|
6月前
|
网络协议
【HCIA】14.WLAN基础与配置实现
【HCIA】14.WLAN基础与配置实现
39 0
|
网络协议 网络架构
网络工程思科路由器OSPF路由配置实验
本篇博文讲述的是大学网络工程思科路由器之ospf路由配置实验
188 7
网络工程思科路由器OSPF路由配置实验
|
网络协议 网络架构
HCL_路由器_OSPF配置
HCL_路由器_OSPF配置
|
网络协议 算法 数据库
华为网络配置(OSPF)
OSPF概述、OSPF简介、OSPF与RIP对比、OSPF的特点、OSPF运行机制、OSPF报文类型、OSPF支持的网络类型、DR和BDR选举、OSPF接口状态机、OSPF邻居状态机、路由器类型、区域类型、OSPF缺省路由发布原则、OSPF LSA类型、OSPF虚连接、OSPF配置、案例、配置过程、查看路由、测试
224 0
 华为网络配置(OSPF)
|
网络协议 算法 网络虚拟化
华为网络配置(RIP)
RIP概述、RIP简介、RIPv1与RIPv2的比较、水平分割、毒性反转、多进程和多实例、热备份、防止路由环路、提升RIP网络的性能、特性依赖和限制、RIP配置、案例、配置过程、测试
185 0
华为网络配置(RIP)