Deploying a Cisco Data Center

Module 1: Configure Spine VXLAN EVPN

In this module, you will configure the VXLAN EVPN feature and control plane on the Spine switch.

vxlan_evpn-7
  1. Enable the VXLAN EVPN control plane feature on the Spine switch.

POD-0-Spine-:


        #Config Block 1

        config
        feature bgp
        feature nv overlay
        end
    
  1. Configure MP-iBGP EVPN on the Spine.

POD-0-Spine-:


        #Config Block 2

        config
        nv overlay evpn
        router bgp 65000
            template peer iBGP-EVPN
                remote-as 65000
                update-source loopback0
                address-family l2vpn evpn
                    send-community extended
                    route-reflector-client
            neighbor 0.0.0.3
                inherit peer iBGP-EVPN
            neighbor 0.0.0.4
                inherit peer iBGP-EVPN
            exit
        end