侧边栏壁纸
博主头像
落叶人生博主等级

走进秋风,寻找秋天的落叶

  • 累计撰写 130562 篇文章
  • 累计创建 28 个标签
  • 累计收到 9 条评论
标签搜索

目 录CONTENT

文章目录

22-高级路由:OSPF 路由认证:明文、密文

2023-02-01 星期三 / 0 评论 / 0 点赞 / 83 阅读 / 1349 字

一、实验拓扑:明文认证:二、命令部署:R1(config)#int f0/0R1(config-if)#ip ospf authenticationR1(config-if)#ip ospf auth

.

一、实验拓扑:
明文认证:

二、命令部署:
R1(config)#int f0/0
R1(config-if)#ip ospf authentication
R1(config-if)#ip ospf authentication-key 123

R2(config)#int f0/0
R2(config-if)#ip ospf authentication
R2(config-if)#ip ospf authentication-key 123

三、验证:
R1#ping 2.2.2.2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 2.2.2.2, timeout is 2 seconds:!!!!!

一、实验拓扑:
密文认证:

二、命令部署:
R1(config)#int f0/0
R1(config-if)#ip ospf authentication message-digest
R1(config-if)#ip ospf message-digest-key 1 md5 123

R2(config)#int f0/0
R2(config-if)#ip ospf authentication message-digest
R2(config-if)#ip ospf message-digest-key 1 md5 123

三、验证:
R1#ping 2.2.2.2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 2.2.2.2, timeout is 2 seconds:!!!!!

还有个OSPF区域认证,这里不做了,都是一样的套路。

.

广告 广告

评论区