首页 > 代码库 > 新盟教育内部课程分享- EIGRP 认证
新盟教育内部课程分享- EIGRP 认证
制作专门适用于小白学习的内部教程,分享给童鞋们进行学习,有需要的可以联系我,也可以加我的扣扣(二六三八一五七六四八),不图回报,请叫我雷锋。
一、实验目的
熟练掌握 EIGRP 协议配置,配置 EIGRP 协议的认证
二、实验步骤
R1上的配置:
Router>enable
Router#config terminal
Router(config)#hostnamer1
r1(config)#interface s1/1
r1(config-if)#ipaddress 192.168.1.1 255.255.255.0
r1(config-if)#noshutdown
r1(config-if)#interface loopback0
新盟教育 思科网络培训中心
42 www.ciscoedu.cn
r1(config-if)#ipaddress 1.1.1.1255.255.255.0
r1(config-if)#exit
r1(config)#router eigrp 100
r1(config-router)#noauto-summary
r1(config-router)#network 192.168.1.1 0.0.0.255
r1(config-router)#network 1.1.1.1 0.0.0.255
r1(config-router)#end
r1#show iproute
Gateway of last resort is not set
1.0.0.0/24 is subnetted, 1 subnets
C 1.1.1.0 is directly connected, Loopback0
2.0.0.0/24 is subnetted, 1 subnets
D 2.2.2.0 [90/2297856] via 192.168.1.2, 00:00:06, Serial1/1
C 192.168.1.0/24 is directly connected, Serial1/1
R2上的配置:
Router>enable
Router#config terminal
Router(config)#hostnamer2
r2(config)#interface s1/0
r2(config-if)#ipaddress 192.168.1.2 255.255.255.0
r2(config-if)#noshutdown
r2(config-if)#interface loopback0
r2(config-if)#ipaddress 2.2.2.2255.255.255.0
r2(config-if)#exit
r2(config)#router eigrp 100
r2(config-router)#noauto-summary
r2(config-router)#network 192.168.1.2 0.0.0.255
r2(config-router)#network 2.2.2.2 0.0.0.255
r2(config-router)#exit
r2#show iproute
Gateway of last resort is not set
1.0.0.0/24 is subnetted, 1 subnets
D 1.1.1.0 [90/2297856] via 192.168.1.1, 00:00:26, Serial1/0
2.0.0.0/24 is subnetted, 1 subnets
C 2.2.2.0 is directly connected, Loopback0
C 192.168.1.0/24 is directly connected, Serial1/0
此时我们通过查看路由表可以发现R1,R2均学习到彼此的信息。
我们现在在R1上启用RIGRP认证,而R2上先不做认证:
r1#config terminal
r1(config)#key chain thinkmo /定义钥匙链,名字本地有效,用于接口下调用
r1(config-keychain)#key1 /定义钥匙或者ID
r1(config-keychain-key)#key-string cisco /定义密钥
r1(config-keychain-key)#exit
r1(config)#int s1/1 //在接口下启用认证
r1(config-if)#ip authentication key-chain eigrp 100 thinkmo / 接口下调用钥
匙链名字
r1(config-if)#ip authentication mode eigrp 100 md5 /认证模式 采用
MD5
r1(config-if)#exit
(以下程序大家联系我,我会一一发给大家)
新盟教育内部课程分享- EIGRP 认证