1 EIGRP协议的基本配置


本实验对EIGRP协议进行基本的配置 , 涉及到配置ElGRP协议所必须的命令和常用的show命令 。
1.实验目的
通过本实验 , 读者可以把握以下技能:
在路由器上启动EIGRP协议;
声明相应网段进入EIGRP路由进程;
查看路由表并理解相关字段含义;
查看EIGRP协议配置信息;
查看EIGRP邻居路由器信息 。
2.设备需求
本实验需要以下设备:
Cisco路由器3台 , 分别命名为R1、R2和R3 , 其申R1要求具有2个串行接口、R2和R3均要求具有1个串行接口和1个以太网接口 。
2条DCE电缆和2条DTE电缆 , 或3条DCE转DTE电缆;
1条交叉线序的双绞线;
1台终端服务器 , 如Cisco2509路由器 , 及用于反向Telnet的相应电缆;
1台带有超级终端程序的PC机 , 以及Console电缆及转接器 。
3. 拓扑结构及配置说明
本实验拓扑结构如图6.1所示 。首先把DCE电缆和DTE电缆进行对接 , 共组成2对电缆 , 然后用这2对电缆把R1和R2 , R1和R3连接起来 。
用交又线序的双绞线把R2和R3连接起来 。
各路由器使用的接口及其编号见图6.1中的标注 。

各接口IP地址分配加下:
R1 50 201.1.12.1/30, S1 201.1.13.1/30, L0 10.1.1.1/24
R2: 50 201.1.12.2/30, E0 200.1.1.2/24
R3: 50 201.1.12.2/30, E0 200.1.1.3/24
实验中R1、R2之间和R1、R3之间的串行线路速率设置为2000kbit/s 。
本实验要求通过对EIGRP路由选择协议进行配置 , 实现全网的连通性 。
4.实验配置及监测结果
首先对各路由器的相关接口进行配置 , 然后启动EIGRP路由协议 , 并且声明网段 。
读者应该已经在对RIP和IGRP协议的配置中熟悉了这个配置过程 , 因此我们在此给出配置完成后的结果 , 而不再记录完整的配置过程 。
配置清单6-1是3台路由器的具体配置 。
配置清单6-1各路由器配置清单
第1段:路由器R1的配置清单
R1#sh mnn
Building configuration...
Current configuration : 931 bytes
!
version 12.1
service timestamps debug uptime
service timestamps log uptime
no service passWord-encryption
!
hostname R1
!
ip subnet-zero
i
interface LoopbackO
 ip address 10.1.1.1255.255.255.0
!
interface Serial0
 bandwidth 2000
 ipaddress 201.1.12.1 255.255.255.252
 clockrate 2000000
!
interface Serial 1
 bandwidth 2000
 ipaddress 201.1.13.1 255.255.255.252
 clockrate 2000000
!
router eigrp 100
 network 10.1.1.0 0.0.0.255
 network 201.1.12.0 0.0.0.3
 network 201.1.l3.0.0.0.0.3
 no ayto-summary
 no eigrp log-neighbor-changes
!
ip classless
ip http server
!
!
line con 0
line aux 0
line vty 0 4
!
end
R1#
第2段:路由器R2的配置清单
R2#sh run
Building configuration...
Current configuration : 656 bytes
!
version 12.1
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname R2
!
ip subnet-zero
no ip finger
!
interface Ethemet0
 ip address 200.1.1.2 255.255.255.0
!
interface Serial0
 bandwidth 2000
 ip address 201.1.12.2 255.255.255.2;
!
router elgrp 100
 network 200.1.1.0
 network 201.1.12.0 0.0.0.3
 no auto-summary
 no eigrp log-neighbor-changes
!
ip classless
ip http server
!
line con 0
line aux 0
line vty 0 4
!
end
R2#
第3段:路由器R3的配置清单
R3#sh runn
Building configuration...

推荐阅读