博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
22-高级路由:OSPF 路由认证:明文、密文
阅读量:6826 次
发布时间:2019-06-26

本文共 810 字,大约阅读时间需要 2 分钟。

一、实验拓扑:

明文认证:
22-高级路由:OSPF 路由认证:明文、密文
二、命令部署:
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:!!!!!
22-高级路由:OSPF 路由认证:明文、密文
一、实验拓扑:
密文认证:

二、命令部署:

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:!!!!!
22-高级路由:OSPF 路由认证:明文、密文
还有个OSPF区域认证,这里不做了,都是一样的套路。

转载于:https://blog.51cto.com/13856092/2137527

你可能感兴趣的文章
往FBX写数据
查看>>
poj2407(欧拉函数模板题)
查看>>
windows 卸载服务
查看>>
CoreAnimation笔记
查看>>
51Nod-1179 最大的最大公约数【暴力】
查看>>
POJ2100 Graveyard Design【尺取法】
查看>>
RSA的JavaScript程序
查看>>
OC中的集合详解
查看>>
四则运算二
查看>>
经典排序算法 - 快速排序Quick sort
查看>>
AngularJS~集成的ajax和服务的注入
查看>>
多么漂亮的重载构造方法呀!爱上.net
查看>>
os.path.join与中文目录
查看>>
【转】[Hadoop源码解读]序列化源码浅析
查看>>
Cpp中流继承关系
查看>>
工作小记
查看>>
Google+就是Google+社交,但真不是社交网络
查看>>
闭包理解
查看>>
About Me
查看>>
jquery3.1.1报错Uncaught TypeError: a.indexOf is not a function
查看>>