ERGRP自动汇总的缺点.docx_第1页
ERGRP自动汇总的缺点.docx_第2页
ERGRP自动汇总的缺点.docx_第3页
ERGRP自动汇总的缺点.docx_第4页
ERGRP自动汇总的缺点.docx_第5页
已阅读5页,还剩2页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

Manually Summarizing EIGRP Routes 实验目的: 1、理解EIGRP的自动汇总的缺点。 2、掌握EIGRP的手工自动总结的配置方法。 实验拓扑图: 实验步骤及要求: 1、配置各台路由器的IP地址,并且使用Ping命令确认各路由器的直连口的互通性。 2、配置各台路由器的EIGRP协议,并且不关闭自动总结。 3、在R2上使用ping测试网络路由,会发现R2路由器无法ping通路由器R4所连接的10.1.X.0/24网络子网。如下所示: R2#ping 10.1.1.1 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 10.1.1.1, timeout is 2 seconds: ! Success rate is 100 percent (5/5), round-trip min/avg/max = 1/46/92 ms R2# R2#ping 10.1.16.1 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 10.1.16.1, timeout is 2 seconds: U.U.U Success rate is 0 percent (0/5) R2# R2#ping 10.1.17.1 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 10.1.17.1, timeout is 2 seconds: U.U.U Success rate is 0 percent (0/5) R2# 4、查看R2的路由表: R2#show ip route Gateway of last resort is not set 172.16.0.0/30 is subnetted, 3 subnets D 172.16.1.8 90/307200 via 172.16.1.6, 00:06:25, Ethernet1/1 C 172.16.1.4 is directly connected, Ethernet1/1 C 172.16.1.0 is directly connected, Ethernet1/0 D 10.0.0.0/8 90/409600 via 172.16.1.1, 00:06:09, Ethernet1/0 D 192.168.0.0/24 90/409600 via 172.16.1.6, 00:06:25, Ethernet1/1 D 192.168.1.0/24 90/409600 via 172.16.1.6, 00:06:25, Ethernet1/1 D 192.168.2.0/24 90/409600 via 172.16.1.6, 00:06:25, Ethernet1/1 D 192.168.3.0/24 90/409600 via 172.16.1.6, 00:06:25, Ethernet1/1 R2# 5、查看R2路由器的拓扑数据库: R2#show ip eigrp topology all-links IP-EIGRP Topology Table for AS(50)/ID(172.16.1.5) Codes: P - Passive, A - Active, U - Update, Q - Query, R - Reply, r - Reply status P 10.0.0.0/8, 1 successors, FD is 409600, serno 3 via 172.16.1.1 (409600/128256), Ethernet1/0 via 172.16.1.6 (435200/409600), Ethernet1/1 P 192.168.0.0/24, 1 successors, FD is 409600, serno 4 via 172.16.1.6 (409600/128256), Ethernet1/1 P 192.168.1.0/24, 1 successors, FD is 409600, serno 5 via 172.16.1.6 (409600/128256), Ethernet1/1 P 192.168.2.0/24, 1 successors, FD is 409600, serno 6 via 172.16.1.6 (409600/128256), Ethernet1/1 P 192.168.3.0/24, 1 successors, FD is 409600, serno 7 via 172.16.1.6 (409600/128256), Ethernet1/1 P 172.16.1.8/30, 1 successors, FD is 307200, serno 8 via 172.16.1.6 (307200/281600), Ethernet1/1 P 172.16.1.4/30, 1 successors, FD is 281600, serno 2 via Connected, Ethernet1/1 P 172.16.1.0/30, 1 successors, FD is 281600, serno 1 via Connected, Ethernet1/0 R2# 6、导致R2无法ping路由器R4所连接的10.1.X.0/24的网络主要原因是:R1本身属于主类的边界,其会将本地路由表中的子网向主类网络自动汇总。而R4也属于主类的界,也会与R1做出相同的动作。因此R2会从不同的接口,收到相同的汇总路由,即10.0.0.0/8网络路由。由于R2在比较了两条路由的可行距离后,选择了较小的FD值的路由,即R1通告的10.0.0.0/8汇总路由。而忽略了另外一个接口收到汇总路由。其实真正的原因,并不是路由选择出错,而是自动汇总不能做到精确的控制原因导致的。 7、为了解决汇总问题,需要在R1和R2上关闭自动汇总,而采用手工汇总。配置如下: R1(config)#router eigrp 50 R1(config-router)#no auto-summary R1(config-router)#exit R1(config)# R1(config)#interface fastEthernet 0/1 R1(config-if)#ip summary-address eigrp 50 10.1.0.0 255.255.252.0 R1(config-if)#exit R1(config)#exit R4(config)#router eigrp 50 R4(config-router)#no auto-summary R4(config-router)#exit R4(config)# R4(config)#interface fastEthernet 0/0 R4(config-if)#ip summary-address eigrp 50 10.1.16.0 255.255.252.0 R4(config-if)#exit R4(config)#exit 8、再次查看R2路由表: R2#show ip route Gateway of last resort is not set 172.16.0.0/30 is subnetted, 3 subnets D 172.16.1.8 90/307200 via 172.16.1.6, 00:21:08, Ethernet1/1 C 172.16.1.4 is directly connected, Ethernet1/1 C 172.16.1.0 is directly connected, Ethernet1/0 10.0.0.0/22 is subnetted, 2 subnets D 10.1.0.0 90/409600 via 172.16.1.1, 00:03:13, Ethernet1/0 D 10.1.16.0 90/435200 via 172.16.1.6, 00:01:02, Ethernet1/1 D 192.168.0.0/24 90/409600 via 172.16.1.6, 00:21:08, Ethernet1/1 D 192.168.1.0/24 90/409600 via 172.16.1.6, 00:21:08, Ethernet1/1 D 192.168.2.0/24 90/409600 via 172.16.1.6, 00:21:08, Ethernet1/1 D 192.168.3.0/24 90/409600 via 172.16.1.6, 00:21:08, Ethernet1/1 R2# 9、再次使用ping命令确认网络可达性: R2#ping 10.1.0.1 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 10.1.0.1, timeout is 2 seconds: ! Success rate is 100 percent (5/5), round-trip min/avg/max = 16/69/145 ms R2#ping 10.1.1.1 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 10.1.1.1, timeout is 2 seconds: ! Success rate is 100 percent (5/5), round-trip min/avg/max = 16/44/64 ms R2#ping 10.1.16.1 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 10.1.16.1, timeout is 2 seconds: ! Success rate is 100 percent (5/5), round-trip min/avg/max = 60/97/140 ms R2#ping 10.1.17.1 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 10.1.17.1, timeout is 2 seconds: ! Success rate is 100 percent (5/5), round-trip min/avg/max = 48/93/149 ms R2# 10、再次查看R2的路由表: R2#show ip route Gateway of last resort is not set 172.16.0.0/30 is subnetted, 3 subnets D 172.16.1.8 90/307200 via 172.16.1.6, 00:23:45, Ethernet1/1 C 172.16.1.4 is directly connected, Ethernet1/1 C 172.16.1.0 is directly connected, Ethernet1/0 10.0.0.0/22 is subnetted, 2 subnets D 10.1.0.0 90/409600 via 172.16.1.1, 00:05:49, Ethernet1/0 D 10.1.16.0 90/435200 via 172.16.1.6, 00:03:38, Ethernet1/1 D 192.168.0.0/24 90/409600 via 172.16.1.6, 00:23:45, Ethernet1/1 D 192.168.1.0/24 90/409600 via 172.16.1.6, 00:23:45, Ethernet1/1 D 192.168.2.0/24 90/409600 via 172.16.1.6, 00:23:45, Ethernet1/1 D 192.168.3.0/24 90/409600 via 172.16.1.6, 00:23:45, Ethernet1/1 R2# 11、为了能够有效的减少路由表的大小,还可以通过EIGRP对192.168.X.0/24的C类网络路由进行手工路由汇总,具体配置如下: R3(config)#router eigrp 50 R3(config-router)#no auto-summary R3(config-router)#exit R3(config)# R3(config)#interface ethernet 1/1 R3(config-if)#ip summary-address eigrp 50 192.168.0.0 255.255.252.0 R3(config-if)#exit R3(config)# R3(config)#inter ethernet 1/0 R3(config-if)#ip summary-address eigrp 50 192.168.0.0 255.255.252.0 R3(config-if)#exit R3(config)# 12、查看R4和R2的路由表: R4#show ip route Gateway of last resort is not set 172.16.0.0/30 is subnetted, 3 subnets C 172.16.1.8 is directly connected, FastEthernet0/0 D 172.16.1.4 90/284160 via 172.16.1.9, 00:02:41, FastEthernet0/0 D 172.16.1.0 90/309760 via 172.16.1.9, 00:02:23, FastEthernet0/0 10.0.0.0/8 is variably subnetted, 6 subnets, 2 masks D 10.1.0.0/22 90/437760 via 172.16.1.9, 00:02:23, FastEthernet0/0 C 10.1.19.0/24 is directly connected, Loopback0 C 10.1.18.0/24 is directly connected, Loopback0 C 10.1.17.0/24 is directly connected, Loopback0 D 10.1.16.0/22 is a summary, 00:03:33, Null0 C 10.1.16.0/24 is directly connected, Loopback0 D 192.168.0.0/22 90/156160 via 172.16.1.9, 00:02:41, FastEthernet0/0 R4# R2#show ip route Gateway of last resort is not set 172.16.0.0/30 is subnetted, 3 subnets D 172.16.1.8 90/307200 via 172.16.1.6, 00:02:54, Ethernet1/1 C 172.16.1.4 is directly connected, Ethernet1/1 C 172.16.1.0 is directly connected, Ethe

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论