华为交换机OSPF服务

重启OSPF服务进程

首先确认用户视图
在该视图下输入命令 reset ospf [进程号] process
查看当前OSPF状态:display ospf brief

OSPF单区域配置

1
2
3
4
5
6
ospf 1 router-id 1.1.1.1 #进入ospf视图1代表进程号
area 0 #创建区域并进入OSPF区域视图,输入要创建的区域ID,骨干区域即区域0
network +IP +匹配码
display ospf interface 命令查看OSPF接口通告是否正确
display ospf peer 查看OSPF邻居状态
display ip routing-table protocol ospf 查看OSPF路由表

配置OSPF区域明文认证

1
2
3
4
5
6
ospf 1
area 1
authentication-mode simple plain huawei
#plain是口令以明文方式显示
authentication-mode md5 1 huawei
#配置区域密文认证

配置链路认证

1
2
3
int g0/0/1
ospf authentication-mode md5 1 huawei
#在一条链路中的两个接口配置要相同

配置抑制接口

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
ospf 1
silent-interface GigabitEthernet 0/0/1
#禁止接口g0/0/1接收和发送ospf报文
技巧对多个接口配置接口抑制
ospf 1
silent-interface all #抑制所有接口
un display ip routing-table 10.0.1.1
#查看10.0.1.1所在网段的路由条目

基于接口修改
int g0/0/0
ospf network-type p2mp
#修改ospf的网络类型为多到多点
ospf network-type broadcast
#修改ospf的网络类型为广播
ospf dr-priority 100
#修改g0/0/0接口的DR优先级为100
reset ospf process #重启ospf进程
ospf cost 1000 #修改ospf的开销值为1000
ospf timer hello 20 #修改HELLO计时器为20s
ospf timer dead 80 #修改dead计时器为80s

ospf 1
preference 110
#修改ospf优先级为110 值越大优先级越低

路由引入

1
2
3
4
5
6
7
8
9
10
11
ospf 1
import-route rip 1 #在ospf进程中引入rip
default-route-advertise always
#在ospf进程中引入默认路由

rip
import-route ospf 1 #在rip进程中引入ospf
import-route ospf cost 3 ospf
#引入rip时配置开销值
default-route originate
#在RIP进程中发布默认路由

华为交换机OSPF服务
http://anximin.github.io/2023/12/20/net_Huawei_resetOSPF/
作者
Sylar
发布于
2023年12月20日
许可协议