Thursday, March 12, 2015

BGP DMZ Link BW

                          BGP DMZ Link BW
Topology :
 Cho topology : + R2 thiết lp neighbor R1 qua EBGP
                 +  R2 thiết lp neighbor R3 qua EBGP
Trên R1 và R3 to mng loopback L1 : 8.8.8.0/24 qung bá vào R2
  Trên R2 “ show ip bgp 8.8.8.0/24 “

 R2 hc mng 8.8.8.0/24 qua R1 bi vì R2 nhận update từ R1 sớm hơn so với R3 ( break step 10)
Let's configure BGP multipath to install both paths:
!
router bgp 2
 neighbor 10.1.12.1 remote-as 1
 neighbor 10.1.23.3 remote-as 3
 maximum-paths 2
Sau khi “maximum-paths 2 ” ta thấy bảng định tuyến chỉ có 1 tuyến đường tới mạng 8.8.8.0/24
***note :
Still we have only one path in the RIB. This is because even though all the attributes weight, local preference, AS path length, origin code, MED, and IGP distance are same, AS paths are not identical. There is a hidden IOS command to bypass this requirement.
R2(config)#router bgp 2
R2(config-router)#bgp bestpath as-path multipath-relax   // equal load balancing bwt same length but different AS Path
R2(config-router)#
Kết quả ta thấy :


Cu hình chnh share count :

Gi ta cấu hình  unequal cost load-sharing  với tỉ lệ 1:3  trên R2 để tới mạng 8.8.8.0/24
!
interface Serial0/0
 bandwidth 100
 ip address 10.1.12.2 255.255.255.0
!
interface Serial0/1
 bandwidth 300
 ip address 10.1.23.2 255.255.255.0
!
router bgp 2
 bgp bestpath as-path multipath-relax
 bgp dmzlink-bw
 neighbor 10.1.12.1 remote-as 1
 neighbor 10.1.12.1 dmzlink-bw
 neighbor 10.1.23.3 remote-as 3
 neighbor 10.1.23.3 dmzlink-bw
 maximum-paths 2
 !
 address-family nsap
  maximum-paths 2
 exit-address-family
!


No comments:

Post a Comment