方法一、偏移列表offset-list
可將不同路由的metric值改為一樣,用來實現(xiàn)負載均衡
R2#sh ip eigrp topology detail-links
P 3.3.3.0/24, 1 successors, FD is 409600, serno 6
via 23.1.1.3 (409600/128256), Ethernet0/0
via 12.1.1.1 (2809856/2297856), Serial1/0
如果想實現(xiàn)等價負載均衡饶碘,可以在R2上使用偏移列表對E0/0接口進來的3.3.3.0的路由增加metric值。
R2(config)#access-list 1 permit 3.3.3.0
R2(config)#router eigrp 90
R2(config-router)#offset-list 1 in 2400256 e0/0
R2#show ip route
3.0.0.0/24 is subnetted, 1 subnets
D 3.3.3.0 [90/2809856] via 23.1.1.3, 00:00:24, Ethernet0/0
[90/2809856] via 12.1.1.1, 00:00:24, Serial1/0
方法二馒吴、調(diào)整接口度量參數(shù)
- 通過修改接口的帶寬或延遲扎运,可以達到改動路由metric值的目地。
- 在路由流向的入口改饮戳。
- 改延遲時豪治,是以10為單位來修改。比如說想把接口延遲改成2000usec扯罐,則要:
int e0/0
delay 200 //輸入的值默認會*10负拟,是以10為單位來改的
-
show interface s1/0
使用這條命令可以看到接口的帶寬和延遲
show ip eigrp topology detail-links
P 3.3.3.0/24, 1 successors, FD is 409600, serno 6
via 23.1.1.3 (409600/128256), Ethernet0/0
via 12.1.1.1 (2809856/2297856), Serial1/0
如果想實現(xiàn)等價負載均衡,可以通過修改E0/0接口的延遲來實現(xiàn)
int e0/0
delay 9476 #將接口延遲改為94760μS
bandwidth 1544 #將帶寬改為1544
show ip route
3.0.0.0/24 is subnetted, 1 subnets
D 3.3.3.0 [90/2809856] via 23.1.1.3, 00:00:08, Ethernet0/0
[90/2809856] via 12.1.1.1, 00:00:08, Serial1/0