10 
扩展项目──配置思科动态路由 EIGRP
 
实训视频
扩展项目 配置思科动态路由EIGRP协议

一、配置实例拓扑图

EIGRP(Enhanced Interior Gateway Routing Protocol,增强型内部网关路由协议)是Cisco内部专有协议,其他公司的网络产品是不会拥有该协议的,如图8-13所示。

图8-13 拓扑图

二、项目步骤

配置路由器的端口地址,并设置时钟频率。(具体操作略)

1配置路由器R1。

R1(config)#router eigrp 1

R1(config-router)#no auto-summary

R1(config-router)#network 1.1.1.0 0.0.0.255

R1(config-router)#network 192.168.12.0

2配置路由器R2。

R2(config)#router eigrp 1

R2(config-router)#no auto-summary

R2(config-router)#network 192.168.12.0

R2(config-router)#network 192.168.23.0

3配置路由器R3。

R3(config)#router eigrp 1

R3(config-router)#no auto-summary

R3(config-router)#network 192.168.23.0

R3(config-router)#network 192.168.34.0

4配置路由器R4。

R4(config)#router eigrp 1

R4(config-router)#no auto-summary

R4(config-router)#network 4.4.4.0 255.255.255.0

R4(config-router)#network 192.168.34.0

说明:

EIGRP协议在通告网段时,如果是主类网络(即标准A、B、C 类的网络,或者说没有划分子网的网络),只需输入此网络地址;如果是子网的话,则最好在网络号后面写子网掩码或者反掩码,这样可以避免将所有的子网都加入EIGRP 进程中。

反掩码是用广播地址(255.255.255.255) 减去子网掩码所得到。如掩码地址是255.255.248.0,则反掩码地址是0.0.7.255。在高级的IOS中也支持网络掩码的写法。运行EIGRP 的整个网络AS 号码必须一致,其范围为1-65535之间。

三、项目调试

R2#show ip route

Gateway of last resort is not set

C 192.168.12.0/24 is directly connected, Serial0/1/0 1.0.0.0/24 is subnetted, 1 subnets

D 1.1.1.0 [90/20640000] via 192.168.12.1, 00:04:19, Serial0/1/0 4.0.0.0/24 is subnetted, 1 subnets

D 4.4.4.0 [90/21152000] via 192.168.23.3, 00:00:06, Serial0/1/1

C 192.168.23.0/24 is directly connected, Serial0/1/1

D 192.168.34.0/24 [90/21024000] via 192.168.23.3, 00:05:34, Serial0/1/1

以上输出表明路由器R2 通过EIGRP 学到了3 条EIGRP 路由条目,管理距离是90,注意EIGRP 协议代码用字母“D”表示,如果通过重分布方式进入EIGRP 网络的路由条目,默认管理距离为170,路由代码用“D EX”表示,也说明EIGRP 路由协议能够区分内部路由和外部路由。