Rename devices to <area>-<role> scheme
DC fabric: spine/leaf/border-leaf/access/host -> dc-spine, dc-leaf, dc-border-leaf, dc-access, dc-server. Campus border leafs flipped from border-leaf-campus to campus-border-leaf for consistency. Core, campus spines/leafs/access/hosts unchanged. Updates topology, annotations, all configs (hostnames + peer descriptions), host interface files, README, TROUBLESHOOTING, END_TO_END_TESTING, and the SVG diagram.
This commit is contained in:
171
configs/dc-leaf6.cfg
Normal file
171
configs/dc-leaf6.cfg
Normal file
@@ -0,0 +1,171 @@
|
||||
! DC-Leaf6 Configuration
|
||||
! VTEP3 - AS 65003
|
||||
!
|
||||
hostname dc-leaf6
|
||||
!
|
||||
! LLDP Management0
|
||||
lldp management-address Management0
|
||||
!
|
||||
! enable gNMI API
|
||||
management api gnmi
|
||||
transport grpc default
|
||||
provider eos-native
|
||||
!
|
||||
! admin/admin for ssh access
|
||||
username admin privilege 15 role network-admin secret sha512 $6$xQktFrbdeqEhVzLM$.1wOJB25nw2fqYaSXDu6y4mo6AP9hngMCFe2vGDl84hWoz00Q.4unoEBqspNI0HEoRz.OZhdBHqQv12KABf0B0
|
||||
!
|
||||
! Enable routing protocols
|
||||
service routing protocols model multi-agent
|
||||
!
|
||||
! VLANs
|
||||
vlan 40
|
||||
name test-l2-vxlan
|
||||
!
|
||||
vlan 4090
|
||||
name mlag-peer
|
||||
trunk group mlag-peer
|
||||
!
|
||||
vlan 4091
|
||||
name mlag-ibgp
|
||||
trunk group mlag-peer
|
||||
!
|
||||
! Management interface
|
||||
interface Management0
|
||||
ip address 172.16.0.30/24
|
||||
!
|
||||
! MLAG Peer-link SVI
|
||||
interface Vlan4090
|
||||
description MLAG Peer-Link
|
||||
ip address 10.0.199.251/31
|
||||
no autostate
|
||||
!
|
||||
! iBGP Peering SVI
|
||||
interface Vlan4091
|
||||
description MLAG iBGP Peering
|
||||
ip address 10.0.3.5/31
|
||||
mtu 9214
|
||||
!
|
||||
! Loopbacks
|
||||
interface Loopback0
|
||||
description Router-ID
|
||||
ip address 10.0.250.16/32
|
||||
!
|
||||
interface Loopback1
|
||||
description VTEP
|
||||
ip address 10.0.255.13/32
|
||||
!
|
||||
! MLAG Peer-link
|
||||
interface Ethernet10
|
||||
description mlag peer link
|
||||
channel-group 999 mode active
|
||||
!
|
||||
interface Port-Channel999
|
||||
description MLAG Peer
|
||||
switchport mode trunk
|
||||
switchport trunk group mlag-peer
|
||||
spanning-tree link-type point-to-point
|
||||
!
|
||||
! Underlay P2P interfaces to Spines
|
||||
interface Ethernet11
|
||||
description dc-spine1
|
||||
no switchport
|
||||
ip address 10.0.1.11/31
|
||||
mtu 9214
|
||||
!
|
||||
interface Ethernet12
|
||||
description dc-spine2
|
||||
no switchport
|
||||
ip address 10.0.2.11/31
|
||||
mtu 9214
|
||||
!
|
||||
! Access-facing interface (MLAG with LACP)
|
||||
interface Ethernet1
|
||||
description dc-access3
|
||||
channel-group 1 mode active
|
||||
!
|
||||
interface Port-Channel1
|
||||
description dc-access3
|
||||
switchport mode trunk
|
||||
switchport trunk allowed vlan 40
|
||||
mlag 1
|
||||
port-channel lacp fallback timeout 5
|
||||
port-channel lacp fallback individual
|
||||
no shutdown
|
||||
!
|
||||
! Spanning-tree
|
||||
no spanning-tree vlan 4090
|
||||
no spanning-tree vlan 4091
|
||||
!
|
||||
! Virtual MAC for Anycast Gateway
|
||||
ip virtual-router mac-address c001.cafe.babe
|
||||
!
|
||||
! MLAG Configuration
|
||||
mlag configuration
|
||||
domain-id leafs
|
||||
local-interface Vlan4090
|
||||
peer-address 10.0.199.250
|
||||
peer-link Port-Channel999
|
||||
dual-primary detection delay 10 action errdisable all-interfaces
|
||||
peer-address heartbeat 172.16.0.29 vrf mgmt
|
||||
!
|
||||
! VXLAN Interface
|
||||
interface Vxlan1
|
||||
vxlan source-interface Loopback1
|
||||
vxlan udp-port 4789
|
||||
vxlan learn-restrict any
|
||||
vxlan vlan 40 vni 110040
|
||||
!
|
||||
! IP Routing
|
||||
ip routing
|
||||
ip route 100.64.0.0/10 172.16.0.254
|
||||
!
|
||||
! BGP Configuration
|
||||
router bgp 65003
|
||||
router-id 10.0.250.16
|
||||
no bgp default ipv4-unicast
|
||||
bgp log-neighbor-changes
|
||||
distance bgp 20 200 200
|
||||
maximum-paths 4 ecmp 64
|
||||
!
|
||||
! Underlay peer-group
|
||||
neighbor underlay peer group
|
||||
neighbor underlay remote-as 65000
|
||||
neighbor underlay maximum-routes 12000 warning-only
|
||||
neighbor 10.0.1.10 peer group underlay
|
||||
neighbor 10.0.2.10 peer group underlay
|
||||
!
|
||||
! iBGP peer-group
|
||||
neighbor underlay_ibgp peer group
|
||||
neighbor underlay_ibgp remote-as 65003
|
||||
neighbor underlay_ibgp maximum-routes 12000 warning-only
|
||||
neighbor underlay_ibgp next-hop-self
|
||||
neighbor 10.0.3.4 peer group underlay_ibgp
|
||||
!
|
||||
! EVPN peer-group
|
||||
neighbor evpn peer group
|
||||
neighbor evpn remote-as 65000
|
||||
neighbor evpn update-source Loopback0
|
||||
neighbor evpn ebgp-multihop 3
|
||||
neighbor evpn send-community extended
|
||||
neighbor evpn maximum-routes 12000 warning-only
|
||||
neighbor 10.0.250.1 peer group evpn
|
||||
neighbor 10.0.250.2 peer group evpn
|
||||
!
|
||||
! VLAN 40 for L2 VXLAN
|
||||
vlan 40
|
||||
rd 65003:110040
|
||||
route-target both 40:110040
|
||||
redistribute learned
|
||||
!
|
||||
! IPv4 address family
|
||||
address-family ipv4
|
||||
neighbor underlay activate
|
||||
neighbor underlay_ibgp activate
|
||||
network 10.0.250.16/32
|
||||
network 10.0.255.13/32
|
||||
!
|
||||
! EVPN address family
|
||||
address-family evpn
|
||||
neighbor evpn activate
|
||||
!
|
||||
end
|
||||
Reference in New Issue
Block a user