分类: 系统运维
2009-06-26 22:02:11
实验目的:
1、掌握EIGRP的不等价均衡的条件。
2、掌握EIGRP的metric值修改方法。
3、掌握EIGRP的AD、FD、FC、Successor、FS概念。
实验拓扑图:
实验步骤及要求:
1、配置各台路由器的IP地址,并且使用Ping命令确认各路由器的直连口的互通性。
2、在三台路由配置EIGRP自治系统编号为50。
3、观察R1到达R3的192.168.1.0/24网络的路由。
R1#show ip route 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/2172416] via 172.16.1.10, 00:00:11, FastEthernet0/0 C 172.16.1.0 is directly connected, Serial1/1 D 192.168.1.0/24 [90/156160] via 172.16.1.10, 00:00:11, FastEthernet0/0 R1# |
4、为了提高网络传输性能,需要同时使用下一跳为172.16.1.2的路由,即使用另外一条metric值不相等的路径做均衡负载。
5、如果需要使用另外一条路径,则需要确保R2成为R1到达192.168.1.0/24网络的可行后继(FS),要想成为FS,则需要满足可行条件(FC)。
6、在R1上查看EIGRP的拓扑表,没有发现R2出现在R1的拓扑表中。
R1#show ip eigrp 50 topology ……… P 192.168.1.0/24, 1 successors, FD is 156160 via 172.16.1.10 (156160/128256), FastEthernet0/0 P 172.16.1.8/30, 1 successors, FD is 28160 via Connected, FastEthernet0/0 ……… |
7、查看完整的拓扑表内容。
R1#show ip eigrp 50 topology all-links ……… P 192.168.1.0/24, 1 successors, FD is 156160, serno 6 via 172.16.1.10 (156160/128256), FastEthernet0/0 via 172.16.1.2 (2809856/2297856), Serial1/1 ……… |
8、确认FC(可行条件)公式:
AD of secondary-best route < FD of best route(Successor) = Feasible Successor
根据本例可得出:
R2到达192.168.1.0网络的Distance < 156160
9、配置R2的EIGRP的度量,确保R2成为R1的可行后继者。
R2#configure terminal R2(config)#interface serial 1/1 R2(config-if)#bandwidth 10000000 R2(config-if)#delay 10 R2(config)#exit |
10、查看R1的拓扑表。
R1#show ip eigrp topology all-links ……… P 192.168.1.0/24, 1 successors, FD is 156160, serno 6 via 172.16.1.10 (156160/128256), FastEthernet0/0 via 172.16.1.2 (2300416/130816), Serial1/1 ……… |
11、根据如下公式配置R1的EIGRP的variance值。
FD of FS route < FD of best route(Successor) * Varince
根据公式可得出:
2300416 < 156160 * x
x≈14.73
12、为了测试,先在R1上配置variance值为14,观察路由表。
R1(config)#router eigrp 50 R1(config-router)#variance 14 R1(config-router)#exit R1(config)#exit R1#clear ip router * R1#show ip route ……… C 172.16.1.0 is directly connected, Serial1/1 D 192.168.1.0/24 [90/156160] via 172.16.1.10, 00:00:00, FastEthernet0/0 ……… R1# |
13、将R1的variance值修改为15后,观察路由表。
R1(config)#router eigrp 50 R1(config-router)#variance 15 R1(config-router)#exit R1(config)#exit R1#clear ip router * R1#show ip route ……… C 172.16.1.0 is directly connected, Serial1/1 D 192.168.1.0/24 [90/156160] via 172.16.1.10, 00:00:01, FastEthernet0/0 [90/2300416] via 172.16.1.2, 00:00:01, Serial1/1 R1# |
14、实验完成。