您好,登录后才能下订单哦!
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
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。