General Update
- Add devcontainer - Update Readme - Update cEOS images
This commit is contained in:
@@ -17,7 +17,7 @@ conf
|
||||
service routing protocols model multi-agent
|
||||
```
|
||||
|
||||
Enabling IP Routing
|
||||
Enabling IP Routing
|
||||
|
||||
```config
|
||||
conf
|
||||
@@ -77,3 +77,31 @@ To check peer status :
|
||||
```cli
|
||||
leaf1# show bgp summary
|
||||
```
|
||||
|
||||
## BGP EVPN Overlay
|
||||
|
||||
```config
|
||||
interface Loopback0
|
||||
description VTEP
|
||||
ip address 10.10.110.1/32
|
||||
!
|
||||
ip prefix-list VTEP_PREFIX seq 10 permit 10.10.110.1/32
|
||||
!
|
||||
route-map RMAP_VTEP permit 10
|
||||
match ip address prefix-list VTEP_PREFIX
|
||||
!
|
||||
router bgp 65101
|
||||
neighbor 10.10.110.2 peer group VTEP_GROUP
|
||||
neighbor 10.10.110.2 remote-as 65102
|
||||
neighbor 10.10.110.2 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.2 activate
|
||||
!
|
||||
address-family ipv4
|
||||
no neighbor 10.10.110.2 activate
|
||||
redistribute connected route-map RMAP_VTEP
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user