diff --git a/README.md b/README.md index 5f38d53..e3d9af3 100644 --- a/README.md +++ b/README.md @@ -42,3 +42,11 @@ The project directory is structured as follows: - Once the lab is deployed, you can access the individual nodes (spines and leaves) via CLI or SSH to configure and test VXLAN-EVPN functionalities. - Use the `hosts` directory to modify or apply specific configurations. + +## Known Issues + +On Alpine Linux hosts 1 and 2, it is necessary to install the vlan package: + +```bash +apk add vlan +``` diff --git a/documentation/eos configuration/leaf1.md b/documentation/eos configuration/leaf1.md index 5cec51e..36d4113 100644 --- a/documentation/eos configuration/leaf1.md +++ b/documentation/eos configuration/leaf1.md @@ -75,7 +75,7 @@ neighbor 10.1.1.0 activate To check peer status : ```cli -leaf1# show bgp summary +show bgp summary ``` ## BGP EVPN Overlay @@ -105,3 +105,10 @@ address-family ipv4 no neighbor 10.10.110.2 activate redistribute connected route-map RMAP_VTEP ``` + +To check peer status : + +```cli +show bgp summary +show bgp evpn +``` diff --git a/documentation/eos configuration/leaf2.md b/documentation/eos configuration/leaf2.md index f95516f..fb9565c 100644 --- a/documentation/eos configuration/leaf2.md +++ b/documentation/eos configuration/leaf2.md @@ -75,5 +75,40 @@ neighbor 10.1.1.0 activate To check peer status : ```cli -leaf1# show bgp summary +show bgp summary +``` + +## BGP EVPN Overlay + +```config +interface Loopback0 +description VTEP +ip address 10.10.110.2/32 +! +ip prefix-list VTEP_PREFIX seq 10 permit 10.10.110.2/32 +! +route-map RMAP_VTEP permit 10 +match ip address prefix-list VTEP_PREFIX +! +router bgp 65102 +neighbor 10.10.110.1 peer group VTEP_GROUP +neighbor 10.10.110.1 remote-as 65101 +neighbor 10.10.110.1 update-source Loopback0 +neighbor VTEP_GROUP peer group +neighbor VTEP_GROUP ebgp-multihop 5 +neighbor VTEP_GROUP send-community extended +! +address-family evpn +neighbor 10.10.110.1 activate +! +address-family ipv4 +no neighbor 10.10.110.1 activate +redistribute connected route-map RMAP_VTEP +``` + +To check peer status : + +```cli +show bgp summary +show bgp evpn ``` diff --git a/documentation/eos configuration/spine1.md b/documentation/eos configuration/spine1.md index 874f013..300deff 100644 --- a/documentation/eos configuration/spine1.md +++ b/documentation/eos configuration/spine1.md @@ -17,7 +17,7 @@ conf service routing protocols model multi-agent ``` -Enabling IP Routing +Enabling IP Routing ```config conf