华为ospf 配置md5认证
时间: 2023-07-11 21:18:19 浏览: 197
华为OSPF配置
在华为设备上配置OSPF MD5认证,可以确保OSPF邻居之间的通信安全。下面是配置OSPF MD5认证的步骤:
1. 创建OSPF口令:
```
<Router> system-view
[~Router] ospf <process-id>
[~Router-ospf-1] area <area-id>
[~Router-ospf-1-area-0.0.0.0] authentication-mode md5
[~Router-ospf-1-area-0.0.0.0] quit
[~Router-ospf-1] quit
[~Router] commit
```
2. 配置OSPF MD5认证:
```
<Router> system-view
[~Router] interface <interface-type> <interface-number>
[~Router-<Interface>] ospf authentication-mode md5
[~Router-<Interface>] ospf authentication-keyid <key-id> md5 <key>
[~Router-<Interface>] quit
[~Router] commit
```
在上面的命令中,“<key-id>”是口令的ID,可以是1到255的任何数字。而“<key>”是口令的字符串值。
3. 验证配置:
```
<Router> display ospf interface <interface-type> <interface-number>
```
在显示的信息中,可以看到“Authentication Type”和“Authentication KeyID”字段,以及对应的MD5口令。
注意:在配置OSPF MD5认证时,一定要确保所有OSPF邻居的口令和密钥都是相同的。否则,邻居关系将无法建立。
阅读全文