路由技術(shù):EIGRP密文驗(yàn)證及密碼過渡

字號:

1、掌握EIGRP的md5驗(yàn)證。
    2、掌握EIGRP的key值越小越優(yōu)先。
    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
    驗(yàn)證EIGRP配置成功(查看鄰居表)
    R1#show ip eigrp neighbors
    R2#show ip eigrp neighbors
    調(diào)試查看具體驗(yàn)證過程
    R2#debug eigrp packets
    ..
    R2#undebug all
    ..