EIGRP密文验证及密码过渡
1 、掌握EIGRPmd5验证。
2 、掌握EIGRPkey值越小越优先。
3 、掌握EIGRP的密码过渡方法。
配置key chain与key值:
R1(config)#key chain wxh1
R1(config-keychain)#key 2
R1(config-keychain-key)#key-string wangxihe
R1(config-keychain-key)#exit
 
R2(config)#key chain wxh2
R2(config-keychain)#key 2
R2(config-keychain-key)#key-string wangxihe
R2(config-keychain-key)#exit
 
在各自接口配置:
R1(config)#interface ethernet 0/0
R1(config-if)#ip authentication mode eigrp 100 md5
R1(config-if)#ip authentication key-chain eigrp 100 wxh1
 
R2(config)#interface ethernet 0/1
R2(config-if)#ip authentication mode eigrp 100 md5
R2(config-if)#ip authentication key-chain eigrp 100 wxh2
 
验证EIGRP配置成功(查看邻居表)
R1#show ip eigrp neighbors
R2#show ip eigrp neighbors
 
调试查看具体验证过程
R2#debug eigrp packets
..
R2#undebug all
..