增强型内部网关路由协议,是cisco开发的一个平衡混合型路由协议,融合了距离向量和链路状态的优点。支持IP,IPX,ApplleTalk等多种网络层协议。

EIGRP是一种高级的路由协议,特点如下:

1.通过发送和接受Hello包来建立和维护邻居关系,并交换路由信息;

2.采用组播(224.0.0.10)或单播进行路由更新

3.管理距离是90或170

4.采用触发更新,减少宽带占用

5.支持可变长子网掩码(vlsm),默认开启自动汇总功能

6.支持IP,IPX,ApplleTalk等多种网络层协议

7.有独立的邻居表,拓扑表,路由表

8.使用DUAL来实现快速收敛,确保没环路

9.储存整个网络拓扑结构信息,快速适应网络变化

10.支持等价和非等价的负载均衡

11.使用可靠协议(RTP)保证信息的可靠性

12.无缝连接数据链路层协议和拓扑结构。

 

EIGRP 的基本配置

实验目的:启动路由进程:启用参与接口并通告网络;eigrp度量值计算方法;可行距离(FD)、通告距离(RD)可行性条件(FC);邻居表,拓扑表,路由表含义;查看和调试EIGRP路由协议信息

实验拓扑

EIGRP - 壁虎 - Me~~study house!

 实验步骤:

R1:
enable
conf t
no ip domain-lookup
line cons 0
logging synchronous
no exec-t
exit
int lo 0
ip add 1.1.1.1 255.255.255.0
no shut
int s1/0
ip add 192.168.12.1 255.255.255.0
clock rate 64000
no shut
exit
router eigrp 1 
no auto-summary

net  1.1.1.0 0.0.0.255

net 192.168.12.0

 

R2
enable
conf t
no ip domain-lookup
line cons 0
logging synchronous
no exec-t
exit
int s1/0
ip add 192.168.12.2 255.255.255.0
no shut
int s1/1
ip add 192.168.23.2 255.255.255.0
clock rate 64000
no shut
exit
router eigrp 1

no auto-summary

net 192.168.12.0

net 192.168.23.0

 
R3
enable
conf t
no ip domain-lookup
line cons 0
logging synchronous
no exec-t
exit
int s1/1
ip add 192.168.23.3 255.255.255.0
no shut
int s1/2
clock rate 64000
ip add 192.168.34.3 255.255.255.0
no shut
exit
router eigrp 1

no auto-summary

net 192.168.23.0

net 192.168.34.0

 
R4
enable
conf t
no ip domain-lookup
line cons 0
logging synchronous
no exec-t
exit
int s1/2
ip add 192.168.34.4 255.255.255.0
no shut
int lo 0
ip add 4.4.4.4 255.255.255.0
no shut
exit

router eigrp 1

no auto-summary

net 192.168.34.0

net 4.4.4.0

 

实验结束全网互通。

下图为eigrp常用命令

EIGRP - 壁虎 - Me~~study house!