eBGP load balancing :
[boxads]Today i will discuss how to configure eBGP load balancing with single-homed BGP environment. So lets go…….. If we look our topology we see here two ISP router are connected through two link. Also this two router are in different autonomous system. Router R1 autonomous system is 21 & Router R2 autonomous system is 22.
Router R1 loopback address: 1.1.1.1 & 11.11.11.11
Router R2 loopback address: 2.2.2.2 & 12.12.12.12
Also this loopback0 are connected via static route & loopback1 connected via eBGP.
eBGP load balancing Network Diagram:

This scenario shows how to achieve load balancing when there are multiple (up to a maximum of six), equal-cost links. The links are terminated in one router at a local autonomous system (AS) and in another router at a remote AS in a single-homed BGP environment. Now we will be start our configuration part.
Router R1 Configuration:
Basic IP Configure:
R1#configure terminal
R1(config)#interface loopback 0
R1(config-if)#ip address 1.1.1.1 255.255.255.255
R1(config)#interface loopback 1
R1(config-if)#ip address 11.11.11.11 255.255.255.0
R1(config-if)#int fa0/0
R1(config-if)#ip address 10.10.0.1 255.255.255.0
R1(config-if)#no shutdown
R1(config-if)#int fa0/1
R1(config-if)#ip address 10.10.1.1 255.255.255.0
R1(config-if)#no shutdown
R1(config-if)#

