比较RIP,EIGRP,OSPF的认证

简介:

实验目的:

比较RIP,EIGRP,OSPF的认证

实验拓扑:

clip_image002

实验步骤:

clip_image004

RIP的认证:

Step1:在全局模式,配置KEY-CHAIN:

key chain ccnp//定义钥匙链

key 1

key-string cisco //钥匙链上的钥匙,也即是密码。

step2:在接口中,调用key chain:

R1(config-if)#ip rip authentication key-chain CCNP //调用钥匙链

Step3:在接口中,选择认证类型:(明文/密文)

R1 (config-if)#ip rip authentication mode text (明文)(默认的,可以不打这条命令)

R1 (config-if)#ip rip authentication mode md5 (密文)

明文认证方式:

R1:配置

key chain ccie

key 1

key-string cisco

interface Serial1/1

ip address 192.168.12.1 255.255.255.0

ip rip authentication key-chain ccie

ip rip authentication mode text //系统默认

serial restart-delay 0

只配置一方时,会提示一下错误:

*Jun 4 10:16:39.031: RIP: ignored v2 packet from 192.168.12.2 (invalid authentication)

MD5认证方式:

R2:配置

key chain ccie

key 1

key-string cisco

interface Serial1/1

ip address 192.168.12.2 255.255.255.0

ip rip authentication key-chain ccie

ip rip authentication mode md5

serial restart-delay 0

R2#show ip route rip

1.0.0.0/32 is subnetted, 1 subnets

R 1.1.1.1 [120/1] via 192.168.12.1, 00:00:03, Serial1/0

不知道为什么在debug信息中看不出来认证信息。

R2#show ip protocols

Routing Protocol is "rip"

Sending updates every 30 seconds, next due in 8 seconds

Invalid after 180 seconds, hold down 180, flushed after 240

Outgoing update filter list for all interfaces is not set

Incoming update filter list for all interfaces is not set

Redistributing: rip

Default version control: send version 2, receive version 2

Interface Send Recv Triggered RIP Key-chain

Serial1/0 2 2 ccie

Loopback0 2 2

Loopback2 2 2

Automatic network summarization is not in effect

Maximum path: 4

Routing for Networks:

2.0.0.0

22.0.0.0

192.168.12.0

Routing Information Sources:

Gateway Distance Last Update

192.168.12.1 120 00:00:17

Distance: (default is 120)

EIGRP 的认证方式:(只支持MD5认证

R1#show run int s1/1

Building configuration...

Current configuration : 168 bytes

!

interface Serial1/1

ip address 192.168.12.1 255.255.255.0

ip authentication mode eigrp 1 md5 //注意与RIP的命令不一样

ip authentication key-chain eigrp 1 ccie

serial restart-delay 0

end

debug ip eigrp notifications

R2(config-router)#

*Jun 4 10:29:43.347: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 1: Neighbor 192.168.12.1 (Serial1/0) is up: new adjacency

R2(config-router)#

*Jun 4 10:31:07.435: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 1: Neighbor 192.168.12.1 (Serial1/0) is down: Interface Goodbye received

R2(config-router)#

*Jun 4 10:31:11.991: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 1: Neighbor 192.168.12.1 (Serial1/0) is up: new adjacency

R2(config-router)#

*Jun 4 10:31:33.775: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 1: Neighbor 192.168.12.1 (Serial1/0) is down: Auth failure

R2配置完毕后,R1的调试信息:

R1#debug ip eigrp notifications

IP-EIGRP Event notification debugging is on

R1#

*Jun 4 10:36:43.663: %DUAL-5-NBRCHANGE: IP-EIGRP(0) 1: Neighbor 192.168.12.2 (Serial1/1) is up: new adjacency

OSPF认证方式:

共有3中认证方式:

1.无认证(默认)

2.明文认证

3.MD5认证

R2:明文认证:

interface Serial1/0

ip address 192.168.12.2 255.255.255.0

ip ospf authentication-key ccie

serial restart-delay 0

router ospf 1

router-id 2.2.2.2

log-adjacency-changes

area 0 authentication

配置完后就会提示如下信息:

2#

*Jun 4 10:43:32.083: %SYS-5-CONFIG_I: Configured from console by console

R2#

*Jun 4 10:43:32.391: OSPF: Rcv pkt from 192.168.12.1, Serial1/0 : Mismatch Authentication type. Input packet specified type 0, we use type 1

R2#

*Jun 4 10:43:38.903: OSPF: Send hello to 224.0.0.5 area 0 on Serial1/0 from 192.168.12.2

R2#

*Jun 4 10:43:42.359: OSPF: Rcv pkt from 192.168.12.1, Serial1/0 : Mismatch Authentication type. Input packet specified type 0, we use type 1

密文认证:

只改了R2的配置

R2(config-if)#

*Jun 4 10:49:12.331: OSPF: Rcv pkt from 192.168.12.1, Serial1/0 : Mismatch Authentication type. Input packet specified type 1, we use type 2

router ospf 1

router-id 2.2.2.2

log-adjacency-changes

area 0 authentication message-digest

interface Serial1/0

ip address 192.168.12.2 255.255.255.0

ip ospf authentication message-digest

ip ospf message-digest-key 1 md5 cisco

serial restart-delay 0



本文转自 gehailong 51CTO博客,原文链接:http://blog.51cto.com/gehailong/297363,如需转载请自行联系原作者

相关文章
|
8月前
|
网络协议 算法 Java
OSPF
OSPF
61 1
|
8月前
|
网络协议
OSPF,RIP和BGP的路由汇总
OSPF,RIP和BGP的路由汇总
122 0
|
8月前
|
网络协议 算法 数据库
OSPF总结
该文章为OSPFv2版本的一些总结,暂时没有OSPFv3
OSPF总结
|
8月前
|
负载均衡 网络协议 算法
IP路由协议(RIP、IGRP、OSPF、IS-IS、BGP)
1、路由分类 路由产生方式: 直接路由:路由器会自动生成本路由器激活端口所在网段的路由条目 静态路由:网络管理员手工配置,静态路由信息在缺省的情况下私有的,不会传递给其他的路由器
|
网络协议 安全 数据库
浅谈OSPF
浅谈OSPF
99 0
|
存储 负载均衡 网络协议
OSPF详解(二)
十六、OSPF区域1、 区域0:汇总每个区域的网络拓扑到其他区域。所有的域间通信量必须通过骨干区域,非骨干区域不能直接交换数据包。2、 路由器类型:IR、BR、ABR、ASBR3、 IR:所有接口都属于同一区域的路由器。4、 BR:至少有一个接口是与骨干area0相连的路由器。Area0不一定是骨干区域,但骨干区域–定是area0,要成为骨干必须有一个邻接关系在里面5、 ABR:连接其他区域到骨干区域,至少一个接口属于骨干区域。6、 ASBR: OSPF域外部的通信量进入0SPF域的网络路由器。7、 0SPF的虚链路:一条通过非骨干区域连接到骨干区域的链路。通过非骨干区域修复分段efreshT
|
人工智能 网络协议 算法
OSPF详解(一)
一、OSPF的五种包Hellow:发现邻居建立邻接关系DBD:检查路由器的数据库之间是否同步LSR:向另外一台设备请求特定的链路状态LSU:发送链路状态信息LSACK:确认多段的发送信息二、OSPF的三张表1、 邻居列表:列出每台路由器全部已经建立邻接关系的邻居路由器2、 链路状态数据库:列出网络中其他路由器的信息,由此显示了全网的网络拓扑3、 路由表:列出通过SPF算法计算出到达每个相连网络的最佳路径三、OSPF的特点1、 区域概念,有效减少路由条目对CPU和内存占用,将拓扑变动局限在本区域内,详细的LSA泛洪控制2、 邻接关系。OSPF协议定义了一些路由器类型和网络全相同时,就以自身为根,
|
网络协议 数据库 数据安全/隐私保护