2013年8月4日 星期日

EGIRP Unequal Cost Load Balance




==========================
Before enable EIGRP unequal cost load ablance
==========================

In R1 router EIGRP topology table ,  routing  to 172.16.1.0/24  network , least cost Feasible Distance is : 3651840  serial 1/1,  it is best route.

Now we want to  enable EIGRP unequal cost load balance.

The variance value :   second least cost FD < least cost  FD*variance
                                     61519363 < 3651840*variance , 
                                     variance=2

R1#sh ip route eigrp
     172.16.0.0/24 is subnetted, 1 subnets
D       172.16.1.0 [90/3651840] via 192.168.2.2, 00:00:47, Serial1/1    [only the best route]     192.168.4.0/30 is subnetted, 1 subnets
D       192.168.4.0 [90/3523840] via 192.168.2.2, 00:00:47, Serial1/1
     192.168.3.0/30 is subnetted, 1 subnets
D       192.168.3.0 [90/4035840] via 192.168.2.2, 00:00:47, Serial1/1
R1#



R1#show ip eigrp topology
IP-EIGRP Topology Table for AS(10)/ID(10.1.1.1)

Codes: P - Passive, A - Active, U - Update, Q - Query, R - Reply,
       r - reply Status, s - sia Status

P 10.1.1.0/24, 1 successors, FD is 128256
        via Connected, Loopback0
P 192.168.1.0/30, 1 successors, FD is 5511936
        via Connected, Serial1/0
P 192.168.2.0/30, 1 successors, FD is 3011840
        via Connected, Serial1/1
P 192.168.3.0/30, 1 successors, FD is 4035840
        via 192.168.2.2 (4035840/3523840), Serial1/1
        via 192.168.1.2 (6023936/3011840), Serial1/0
P 192.168.4.0/30, 1 successors, FD is 3523840
        via 192.168.2.2 (3523840/3011840), Serial1/1
P 172.16.1.0/24, 1 successors, FD is 3651840
        via 192.168.2.2 (3651840/3139840), Serial1/1
        via 192.168.1.2 (6151936/3139840), Serial1/0
R1#


==========================
After enable EIGRP unequal cost load ablance
==========================


R1(config)#router eigrp 10
R1(config-router)#variance 2

we can see the second route has show in the routing table.



R1#show ip route eigrp
     172.16.0.0/24 is subnetted, 1 subnets
D       172.16.1.0 [90/3651840] via 192.168.2.2, 00:00:57, Serial1/1   [best route]
                           [90/6151936] via 192.168.1.2, 00:00:57, Serial1/0    [second route] 
     192.168.4.0/30 is subnetted, 1 subnets
D       192.168.4.0 [90/3523840] via 192.168.2.2, 00:00:57, Serial1/1
     192.168.3.0/30 is subnetted, 1 subnets
D       192.168.3.0 [90/4035840] via 192.168.2.2, 00:00:57, Serial1/1
                              [90/6023936] via 192.168.1.2, 00:00:57, Serial1/0
R1#

show the routing table to 172.17.1.0/24 prefix , we can see the interface , traffic share count and network bandwidth.



R1#show ip route 172.16.1.0
Routing entry for 172.16.1.0/24
  Known via "eigrp 10", distance 90, metric 3651840, type internal
  Redistributing via eigrp 10
  Last update from 192.168.1.2 on Serial1/0, 00:07:48 ago
  Routing Descriptor Blocks:
  * 192.168.2.2, from 192.168.2.2, 00:07:48 ago, via Serial1/1
      Route metric is 3651840, traffic share count is 120
      Total delay is 45000 microseconds, minimum bandwidth is 1024 Kbit
      Reliability 255/255, minimum MTU 1500 bytes
      Loading 1/255, Hops 2
    192.168.1.2, from 192.168.1.2, 00:07:48 ago, via Serial1/0
      Route metric is 6151936, traffic share count is 71
      Total delay is 45000 microseconds, minimum bandwidth is 512 Kbit
      Reliability 255/255, minimum MTU 1500 bytes
      Loading 1/255, Hops 2

R1#



All router configuration :

R1#
==========================
interface Loopback0
 ip address 10.1.1.1 255.255.255.0
!
interface Serial1/0
 bandwidth 512
 ip address 192.168.1.1 255.255.255.252
!
interface Serial1/1
 bandwidth 1024
 ip address 192.168.2.1 255.255.255.252
!
router eigrp 10
 variance 2
 network 10.1.1.0 0.0.0.255
 network 192.168.1.0 0.0.0.3
 network 192.168.2.0 0.0.0.3
 no auto-summary
!

==========================



R2#
==========================

interface Serial1/0
 bandwidth 512
 ip address 192.168.1.2 255.255.255.252
!
interface Serial1/1
 bandwidth 1024
 ip address 192.168.3.1 255.255.255.252
!

router eigrp 10
 network 192.168.1.0 0.0.0.3
 network 192.168.3.0 0.0.0.3
 no auto-summary
! 

==========================


R3#
==========================
interface Serial1/0
 bandwidth 1024
 ip address 192.168.4.1 255.255.255.252
!
interface Serial1/1
 bandwidth 1024
 ip address 192.168.2.2 255.255.255.252
!
router eigrp 10
 network 192.168.2.0 0.0.0.3
 network 192.168.4.0 0.0.0.3
 no auto-summary
! 

==========================



R4#
==========================interface Loopback0
 ip address 172.16.1.1 255.255.255.0
!
interface Serial1/0
 bandwidth 1024
 ip address 192.168.4.2 255.255.255.252
 serial restart-delay 0
!
interface Serial1/1
 bandwidth 1024
 ip address 192.168.3.2 255.255.255.252
 serial restart-delay 0
!



router eigrp 10
 network 172.16.1.0 0.0.0.255
 network 192.168.3.0 0.0.0.3
 network 192.168.4.0 0.0.0.3
 no auto-summary
==========================





















沒有留言:

張貼留言