what are the config steps to deploy vxlan-ms on leaf?
which features do you need to enable on N9K leaf for vxlan evpn?
cfs eth distribute nv overlay evpn feature ospf feature bgp feature pim feature fabric forwarding feature interface-vlan feature vn-segment-vlan-based feature lacp feature vpc feature nv overlay
which features do you need to enable on N7K spine for vxlan evpn?
feature-set fabric
feature bgp
feature fabric forwarding
feature vni
feature interface-vlan
feature nv overlay
which features do you need to enable on N56K leaf for vxlan evpn?
install feature-set fabric feature-set fabric feature fabric forwarding nv overlay evpn feature ospf feature bgp feature pim feature bfd feature nv overlay feature nxapi feature vn-segment-vlan-based ! feature ngoam ! optional hardware ethernet store-and-fwd-switching
how do you set the multi-site ID?
evpn multisite border-gateway
where do you set the source IP for the multi-site BGW function?
interface nve1
host-reachability protocol bgp
source-interface loopback1
multisite border-gateway interface loopback100
how do you make sure, that traffic is not blackholed in BGW if the external connection is down?
configure multi-site DCI tracking on all external facing interfaces which participate in external overlay
int ethx/y
evpn multisite dci-tracking
which parameters are mandatory in the neighborship statement (bgp) when configuring multi-site neighbohrs ?
peer type fabric-external
address-family l2vpn evpn
rewrite-evpn-rt-asn
what is an easy way to prevent that you are anouncing your fabric-local default-route to the other site(s)? (avoid to become a transit fabric)
ip prefix-list NODEF seq 5 permit 0.0.0.0/0
route-map NODEFAULT deny 10
match ip address prefix-list NODEF
route-map NODEFAULT permit 1000
then on neighbor-statement:
route-map NODEFAULT out
repeat the steps to make an n9k a BGW
name the steps to create vn-segements in N7K and map them to VLANs
vni 30000
system bridge-domain 200-210
bridge-domain 200
member vni 30000
encapsulation profile vni cisco
dot1q 50 vni 30000
interface Ethernet 1/12
no shutdown
no switchport
service instance 1 vni
encapsulation profile cisco default
no shutdownwhat is a typical trap, when you configure vxlan (flood and learn) on N7K, all interfaces are up, NVE peers see each other, but the N7K do not learn MAC addresses of local attached devices?
the service instance under the interface needs an explicit “no shutdown” command
int e3/6
no shut
service instance 1 vni
NO SHUT
encapsulation profile DC_VXLAN defaulthow do you enable jumbo MTU on N5K?
n5k-switch#configure terminal n5k-switch(config)#policy-map type network-qos jumbo n5k-switch(config-pmap-nq)#class type network-qos class-default n5k-switch(config-pmap-c-nq)#mtu 9216 n5k-switch(config-pmap-c-nq)#exit n5k-switch(config-pmap-nq)#exit n5k-switch(config)#system qos n5k-switch(config-sys-qos)#service-policy type network-qos jumbo
how do you enable fcoe qos together with jumbo on N5K?
n5k-switch#configure terminal n5k-switch(config)#policy-map type network-qos jumbo n5k-switch(config-pmap-nq)#class type network-qos class-default n5k-switch(config-pmap-c-nq)#mtu 9216 n5k-switch(config-pmap-c-nq)#exit n5k-switch(config-pmap-nq)#class type network-qos class-fcoe n5k-switch(config)#system qos n5k-switch(config-sys-qos)#service-policy type network-qos jumbo