9- Determine if multiple paths require installation in
the Routing table for "BGP Multipath"
Continue,
if bestpath is not yes selected.
- Cấu hình multipath + step 1-8 giống nhau => tất cả các route được đưa lên RIB
R2#show run | se router bgp
router bgp 2
no synchronization
bgp log-neighbor-changes
neighbor 10.1.12.1 remote-as 1
neighbor 10.1.23.3 remote-as 3
no auto-summary
R2#show ip bgp 8.8.8.8
BGP routing table
entry for 8.8.8.0/24, version 9
Paths: (2 available,
best #2, table Default-IP-Routing-Table)
Flag: 0x820
Advertised to update-groups:
1
1
10.1.12.1 from 10.1.12.1 (1.1.1.1)
Origin IGP, metric 0, localpref 100,
valid, external
3
10.1.23.3 from 10.1.23.3 (3.3.3.3)
Origin IGP, metric 0, localpref 100,
valid, external, best
=> R2 học mạng 8.8.8.0/24 qua R3. Xét 13 step
Chúng ta đi kiểm tra từng bước sau:
- Weight: bằng nhau 0
- Local prefer: bằng nhau 100
- Perfer the path was locally..: bằng nhau
- AS-path: bằng nhau 1
- Origin type : bằng nhau
- Med: bằng nhau
- Prefer eBGP over iBGP: cùng eBGP
- Prefer with lowes IGP metric to BGP next-hop : bằng nhau
- Không xét ở đây.
- The path are external: break.
-> R2 học mạng 8.8.8.0/24 vì nó nhận được update từ
R3 sớm hơn R1
Cấu hình step 9:
R2#show run | se
router
router bgp 2
bgp bestpath as-path multipath-relax // equal load
balancing bwt same length but different AS Path. Cmd hidden on IOS
neighbor 10.1.12.1 remote-as 1
neighbor 10.1.23.3 remote-as 3
maximum-paths 2 // install 2 routes into RIB
Kiểm tra RIB R2:
R2#show ip route
8.0.0.0/24 is subnetted, 1 subnets
B 8.8.8.0 [20/0] via 10.1.23.3, 00:02:23
[20/0] via 10.1.12.1,
00:02:23
=> R2 đưa 2 route lên bảng RIB
No comments:
Post a Comment