您的位置:首页 > 理论基础 > 计算机网络

CCNA学习笔记9-混合路由协议(EIGRP)

2012-02-15 21:03 387 查看
Choose best paths based on bandwidth and delay by default

-默认通过带宽和延迟进行选路

Balanced Hybrid Routing(EIGRP)    -平衡混合型路由协议

Converge rapidly   -收敛迅速,收敛速度是网络只能够相当重要的参数

收敛时间:路由表发生变化到再次同步的时间,收敛速度越快,网络恢复速度越快

shares attributes of both distance vector and link-state routing

-共享距离矢量和链路状态路由协议的特点属性

缺点:不是私有化,一旦链路带宽过低,可能会造成路由器stuck in active(SIA),卡在活跃状态

EIGRP协议描述

EIGRP是最典型的平衡混合路由选择协议,它融合了距离矢量和链路状态两种路由选择协议的优点,使用闪速更新(DUAL,Diffusing Update Algorithm)算法,能最快的达到网络收敛(convergence)

EIGRP特点如下:

采用不定期更新,即只在路由器改变计量标准或拓扑出现变化时发送部分更新路由(增量更新)

更新条目中包含掩码,支持VLSM,基于无类的,支持不连续子网

具有相同的自治系统号的EIGRP和IGRP之间,可无缝交换路由信息

EIGRP概述

支持多种可路由协议:

IP Routing Protocol,AppleTalk Routing Protocol,IPX Routing Protocol

EIGRP supports:

Rapid convergence  -快速收敛,dual算法

Reduced bandwidth usage  -减少带宽占用,不定期增量更新

Multiple network-layer protocol   -多个网络层协议,协议独立模块

EIGRP术语

Table,EIGRP有三张表

Neighbor Table  -邻居表

包含Next-Hop Router(旁边的路由器),interface(通过哪个接口与旁边路由器相连)

Topology Table  -拓扑表

包含Destination 1(目标网络号),Successor(后继路由器),Feasible Successor(FS,可行后继路由器,不是最好的路由,不放到路由表,放到路由表中,一旦路由表发生问题,那么直接把FS直接变为路由表)

Routing Table   -路由表

包含Destination 1(目标网络号),Successor(后继路由器)

EIGRP和IGRP比较

相似点                                           不同点

相似的Metric计算                           支持VLSM和不连续子网

IGRP:                                     支持手动汇总

Metric=BW(min)+DLY(sum)                    闪速更新,更快的收敛时间

EIGRP:                                    只对发生变化的条目更新,占用的网络资源更少

Metric=256*[BW(min)+DLY(sum)]

均支持等价负载均衡和不等价负载均衡

show interface serial 0(可以查看0口延迟)

配置EIGRP

router eigrp {as-number}    -启动EIGRP

as-number(autonomy system):自治系统号,范围为1~65535,属于同一个管理域,域里面的电脑相互交换信息

network {network-number}    -宣告直连主类网络号(这里还是主类网络号)

Example:

router eigrp 100

network 172.16.0.0

network 10.0.0.0

验证EIGRP配置

查看邻居表,查看有没有形成邻居关系

show ip eigrp neighbors   -Displays the neighbors discovered by IP EIGRP

查看eigrp的拓扑表,最好的为successor,其次为FS

show ip eigrp topology    -Displays the IP EIGRP topology table

查看eigrp学习到的路由

show ip route eigrp       -Displays current EIGRP entries in the routing table

显示当前的路由协议

show ip protocols         -Displays the parameters and current state of the active routing                            protocol process

查看eigrp的流量信息

show ip eigrp traffic     -Displays the number of IP EIGRP packets sent and received
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息