EIGRP等价负载均衡

方法一、偏移列表offset-list

可将不同路由的metric值改为一样,用来实现负载均衡

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

如果想实现等价负载均衡,可以在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

方法二、调整接口度量参数

  1. 通过修改接口的带宽或延迟,可以达到改动路由metric值的目地。
  2. 在路由流向的入口改。
  3. 改延迟时,是以10为单位来修改。比如说想把接口延迟改成2000usec,则要:
  int e0/0
  delay 200   //输入的值默认会*10,是以10为单位来改的
  1. 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

如果想实现等价负载均衡,可以通过修改E0/0接口的延迟来实现

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

你可能感兴趣的:(EIGRP等价负载均衡)