Update schema and devices configuration
This commit is contained in:
57
documentation/eos configuration/leaf1.md
Normal file
57
documentation/eos configuration/leaf1.md
Normal file
@@ -0,0 +1,57 @@
|
||||
# Leaf 1 configuration
|
||||
|
||||
## Pre-config Setup
|
||||
|
||||
Enable the multi-agent configuration on Arista switch to be able to use EVPN feature
|
||||
|
||||
```config
|
||||
service routing protocols model multi-agent
|
||||
```
|
||||
|
||||
## IP address Configuration
|
||||
|
||||
Configure need to match with [Lab Topology](../../lab_vxlan.yml)
|
||||
|
||||
```yml
|
||||
links:
|
||||
- endpoints: ["spine1:eth1", "leaf1:eth1"]
|
||||
- endpoints: ["spine1:eth2", "leaf2:eth1"]
|
||||
- endpoints: ["leaf1:eth2", "host1:eth1"]
|
||||
- endpoints: ["leaf2:eth2", "host2:eth1"]
|
||||
```
|
||||
|
||||
That means :
|
||||
|
||||
```config
|
||||
interface Ethernet1
|
||||
description TO_SPINE01
|
||||
no switchport
|
||||
ip address 10.1.1.1/31
|
||||
!
|
||||
interface Ethernet2
|
||||
description TO_HOST1
|
||||
switchport mode trunk
|
||||
!
|
||||
interface Loopback0
|
||||
description VTEP
|
||||
ip address 10.10.110.1/32
|
||||
!
|
||||
```
|
||||
|
||||
## BGP Protocol
|
||||
|
||||
```config
|
||||
router bgp 65101
|
||||
router-id 10.10.110.1
|
||||
maximum-paths 4 ecmp 4
|
||||
neighbor SPINE_GROUP peer group
|
||||
neighbor SPINE_GROUP allowas-in 1
|
||||
neighbor SPINE_GROUP ebgp-multihop 4
|
||||
neighbor SPINE_GROUP send-community extended
|
||||
neighbor SPINE_GROUP maximum-routes 12000
|
||||
neighbor 10.1.1.0 peer group SPINE_GROUP
|
||||
neighbor 10.1.1.0 remote-as 65001
|
||||
!
|
||||
address-family ipv4
|
||||
neighbor 10.1.1.0 activate
|
||||
```
|
||||
57
documentation/eos configuration/leaf2.md
Normal file
57
documentation/eos configuration/leaf2.md
Normal file
@@ -0,0 +1,57 @@
|
||||
# Leaf 2 configuration
|
||||
|
||||
## Pre-config Setup
|
||||
|
||||
Enable the multi-agent configuration on Arista switch to be able to use EVPN feature
|
||||
|
||||
```config
|
||||
service routing protocols model multi-agent
|
||||
```
|
||||
|
||||
## IP address Configuration
|
||||
|
||||
Configure need to match with [Lab Topology](../../lab_vxlan.yml)
|
||||
|
||||
```yml
|
||||
links:
|
||||
- endpoints: ["spine1:eth1", "leaf1:eth1"]
|
||||
- endpoints: ["spine1:eth2", "leaf2:eth1"]
|
||||
- endpoints: ["leaf1:eth2", "host1:eth1"]
|
||||
- endpoints: ["leaf2:eth2", "host2:eth1"]
|
||||
```
|
||||
|
||||
That means :
|
||||
|
||||
```config
|
||||
interface Ethernet1
|
||||
description TO_SPINE01
|
||||
no switchport
|
||||
ip address 10.1.1.3/31
|
||||
!
|
||||
interface Ethernet2
|
||||
description TO_HOST2
|
||||
switchport mode trunk
|
||||
!
|
||||
interface Loopback0
|
||||
description VTEP
|
||||
ip address 10.10.110.2/32
|
||||
!
|
||||
```
|
||||
|
||||
## BGP Protocol
|
||||
|
||||
```config
|
||||
router bgp 65102
|
||||
router-id 10.10.110.2
|
||||
maximum-paths 4 ecmp 4
|
||||
neighbor SPINE_GROUP peer group
|
||||
neighbor SPINE_GROUP allowas-in 1
|
||||
neighbor SPINE_GROUP ebgp-multihop 4
|
||||
neighbor SPINE_GROUP send-community extended
|
||||
neighbor SPINE_GROUP maximum-routes 12000
|
||||
neighbor 10.1.1.2 peer group SPINE_GROUP
|
||||
neighbor 10.1.1.2 remote-as 65001
|
||||
!
|
||||
address-family ipv4
|
||||
neighbor 10.1.1.0 activate
|
||||
```
|
||||
56
documentation/eos configuration/spine1.md
Normal file
56
documentation/eos configuration/spine1.md
Normal file
@@ -0,0 +1,56 @@
|
||||
# Spine 1 configuration
|
||||
|
||||
## Pre-config Setup
|
||||
|
||||
Enable the multi-agent configuration on Arista switch to be able to use EVPN feature
|
||||
|
||||
```config
|
||||
service routing protocols model multi-agent
|
||||
```
|
||||
|
||||
## IP address Configuration
|
||||
|
||||
Configure need to match with [Lab Topology](../../lab_vxlan.yml)
|
||||
|
||||
```yml
|
||||
links:
|
||||
- endpoints: ["spine1:eth1", "leaf1:eth1"]
|
||||
- endpoints: ["spine1:eth2", "leaf2:eth1"]
|
||||
- endpoints: ["leaf1:eth2", "host1:eth1"]
|
||||
- endpoints: ["leaf2:eth2", "host2:eth1"]
|
||||
```
|
||||
|
||||
That means :
|
||||
|
||||
```config
|
||||
interface Ethernet1
|
||||
description TO_LEAF01
|
||||
no switchport
|
||||
ip address 10.1.1.0/31
|
||||
!
|
||||
interface Ethernet2
|
||||
description TO_LEAF02
|
||||
no switchport
|
||||
ip address 10.1.1.2/31
|
||||
```
|
||||
|
||||
## BGP Protocol
|
||||
|
||||
```config
|
||||
router bgp 65001
|
||||
router-id 10.10.100.1
|
||||
maximum-paths 4 ecmp 4
|
||||
neighbor LEAF_GROUP peer group
|
||||
neighbor LEAF_GROUP allowas-in 1
|
||||
neighbor LEAF_GROUP ebgp-multihop 4
|
||||
neighbor LEAF_GROUP send-community extended
|
||||
neighbor LEAF_GROUP maximum-routes 12000
|
||||
neighbor 10.1.1.1 peer group LEAF_GROUP
|
||||
neighbor 10.1.1.1 remote-as 65101
|
||||
neighbor 10.1.1.3 peer group LEAF_GROUP
|
||||
neighbor 10.1.1.3 remote-as 65102
|
||||
!
|
||||
address-family ipv4
|
||||
neighbor 10.1.1.1 activate
|
||||
neighbor 10.1.1.3 activate
|
||||
```
|
||||
Reference in New Issue
Block a user