Multipath and Load Sharing · Lesson 01 of 01
Installing more than one path
By default BGP installs one best path. Multipath lets equal-cost paths share the load — if they are truly equal where it counts.
Written lesson
What must match
For BGP multipath, candidate paths must tie on everything best-path compares up to the IGP metric: same weight, local-pref, AS_PATH length, origin, MED, and the same type (all eBGP or all iBGP). Crucially, by default the AS_PATH must be identical, not merely the same length — bgp bestpath as-path multipath-relax loosens that to same-length paths through different AS's, which is what you usually want with two providers.
Configuration
eBGP multipath with relax
router bgp 65001
address-family ipv4 unicast
maximum-paths 2
bgp bestpath as-path multipath-relaxBest is still best
Even with multipath, BGP advertises only the single best path to neighbours. Multipath changes forwarding (the RIB/FIB), not what you announce. Diversity for downstream routers still needs Add-Path or design.