-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fdc6f0a
commit 1655bad
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
### Notes about spine1 EVPN configuration. | ||
|
||
|
||
Spine1 acts as a route reflector for iBGP sessions from comp servers and leaf switches. It is not a VXLAN endpoint for any of the VNIs and does not have any routing instances configured. | ||
|
||
|
||
Create iBGP configuration with route reflector functionality. | ||
``` | ||
bgp { | ||
group ibgp { | ||
type internal; | ||
local-address c0d1:ffff::201; | ||
family evpn { | ||
signaling; | ||
} | ||
cluster 10.255.255.201; | ||
multipath; | ||
neighbor c0d1:ffff::1; | ||
neighbor c0d1:ffff::2; | ||
neighbor c0d1::1; | ||
neighbor c0d1::2; | ||
neighbor c0d1::3; | ||
neighbor c0d1::4; | ||
neighbor c0d1::5; | ||
} | ||
} | ||
``` |