098098 发表于 2015-11-26 08:48:03

EIGRP配置实验之基础配置

1、实验拓扑图

2、EIGRP工作流程

路由器A发出hello包,路由器B收到路由器A的hello包后,将其添加到邻居表中。
路由器B发出hello包,路由器A收到路由器B的hello包后,将其添加到邻居表中。

路由器B紧接着发送自己的完整路由表信息退给路由器A,路由器A收到后将其添加到拓扑表中,并回应ACK报文。
路由器A紧接着发送自己的完整路由表信息退给路由器B,路由器B收到后将其添加到拓扑表中,回应ACK报文。

最有路由器A和路由器B将最优的路由器条目添加到路由表中。

3、EIGRP封装

4、三大表


邻居表中,SRTT表示可靠报文发出到收到ACK的时间间隔,RTO表示重传超时时间,发出update后,如收不到ACK,就在RTO之后再发update,默认重传16次,重传16次后仍未收到ACK则重置邻居关系。

Hold on = 3 * hello (hello默认为5s)
可在接口模式下使用命令ip hello-interval eigrp 90 10修改hello时间间隔。

5、metric计算
带宽 K1    负载 K2    延迟 K3    可靠性 K4    MTU K5


metric = 256 x (10^7/最小带宽 + 延迟总和/10)
带宽单位为kbps,延迟单位为usec,metric值是路由流入方向上的metric值。


FD:本地到目标网络的metric值

AD:通告距离,下一跳到目标网络的metric值

6、配置
R3
int s0/0
ip add 13.1.1.3 255.255.255.0
no shut
int lo0
ip add 3.3.3.3 255.255.255.0
no shut
router eigrp 90
network 3.3.3.0 0.0.0.255
network 13.1.1.0 0.0.0.255
no auto-summary

R1
int s0/0
ip add 13.1.1.1 255.255.255.0
no shut
int s0/1
ip add 12.1.1.1 255.255.255.0
no shut
int lo0
ip add 1.1.1.1 255.255.255.0
no shut
router eigrp 90
network 1.1.1.0 0.0.0.255
network 12.1.1.0 0.0.0.255
network 13.1.1.0 0.0.0.255
no auto-summary

R2
int s0/1
ip add 12.1.1.2 255.255.255.0
no shut
int lo0
ip add 2.2.2.2 255.255.255.0
no shut
router eigrp 90
network 2.2.2.0 0.0.0.255
network 12.1.1.0 0.0.0.255
no auto-summary


页: [1]
查看完整版本: EIGRP配置实验之基础配置