EVPN L3 Gateway with VXLAN Stitching
Overview
Layer 3 EVPN Gateway Stitching in OcNOS enables seamless IP connectivity between isolated VXLAN EVPN domains or VRFs without merging their control planes or Layer 2 broadcast domains. This approach is designed for multi-site data center interconnect, multi-PoD fabrics, and hybrid cloud deployments, where scalable and secure routing between domains is required.
EVPN stitching is supported on TD3 and TD4 data center platforms using EVPN Type-5 routes at border leaf or spine devices. The solution provides route translation, loop prevention, policy-based route control, and operational visibility, ensuring flexible and modular data center expansion.
Feature Characteristics
• Maintains independent EVPN control planes across domains while enabling IP-level connectivity.
• Uses EVPN Type-5 route stitching at border leaf/spine nodes for prefix exchange.
• Supports multiple domains, Multi-PoD fabrics, and inter-DC connectivity without merging VNIs or broadcast domains.
Benefits
• Provides IP-level communication between isolated VXLAN EVPN domains without merging their control planes.
• Enables multi-site, multi-PoD, and hybrid cloud deployments with independent scaling per domain.
• Route-maps and policy tools allow selective advertisement and filtering of prefixes.
Prerequisites
Below CLIs need to be configured, saved, and the node should be rebooted before proceeding to configure the EVPN L3 gateway VXLAN stitching commands.
OcNOS#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
OcNOS(config)#nvo vxlan enable
OcNOS(config)#nvo vxlan irb
OcNOS(config)#commit
OcNOS(config)#end
OcNOS#write
Building configuration...
[OK]
OcNOS#reload
Are you sure you would like to reset the system? (y/n): y
Device rebooted by ocnos user from cmlsh at time:Tue Oct 7 18:33:51 2025
OcNOS#
Limitation
• Type-5 Only – Only EVPN Type-5 route stitching is supported. Other route types (e.g., Type-2) must be converted to Type-5 before stitching.
• Static VXLAN Tunnels – Not supported; stitching is limited to dynamic EVPN-based VXLAN.
• Management Support – SNMP and OpenConfig are not supported in this release; only CLI and Netconf are available.
• Platform Scope – Supported only on TD3 and TD4 data center platforms.
• Scale – Supported up to four border gateways.
• ECMP overlay over L3 Gateway - Not supported
• peer-type fabric-external option - Not supported under BGP l2vpn-unnumbered-mode for the l2vpn evpn address family.
• Advanced QoS, ACLs, or telemetry extensions across stitched domains are not included.
Configuration
Topology
The diagram depicts a multi-site data center fabric topology with Spine–Leaf architecture and Super-Spine layers, showing inter-site connectivity between Site A and Site B using VxLAN/EVPN with L3/L2 stitching.
Figure 8-1 displays a sample VxLAN/EVPN with L3/L2 stitching topology.
EVPN L3 Gateway with VXLAN Stitching topology
BLEAF1 Configuration
1. Enable VXLAN and IRB.
#configure terminal
(config)#nvo vxlan enable
(config)#nvo vxlan irb
2. Enable EVPN VXLAN multihoming.
(config)#evpn vxlan multihoming enable
3. Configure L3 VRF with EVPN stitching and enable EVPN stitching.
(config)#ip vrf l3_vrf_1
(config-vrf)#rd 7005:1001
(config-vrf)#route-target both 1001:1001
(config-vrf)#l3vni 1000
(config-vrf)#evpn-stitching
(config-vrf-evpn)#rd 7005:7001
(config-vrf-evpn)#route-target both 7001:7001
(config-vrf-evpn)#host-route-extend-l2vni 1001-1002
(config-vrf-evpn)#translation-l3vni 2000
(config-vrf-evpn)#exit-config-vrf-evpn-mode
(config-vrf)#commit
(config-vrf)#exit
4. Configure global VTEP IP.
(config)#nvo vxlan vtep-ip-global 10.10.10.5
5. Define route-maps for EVPN control.
(config)#route-map R1 permit 1
(config-route-map)#set extcommunity soo 1004:1004
(config-route-map)#commit
(config-route-map)#exit
(config)#route-map R2 deny 1
(config-route-map)#match extcommunity S1
(config-route-map)#commit
(config-route-map)#exit
(config)#route-map R2 permit 2
(config-route-map)#match evpn-route-type type-5
(config-route-map)#commit
(config-route-map)#exit
(config)#route-map R2 permit 3
(config-route-map)#match evpn-route-type type-2
(config-route-map)#commit
(config-route-map)#exit
(config)#route-map R3 permit 1
(config-route-map)#set extcommunity soo 2008:2008
(config-route-map)#commit
(config-route-map)#exit
(config)#route-map R4 deny 1
(config-route-map)#match extcommunity S2
(config-route-map)#commit
(config-route-map)#exit
(config)#route-map R4 permit 2
(config-route-map)#match evpn-route-type type-5
(config-route-map)#commit
(config-route-map)#exit
(config)#route-map R4 permit 3
(config-route-map)#match evpn-route-type type-2
(config-route-map)#commit
(config-route-map)#exit
(config)#route-map R4 permit 4
(config-route-map)#match evpn-route-type type-1
(config-route-map)#commit
(config-route-map)#exit
6. Configure interfaces.
(config)#interface cd32/1
(config-if)#load-interval 30
(config-if)#commit
(config-if)#exit
(config)#interface lo
(config-if)#ip address 127.0.0.1/8
(config-if)#ip address 10.10.10.5/32 secondary
(config-if)#ipv6 address ::1/128
(config-if)#commit
(config-if)#exit
(config)#interface xe33
(config-if)#load-interval 30
(config-if)#ip address 17.20.20.1/24
(config-if)#commit
(config-if)#exit
(config)#interface xe34
(config-if)#load-interval 30
(config-if)#ip address 17.21.21.1/24
(config-if)#commit
(config-if)#exit
7. Enable OSPF for underlay.
(config)#router ospf 100
(config-router)#bfd all-interfaces
(config-router)#network 10.10.10.5/32 area 0.0.0.0
(config-router)#network 17.20.20.0/24 area 0.0.0.0
(config-router)#network 17.21.21.0/24 area 0.0.0.0
(config-router)#commit
(config-router)#exit
8. Configure BGP global parameters and BGP EVPN overlay peers.
(config)#router bgp 65004
(config-router)#bgp router-id 10.10.10.5
(config-router)#bgp auto-policy-soft-reset enable
(config-router)#no bgp inbound-route-filter
(config-router)#neighbor 10.10.10.21 remote-as 65005
(config-router)#neighbor 10.10.10.21 update-source lo
(config-router)#neighbor 10.10.10.22 remote-as 65006
(config-router)#neighbor 10.10.10.22 update-source lo
9. Configure BGP Unnumbered (DCI / External Fabric) and EVPN for Unnumbered Peers.
(config-router)#bgp unnumbered-mode
(config-router-unnum)#neighbor cd31/1 remote-as external
(config-router-unnum)#neighbor cd31/1 as-origination-interval 1
(config-router-unnum)#neighbor cd31/1 advertisement-interval 0
(config-router-unnum)#neighbor cd31/1 fall-over bfd
(config-router-unnum)#neighbor cd2/1 remote-as external
(config-router-unnum)#neighbor cd2/1 as-origination-interval 1
(config-router-unnum)#neighbor cd2/1 advertisement-interval 0
(config-router-unnum)#neighbor cd2/1 fall-over bfd
(config-router-unnum)#exit-unnumbered-mode
10. Configure BGP IPv4 Unicast Address Family with v4 Unnumbered Neighbors.
(config-router)#address-family ipv4 unicast
(config-router-af)#network 10.10.10.5/32
(config-router-af)#max-paths ebgp 4
(config-router-af)#redistribute connected
(config-router-af)#bgp v4-unnumbered-mode
(config-router-v4-unnum)#neighbor cd31/1 activate
(config-router-v4-unnum)#neighbor cd2/1 activate
(config-router-v4-unnum)#exit-v4-unnumbered-mode
(config-router-af)#exit-address-family
11. Configure BGP L2VPN EVPN with Numbered and Unnumbered Neighbors.
(config-router)#address-family l2vpn evpn
(config-router-af)#neighbor 10.10.10.21 activate
(config-router-af)#neighbor 10.10.10.21 peer-type fabric-external
(config-router-af)#neighbor 10.10.10.21 allowas-in 1
(config-router-af)#neighbor 10.10.10.21 route-map R2 in
(config-router-af)#neighbor 10.10.10.21 route-map R1 out
(config-router-af)#neighbor 10.10.10.22 activate
(config-router-af)#neighbor 10.10.10.22 peer-type fabric-external
(config-router-af)#neighbor 10.10.10.22 allowas-in 1
(config-router-af)#neighbor 10.10.10.22 route-map R2 in
(config-router-af)#neighbor 10.10.10.22 route-map R1 out
(config-router-af)#bgp l2vpn-unnumbered-mode
(config-router-v4-unnum)#neighbor cd31/1 activate
(config-router-v4-unnum)#neighbor cd31/1 allowas-in 1
(config-router-v4-unnum)#neighbor cd31/1 route-map R4 in
(config-router-v4-unnum)#neighbor cd31/1 route-map R3 out
(config-router-v4-unnum)#neighbor cd2/1 activate
(config-router-v4-unnum)#neighbor cd2/1 allowas-in 1
(config-router-v4-unnum)#neighbor cd2/1 route-map R4 in
(config-router-v4-unnum)#neighbor cd2/1 route-map R3 out
(config-router-v4-unnum)#exit-l2vpn-unnumbered-mode
(config-router-af)#exit-address-family
(config-router)#commit
(config-router)#exit
12. Define extended community lists.
(config)#ip extcommunity-list standard S1 permit soo 1004:1004
(config)#ip extcommunity-list standard S2 permit soo 2008:2008
(config)#end
BLEAF2 Configuration
1. Enable VXLAN and IRB.
#configure terminal
(config)#nvo vxlan enable
(config)#nvo vxlan irb
2. Enable EVPN VXLAN multihoming.
(config)#evpn vxlan multihoming enable
3. Configure L3 VRF with EVPN stitching.
(config)#ip vrf l3_vrf_1
(config-vrf)#rd 7006:1001
(config-vrf)#route-target both 1001:1001
(config-vrf)#l3vni 1000
(config-vrf)#evpn-stitching
(config-vrf-evpn)#rd 7006:7001
(config-vrf-evpn)#route-target both 7001:7001
(config-vrf-evpn)#host-route-extend-l2vni 1001-1002
(config-vrf-evpn)#translation-l3vni 2000
(config-vrf-evpn)#exit-config-vrf-evpn-mode
(config-vrf)#commit
(config-vrf)#exit
4. Configure the Global VTEP IP address.
(config)#nvo vxlan vtep-ip-global 10.10.10.6
5. Define route-maps for EVPN control.
(config)#route-map R1 permit 1
(config-route-map)#set extcommunity soo 1004:1004
(config-route-map)#commit
(config-route-map)#exit
(config)#route-map R2 deny 1
(config-route-map)#match extcommunity S1
(config-route-map)#commit
(config-route-map)#exit
(config)#route-map R2 permit 2
(config-route-map)#match evpn-route-type type-5
(config-route-map)#commit
(config-route-map)#exit
(config)#route-map R2 permit 3
(config-route-map)#match evpn-route-type type-2
(config-route-map)#commit
(config-route-map)#exit
(config)#route-map R3 permit 1
(config-route-map)#set extcommunity soo 2008:2008
(config-route-map)#commit
(config-route-map)#exit
(config)#route-map R4 deny 1
(config-route-map)#match extcommunity S2
(config-route-map)#commit
(config-route-map)#exit
(config)#route-map R4 permit 2
(config-route-map)#match evpn-route-type type-5
(config-route-map)#commit
(config-route-map)#exit
(config)#route-map R4 permit 3
(config-route-map)#match evpn-route-type type-2
(config-route-map)#commit
(config-route-map)#exit
(config)#route-map R4 permit 4
(config-route-map)#match evpn-route-type type-1
(config-route-map)#commit
(config-route-map)#exit
6. Configure interfaces.
(config)#interface ce50/1
(config-if)#load-interval 30
(config-if)#ip address 17.22.22.1/24
(config-if)#commit
(config-if)#exit
(config)#interface ce52
(config-if)#load-interval 30
(config-if)#commit
(config-if)#exit
(config)#interface ce53
(config-if)#load-interval 30
(config-if)#commit
(config-if)#exit
(config)#interface ce54/1
(config-if)#load-interval 30
(config-if)#ip address 17.23.23.1/24
(config-if)#commit
(config-if)#exit
(config)#interface eth0
(config-if)#ip vrf forwarding management
(config-if)#ip address dhcp
(config-if)#commit
(config-if)#exit
(config)#interface lo
(config-if)#ip address 127.0.0.1/8
(config-if)#ip address 10.10.10.6/32 secondary
(config-if)#ipv6 address ::1/128
(config-if)#commit
(config-if)#exit
7. Enable OSPF for underlay.
(config)#router ospf 100
(config-router)#bfd all-interfaces
(config-router)#network 10.10.10.6/32 area 0.0.0.0
(config-router)#network 17.22.22.0/24 area 0.0.0.0
(config-router)#network 17.23.23.0/24 area 0.0.0.0
(config-router)#commit
(config-router)#exit
8. Configure BGP global parameters and BGP EVPN overlay peers.
(config)#router bgp 65004
(config-router)#bgp router-id 10.10.10.6
(config-router)#bgp auto-policy-soft-reset enable
(config-router)#no bgp inbound-route-filter
(config-router)#neighbor 10.10.10.21 remote-as 65005
(config-router)#neighbor 10.10.10.21 update-source lo
(config-router)#neighbor 10.10.10.21 as-origination-interval 1
(config-router)#neighbor 10.10.10.21 advertisement-interval 0
(config-router)#neighbor 10.10.10.22 remote-as 65006
(config-router)#neighbor 10.10.10.22 update-source lo
(config-router)#neighbor 10.10.10.22 as-origination-interval 1
(config-router)#neighbor 10.10.10.22 advertisement-interval 0
9. Configure BGP unnumbered (DCI / External Fabric) and EVPN for unnumbered peers.
(config-router)#bgp unnumbered-mode
(config-router-unnum)#neighbor ce52 remote-as external
(config-router-unnum)#neighbor ce52 as-origination-interval 1
(config-router-unnum)#neighbor ce52 advertisement-interval 0
(config-router-unnum)#neighbor ce52 fall-over bfd
(config-router-unnum)#neighbor ce53 remote-as external
(config-router-unnum)#neighbor ce53 as-origination-interval 1
(config-router-unnum)#neighbor ce53 advertisement-interval 0
(config-router-unnum)#neighbor ce53 fall-over bfd
(config-router-unnum)#exit-unnumbered-mode
(config-router)#commit
(config-router)#exit
10. Configure BGP IPv4 Unicast address family with v4 unnumbered neighbors.
(config)#address-family ipv4 unicast
(config-router-af)#network 10.10.10.6/32
(config-router-af)#max-paths ebgp 4
(config-router-af)#redistribute connected
(config-router-v4-unnum)#bgp v4-unnumbered-mode
(config-router-v4-unnum)#neighbor ce52 activate
(config-router-v4-unnum)#neighbor ce53 activate
(config-router-v4-unnum)#exit-v4-unnumbered-mode
(config-router-af)#exit-address-family
(config-router)#commit
(config-router)#exit
11. Configure BGP L2VPN EVPN with numbered and unnumbered neighbors.
(config)#address-family l2vpn evpn
(config-af)#neighbor 10.10.10.21 activate
(config-af)#neighbor 10.10.10.21 peer-type fabric-external
(config-af)#neighbor 10.10.10.21 allowas-in 1
(config-af)#neighbor 10.10.10.21 route-map R2 in
(config-af)#neighbor 10.10.10.21 route-map R1 out
(config-af)#neighbor 10.10.10.22 activate
(config-af)#neighbor 10.10.10.22 peer-type fabric-external
(config-af)#neighbor 10.10.10.22 allowas-in 1
(config-af)#neighbor 10.10.10.22 route-map R2 in
(config-af)#neighbor 10.10.10.22 route-map R1 out
(config-router-l2vpn-unnum)#bgp l2vpn-unnumbered-mode
(config-router-l2vpn-unnum)#neighbor ce52 activate
(config-router-l2vpn-unnum)#neighbor ce52 allowas-in 1
(config-router-l2vpn-unnum)#neighbor ce52 route-map R4 in
(config-router-l2vpn-unnum)#neighbor ce52 route-map R3 out
(config-router-l2vpn-unnum)#neighbor ce53 activate
(config-router-l2vpn-unnum)#neighbor ce53 allowas-in 1
(config-router-l2vpn-unnum)#neighbor ce53 route-map R4 in
(config-router-l2vpn-unnum)#neighbor ce53 route-map R3 out
(config-router-l2vpn-unnum)#exit-l2vpn-unnumbered-mode
(config-router)#exit-address-family
(config-router)#commit
(config-router)#exit
12. Define extended community lists.
(config)#ip extcommunity-list standard S1 permit soo 1004:1004
(config)#ip extcommunity-list standard S2 permit soo 2008:2008
(config)#end
BLEAF3 Configuration
1. Enable VXLAN and IRB.
#configure terminal
(config)#nvo vxlan enable
(config)#nvo vxlan irb
2. Enable EVPN VXLAN multihoming.
(config)#evpn vxlan multihoming enable
3. Configure L3 VRF with EVPN stitching.
(config)#ip vrf l3_vrf_1
(config-vrf)#rd 7007:5001
(config-vrf)#route-target both 5001:5001
(config-vrf)#l3vni 1000
(config-vrf)#evpn-stitching
(config-vrf-evpn)#rd 7007:7001
(config-vrf-evpn)#route-target both 7001:7001
(config-vrf-evpn)#host-route-extend-l2vni 1001-1002
(config-vrf-evpn)#translation-l3vni 2000
(config-vrf-evpn)#exit-config-vrf-evpn-mode
4. Configure the Global VTEP IP address.
(config)#nvo vxlan vtep-ip-global 10.10.10.7
5. Define route-maps for EVPN control.
(config)#route-map R1 permit 1
(config-route-map)#set extcommunity soo 1005:1005
(config-route-map)#exit
(config-router)#commit
(config-router)#exit
(config)#route-map R2 deny 1
(config-route-map)#match extcommunity S1
(config-route-map)#exit
(config-router)#commit
(config-router)#exit
(config)#route-map R2 permit 2
(config-route-map)#match evpn-route-type type-5
(config-route-map)#exit
(config-router)#commit
(config-router)#exit
(config)#route-map R2 permit 3
(config-route-map)#match evpn-route-type type-2
(config-route-map)#exit
(config-router)#commit
(config-router)#exit
6. Configure interfaces.
(config)#interface lo
(config-if)#ip address 127.0.0.1/8
(config-if)#ip address 10.10.10.7/32 secondary
(config-if)#ipv6 address ::1/128
(config-if)#commit
(config-if)#exit
(config)#interface xe2
(config-if)#load-interval 30
(config-if)#ip address 17.19.19.1/24
(config-if)#commit
(config-if)#exit
(config)#interface xe3
(config-if)#load-interval 30
(config-if)#ip address 17.18.18.1/24
(config-if)#commit
(config-if)#exit
(config)#interface xe4
(config-if)#load-interval 30
(config-if)#commit
(config-if)#exit
7. Enable OSPF for underlay.
(config)#router ospf 100
(config-router)#bfd all-interfaces
(config-router)#network 10.10.10.7/32 area 0.0.0.0
(config-router)#network 17.18.18.0/24 area 0.0.0.0
(config-router)#network 17.19.19.0/24 area 0.0.0.0
(config-router)#commit
(config-router)#exit
8. Configure BGP global parameters and BGP EVPN overlay peers.
(config-router)#router bgp 65004
(config-router)#bgp router-id 10.10.10.7
(config-router)#bgp auto-policy-soft-reset enable
(config-router)#no bgp inbound-route-filter
(config-router)#neighbor 10.10.10.21 remote-as 65005
(config-router)#neighbor 10.10.10.21 update-source lo
(config-router)#neighbor 10.10.10.21 as-origination-interval 1
(config-router)#neighbor 10.10.10.21 advertisement-interval 0
(config-router)#neighbor 10.10.10.22 remote-as 65006
(config-router)#neighbor 10.10.10.22 update-source lo
(config-router)#neighbor 10.10.10.22 as-origination-interval 1
(config-router)#neighbor 10.10.10.22 advertisement-interval 0
9. Configure BGP unnumbered (DCI / External Fabric) and EVPN for unnumbered peers.
(config-router)#bgp unnumbered-mode
(config-router-unnum)#neighbor xe7 remote-as external
(config-router-unnum)#neighbor xe7 as-origination-interval 1
(config-router-unnum)#neighbor xe7 advertisement-interval 0
(config-router-unnum)#neighbor xe7 fall-over bfd
(config-router-unnum)#exit-unnumbered-mode
(config-router)#commit
(config-router)#exit
10. Configure BGP IPv4 Unicast address family with v4 unnumbered neighbors.
(config)#address-family ipv4 unicast
(config-af)#network 10.10.10.7/32
(config-af)#max-paths ebgp 4
(config-af)#redistribute connected
(config-af-unnum)#bgp v4-unnumbered-mode
(config-af-unnum)#neighbor xe7 activate
(config-af-unnum)#exit-v4-unnumbered-mode
(config-af)#commit
(config-af)#exit-address-family
11. Configure BGP L2VPN EVPN with numbered and unnumbered neighbors.
(config)#address-family l2vpn evpn
(config-af)#neighbor 10.10.10.21 activate
(config-af)#neighbor 10.10.10.21 peer-type fabric-external
(config-af)#neighbor 10.10.10.21 allowas-in 1
(config-af)#neighbor 10.10.10.21 route-map R2 in
(config-af)#neighbor 10.10.10.21 route-map R1 out
(config-af)#neighbor 10.10.10.22 activate
(config-af)#neighbor 10.10.10.22 peer-type fabric-external
(config-af)#neighbor 10.10.10.22 allowas-in 1
(config-af)#neighbor 10.10.10.22 route-map R2 in
(config-af)#neighbor 10.10.10.22 route-map R1 out
(config-af)#bgp l2vpn-unnumbered-mode
(config-af-unnum)#neighbor xe7 activate
(config-af-unnum)#neighbor xe7 allowas-in 1
(config-af-unnum)#exit-l2vpn-unnumbered-mode
(config-af)#commit
(config-af)#exit-address-family
12. Define extended community lists.
(config)#ip extcommunity-list standard S1 permit soo 1005:1005
(config)#end
LEAF1 Configuration
1. Enable VXLAN and IRB.
#configure terminal
(config)#nvo vxlan enable
(config)#nvo vxlan irb
2. Configure EVPN ESI hold-time.
(config)#evpn esi hold-time 90
3. Enable EVPN VXLAN multihoming.
(config)#evpn vxlan multihoming enable
4. Configure L3 VRF with EVPN stitching.
(config)#ip vrf l3_vrf_1
(config-vrf)#rd 7001:1001
(config-vrf)#route-target both 1001:1001
(config-vrf)#l3vni 1000
(config-vrf)#commit
(config-vrf)#exit
5. Configure a MAC VRF (L2 VRF).
(config)#mac vrf l2_vrf_1
(config-vrf)#rd 10.10.10.1:1
(config-vrf)#route-target both 101:101
(config-vrf)#commit
(config-vrf)#exit
!
(config)#mac vrf l2_vrf_2
(config-vrf)#rd 10.10.10.1:2
(config-vrf)#route-target both 102:102
(config-vrf)#commit
(config-vrf)#exit
!
(config)#mac vrf l2_vrf_3
(config-vrf)#rd 10.10.10.1:3
(config-vrf)#route-target both 103:103
(config-vrf)#commit
(config-vrf)#exit
6. Configure the Global VTEP ip address.
(config)#nvo vxlan vtep-ip-global 10.10.10.1
7. Configure VXLAN L2 VNI with EVPN and IRB.
(config)#nvo vxlan id 1001 ingress-replication inner-vid-disabled
(config-nvo)#vxlan host-reachability-protocol evpn-bgp l2_vrf_1
(config-nvo)#evpn irb1001
(config-nvo)#evpn irb-advertise-host-route
(config-nvo)#commit
(config-nvo)#exit
(config)#nvo vxlan id 1002 ingress-replication inner-vid-disabled
(config-nvo)#vxlan host-reachability-protocol evpn-bgp l2_vrf_2
(config-nvo)#evpn irb1002
(config-nvo)#evpn irb-advertise-host-route
(config-nvo)#commit
(config-nvo)#exit
(config)#nvo vxlan id 1003 ingress-replication inner-vid-disabled
(config-nvo)#vxlan host-reachability-protocol evpn-bgp l2_vrf_3
(config-nvo)#evpn irb1003
(config-nvo)#evpn irb-advertise-host-route
(config-nvo)#commit
(config-nvo)#exit
8. Configure interfaces.
(config)#interface po1
(config-if)#switchport
(config-if)#bridge-group 1 spanning-tree disable
(config-if)#switchport mode hybrid
(config-if)#switchport mode hybrid acceptable-frame-type all
(config-if)#load-interval 30
(config-if)#evpn multi-homed system-mac 0000.aaaa.bbbb
(config-if)#commit
(config-if)#exit
(config)#interface irb1001
(config-if)#ip vrf forwarding l3_vrf_1
(config-if)#evpn irb-if-forwarding anycast-gateway-mac
(config-if)#ip address 101.1.1.1/8 anycast
(config-if)#ipv6 address 1001::1/48 anycast
(config-if)#commit
(config-if)#exit
(config)#interface irb1002
(config-if)#ip vrf forwarding l3_vrf_1
(config-if)#evpn irb-if-forwarding anycast-gateway-mac
(config-if)#ip address 102.1.1.1/8 anycast
(config-if)#ipv6 address 1002::1/48 anycast
(config-if)#commit
(config-if)#exit
(config)#interface irb1003
(config-if)#ip vrf forwarding l3_vrf_1
(config-if)#evpn irb-if-forwarding anycast-gateway-mac
(config-if)#ip address 103.1.1.1/8 anycast
(config-if)#ipv6 address 1003::1/48 anycast
(config-if)#commit
(config-if)#exit
(config)#interface lo
(config-if)#ip address 127.0.0.1/8
(config-if)#ip address 10.10.10.1/32 secondary
(config-if)#ipv6 address ::1/128
(config-if)#commit
(config-if)#exit
(config)#interface lo.management
(config-if)#ip vrf forwarding management
(config-if)#ip address 127.0.0.1/8
(config-if)#ipv6 address ::1/128
(config-if)#commit
(config-if)#exit
(config)#interface xe5
(config-if)#channel-group 1 mode active
(config-if)#commit
(config-if)#exit
(config)#interface xe8
(config-if)#load-interval 30
(config-if)#commit
(config-if)#exit
(config)#interface xe47
(config-if)#load-interval 30
(config-if)#commit
(config-if)#exit
!
(config)#interface xe57
(config-if)#switchport
(config-if)#commit
(config-if)#exit
9. Configure EVPN IRB forwarding with anycast gateway MAC.
(config)#evpn irb-forwarding anycast-gateway-mac 0000.0000.abcd
10. Configure BGP global parameters.
(config)#router bgp 65001
(config-router)#bgp router-id 10.10.10.1
(config-router)#no bgp inbound-route-filter
11. Configure BGP unnumbered and EVPN for unnumbered peers.
(config-router)#bgp unnumbered-mode
(config-router-unnum)#neighbor xe8 as-origination-interval 1
(config-router-unnum)#neighbor xe8 advertisement-interval 0
(config-router-unnum)#neighbor xe8 fall-over bfd
(config-router-unnum)#neighbor xe47 as-origination-interval 1
(config-router-unnum)#neighbor xe47 advertisement-interval 0
(config-router-unnum)#neighbor xe47 fall-over bfd
(config-router-unnum)#exit-unnumbered-mode
(config-router)#commit
(config-router)#exit
12. Configure BGP IPv4 Unicast address family with v4 unnumbered neighbors.
(config)#address-family ipv4 unicast
(config-af)#network 10.10.10.1/32
(config-af)#max-paths ebgp 4
(config-af)#redistribute connected
(config-af)#redistribute static
(config-router-v4-unnum)#bgp v4-unnumbered-mode
(config-router-v4-unnum)#neighbor xe8 activate
(config-router-v4-unnum)#neighbor xe8 allowas-in 1
(config-router-v4-unnum)#neighbor xe47 activate
(config-router-v4-unnum)#neighbor xe47 allowas-in 1
(config-router-v4-unnum)#exit-v4-unnumbered-mode
(config-router-af)#exit-address-family
13. Configure BGP L2VPN EVPN with numbered and unnumbered neighbors.
(config-router)#address-family l2vpn evpn
(config-router-af)#bgp l2vpn-unnumbered-mode
(config-router-l2vpn-unnum)#neighbor xe8 activate
(config-router-l2vpn-unnum)#neighbor xe8 allowas-in 1
(config-router-l2vpn-unnum)#neighbor xe47 activate
(config-router-l2vpn-unnum)#neighbor xe47 allowas-in 1
(config-router-l2vpn-unnum)#exit-l2vpn-unnumbered-mode
(config-router-af)#exit-address-family
14. Configure BGP IPv4 address family for an L3 VRF.
(config-router)#address-family ipv4 vrf l3_vrf_1
(config-router-af)#max-paths ebgp 4
(config-router-af)#redistribute connected
(config-router-af)#redistribute static
(config-router-af)#exit-address-family
(config-router)#address-family ipv6 vrf l3_vrf_1
(config-router-af)#max-paths ebgp 4
(config-router-af)#redistribute connected
(config-router-af)#redistribute static
(config-router-af)#exit-address-family
(config-router)#commit
(config-router)#exit
15. Configure a Static Route in an L3 VRF.
(config)#ip route vrf l3_vrf_1 101.1.1.240/32 irb1001
16. Enable port-vlan mappings and Map VxLAN Identified to access-port for VxLAN.
(config)#nvo vxlan access-if port-vlan po1 101
(config-nvo-acc-if)#map vnid 1001
(config-nvo-acc-if)#commit
(config-nvo-acc-if)#exit
(config)#nvo vxlan access-if port-vlan po1 102
(config-nvo-acc-if)#map vnid 1002
(config-nvo-acc-if)#commit
(config-nvo-acc-if)#exit
(config)#nvo vxlan access-if port-vlan po1 103
(config-nvo-acc-if)#map vnid 1003
(config-nvo-acc-if)#commit
(config-nvo-acc-if)#exit
LEAF2 Configuration
1. Enable VXLAN and IRB.
#configure terminal
(config)#nvo vxlan enable
(config)#nvo vxlan irb
2. Configure EVPN ESI hold-time.
(config)#evpn esi hold-time 90
3. Enable EVPN VXLAN multihoming.
(config)#evpn vxlan multihoming enable
4. Configure L3 VRF with EVPN stitching.
(config)#ip vrf l3_vrf_1
(config-vrf)#rd 7002:1001
(config-vrf)#route-target both 1001:1001
(config-vrf)#l3vni 1000
(config-vrf)#commit
(config-vrf)#exit
5. Configure a MAC VRF (L2 VRF).
(config)#mac vrf l2_vrf_1
(config-vrf)#rd 10.10.10.2:1
(config-vrf)#route-target both 101:101
(config-vrf)#commit
(config-vrf)#exit
(config)#mac vrf l2_vrf_2
(config-vrf)#rd 10.10.10.2:2
(config-vrf)#route-target both 102:102
(config-vrf)#commit
(config-vrf)#exit
(config)#mac vrf l2_vrf_3
(config-vrf)#rd 10.10.10.2:3
(config-vrf)#route-target both 103:103
(config-vrf)#commit
(config-vrf)#exit
6. Configure the Global VTEP ip address.
(config)#nvo vxlan vtep-ip-global 10.10.10.2
7. Configure VXLAN L2 VNI with EVPN and IRB.
(config)#nvo vxlan id 1001 ingress-replication inner-vid-disabled
(config-nvo)#vxlan host-reachability-protocol evpn-bgp l2_vrf_1
(config-nvo)#evpn irb1001
(config-nvo)#evpn irb-advertise-host-route
(config-nvo)#commit
(config-nvo)#exit
(config)#nvo vxlan id 1002 ingress-replication inner-vid-disabled
(config-nvo)#vxlan host-reachability-protocol evpn-bgp l2_vrf_2
(config-nvo)#evpn irb1002
(config-nvo)#evpn irb-advertise-host-route
(config-nvo)#commit
(config-nvo)#exit
(config)#nvo vxlan id 1003 ingress-replication inner-vid-disabled
(config-nvo)#vxlan host-reachability-protocol evpn-bgp l2_vrf_3
(config-nvo)#evpn irb1003
(config-nvo)#evpn irb-advertise-host-route
(config-nvo)#commit
(config-nvo)#exit
8. Configure interfaces.
(config)#interface po1
(config-if)#switchport
(config-if)#bridge-group 1 spanning-tree disable
(config-if)#switchport mode hybrid
(config-if)#switchport mode hybrid acceptable-frame-type all
(config-if)#load-interval 30
(config-if)#evpn multi-homed system-mac 0000.aaaa.bbbb
(config-if)#commit
(config-if)#exit
(config)#interface irb1001
(config-if)#ip vrf forwarding l3_vrf_1
(config-if)#evpn irb-if-forwarding anycast-gateway-mac
(config-if)#ip address 101.1.1.1/8 anycast
(config-if)#ipv6 address 1001::1/48 anycast
(config-if)#commit
(config-if)#exit
(config)#interface irb1002
(config-if)#ip vrf forwarding l3_vrf_1
(config-if)#evpn irb-if-forwarding anycast-gateway-mac
(config-if)#ip address 102.1.1.1/8 anycast
(config-if)#ipv6 address 1002::1/48 anycast
(config-if)#commit
(config-if)#exit
(config)#interface irb1003
(config-if)#ip vrf forwarding l3_vrf_1
(config-if)#evpn irb-if-forwarding anycast-gateway-mac
(config-if)#ip address 103.1.1.1/8 anycast
(config-if)#ipv6 address 1003::1/48 anycast
(config-if)#commit
(config-if)#exit
(config)#interface lo
(config-if)#ip address 127.0.0.1/8
(config-if)#ip address 10.10.10.2/32 secondary
(config-if)#ipv6 address ::1/128
(config-if)#commit
(config-if)#exit
(config)#interface xe1
(config-if)#load-interval 30
(config-if)#commit
(config-if)#exit
(config)#interface xe3
(config-if)#load-interval 30
(config-if)#commit
(config-if)#exit
(config)#interface xe10
(config-if)#channel-group 1 mode active
(config-if)#commit
(config-if)#exit
9. Configure EVPN IRB forwarding with Anycast gateway MAC.
(config)#evpn irb-forwarding anycast-gateway-mac 0000.0000.abcd
10. Configure BGP global parameters.
(config)#router bgp 65001
(config-router)#bgp router-id 10.10.10.2
(config-router)#no bgp inbound-route-filter
11. Configure BGP unnumbered and EVPN for unnumbered peers.
(config-router)#bgp unnumbered-mode
(config-router-unnum)#neighbor xe3 as-origination-interval 1
(config-router-unnum)#neighbor xe3 advertisement-interval 0
(config-router-unnum)#neighbor xe3 fall-over bfd
(config-router-unnum)#neighbor xe1 as-origination-interval 1
(config-router-unnum)#neighbor xe1 fall-over bfd
(config-router-unnum)#exit-unnumbered-mode
12. Configure BGP IPv4 Unicast address family with v4 unnumbered neighbors.
(config-router)#address-family ipv4 unicast
(config-router-af)#network 10.10.10.2/32
(config-router-af)#max-paths ebgp 4
(config-router-af)#redistribute connected
(config-router-af)#redistribute static
(config-router-v4-unnum)#bgp v4-unnumbered-mode
(config-router-v4-unnum)#neighbor xe3 activate
(config-router-v4-unnum)#neighbor xe3 allowas-in 1
(config-router-v4-unnum)#neighbor xe1 activate
(config-router-v4-unnum)#neighbor xe1 allowas-in 1
(config-router-v4-unnum)#exit-v4-unnumbered-mode
(config-router-af)# exit-address-family
13. Configure BGP L2VPN EVPN with numbered and unnumbered neighbors.
(config-router)#address-family l2vpn evpn
(config-router-af)# bgp l2vpn-unnumbered-mode
(config-router-l2vpn-unnum)#neighbor xe3 activate
(config-router-l2vpn-unnum)#neighbor xe3 allowas-in 1
(config-router-l2vpn-unnum)#neighbor xe1 activate
(config-router-l2vpn-unnum)#neighbor xe1 allowas-in 1
(config-router-l2vpn-unnum)#exit-l2vpn-unnumbered-mode
(config-router-af)#exit-address-family
14. Configure BGP IPv4 address family for an L3 VRF.
(config-router)#address-family ipv4 vrf l3_vrf_1
(config-router-af)#max-paths ebgp 4
(config-router-af)#redistribute connected
(config-router-af)#redistribute static
(config-router-af)#exit-address-family
(config-router)#address-family ipv6 vrf l3_vrf_1
(config-router-af)#max-paths ebgp 4
(config-router-af)#redistribute connected
(config-router-af)#redistribute static
(config-router-af)#exit-address-family
(config-router)#commit
(config-router)#exit
15. Configure a static route in an L3 VRF.
(config)#ip route vrf l3_vrf_1 101.1.1.240/32 irb1001
16. Enable port-vlan mappings and Map VxLAN Identified to access-port for VxLAN.
(config)#nvo vxlan access-if port-vlan po1 101
(config-nvo-acc-if)#map vnid 1001
(config-nvo-acc-if)#commit
(config-nvo-acc-if)#exit
(config)#nvo vxlan access-if port-vlan po1 102
(config-nvo-acc-if)#map vnid 1002
(config-nvo-acc-if)#commit
(config-nvo-acc-if)#exit
(config)#nvo vxlan access-if port-vlan po1 103
(config-nvo-acc-if)#map vnid 1003
(config-nvo-acc-if)#commit
(config-nvo-acc-if)#exit
LEAF3 Configuration
1. Enable VXLAN and IRB.
#configure terminal
(config)#nvo vxlan enable
(config)#nvo vxlan irb
2. Enable EVPN VXLAN multihoming.
(config)#evpn vxlan multihoming enable
3. Configure L3 VRF with EVPN stitching.
(config)#ip vrf l3_vrf_1
(config-vrf)#rd 7004:5001
(config-vrf)#route-target both 5001:5001
(config-vrf)#l3vni 1000
(config-vrf)#commit
(config-vrf)#exit
4. Configure a MAC VRF (L2 VRF).
(config)#mac vrf l2_vrf_1
(config-vrf)#rd 10.10.10.4:1
(config-vrf)#route-target both 201:201
(config-vrf)#commit
(config-vrf)#exit
(config)#mac vrf l2_vrf_2
(config-vrf)#rd 10.10.10.4:2
(config-vrf)#route-target both 202:202
(config-vrf)#commit
(config-vrf)#exit
(config)#mac vrf l2_vrf_3
(config-vrf)#rd 10.10.10.4:3
(config-vrf)#route-target both 203:203
(config-vrf)#commit
(config-vrf)#exit
5. Configure the Global VTEP ip address.
(config)#nvo vxlan vtep-ip-global 10.10.10.4
6. Configure VXLAN L2 VNI with EVPN and IRB.
(config)#nvo vxlan id 1001 ingress-replication inner-vid-disabled
(config-nvo)#vxlan host-reachability-protocol evpn-bgp l2_vrf_1
(config-nvo)#evpn irb1001
(config-nvo)#evpn irb-advertise-host-route
(config-nvo)#commit
(config-nvo)#exit
(config)#nvo vxlan id 1002 ingress-replication inner-vid-disabled
(config-nvo)#vxlan host-reachability-protocol evpn-bgp l2_vrf_2
(config-nvo)#evpn irb1002
(config-nvo)#evpn irb-advertise-host-route
(config-nvo)#commit
(config-nvo)#exit
(config)#nvo vxlan id 1003 ingress-replication inner-vid-disabled
(config-nvo)#vxlan host-reachability-protocol evpn-bgp l2_vrf_3
(config-nvo)#evpn irb1003
(config-nvo)#evpn irb-advertise-host-route
(config-nvo)#commit
(config-nvo)#exit
7. Configure interfaces.
(config)#interface ce4
(config-if)#load-interval 30
(config-if)#commit
(config-if)#exit
(config)#interface ce31
(config-if)#commit
(config-if)#exit
(config)#interface irb1001
(config-if)#ip vrf forwarding l3_vrf_1
(config-if)#ip address 201.1.1.1/8
(config-if)#ipv6 address 2001::1/48
(config-if)#commit
(config-if)#exit
(config)#interface irb1002
(config-if)#ip vrf forwarding l3_vrf_1
(config-if)#ip address 202.1.1.1/8
(config-if)#ipv6 address 2002::1/48
(config-if)#commit
(config-if)#exit
(config)#interface irb1003
(config-if)#ip vrf forwarding l3_vrf_1
(config-if)#ip address 203.1.1.1/8
(config-if)#ipv6 address 2003::1/48
(config-if)#commit
(config-if)#exit
(config)#interface lo
(config-if)#ip address 127.0.0.1/8
(config-if)#ip address 10.10.10.4/32 secondary
(config-if)#ipv6 address ::1/128
(config-if)#commit
(config-if)#exit
(config)#interface xe1/2
(config-if)#switchport
(config-if)#load-interval 30
(config-if)#commit
(config-if)#exit
(config)#interface xe34
(config-if)#switchport
(config-if)#load-interval 30
(config-if)#commit
(config-if)#exit
8. Configure BGP Global Parameters.
(config)#router bgp 65001
(config-router)#bgp router-id 10.10.10.4
(config-router)#no bgp inbound-route-filter
9. Configure BGP unnumbered and EVPN for unnumbered peers.
(config-router)#bgp unnumbered-mode
(config-router-unnum)#neighbor ce4 as-origination-interval 1
(config-router-unnum)#neighbor ce4 advertisement-interval 0
(config-router-unnum)#neighbor ce4 fall-over bfd
(config-router-unnum)#exit-unnumbered-mode
10. Configure BGP IPv4 Unicast address family with v4 unnumbered neighbors.
(config-router)#address-family ipv4 unicast
(config-router-af)#network 10.10.10.4/32
(config-router-af)#max-paths ebgp 4
(config-router-af)#redistribute connected
(config-router-af)#redistribute static
(config-router-af)#bgp v4-unnumbered-mode
(config-router-v4-unnum)#neighbor ce4 activate
(config-router-v4-unnum)#neighbor ce4 allowas-in 1
(config-router-v4-unnum)#exit-v4-unnumbered-mode
(config-router-af)#exit-address-family
11. Configure BGP L2VPN EVPN with numbered and unnumbered neighbors.
(config-router)#address-family l2vpn evpn
(config-router-af)#bgp l2vpn-unnumbered-mode
(config-router-v4-unnum)#neighbor ce4 activate
(config-router-v4-unnum)#neighbor ce4 allowas-in 1
(config-router-v4-unnum)#exit-l2vpn-unnumbered-mode
(config-router-af)#exit-address-family
12. Configure BGP IPv4 address family for an L3 VRF.
(config-router)#address-family ipv4 vrf l3_vrf_1
(config-router-af)#max-paths ebgp 4
(config-router-af)#redistribute connected
(config-router-af)#redistribute static
(config-router-af)#exit-address-family
(config-router)#address-family ipv6 vrf l3_vrf_1
(config-router-af)#max-paths ebgp 4
(config-router-af)#redistribute connected
(config-router-af)#redistribute static
(config-router-af)#exit-address-family
(config-router)#commit
(config-router)#exit
13. Configure a static route in an L3 VRF.
(config)#ip route vrf l3_vrf_1 201.1.1.240/32 irb1001
14. Enable port-vlan mappings and Map VxLAN Identified to access-port for VxLAN.
(config)#nvo vxlan access-if port-vlan xe34 2001
(config-nvo-acc-if)#map vnid 1001
(config-nvo-acc-if)#commit
(config-nvo-acc-if)#exit
(config)#nvo vxlan access-if port-vlan xe34 2002
(config-nvo-acc-if)#map vnid 1002
(config-nvo-acc-if)#commit
(config-nvo-acc-if)#exit
(config)#nvo vxlan access-if port-vlan xe34 2003
(config-nvo-acc-if)#map vnid 1003
(config-nvo-acc-if)#commit
(config-nvo-acc-if)#exit
R1 Configuration
1. Configure the interfaces.
#configure terminal
(config)#interface lo
(config-if)#ip address 127.0.0.1/8
(config-if)#ip address 10.10.10.21/32 secondary
(config-if)#ipv6 address ::1/128
(config-if)#commit
(config-if)#exit
(config)#interface lo.management
(config-if)#ip vrf forwarding management
(config-if)#ip address 127.0.0.1/8
(config-if)#ipv6 address ::1/128
(config-if)#commit
(config-if)#exit
(config)#interface xe1/1
(config-if)#load-interval 30
(config-if)#ip address 17.20.20.2/24
(config-if)#commit
(config-if)#exit
(config)#interface xe1/2
(config-if)#load-interval 30
(config-if)#ip address 17.19.19.2/24
(config-if)#commit
(config-if)#exit
(config)#interface xe6/1
(config-if)#ip address 17.24.24.2/24
(config-if)#commit
(config-if)#exit
(config)#interface xe31/1
(config-if)#load-interval 30
(config-if)#ip address 17.22.22.2/24
(config-if)#commit
(config-if)#exit
2. Enable OSPF for underlay.
(config)#router ospf 100
(config-router)#bfd all-interfaces
(config-router)#network 10.10.10.21/32 area 0.0.0.0
(config-router)#network 17.19.19.0/24 area 0.0.0.0
(config-router)#network 17.20.20.0/24 area 0.0.0.0
(config-router)#network 17.22.22.0/24 area 0.0.0.0
(config-router)#network 17.24.24.0/24 area 0.0.0.0
(config-router)#commit
(config-router)#exit
3. Configure BGP global parameters.
(config)#router bgp 65005
(config-router)#bgp router-id 10.10.10.21
(config-router)#no bgp inbound-route-filter
(config-router)#neighbor 10.10.10.5 remote-as 65004
(config-router)#neighbor 10.10.10.5 update-source lo
(config-router)#neighbor 10.10.10.5 as-origination-interval 1
(config-router)#neighbor 10.10.10.5 advertisement-interval 0
(config-router)#neighbor 10.10.10.6 remote-as 65004
(config-router)#neighbor 10.10.10.6 update-source lo
(config-router)#neighbor 10.10.10.6 as-origination-interval 1
(config-router)#neighbor 10.10.10.6 advertisement-interval 0
(config-router)#neighbor 10.10.10.7 remote-as 65004
(config-router)#neighbor 10.10.10.7 update-source lo
(config-router)#neighbor 10.10.10.7 as-origination-interval 1
(config-router)#neighbor 10.10.10.7 advertisement-interval 0
(config-router)#neighbor 10.10.10.22 remote-as 65006
(config-router)#neighbor 10.10.10.22 update-source lo
(config-router)#neighbor 10.10.10.22 as-origination-interval 1
(config-router)#neighbor 10.10.10.22 advertisement-interval 0
4. Configure BGP IPv4 Unicast address family with v4 unnumbered neighbors.
(config-router)#address-family ipv4 unicast
(config-router-af)#network 10.10.10.21/32
(config-router-af)#max-paths ebgp 4
(config-router-af)#redistribute connected
(config-router-af)#exit-address-family
5. Configure BGP L2VPN EVPN with numbered and unnumbered neighbors.
(config-router)#address-family l2vpn evpn
(config-router-af)#neighbor 10.10.-10.5 activate
(config-router-af)#neighbor 10.10.10.5 allowas-in 1
(config-router-af)#neighbor 10.10.10.6 activate
(config-router-af)#neighbor 10.10.10.6 allowas-in 1
(config-router-af)#neighbor 10.10.10.7 activate
(config-router-af)#neighbor 10.10.10.7 allowas-in 1
(config-router-af)#neighbor 10.10.10.22 activate
(config-router-af)#neighbor 10.10.10.22 allowas-in 1
(config-router-af)#exit-address-family
(config-router)#commit
(config-router)#exit
R2 Configuration
1. Configure the interfaces.
#configure terminal
(config)#interface lo
(config-if)#ip address 127.0.0.1/8
(config-if)#ip address 10.10.10.22/32 secondary
(config-if)#ipv6 address ::1/128
(config-if)#commit
(config-if)#exit
(config)#interface xe1/1
(config-if)#load-interval 30
(config-if)#ip address 17.21.21.2/24
(config-if)#commit
(config-if)#exit
(config)#interface xe1/2
(config-if)#load-interval 30
(config-if)#ip address 17.18.18.2/24
(config-if)#commit
(config-if)#exit
(config)#interface xe6/1
(config-if)#ip address 17.24.24.1/24
(config-if)#commit
(config-if)#exit
(config)#interface xe31/1
(config-if)#load-interval 30
(config-if)#ip address 17.23.23.2/24
(config-if)#commit
(config-if)#exit
2. Enable OSPF for underlay.
(config)#router ospf 100
(config-router)#bfd all-interfaces
(config-router)#network 10.10.10.22/32 area 0.0.0.0
(config-router)#network 17.18.18.0/24 area 0.0.0.0
(config-router)#network 17.21.21.0/24 area 0.0.0.0
(config-router)#network 17.23.23.0/24 area 0.0.0.0
(config-router)#network 17.24.24.0/24 area 0.0.0.0
(config-router)#commit
(config-router)#exit
3. Configure BGP global parameters.
(config)#router bgp 65006
(config-router)#bgp router-id 10.10.10.22
(config-router)#no bgp inbound-route-filter
(config-router)#neighbor 10.10.10.5 remote-as 65004
(config-router)#neighbor 10.10.10.5 update-source lo
(config-router)#neighbor 10.10.10.5 as-origination-interval 1
(config-router)#neighbor 10.10.10.5 advertisement-interval 0
(config-router)#neighbor 10.10.10.6 remote-as 65004
(config-router)#neighbor 10.10.10.6 update-source lo
(config-router)#neighbor 10.10.10.6 as-origination-interval 1
(config-router)#neighbor 10.10.10.6 advertisement-interval 0
(config-router)#neighbor 10.10.10.7 remote-as 65004
(config-router)#neighbor 10.10.10.7 update-source lo
(config-router)#neighbor 10.10.10.7 as-origination-interval 1
(config-router)#neighbor 10.10.10.7 advertisement-interval 0
(config-router)#neighbor 10.10.10.21 remote-as 65005
(config-router)#neighbor 10.10.10.21 update-source lo
(config-router)#neighbor 10.10.10.21 as-origination-interval 1
(config-router)#neighbor 10.10.10.21 advertisement-interval 0
4. Configure BGP IPv4 Unicast address family.
(config-router)#address-family ipv4 unicast
(config-router-af)#network 10.10.10.22/32
(config-router-af)#redistribute connected
(config-router-af)#exit-address-family
5. Configure BGP L2VPN EVPN.
(config-router)#address-family l2vpn evpn
(config-router-af)#neighbor 10.10.10.5 activate
(config-router-af)#neighbor 10.10.10.5 allowas-in 1
(config-router-af)#neighbor 10.10.10.6 activate
(config-router-af)#neighbor 10.10.10.6 allowas-in 1
(config-router-af)#neighbor 10.10.10.7 activate
(config-router-af)#neighbor 10.10.10.7 allowas-in 1
(config-router-af)#neighbor 10.10.10.21 activate
(config-router-af)#neighbor 10.10.10.21 allowas-in 1
(config-router-af)#exit-address-family
(config-router)#commit
(config-router)#exit
SPINE1 Configuration
1. Configure the interfaces.
#configure terminal
(config)#interface ce49
(config-if)#load-interval 30
(config-if)#commit
(config-if)#exit
(config)#interface lo
(config-if)#ip address 127.0.0.1/8
(config-if)#ip address 10.10.10.11/32 secondary
(config-if)#ipv6 address ::1/128
(config-if)#commit
(config-if)#exit
(config)#interface xe8
(config-if)#load-interval 30
(config-if)#commit
(config-if)#exit
(config)#interface xe45
(config-if)#load-interval 30
(config-if)#commit
(config-if)#exit
(config)#interface xe47
(config-if)#load-interval 30
(config-if)#commit
(config-if)#exit
2. Configure BGP global parameters.
(config)#router bgp 65002
(config-router)#bgp router-id 10.10.10.11
(config-router)#no bgp inbound-route-filter
3. Configure BGP unnumbered and EVPN for unnumbered peers.
(config-router)#bgp unnumbered-mode
(config-router-unnum)#neighbor xe3 as-origination-interval 1
(config-router-unnum)#neighbor xe3 advertisement-interval 0
(config-router-unnum)#neighbor xe3 fall-over bfd
(config-router-unnum)#neighbor ce49 as-origination-interval 1
(config-router-unnum)#neighbor ce49 advertisement-interval 0
(config-router-unnum)#neighbor ce49 fall-over bfd
(config-router-unnum)#neighbor xe8 as-origination-interval 1
(config-router-unnum)#neighbor xe8 advertisement-interval 0
(config-router-unnum)#neighbor xe8 fall-over bfd
(config-router-unnum)#neighbor xe45 as-origination-interval 1
(config-router-unnum)#neighbor xe45 advertisement-interval 0
(config-router-unnum)#neighbor xe45 fall-over bfd
(config-router-unnum)#exit-unnumbered-mode
4. Configure BGP IPv4 Unicast address family with v4 unnumbered neighbors.
(config-router)#address-family ipv4 unicast
(config-router-af)#network 10.10.10.11/32
(config-router-af)#max-paths ebgp 4
(config-router-af)#redistribute connected
(config-router-af)#redistribute static
(config-router-v4-unnum)#bgp v4-unnumbered-mode
(config-router-v4-unnum)#neighbor xe3 activate
(config-router-v4-unnum)#neighbor xe3 allowas-in 1
(config-router-v4-unnum)#neighbor ce49 activate
(config-router-v4-unnum)#neighbor ce49 allowas-in 1
(config-router-v4-unnum)#neighbor xe8 activate
(config-router-v4-unnum)#neighbor xe8 allowas-in 1
(config-router-v4-unnum)#neighbor xe45 activate
(config-router-v4-unnum)#neighbor xe45 allowas-in 1
(config-router-v4-unnum)#exit-v4-unnumbered-mode
(config-router-af)#exit-address-family
5. Configure BGP L2VPN EVPN with numbered and unnumbered neighbors.
(config-router)#address-family l2vpn evpn
(config-router-af)#bgp l2vpn-unnumbered-mode
(config-router-v4-unnum)#neighbor xe3 activate
(config-router-v4-unnum)#neighbor xe3 allowas-in 1
(config-router-v4-unnum)#neighbor ce49 activate
(config-router-v4-unnum)#neighbor ce49 allowas-in 1
(config-router-v4-unnum)#neighbor xe8 activate
(config-router-v4-unnum)#neighbor xe8 allowas-in 1
(config-router-v4-unnum)#neighbor xe45 activate
(config-router-v4-unnum)#neighbor xe45 allowas-in 1
(config-router-v4-unnum)#exit-l2vpn-unnumbered-mode
(config-router-af)#exit-address-family
(config-router)#commit
(config-router)#exit
SPINE2 Configuration
1. Configure the interfaces.
#configure terminal
(config)#interface ce50
(config-if)#load-interval 30
(config-if)#commit
(config-if)#exit
(config)#interface lo
(config-if)#ip address 127.0.0.1/8
(config-if)#ip address 10.10.10.12/32 secondary
(config-if)#ipv6 address ::1/128
(config-if)#commit
(config-if)#exit
(config)#interface xe1
(config-if)#load-interval 30
(config-if)#commit
(config-if)#exit
(config)#interface xe47
(config-if)#load-interval 30
(config-if)#commit
(config-if)#exit
(config)#interface xe57
(config-if)#load-interval 30
(config-if)#commit
(config-if)#exit
2. Configure BGP global parameters.
(config)#router bgp 65002
(config-router)#bgp router-id 10.10.10.12
(config-router)#no bgp inbound-route-filter
3. Configure BGP unnumbered and EVPN for unnumbered peers.
(config-router)#bgp unnumbered-mode
(config-router-unnum)#neighbor xe57 as-origination-interval 1
(config-router-unnum)#neighbor xe57 advertisement-interval 0
(config-router-unnum)#neighbor xe57 fall-over bfd
(config-router-unnum)#neighbor xe47 as-origination-interval 1
(config-router-unnum)#neighbor xe47 advertisement-interval 0
(config-router-unnum)#neighbor xe47 fall-over bfd
(config-router-unnum)#neighbor ce50 as-origination-interval 1
(config-router-unnum)#neighbor ce50 advertisement-interval 0
(config-router-unnum)#neighbor xe1 as-origination-interval 1
(config-router-unnum)#neighbor xe1 advertisement-interval 0
(config-router-unnum)#neighbor xe1 fall-over bfd
(config-router-unnum)#exit-unnumbered-mode
4. Configure BGP IPv4 Unicast address family with v4 unnumbered neighbors.
(config-router)#address-family ipv4 unicast
(config-router-af)#network 10.10.10.12/32
(config-router-af)#max-paths ebgp 4
(config-router-af)#redistribute connected
(config-router-af)#redistribute static
(config-router-af)#bgp v4-unnumbered-mode
(config-router-v4-unnum)#neighbor xe57 activate
(config-router-v4-unnum)#neighbor xe57 allowas-in 1
(config-router-v4-unnum)#neighbor xe47 activate
(config-router-v4-unnum)#neighbor xe47 allowas-in 1
(config-router-v4-unnum)#neighbor ce50 activate
(config-router-v4-unnum)#neighbor ce50 allowas-in 1
(config-router-v4-unnum)#neighbor xe1 activate
(config-router-v4-unnum)#neighbor xe1 allowas-in 1
(config-router-v4-unnum)#exit-v4-unnumbered-mode
(config-router-af)#exit-address-family
5. Configure BGP L2VPN EVPN with numbered and unnumbered neighbors.
(config-router)#address-family l2vpn evpn
(config-router-af)#bgp l2vpn-unnumbered-mode
(config-router-v4-unnum)#neighbor xe57 activate
(config-router-v4-unnum)#neighbor xe57 allowas-in 1
(config-router-v4-unnum)#neighbor xe47 activate
(config-router-v4-unnum)#neighbor xe47 allowas-in 1
(config-router-v4-unnum)#neighbor ce50 activate
(config-router-v4-unnum)#neighbor ce50 allowas-in 1
(config-router-v4-unnum)#neighbor xe1 activate
(config-router-v4-unnum)#neighbor xe1 allowas-in 1
(config-router-v4-unnum)#exit-l2vpn-unnumbered-mode
(config-router-af)#exit-address-family
(config-router)#commit
(config-router)#exit
SPINE3 Configuration
1. Configure the interfaces.
#configure terminal
(config)#interface ce49
(config-if)#load-interval 30
(config-if)#commit
(config-if)#ecit
(config)#interface lo
(config-if)#ip address 127.0.0.1/8
(config-if)#ip address 10.10.10.16/32 secondary
(config-if)#ipv6 address ::1/128
(config-if)#commit
(config-if)#ecit
(config)#interface xe4
(config-if)#load-interval 30
(config-if)#commit
(config-if)#exit
2. Configure BGP global parameters.
(config)#router bgp 65002
(config-router)#bgp router-id 10.10.10.16
(config-router)#no bgp inbound-route-filter
3. Configure BGP unnumbered and EVPN for unnumbered peers.
(config-router)#bgp unnumbered-mode
(config-router-unnum)#neighbor xe7 as-origination-interval 1
(config-router-unnum)#neighbor xe7 advertisement-interval 0
(config-router-unnum)#neighbor xe7 fall-over bfd
(config-router-unnum)#neighbor ce49 as-origination-interval 1
(config-router-unnum)#neighbor ce49 advertisement-interval 0
(config-router-unnum)#neighbor ce49 fall-over bfd
(config-router-unnum)#exit-unnumbered-mode
4. Configure BGP IPv4 Unicast address family with v4 unnumbered neighbors.
(config-router)#address-family ipv4 unicast
(config-router-af)#network 10.10.10.12/32
(config-router-af)#max-paths ebgp 4
(config-router-af)#redistribute connected
(config-router-af)#redistribute static
(config-router-v4-unnum)#bgp v4-unnumbered-mode
(config-router-v4-unnum)#neighbor xe57 activate
(config-router-v4-unnum)#neighbor xe57 allowas-in 1
(config-router-v4-unnum)#neighbor xe47 activate
(config-router-v4-unnum)#neighbor xe47 allowas-in 1
(config-router-v4-unnum)#neighbor ce50 activate
(config-router-v4-unnum)#neighbor ce50 allowas-in 1
(config-router-v4-unnum)#neighbor xe1 activate
(config-router-v4-unnum)#neighbor xe1 allowas-in 1
(config-router-v4-unnum)#exit-v4-unnumbered-mode
(config-router-af)#exit-address-family
5. Configure BGP L2VPN EVPN with numbered and unnumbered neighbors.
(config-router)#address-family l2vpn evpn
(config-router-af)#bgp l2vpn-unnumbered-mode
(config-router-v4-unnum)#neighbor xe7 activate
(config-router-v4-unnum)#neighbor xe7 allowas-in 1
(config-router-v4-unnum)#neighbor ce49 activate
(config-router-v4-unnum)#neighbor ce49 allowas-in 1
(config-router-v4-unnum)#exit-l2vpn-unnumbered-mode
(config-router-af)#exit-address-family
(config-router)#commit
(config-router)#exit
SuperSpine1 Configuration
1. Configure the interfaces.
#configure terminal
(config)#interface ce1/3
(config-if)#load-interval 30
(config-if)#commit
(config-if)#exit
(config)#interface ce1/4
(config-if)#load-interval 30
(config-if)#commit
(config-if)#exit
(config)#interface ce2/1
(config-if)#load-interval 30
(config-if)#commit
(config-if)#exit
(config)#interface ce29/1
(config-if)#load-interval 30
(config-if)#commit
(config-if)#exit
(config)#interface ce31/1
(config-if)#load-interval 30
(config-if)#commit
(config-if)#exit
(config)#interface lo
(config-if)#ip address 127.0.0.1/8
(config-if)#ip address 10.10.10.14/32 secondary
(config-if)#ipv6 address ::1/128
(config-if)#commit
(config-if)#exit
2. Configure BGP global parameters.
(config)#router bgp 65003
(config-router)#bgp router-id 10.10.10.14
(config-router)#no bgp inbound-route-filter
3. Configure BGP unnumbered and EVPN for unnumbered peers.
(config-router)#bgp unnumbered-mode
(config-router-unnum)#neighbor ce1/4 as-origination-interval 1
(config-router-unnum)#neighbor ce1/4 advertisement-interval 0
(config-router-unnum)#neighbor ce1/4 fall-over bfd
(config-router-unnum)#neighbor ce31/1 as-origination-interval 1
(config-router-unnum)#neighbor ce31/1 advertisement-interval 0
(config-router-unnum)#neighbor ce31/1 fall-over bfd
(config-router-unnum)#neighbor ce29/1 as-origination-interval 1
(config-router-unnum)#neighbor ce29/1 advertisement-interval 0
(config-router-unnum)#neighbor ce29/1 fall-over bfd
(config-router-unnum)#neighbor ce1/3 as-origination-interval 1
(config-router-unnum)#neighbor ce1/3 advertisement-interval 0
(config-router-unnum)#neighbor ce1/3 fall-over bfd
(config-router-unnum)#exit-unnumbered-mode
4. Configure BGP IPv4 Unicast address family with v4 unnumbered neighbors.
(config-router)#address-family ipv4 unicast
(config-router-af)#network 10.10.10.14/32
(config-router-af)#max-paths ebgp 4
(config-router-af)#redistribute connected
(config-router-af)#redistribute static
(config-router-v4-unnum)#bgp v4-unnumbered-mode
(config-router-v4-unnum)#neighbor ce1/4 activate
(config-router-v4-unnum)#neighbor ce1/4 allowas-in 1
(config-router-v4-unnum)#neighbor ce31/1 activate
(config-router-v4-unnum)#neighbor ce31/1 allowas-in 1
(config-router-v4-unnum)#neighbor ce29/1 activate
(config-router-v4-unnum)#neighbor ce29/1 allowas-in 1
(config-router-v4-unnum)#neighbor ce1/3 activate
(config-router-v4-unnum)#neighbor ce1/3 allowas-in 1
(config-router-v4-unnum)#exit-v4-unnumbered-mode
(config-router-af)#exit-address-family
5. Configure BGP L2VPN EVPN with numbered and unnumbered neighbors.
(config-router)#address-family l2vpn evpn
(config-router-af)#bgp l2vpn-unnumbered-mode
(config-router-v4-unnum)#neighbor ce1/4 activate
(config-router-v4-unnum)#neighbor ce1/4 allowas-in 1
(config-router-v4-unnum)#neighbor ce31/1 activate
(config-router-v4-unnum)#neighbor ce31/1 allowas-in 1
(config-router-v4-unnum)#neighbor ce29/1 activate
(config-router-v4-unnum)#neighbor ce29/1 allowas-in 1
(config-router-v4-unnum)#neighbor ce1/3 activate
(config-router-v4-unnum)#neighbor ce1/3 allowas-in 1
(config-router-v4-unnum)#exit-l2vpn-unnumbered-mode
(config-router-af)# exit-address-family
(config-router)#commit
(config-router)#exit
SuperSpine2 Configuration
1. Configure the interfaces.
#configure terminal
(config)#interface ce9/1
(config-if)#load-interval 30
(config-if)#commit
(config-if)#exit
(config)#interface ce11/1
(config-if)#load-interval 30
(config-if)#commit
(config-if)#exit
(config)#interface ce14/1
(config-if)#load-interval 30
(config-if)#commit
(config-if)#exit
(config)#interface ce15/1
(config-if)#load-interval 30
(config-if)#commit
(config-if)#exit
(config)#interface lo
(config-if)#ip address 127.0.0.1/8
(config-if)#ip address 10.10.10.15/32 secondary
(config-if)#ipv6 address ::1/128
(config-if)#commit
(config-if)#exit
2. Configure BGP global parameters, unnumbered, and EVPN for unnumbered peers.
(config)#router bgp 65003
(config-router)#bgp router-id 10.10.10.15
(config-router)#no bgp inbound-route-filter
(config-router)#bgp unnumbered-mode
(config-router-unnum)#neighbor ce14/1 fall-over bfd
(config-router-unnum)#neighbor ce15/1 fall-over bfd
(config-router-unnum)#neighbor ce9/1 fall-over bfd
(config-router-unnum)#neighbor ce11/1 fall-over bfd
(config-router-unnum)#neighbor ce14/1 as-origination-interval 1
(config-router-unnum)#neighbor ce14/1 advertisement-interval 0
(config-router-unnum)#neighbor ce15/1 as-origination-interval 1
(config-router-unnum)#neighbor ce15/1 advertisement-interval 0
(config-router-unnum)#neighbor ce9/1 as-origination-interval 1
(config-router-unnum)#neighbor ce9/1 advertisement-interval 0
(config-router-unnum)#neighbor ce11/1 as-origination-interval 1
(config-router-unnum)#neighbor ce11/1 advertisement-interval 0
(config-router-unnum)#exit-unnumbered-mode
3. Configure BGP IPv4 Unicast address family with v4 unnumbered neighbors.
(config-router)#address-family ipv4 unicast
(config-router-af)#network 10.10.10.15/32
(config-router-af)#max-paths ebgp 4
(config-router-af)#redistribute connected
(config-router-af)#redistribute static
(config-router-v4-unnum)#bgp v4-unnumbered-mode
(config-router-v4-unnum)#neighbor ce14/1 activate
(config-router-v4-unnum)#neighbor ce14/1 allowas-in 1
(config-router-v4-unnum)#neighbor ce15/1 activate
(config-router-v4-unnum)#neighbor ce15/1 allowas-in 1
(config-router-v4-unnum)#neighbor ce9/1 activate
(config-router-v4-unnum)#neighbor ce9/1 allowas-in 1
(config-router-v4-unnum)#neighbor ce11/1 activate
(config-router-v4-unnum)#neighbor ce11/1 allowas-in 1
(config-router-v4-unnum)#exit-v4-unnumbered-mode
(config-router-af)#exit-address-family
4. Configure BGP L2VPN EVPN with numbered and unnumbered neighbors.
(config-router)#address-family l2vpn evpn
(config-router-af)#bgp l2vpn-unnumbered-mode
(config-router-v4-unnum)#neighbor ce14/1 activate
(config-router-v4-unnum)#neighbor ce14/1 allowas-in 1
(config-router-v4-unnum)#neighbor ce15/1 activate
(config-router-v4-unnum)#neighbor ce15/1 allowas-in 1
(config-router-v4-unnum)#neighbor ce9/1 activate
(config-router-v4-unnum)#neighbor ce9/1 allowas-in 1
(config-router-v4-unnum)#neighbor ce11/1 activate
(config-router-v4-unnum)#neighbor ce11/1 allowas-in 1
(config-router-v4-unnum)#exit-l2vpn-unnumbered-mode
(config-router-af)#exit-address-family
(config-router)#commit
(config-router)#exit
SW1 Configuration
1. Configure the interfaces.
#configure terminal
(config)#interface po1
(config-if)#switchport
(config-if)#bridge-group 1 spanning-tree disable
(config-if)#switchport mode hybrid
(config-if)#switchport mode hybrid acceptable-frame-type all
(config-if)#switchport hybrid allowed vlan all
(config-if)#load-interval 30
(config-if)#commit
(config-if)#exit
(config)#interface ce53
(config-if)#commit
(config-if)#exit
(config)#interface ce54
(config-if)#commit
(config-if)#exit
(config)#interface xe5
(config-if)#channel-group 1 mode active
(config-if)#commit
(config-if)#exit
(config)#interface xe10
(config-if)#channel-group 1 mode active
(config-if)#commit
(config-if)#exit
(config)#interface xe57
(config-if)#switchport
(config-if)#bridge-group 1 spanning-tree disable
(config-if)#switchport mode hybrid
(config-if)#switchport mode hybrid acceptable-frame-type all
(config-if)#switchport hybrid allowed vlan all
(config-if)#load-interval 30
(config-if)#commit
(config-if)#exit
Running Configuration
BLEAF1
(config)#nvo vxlan enable
!
(config)#nvo vxlan irb
!
evpn vxlan multihoming enable
!
ip vrf l3_vrf_1
rd 7005:1001
route-target both 1001:1001
l3vni 1000
evpn-stitching
rd 7005:7001
route-target both 7001:7001
host-route-extend-l2vni 1001-1002
translation-l3vni 2000
exit-config-vrf-evpn-mode
!
nvo vxlan vtep-ip-global 10.10.10.5
!
route-map R1 permit 1
set extcommunity soo 1004:1004
!
route-map R2 deny 1
match extcommunity S1
!
route-map R2 permit 2
match evpn-route-type type-5
!
route-map R2 permit 3
match evpn-route-type type-2
!
route-map R3 permit 1
set extcommunity soo 2008:2008
!
route-map R4 deny 1
match extcommunity S2
!
route-map R4 permit 2
match evpn-route-type type-5
!
route-map R4 permit 3
match evpn-route-type type-2
!
route-map R4 permit 4
match evpn-route-type type-1
!
interface cd32/1
load-interval 30
!
interface lo
ip address 127.0.0.1/8
ip address 10.10.10.5/32 secondary
ipv6 address ::1/128
!
interface xe33
load-interval 30
ip address 17.20.20.1/24
!
interface xe34
load-interval 30
ip address 17.21.21.1/24
!
router ospf 100
bfd all-interfaces
network 10.10.10.5/32 area 0.0.0.0
network 17.20.20.0/24 area 0.0.0.0
network 17.21.21.0/24 area 0.0.0.0
!
router bgp 65004
bgp router-id 10.10.10.5
bgp auto-policy-soft-reset enable
no bgp inbound-route-filter
neighbor 10.10.10.21 remote-as 65005
neighbor 10.10.10.21 update-source lo
neighbor 10.10.10.22 remote-as 65006
neighbor 10.10.10.22 update-source lo
!
bgp unnumbered-mode
neighbor cd31/1 remote-as external
neighbor cd31/1 as-origination-interval 1
neighbor cd31/1 advertisement-interval 0
neighbor cd31/1 fall-over bfd
neighbor cd2/1 remote-as external
neighbor cd2/1 as-origination-interval 1
neighbor cd2/1 advertisement-interval 0
neighbor cd2/1 fall-over bfd
exit-unnumbered-mode
!
address-family ipv4 unicast
network 10.10.10.5/32
max-paths ebgp 4
redistribute connected
!
bgp v4-unnumbered-mode
neighbor cd31/1 activate
neighbor cd2/1 activate
exit-v4-unnumbered-mode
!
exit-address-family
!
address-family l2vpn evpn
neighbor 10.10.10.21 activate
neighbor 10.10.10.21 peer-type fabric-external
neighbor 10.10.10.21 allowas-in 1
neighbor 10.10.10.21 route-map R2 in
neighbor 10.10.10.21 route-map R1 out
neighbor 10.10.10.22 activate
neighbor 10.10.10.22 peer-type fabric-external
neighbor 10.10.10.22 allowas-in 1
neighbor 10.10.10.22 route-map R2 in
neighbor 10.10.10.22 route-map R1 out
!
bgp l2vpn-unnumbered-mode
neighbor cd31/1 activate
neighbor cd31/1 allowas-in 1
neighbor cd31/1 route-map R4 in
neighbor cd31/1 route-map R3 out
neighbor cd2/1 activate
neighbor cd2/1 allowas-in 1
neighbor cd2/1 route-map R4 in
neighbor cd2/1 route-map R3 out
exit-l2vpn-unnumbered-mode
!
exit-address-family
!
!
ip extcommunity-list standard S1 permit soo 1004:1004
ip extcommunity-list standard S2 permit soo 2008:2008
!
BLEAF2
!
nvo vxlan enable
!
nvo vxlan irb
!
evpn vxlan multihoming enable
!
ip vrf l3_vrf_1
rd 7006:1001
route-target both 1001:1001
l3vni 1000
evpn-stitching
rd 7006:7001
route-target both 7001:7001
host-route-extend-l2vni 1001-1002
translation-l3vni 2000
exit-config-vrf-evpn-mode
!
nvo vxlan vtep-ip-global 10.10.10.6
!
route-map R1 permit 1
set extcommunity soo 1004:1004
!
route-map R2 deny 1
match extcommunity S1
!
route-map R2 permit 2
match evpn-route-type type-5
!
route-map R2 permit 3
match evpn-route-type type-2
!
route-map R3 permit 1
set extcommunity soo 2008:2008
!
route-map R4 deny 1
match extcommunity S2
!
route-map R4 permit 2
match evpn-route-type type-5
!
route-map R4 permit 3
match evpn-route-type type-2
!
route-map R4 permit 4
match evpn-route-type type-1
!
interface ce50/1
load-interval 30
ip address 17.22.22.1/24
!
interface ce52
load-interval 30
!
interface ce53
load-interval 30
!
interface ce54/1
load-interval 30
ip address 17.23.23.1/24
!
interface eth0
ip vrf forwarding management
ip address dhcp
!
interface lo
ip address 127.0.0.1/8
ip address 10.10.10.6/32 secondary
ipv6 address ::1/128
!
router ospf 100
bfd all-interfaces
network 10.10.10.6/32 area 0.0.0.0
network 17.22.22.0/24 area 0.0.0.0
network 17.23.23.0/24 area 0.0.0.0
!
router bgp 65004
bgp router-id 10.10.10.6
bgp auto-policy-soft-reset enable
no bgp inbound-route-filter
neighbor 10.10.10.21 remote-as 65005
neighbor 10.10.10.21 update-source lo
neighbor 10.10.10.21 as-origination-interval 1
neighbor 10.10.10.21 advertisement-interval 0
neighbor 10.10.10.22 remote-as 65006
neighbor 10.10.10.22 update-source lo
neighbor 10.10.10.22 as-origination-interval 1
neighbor 10.10.10.22 advertisement-interval 0
!
bgp unnumbered-mode
neighbor ce52 remote-as external
neighbor ce52 as-origination-interval 1
neighbor ce52 advertisement-interval 0
neighbor ce52 fall-over bfd
neighbor ce53 remote-as external
neighbor ce53 as-origination-interval 1
neighbor ce53 advertisement-interval 0
neighbor ce53 fall-over bfd
exit-unnumbered-mode
!
address-family ipv4 unicast
network 10.10.10.6/32
max-paths ebgp 4
redistribute connected
!
bgp v4-unnumbered-mode
neighbor ce52 activate
neighbor ce53 activate
exit-v4-unnumbered-mode
!
exit-address-family
!
address-family l2vpn evpn
neighbor 10.10.10.21 activate
neighbor 10.10.10.21 peer-type fabric-external
neighbor 10.10.10.21 allowas-in 1
neighbor 10.10.10.21 route-map R2 in
neighbor 10.10.10.21 route-map R1 out
neighbor 10.10.10.22 activate
neighbor 10.10.10.22 peer-type fabric-external
neighbor 10.10.10.22 allowas-in 1
neighbor 10.10.10.22 route-map R2 in
neighbor 10.10.10.22 route-map R1 out
bgp l2vpn-unnumbered-mode
neighbor ce52 activate
neighbor ce52 allowas-in 1
neighbor ce52 route-map R4 in
neighbor ce52 route-map R3 out
neighbor ce53 activate
neighbor ce53 allowas-in 1
neighbor ce53 route-map R4 in
neighbor ce53 route-map R3 out
exit-l2vpn-unnumbered-mode
!
exit-address-family
!
ip extcommunity-list standard S1 permit soo 1004:1004
ip extcommunity-list standard S2 permit soo 2008:2008
!
end
BLEAF3
!
nvo vxlan enable
!
nvo vxlan irb
!
evpn vxlan multihoming enable
!
ip vrf l3_vrf_1
rd 7007:5001
route-target both 5001:5001
l3vni 1000
evpn-stitching
rd 7007:7001
route-target both 7001:7001
host-route-extend-l2vni 1001-1002
translation-l3vni 2000
exit-config-vrf-evpn-mode
!
nvo vxlan vtep-ip-global 10.10.10.7
!
route-map R1 permit 1
set extcommunity soo 1005:1005
!
route-map R2 deny 1
match extcommunity S1
!
route-map R2 permit 2
match evpn-route-type type-5
!
route-map R2 permit 3
match evpn-route-type type-2
!
interface lo
ip address 127.0.0.1/8
ip address 10.10.10.7/32 secondary
ipv6 address ::1/128
!
interface xe2
load-interval 30
ip address 17.19.19.1/24
!
interface xe3
load-interval 30
ip address 17.18.18.1/24
!
interface xe4
load-interval 30
!
router ospf 100
bfd all-interfaces
network 10.10.10.7/32 area 0.0.0.0
network 17.18.18.0/24 area 0.0.0.0
network 17.19.19.0/24 area 0.0.0.0
!
router bgp 65004
bgp router-id 10.10.10.7
bgp auto-policy-soft-reset enable
no bgp inbound-route-filter
neighbor 10.10.10.21 remote-as 65005
neighbor 10.10.10.21 update-source lo
neighbor 10.10.10.21 as-origination-interval 1
neighbor 10.10.10.21 advertisement-interval 0
neighbor 10.10.10.22 remote-as 65006
neighbor 10.10.10.22 update-source lo
neighbor 10.10.10.22 as-origination-interval 1
neighbor 10.10.10.22 advertisement-interval 0
!
bgp unnumbered-mode
neighbor xe7 remote-as external
neighbor xe7 as-origination-interval 1
neighbor xe7 advertisement-interval 0
neighbor xe7 fall-over bfd
exit-unnumbered-mode
!
address-family ipv4 unicast
network 10.10.10.7/32
max-paths ebgp 4
redistribute connected
bgp v4-unnumbered-mode
neighbor xe7 activate
exit-v4-unnumbered-mode
!
exit-address-family
!
address-family l2vpn evpn
neighbor 10.10.10.21 activate
neighbor 10.10.10.21 peer-type fabric-external
neighbor 10.10.10.21 allowas-in 1
neighbor 10.10.10.21 route-map R2 in
neighbor 10.10.10.21 route-map R1 out
neighbor 10.10.10.22 activate
neighbor 10.10.10.22 peer-type fabric-external
neighbor 10.10.10.22 allowas-in 1
neighbor 10.10.10.22 route-map R2 in
neighbor 10.10.10.22 route-map R1 out
bgp l2vpn-unnumbered-mode
neighbor xe7 activate
neighbor xe7 allowas-in 1
exit-l2vpn-unnumbered-mode
!
exit-address-family
!
ip extcommunity-list standard S1 permit soo 1005:1005
!
LEAF1 Configuration
!
nvo vxlan enable
!
nvo vxlan irb
!
evpn esi hold-time 90
!
evpn vxlan multihoming enable
!
ip vrf l3_vrf_1
rd 7001:1001
route-target both 1001:1001
l3vni 1000
!
mac vrf l2_vrf_1
rd 10.10.10.1:1
route-target both 101:101
!
mac vrf l2_vrf_2
rd 10.10.10.1:2
route-target both 102:102
!
mac vrf l2_vrf_3
rd 10.10.10.1:3
route-target both 103:103
!
nvo vxlan vtep-ip-global 10.10.10.1
!
nvo vxlan id 1001 ingress-replication inner-vid-disabled
vxlan host-reachability-protocol evpn-bgp l2_vrf_1
evpn irb1001
evpn irb-advertise-host-route
!
nvo vxlan id 1002 ingress-replication inner-vid-disabled
vxlan host-reachability-protocol evpn-bgp l2_vrf_2
evpn irb1002
evpn irb-advertise-host-route
!
nvo vxlan id 1003 ingress-replication inner-vid-disabled
vxlan host-reachability-protocol evpn-bgp l2_vrf_3
evpn irb1003
evpn irb-advertise-host-route
!
interface po1
switchport
bridge-group 1 spanning-tree disable
switchport mode hybrid
switchport mode hybrid acceptable-frame-type all
load-interval 30
evpn multi-homed system-mac 0000.aaaa.bbbb
!
interface irb1001
ip vrf forwarding l3_vrf_1
evpn irb-if-forwarding anycast-gateway-mac
ip address 101.1.1.1/8 anycast
ipv6 address 1001::1/48 anycast
!
interface irb1002
ip vrf forwarding l3_vrf_1
evpn irb-if-forwarding anycast-gateway-mac
ip address 102.1.1.1/8 anycast
ipv6 address 1002::1/48 anycast
!
interface irb1003
ip vrf forwarding l3_vrf_1
evpn irb-if-forwarding anycast-gateway-mac
ip address 103.1.1.1/8 anycast
ipv6 address 1003::1/48 anycast
!
interface lo
ip address 127.0.0.1/8
ip address 10.10.10.1/32 secondary
ipv6 address ::1/128
!
interface lo.management
ip vrf forwarding management
ip address 127.0.0.1/8
ipv6 address ::1/128
!
interface xe5
channel-group 1 mode active
!
interface xe8
load-interval 30
!
interface xe47
load-interval 30
!
interface xe57
switchport
!
evpn irb-forwarding anycast-gateway-mac 0000.0000.abcd
!
router bgp 65001
bgp router-id 10.10.10.1
no bgp inbound-route-filter
!
bgp unnumbered-mode
neighbor xe8 as-origination-interval 1
neighbor xe8 advertisement-interval 0
neighbor xe8 fall-over bfd
neighbor xe47 as-origination-interval 1
neighbor xe47 advertisement-interval 0
neighbor xe47 fall-over bfd
exit-unnumbered-mode
!
address-family ipv4 unicast
network 10.10.10.1/32
max-paths ebgp 4
redistribute connected
redistribute static
bgp v4-unnumbered-mode
neighbor xe8 activate
neighbor xe8 allowas-in 1
neighbor xe47 activate
neighbor xe47 allowas-in 1
exit-v4-unnumbered-mode
!
exit-address-family
!
address-family l2vpn evpn
bgp l2vpn-unnumbered-mode
neighbor xe8 activate
neighbor xe8 allowas-in 1
neighbor xe47 activate
neighbor xe47 allowas-in 1
exit-l2vpn-unnumbered-mode
!
exit-address-family
!
address-family ipv4 vrf l3_vrf_1
max-paths ebgp 4
redistribute connected
redistribute static
exit-address-family
!
address-family ipv6 vrf l3_vrf_1
max-paths ebgp 4
redistribute connected
redistribute static
exit-address-family
!
!
ip route vrf l3_vrf_1 101.1.1.240/32 irb1001
!
nvo vxlan access-if port-vlan po1 101
map vnid 1001
!
nvo vxlan access-if port-vlan po1 102
map vnid 1002
!
nvo vxlan access-if port-vlan po1 103
map vnid 1003
!
LEAF2
!
nvo vxlan enable
nvo vxlan irb
!
evpn esi hold-time 90
!
evpn vxlan multihoming enable
!
ip vrf l3_vrf_1
rd 7002:1001
route-target both 1001:1001
l3vni 1000
!
mac vrf l2_vrf_1
rd 10.10.10.2:1
route-target both 101:101
!
mac vrf l2_vrf_2
rd 10.10.10.2:2
route-target both 102:102
!
mac vrf l2_vrf_3
rd 10.10.10.2:3
route-target both 103:103
!
nvo vxlan vtep-ip-global 10.10.10.2
!
nvo vxlan id 1001 ingress-replication inner-vid-disabled
vxlan host-reachability-protocol evpn-bgp l2_vrf_1
evpn irb1001
evpn irb-advertise-host-route
!
nvo vxlan id 1002 ingress-replication inner-vid-disabled
vxlan host-reachability-protocol evpn-bgp l2_vrf_2
evpn irb1002
evpn irb-advertise-host-route
!
nvo vxlan id 1003 ingress-replication inner-vid-disabled
vxlan host-reachability-protocol evpn-bgp l2_vrf_3
evpn irb1003
evpn irb-advertise-host-route
!
interface po1
switchport
bridge-group 1 spanning-tree disable
switchport mode hybrid
switchport mode hybrid acceptable-frame-type all
load-interval 30
evpn multi-homed system-mac 0000.aaaa.bbbb
!
interface irb1001
ip vrf forwarding l3_vrf_1
evpn irb-if-forwarding anycast-gateway-mac
ip address 101.1.1.1/8 anycast
ipv6 address 1001::1/48 anycast
!
interface irb1002
ip vrf forwarding l3_vrf_1
evpn irb-if-forwarding anycast-gateway-mac
ip address 102.1.1.1/8 anycast
ipv6 address 1002::1/48 anycast
!
interface irb1003
ip vrf forwarding l3_vrf_1
evpn irb-if-forwarding anycast-gateway-mac
ip address 103.1.1.1/8 anycast
ipv6 address 1003::1/48 anycast
!
interface lo
ip address 127.0.0.1/8
ip address 10.10.10.2/32 secondary
ipv6 address ::1/128
!
interface xe1
load-interval 30
!
interface xe3
load-interval 30
!
interface xe10
channel-group 1 mode active
!
evpn irb-forwarding anycast-gateway-mac 0000.0000.abcd
!
router bgp 65001
bgp router-id 10.10.10.2
no bgp inbound-route-filter
bgp unnumbered-mode
neighbor xe3 as-origination-interval 1
neighbor xe3 advertisement-interval 0
neighbor xe3 fall-over bfd
neighbor xe1 as-origination-interval 1
neighbor xe1 fall-over bfd
exit-unnumbered-mode
!
address-family ipv4 unicast
network 10.10.10.2/32
max-paths ebgp 4
redistribute connected
redistribute static
bgp v4-unnumbered-mode
neighbor xe3 activate
neighbor xe3 allowas-in 1
neighbor xe1 activate
neighbor xe1 allowas-in 1
exit-v4-unnumbered-mode
!
exit-address-family
!
address-family l2vpn evpn
bgp l2vpn-unnumbered-mode
neighbor xe3 activate
neighbor xe3 allowas-in 1
neighbor xe1 activate
neighbor xe1 allowas-in 1
exit-l2vpn-unnumbered-mode
!
exit-address-family
!
address-family ipv4 vrf l3_vrf_1
max-paths ebgp 4
redistribute connected
redistribute static
exit-address-family
!
address-family ipv6 vrf l3_vrf_1
max-paths ebgp 4
redistribute connected
redistribute static
exit-address-family
!
!
ip route vrf l3_vrf_1 101.1.1.240/32 irb1001
!
nvo vxlan access-if port-vlan po1 101
map vnid 1001
!
nvo vxlan access-if port-vlan po1 102
map vnid 1002
!
nvo vxlan access-if port-vlan po1 103
map vnid 1003
!
LEAF3
!
nvo vxlan enable
!
nvo vxlan irb
!
evpn vxlan multihoming enable
!
ip vrf l3_vrf_1
rd 7004:5001
route-target both 5001:5001
l3vni 1000
!
mac vrf l2_vrf_1
rd 10.10.10.4:1
route-target both 201:201
!
mac vrf l2_vrf_2
rd 10.10.10.4:2
route-target both 202:202
!
mac vrf l2_vrf_3
rd 10.10.10.4:3
route-target both 203:203
!
nvo vxlan vtep-ip-global 10.10.10.4
!
nvo vxlan id 1001 ingress-replication inner-vid-disabled
vxlan host-reachability-protocol evpn-bgp l2_vrf_1
evpn irb1001
evpn irb-advertise-host-route
!
nvo vxlan id 1002 ingress-replication inner-vid-disabled
vxlan host-reachability-protocol evpn-bgp l2_vrf_2
evpn irb1002
evpn irb-advertise-host-route
!
nvo vxlan id 1003 ingress-replication inner-vid-disabled
vxlan host-reachability-protocol evpn-bgp l2_vrf_3
evpn irb1003
evpn irb-advertise-host-route
!
interface ce4
load-interval 30
!
interface ce31
!
interface irb1001
ip vrf forwarding l3_vrf_1
ip address 201.1.1.1/8
ipv6 address 2001::1/48
!
interface irb1002
ip vrf forwarding l3_vrf_1
ip address 202.1.1.1/8
ipv6 address 2002::1/48
!
interface irb1003
ip vrf forwarding l3_vrf_1
ip address 203.1.1.1/8
ipv6 address 2003::1/48
!
interface lo
ip address 127.0.0.1/8
ip address 10.10.10.4/32 secondary
ipv6 address ::1/128
!
interface xe1/2
switchport
load-interval 30
!
interface xe34
switchport
load-interval 30
!
router bgp 65001
bgp router-id 10.10.10.4
no bgp inbound-route-filter
bgp unnumbered-mode
neighbor ce4 as-origination-interval 1
neighbor ce4 advertisement-interval 0
neighbor ce4 fall-over bfd
exit-unnumbered-mode
!
address-family ipv4 unicast
network 10.10.10.4/32
max-paths ebgp 4
redistribute connected
redistribute static
bgp v4-unnumbered-mode
neighbor ce4 activate
neighbor ce4 allowas-in 1
exit-v4-unnumbered-mode
!
exit-address-family
!
address-family l2vpn evpn
bgp l2vpn-unnumbered-mode
neighbor ce4 activate
neighbor ce4 allowas-in 1
exit-l2vpn-unnumbered-mode
!
exit-address-family
!
address-family ipv4 vrf l3_vrf_1
max-paths ebgp 4
redistribute connected
redistribute static
exit-address-family
!
address-family ipv6 vrf l3_vrf_1
max-paths ebgp 4
redistribute connected
redistribute static
exit-address-family
!
!
ip route vrf l3_vrf_1 201.1.1.240/32 irb1001
!
nvo vxlan access-if port-vlan xe34 2001
map vnid 1001
!
nvo vxlan access-if port-vlan xe34 2002
map vnid 1002
!
nvo vxlan access-if port-vlan xe34 2003
map vnid 1003
!
R1
!
interface lo
ip address 127.0.0.1/8
ip address 10.10.10.21/32 secondary
ipv6 address ::1/128
!
interface lo.management
ip vrf forwarding management
ip address 127.0.0.1/8
ipv6 address ::1/128
!
interface xe1/1
load-interval 30
ip address 17.20.20.2/24
!
interface xe1/2
load-interval 30
ip address 17.19.19.2/24
!
interface xe6/1
ip address 17.24.24.2/24
!
interface xe31/1
load-interval 30
ip address 17.22.22.2/24
!
router ospf 100
bfd all-interfaces
network 10.10.10.21/32 area 0.0.0.0
network 17.19.19.0/24 area 0.0.0.0
network 17.20.20.0/24 area 0.0.0.0
network 17.22.22.0/24 area 0.0.0.0
network 17.24.24.0/24 area 0.0.0.0
!
router bgp 65005
bgp router-id 10.10.10.21
no bgp inbound-route-filter
neighbor 10.10.10.5 remote-as 65004
neighbor 10.10.10.5 update-source lo
neighbor 10.10.10.5 as-origination-interval 1
neighbor 10.10.10.5 advertisement-interval 0
neighbor 10.10.10.6 remote-as 65004
neighbor 10.10.10.6 update-source lo
neighbor 10.10.10.6 as-origination-interval 1
neighbor 10.10.10.6 advertisement-interval 0
neighbor 10.10.10.7 remote-as 65004
neighbor 10.10.10.7 update-source lo
neighbor 10.10.10.7 as-origination-interval 1
neighbor 10.10.10.7 advertisement-interval 0
neighbor 10.10.10.22 remote-as 65006
neighbor 10.10.10.22 update-source lo
neighbor 10.10.10.22 as-origination-interval 1
neighbor 10.10.10.22 advertisement-interval 0
address-family ipv4 unicast
network 10.10.10.21/32
max-paths ebgp 4
redistribute connected
exit-address-family
!
address-family l2vpn evpn
neighbor 10.10.-10.5 activate
neighbor 10.10.10.5 allowas-in 1
neighbor 10.10.10.6 activate
neighbor 10.10.10.6 allowas-in 1
neighbor 10.10.10.7 activate
neighbor 10.10.10.7 allowas-in 1
neighbor 10.10.10.22 activate
neighbor 10.10.10.22 allowas-in 1
exit-address-family
!
!
R2
!
interface lo
ip address 127.0.0.1/8
ip address 10.10.10.22/32 secondary
ipv6 address ::1/128
!
interface xe1/1
load-interval 30
ip address 17.21.21.2/24
!
interface xe1/2
load-interval 30
ip address 17.18.18.2/24
!
interface xe6/1
ip address 17.24.24.1/24
!
interface xe31/1
load-interval 30
ip address 17.23.23.2/24
!
router ospf 100
bfd all-interfaces
network 10.10.10.22/32 area 0.0.0.0
network 17.18.18.0/24 area 0.0.0.0
network 17.21.21.0/24 area 0.0.0.0
network 17.23.23.0/24 area 0.0.0.0
network 17.24.24.0/24 area 0.0.0.0
!
router bgp 65006
bgp router-id 10.10.10.22
no bgp inbound-route-filter
neighbor 10.10.10.5 remote-as 65004
neighbor 10.10.10.5 update-source lo
neighbor 10.10.10.5 as-origination-interval 1
neighbor 10.10.10.5 advertisement-interval 0
neighbor 10.10.10.6 remote-as 65004
neighbor 10.10.10.6 update-source lo
neighbor 10.10.10.6 as-origination-interval 1
neighbor 10.10.10.6 advertisement-interval 0
neighbor 10.10.10.7 remote-as 65004
neighbor 10.10.10.7 update-source lo
neighbor 10.10.10.7 as-origination-interval 1
neighbor 10.10.10.7 advertisement-interval 0
neighbor 10.10.10.21 remote-as 65005
neighbor 10.10.10.21 update-source lo
neighbor 10.10.10.21 as-origination-interval 1
neighbor 10.10.10.21 advertisement-interval 0
address-family ipv4 unicast
network 10.10.10.22/32
redistribute connected
exit-address-family
!
address-family l2vpn evpn
neighbor 10.10.10.5 activate
neighbor 10.10.10.5 allowas-in 1
neighbor 10.10.10.6 activate
neighbor 10.10.10.6 allowas-in 1
neighbor 10.10.10.7 activate
neighbor 10.10.10.7 allowas-in 1
neighbor 10.10.10.21 activate
neighbor 10.10.10.21 allowas-in 1
exit-address-family
!
!
SPINE1
!
interface ce49
load-interval 30
!
interface lo
ip address 127.0.0.1/8
ip address 10.10.10.11/32 secondary
ipv6 address ::1/128
!
interface xe8
load-interval 30
!
interface xe45
load-interval 30
!
interface xe47
load-interval 30
!
router bgp 65002
bgp router-id 10.10.10.11
no bgp inbound-route-filter
bgp unnumbered-mode
neighbor xe3 as-origination-interval 1
neighbor xe3 advertisement-interval 0
neighbor xe3 fall-over bfd
neighbor ce49 as-origination-interval 1
neighbor ce49 advertisement-interval 0
neighbor ce49 fall-over bfd
neighbor xe8 as-origination-interval 1
neighbor xe8 advertisement-interval 0
neighbor xe8 fall-over bfd
neighbor xe45 as-origination-interval 1
neighbor xe45 advertisement-interval 0
neighbor xe45 fall-over bfd
exit-unnumbered-mode
!
address-family ipv4 unicast
network 10.10.10.11/32
max-paths ebgp 4
redistribute connected
redistribute static
bgp v4-unnumbered-mode
neighbor xe3 activate
neighbor xe3 allowas-in 1
neighbor ce49 activate
neighbor ce49 allowas-in 1
neighbor xe8 activate
neighbor xe8 allowas-in 1
neighbor xe45 activate
neighbor xe45 allowas-in 1
exit-v4-unnumbered-mode
!
exit-address-family
!
address-family l2vpn evpn
bgp l2vpn-unnumbered-mode
neighbor xe3 activate
neighbor xe3 allowas-in 1
neighbor ce49 activate
neighbor ce49 allowas-in 1
neighbor xe8 activate
neighbor xe8 allowas-in 1
neighbor xe45 activate
neighbor xe45 allowas-in 1
exit-l2vpn-unnumbered-mode
!
exit-address-family
!
!
SPINE2
!
interface ce50
load-interval 30
!
interface lo
ip address 127.0.0.1/8
ip address 10.10.10.12/32 secondary
ipv6 address ::1/128
!
interface xe1
load-interval 30
!
interface xe47
load-interval 30
!
interface xe57
load-interval 30
!
router bgp 65002
bgp router-id 10.10.10.12
no bgp inbound-route-filter
bgp unnumbered-mode
neighbor xe57 as-origination-interval 1
neighbor xe57 advertisement-interval 0
neighbor xe57 fall-over bfd
neighbor xe47 as-origination-interval 1
neighbor xe47 advertisement-interval 0
neighbor xe47 fall-over bfd
neighbor ce50 as-origination-interval 1
neighbor ce50 advertisement-interval 0
neighbor ce50 fall-over bfd
neighbor xe1 as-origination-interval 1
neighbor xe1 advertisement-interval 0
neighbor xe1 fall-over bfd
exit-unnumbered-mode
!
address-family ipv4 unicast
network 10.10.10.12/32
max-paths ebgp 4
redistribute connected
redistribute static
bgp v4-unnumbered-mode
neighbor xe57 activate
neighbor xe57 allowas-in 1
neighbor xe47 activate
neighbor xe47 allowas-in 1
neighbor ce50 activate
neighbor ce50 allowas-in 1
neighbor xe1 activate
neighbor xe1 allowas-in 1
exit-v4-unnumbered-mode
!
exit-address-family
!
address-family l2vpn evpn
bgp l2vpn-unnumbered-mode
neighbor xe57 activate
neighbor xe57 allowas-in 1
neighbor xe47 activate
neighbor xe47 allowas-in 1
neighbor ce50 activate
neighbor ce50 allowas-in 1
neighbor xe1 activate
neighbor xe1 allowas-in 1
exit-l2vpn-unnumbered-mode
!
exit-address-family
!
!
SPINE3
!
interface ce49
load-interval 30
!
interface lo
ip address 127.0.0.1/8
ip address 10.10.10.16/32 secondary
ipv6 address ::1/128
!
interface xe4
load-interval 30
!
router bgp 65002
bgp router-id 10.10.10.16
no bgp inbound-route-filter
bgp unnumbered-mode
neighbor xe7 as-origination-interval 1
neighbor xe7 advertisement-interval 0
neighbor xe7 fall-over bfd
neighbor ce49 as-origination-interval 1
neighbor ce49 advertisement-interval 0
neighbor ce49 fall-over bfd
exit-unnumbered-mode
!
address-family ipv4 unicast
network 10.10.10.12/32
max-paths ebgp 4
redistribute connected
redistribute static
bgp v4-unnumbered-mode
neighbor xe57 activate
neighbor xe57 allowas-in 1
neighbor xe47 activate
neighbor xe47 allowas-in 1
neighbor ce50 activate
neighbor ce50 allowas-in 1
neighbor xe1 activate
neighbor xe1 allowas-in 1
exit-v4-unnumbered-mode
!
exit-address-family
!
address-family l2vpn evpn
bgp l2vpn-unnumbered-mode
neighbor xe7 activate
neighbor xe7 allowas-in 1
neighbor ce49 activate
neighbor ce49 allowas-in 1
exit-l2vpn-unnumbered-mode
!
exit-address-family
!
!
SuperSpine1
!
interface ce1/3
load-interval 30
!
interface ce1/4
load-interval 30
!
interface ce2/1
load-interval 30
!
interface ce29/1
load-interval 30
!
interface ce31/1
load-interval 30
!
interface lo
ip address 127.0.0.1/8
ip address 10.10.10.14/32 secondary
ipv6 address ::1/128
!
router bgp 65003
bgp router-id 10.10.10.14
no bgp inbound-route-filter
bgp unnumbered-mode
neighbor ce1/4 as-origination-interval 1
neighbor ce1/4 advertisement-interval 0
neighbor ce1/4 fall-over bfd
neighbor ce31/1 as-origination-interval 1
neighbor ce31/1 advertisement-interval 0
neighbor ce31/1 fall-over bfd
neighbor ce29/1 as-origination-interval 1
neighbor ce29/1 advertisement-interval 0
neighbor ce29/1 fall-over bfd
neighbor ce1/3 as-origination-interval 1
neighbor ce1/3 advertisement-interval 0
neighbor ce1/3 fall-over bfd
exit-unnumbered-mode
!
address-family ipv4 unicast
network 10.10.10.14/32
max-paths ebgp 4
redistribute connected
redistribute static
bgp v4-unnumbered-mode
neighbor ce1/4 activate
neighbor ce1/4 allowas-in 1
neighbor ce31/1 activate
neighbor ce31/1 allowas-in 1
neighbor ce29/1 activate
neighbor ce29/1 allowas-in 1
neighbor ce1/3 activate
neighbor ce1/3 allowas-in 1
exit-v4-unnumbered-mode
!
exit-address-family
!
address-family l2vpn evpn
bgp l2vpn-unnumbered-mode
neighbor ce1/4 activate
neighbor ce1/4 allowas-in 1
neighbor ce31/1 activate
neighbor ce31/1 allowas-in 1
neighbor ce29/1 activate
neighbor ce29/1 allowas-in 1
neighbor ce1/3 activate
neighbor ce1/3 allowas-in 1
exit-l2vpn-unnumbered-mode
exit-address-family
!
!
SuperSpine2
!
interface ce9/1
load-interval 30
!
interface ce11/1
load-interval 30
!
interface ce14/1
load-interval 30
!
interface ce15/1
load-interval 30
!
interface lo
ip address 127.0.0.1/8
ip address 10.10.10.15/32 secondary
ipv6 address ::1/128
!
router bgp 65003
bgp router-id 10.10.10.15
no bgp inbound-route-filter
bgp unnumbered-mode
neighbor ce14/1 fall-over bfd
neighbor ce15/1 fall-over bfd
neighbor ce9/1 fall-over bfd
neighbor ce11/1 fall-over bfd
neighbor ce14/1 as-origination-interval 1
neighbor ce14/1 advertisement-interval 0
neighbor ce15/1 as-origination-interval 1
neighbor ce15/1 advertisement-interval 0
neighbor ce9/1 as-origination-interval 1
neighbor ce9/1 advertisement-interval 0
neighbor ce11/1 as-origination-interval 1
neighbor ce11/1 advertisement-interval 0
exit-unnumbered-mode
!
address-family ipv4 unicast
network 10.10.10.15/32
max-paths ebgp 4
redistribute connected
redistribute static
bgp v4-unnumbered-mode
neighbor ce14/1 activate
neighbor ce14/1 allowas-in 1
neighbor ce15/1 activate
neighbor ce15/1 allowas-in 1
neighbor ce9/1 activate
neighbor ce9/1 allowas-in 1
neighbor ce11/1 activate
neighbor ce11/1 allowas-in 1
exit-v4-unnumbered-mode
!
exit-address-family
!
address-family l2vpn evpn
bgp l2vpn-unnumbered-mode
neighbor ce14/1 activate
neighbor ce14/1 allowas-in 1
neighbor ce15/1 activate
neighbor ce15/1 allowas-in 1
neighbor ce9/1 activate
neighbor ce9/1 allowas-in 1
neighbor ce11/1 activate
neighbor ce11/1 allowas-in 1
exit-l2vpn-unnumbered-mode
!
exit-address-family
!
SW1
!
interface po1
switchport
bridge-group 1 spanning-tree disable
switchport mode hybrid
switchport mode hybrid acceptable-frame-type all
switchport hybrid allowed vlan all
load-interval 30
!
interface ce53
!
interface ce54
!
interface xe5
channel-group 1 mode active
!
interface xe10
channel-group 1 mode active
!
interface xe57
switchport
bridge-group 1 spanning-tree disable
switchport mode hybrid
switchport mode hybrid acceptable-frame-type all
switchport hybrid allowed vlan all
load-interval 30
!
Validation
Note: xw denotes EVPN routes learned from external sites or via a stitched tunnel.
BLEAF1
BLEAF1#show nvo vxlan
VXLAN Information
=================
Codes: NW - Network Port
AC - Access Port
(u) - Untagged
VNID VNI-Name VNI-Type Type Interface ESI VLAN DF-Status Src-Addr Dst-Addr Router-Mac
_______________________________________________________________________________________________________________________________________________
1000 ---- L3 NW ---- ---- ---- ---- 10.10.10.5 10.10.10.1 1444.8fc8.0fc9
1000 ---- L3 NW ---- ---- ---- ---- 10.10.10.5 10.10.10.2 9819.2c9b.37d3
2000 ---- L3 NW ---- ---- ---- ---- 10.10.10.5 10.10.10.7 1444.8fc9.07c9
Total number of entries are 3
BLEAF1#show nvo vxlan tunnel
VXLAN Network tunnel Entries
Source Destination Status Up/Down Update
========================================================================
10.10.10.5 10.10.10.1 Installed 00:40:21 00:40:21
10.10.10.5 10.10.10.2 Installed 00:40:21 00:40:21
10.10.10.5 10.10.10.7 Installed 00:40:22 00:40:22
Total number of entries are 3
BLEAF1#show nvo vxlan arp-cache
VXLAN ARP-CACHE Information
===========================
VNID Ip-Addr Mac-Addr Type Age-Out Retries-Left
_______________________________________________________________________________________
Total number of entries are 0
BLEAF1#show nvo vxlan nd-cache
VXLAN ND-CACHE Information
===========================
VNID Ip-Addr Mac-Addr Type Age-Out Retries-Left
____________________________________________________________________________________________________
Total number of entries are 0
BLEAF1#show ip bgp summary
BGP router identifier 10.10.10.5, local AS number 65004
BGP table version is 41
7 BGP AS-PATH entries
0 BGP community entries
4 Configured ebgp ECMP multipath: Currently set at 4
Neighbor V AS MsgRcv MsgSen TblVer InQ OutQ Up/Down State/PfxRcd Desc
cd31/1(fe80::230:abff:feea:da1e) 4 65003 3612 2961 40 0 0 00:40:22 6
cd2/1(fe80::36ef:b6ff:fe69:fc46) 4 65003 2873 2507 41 0 0 00:40:22 6
Total number of neighbors 2
Total number of Established sessions 2
BLEAF1#show bgp l2vpn evpn summary
BGP router identifier 10.10.10.5, local AS number 65004
BGP table version is 269
7 BGP AS-PATH entries
0 BGP community entries
Neighbor V AS MsgRcv MsgSen TblVer InQ OutQ Up/Down State/PfxRcd AD MACIP MCAST ESI PREFIX-ROUTE Desc
cd31/1(fe80::230:abff:feea:da1e) 4 65003 3612 2961 266 0 0 00:40:22 53 8 31 0 0 14
cd2/1(fe80::36ef:b6ff:fe69:fc46) 4 65003 2873 2507 269 0 0 00:40:22 53 8 31 0 0 14
10.10.10.21 4 65005 3037 2725 269 0 0 00:40:22 11 0 0 0 0 11
10.10.10.22 4 65006 2989 2727 269 0 0 00:40:22 11 0 0 0 0 11
Total number of neighbors 4
Total number of Established sessions 4
BLEAF1#show ip route vrf all
Codes: K - kernel, C - connected, S - static, R - RIP, B - BGP
O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2,
ia - IS-IS inter area, E - EVPN,
v - vrf leaked
* - candidate default
IP Route Table for VRF "default"
B 10.10.10.1/32 [20/0] via fe80::36ef:b6ff:fe69:fc46, cd2/1, installed 00:40:21, last update 00:40:21 ago
[20/0] via fe80::230:abff:feea:da1e, cd31/1
B 10.10.10.2/32 [20/0] via fe80::36ef:b6ff:fe69:fc46, cd2/1, installed 00:40:21, last update 00:40:21 ago
[20/0] via fe80::230:abff:feea:da1e, cd31/1
C 10.10.10.5/32 is directly connected, lo, installed 18:47:39, last update 18:47:39 ago
O 10.10.10.6/32 [110/3] via 17.20.20.2, xe33, installed 18:46:43, last update 04:45:36 ago
[110/3] via 17.21.21.2, xe34
O 10.10.10.7/32 [110/3] via 17.20.20.2, xe33, installed 18:46:43, last update 04:45:36 ago
[110/3] via 17.21.21.2, xe34
B 10.10.10.11/32 [20/0] via fe80::36ef:b6ff:fe69:fc46, cd2/1, installed 00:40:22, last update 00:40:22 ago
[20/0] via fe80::230:abff:feea:da1e, cd31/1
B 10.10.10.12/32 [20/0] via fe80::36ef:b6ff:fe69:fc46, cd2/1, installed 00:40:22, last update 00:40:22 ago
[20/0] via fe80::230:abff:feea:da1e, cd31/1
B 10.10.10.14/32 [20/0] via fe80::230:abff:feea:da1e, cd31/1, installed 00:40:21, last update 00:40:21 ago
B 10.10.10.15/32 [20/0] via fe80::36ef:b6ff:fe69:fc46, cd2/1, installed 00:40:21, last update 00:40:21 ago
O 10.10.10.21/32 [110/2] via 17.20.20.2, xe33, installed 18:46:43, last update 18:46:43 ago
O 10.10.10.22/32 [110/2] via 17.21.21.2, xe34, installed 04:45:36, last update 04:45:36 ago
O 17.18.18.0/24 [110/2] via 17.21.21.2, xe34, installed 04:45:36, last update 04:45:36 ago
O 17.19.19.0/24 [110/2] via 17.20.20.2, xe33, installed 18:46:43, last update 18:46:43 ago
C 17.20.20.0/24 is directly connected, xe33, installed 18:47:29, last update 18:47:29 ago
C 17.21.21.0/24 is directly connected, xe34, installed 04:46:22, last update 04:46:22 ago
O 17.22.22.0/24 [110/2] via 17.20.20.2, xe33, installed 18:46:43, last update 18:46:43 ago
O 17.23.23.0/24 [110/2] via 17.21.21.2, xe34, installed 04:45:36, last update 04:45:36 ago
O 17.24.24.0/24 [110/2] via 17.21.21.2, xe34, installed 18:46:43, last update 04:45:36 ago
[110/2] via 17.20.20.2, xe33
C 127.0.0.0/8 is directly connected, lo, installed 18:48:20, last update 18:48:20 ago
IP Route Table for VRF "management"
C 10.16.111.0/24 is directly connected, eth0, installed 18:47:34, last update 18:47:34 ago
C 127.0.0.0/8 is directly connected, lo.management, installed 18:48:20, last update 18:48:20 ago
IP Route Table for VRF "l3_vrf_1"
B 10.10.10.1/32 [0/0] is directly connected, tunvxlan2, installed 00:40:21, last update 00:40:21 ago
B 10.10.10.2/32 [0/0] is directly connected, tunvxlan2, installed 00:40:21, last update 00:40:21 ago
B 10.10.10.7/32 [0/0] is directly connected, tunvxlanw2, installed 00:40:22, last update 00:40:22 ago
B 101.0.0.0/8 [20/0] via 10.10.10.1 (recursive is directly connected, tunvxlan2), installed 00:40:22, last update 00:40:22 ago
B 101.1.1.2/32 [20/0] via 10.10.10.1 (recursive is directly connected, tunvxlan2), installed 00:01:24, last update 00:01:24 ago
B 101.1.1.240/32 [20/0] via 10.10.10.1 (recursive is directly connected, tunvxlan2), installed 00:40:22, last update 00:40:22 ago
B 102.0.0.0/8 [20/0] via 10.10.10.1 (recursive is directly connected, tunvxlan2), installed 00:40:22, last update 00:40:22 ago
B 102.1.1.2/32 [20/0] via 10.10.10.2 (recursive is directly connected, tunvxlan2), installed 00:11:24, last update 00:11:24 ago
B 103.0.0.0/8 [20/0] via 10.10.10.1 (recursive is directly connected, tunvxlan2), installed 00:40:22, last update 00:40:22 ago
B 103.1.1.2/32 [20/0] via 10.10.10.2 (recursive is directly connected, tunvxlan2), installed 00:11:24, last update 00:11:24 ago
C 127.0.0.0/8 is directly connected, lo.l3_vrf_1, installed 18:47:53, last update 18:47:53 ago
B 201.0.0.0/8 [20/0] via 10.10.10.7 (recursive is directly connected, tunvxlanw2), installed 00:40:22, last update 00:40:22 ago
B 201.1.1.2/32 [20/0] via 10.10.10.7 (recursive is directly connected, tunvxlanw2), installed 00:02:49, last update 00:02:49 ago
B 201.1.1.240/32 [20/0] via 10.10.10.7 (recursive is directly connected, tunvxlanw2), installed 00:40:22, last update 00:40:22 ago
B 202.0.0.0/8 [20/0] via 10.10.10.7 (recursive is directly connected, tunvxlanw2), installed 00:40:22, last update 00:40:22 ago
B 202.1.1.2/32 [20/0] via 10.10.10.7 (recursive is directly connected, tunvxlanw2), installed 00:02:49, last update 00:02:49 ago
B 203.0.0.0/8 [20/0] via 10.10.10.7 (recursive is directly connected, tunvxlanw2), installed 00:40:22, last update 00:40:22 ago
Gateway of last resort is not set
BLEAF1#show ipv6 route vrf all
IPv6 Routing Table
Codes: K - kernel route, C - connected, S - static, D- DHCP, R - RIP,
O - OSPF, IA - OSPF inter area, E1 - OSPF external type 1,
E2 - OSPF external type 2, E - EVPN N1 - OSPF NSSA external type 1,
N2 - OSPF NSSA external type 2, i - IS-IS, B - BGP, v - vrf leaked
Timers: Uptime
IP Route Table for VRF "default"
C ::1/128 via ::, lo, installed 18:48:20, last update 18:48:20 ago
C fe80::/64 via ::, cd1/3, installed 03:55:43, last update 03:55:43 ago
IP Route Table for VRF "management"
C ::1/128 via ::, lo.management, installed 18:48:20, last update 18:48:20 ago
C fe80::/64 via ::, eth0, installed 18:48:20, last update 18:48:20 ago
IP Route Table for VRF "l3_vrf_1"
C ::1/128 via ::, lo.l3_vrf_1, installed 18:47:53, last update 18:47:53 ago
B ::ffff:a0a:a01/128 [0/0] via ::, tunvxlan2, installed 00:40:21, last update 00:40:21 ago
B ::ffff:a0a:a02/128 [0/0] via ::, tunvxlan2, installed 00:40:21, last update 00:40:21 ago
B ::ffff:a0a:a07/128 [0/0] via ::, tunvxlanw2, installed 00:40:22, last update 00:40:22 ago
B 1001::/48 [20/0] via ::ffff:a0a:a01 (recursive via ::, tunvxlan2), installed 00:40:22, last update 00:40:22 ago
B 1001::2/128 [20/0] via ::ffff:a0a:a01 (recursive via ::, tunvxlan2), installed 00:01:24, last update 00:01:24 ago
B 1002::/48 [20/0] via ::ffff:a0a:a01 (recursive via ::, tunvxlan2), installed 00:40:22, last update 00:40:22 ago
B 1002::2/128 [20/0] via ::ffff:a0a:a02 (recursive via ::, tunvxlan2), installed 00:11:24, last update 00:11:24 ago
B 1003::/48 [20/0] via ::ffff:a0a:a01 (recursive via ::, tunvxlan2), installed 00:40:22, last update 00:40:22 ago
B 1003::2/128 [20/0] via ::ffff:a0a:a01 (recursive via ::, tunvxlan2), installed 00:02:09, last update 00:02:09 ago
B 2001::/48 [20/0] via ::ffff:a0a:a07 (recursive via ::, tunvxlanw2), installed 00:40:22, last update 00:40:22 ago
B 2001::2/128 [20/0] via ::ffff:a0a:a07 (recursive via ::, tunvxlanw2), installed 00:02:49, last update 00:02:49 ago
B 2002::/48 [20/0] via ::ffff:a0a:a07 (recursive via ::, tunvxlanw2), installed 00:40:22, last update 00:40:22 ago
B 2002::2/128 [20/0] via ::ffff:a0a:a07 (recursive via ::, tunvxlanw2), installed 00:02:49, last update 00:02:49 ago
B 2003::/48 [20/0] via ::ffff:a0a:a07 (recursive via ::, tunvxlanw2), installed 00:40:22, last update 00:40:22 ago
C fe80::/64 via ::, tunvxlanw2, installed 18:47:39, last update 18:47:39 ago
B fe80::1/128 [20/0] via ::ffff:a0a:a02 (recursive via ::, tunvxlan2), installed 00:11:25, last update 00:11:25 ago
BLEAF1#show bgp vrf all
BGP table version is 1, local router ID is 13.1.1.1
Status codes: s suppressed, d damped, h history, a add-path, b back-up, * valid, > best, i - internal,
l - labeled, S Stale, x-EVPN, w-Stitched-routes
Origin codes: i - IGP, e - EGP, ? - incomplete
Description : Ext-Color - Extended community color
Network Next Hop Metric LocPrf Weight Path Ext-Color
BGP Route Table for VRF l3_vrf_1
*>x 101.0.0.0 10.10.10.1 0 100 0 65003 65002 65001 ?
* x 10.10.10.2 0 100 0 65003 65002 65001 ?
*>x 101.1.1.2/32 10.10.10.1 0 100 0 65003 65002 65001 i
*>x 101.1.1.240/32 10.10.10.1 0 100 0 65003 65002 65001 ?
* x 10.10.10.2 0 100 0 65003 65002 65001 ?
*>x 102.0.0.0 10.10.10.1 0 100 0 65003 65002 65001 ?
* x 10.10.10.2 0 100 0 65003 65002 65001 ?
*>x 102.1.1.2/32 10.10.10.2 0 100 0 65003 65002 65001 i
*>x 103.0.0.0 10.10.10.1 0 100 0 65003 65002 65001 ?
* x 10.10.10.2 0 100 0 65003 65002 65001 ?
*>x 103.1.1.2/32 10.10.10.2 0 100 0 65003 65002 65001 i
*>xw201.0.0.0/8 10.10.10.7 0 100 0 65006 65004 ?
*>xw201.1.1.2/32 10.10.10.7 0 100 0 65005 65004 i
*>xw201.1.1.240/32 10.10.10.7 0 100 0 65006 65004 ?
*>xw202.0.0.0/8 10.10.10.7 0 100 0 65006 65004 ?
*>xw202.1.1.2/32 10.10.10.7 0 100 0 65005 65004 i
*>xw203.0.0.0/8 10.10.10.7 0 100 0 65006 65004 ?
Total number of prefixes 13
*> 10.10.10.1/32 fe80::36ef:b6ff:fe69:fc46 0 100 0 65003 65002 65001 i
* fe80::230:abff:feea:da1e 0 100 0 65003 65002 65001 i
*> 10.10.10.2/32 fe80::230:abff:feea:da1e 0 100 0 65003 65002 65001 i
* fe80::36ef:b6ff:fe69:fc46 0 100 0 65003 65002 65001 i
*> 10.10.10.5/32 0.0.0.0 0 100 32768 i
* 0.0.0.0 0 100 32768 ?
*> 10.10.10.11/32 fe80::36ef:b6ff:fe69:fc46 0 100 0 65003 65002 i
* fe80::230:abff:feea:da1e 0 100 0 65003 65002 i
*> 10.10.10.12/32 fe80::36ef:b6ff:fe69:fc46 0 100 0 65003 65002 i
* fe80::230:abff:feea:da1e 0 100 0 65003 65002 i
*> 10.10.10.14/32 fe80::230:abff:feea:da1e 0 100 0 65003 i
* fe80::36ef:b6ff:fe69:fc46 0 100 0 65003 65002 65003 i
*> 10.10.10.15/32 fe80::36ef:b6ff:fe69:fc46 0 100 0 65003 i
* fe80::230:abff:feea:da1e 0 100 0 65003 65002 65003 i
*> 17.20.20.0/24 0.0.0.0 0 100 32768 ?
*> 17.21.21.0/24 0.0.0.0 0 100 32768 ?
Total number of prefixes 9
BLEAF1#show bgp ipv6 unicast vrf all
BGP table version is 1, local router ID is 13.1.1.1
Status codes: s suppressed, d damped, h history, a add-path, b back-up, * valid, > best, i - internal,
l - labeled, S Stale, x-EVPN, w-Stitched-routes
Origin codes: i - IGP, e - EGP, ? - incomplete
Description : Ext-Color - Extended community color
Network Next Hop Metric LocPrf Weight Path
BGP Route Table for VRF l3_vrf_1
*>x 1001::/48 ::ffff:10.10.10.1 0 100 0 65003 65002 65001 ?
* x ::ffff:10.10.10.2 0 100 0 65003 65002 65001 ?
*>x 1001::2/128 ::ffff:10.10.10.1 0 100 0 65003 65002 65001 i
*>x 1002::/48 ::ffff:10.10.10.1 0 100 0 65003 65002 65001 ?
* x ::ffff:10.10.10.2 0 100 0 65003 65002 65001 ?
*>x 1002::2/128 ::ffff:10.10.10.2 0 100 0 65003 65002 65001 i
*>x 1003::/48 ::ffff:10.10.10.1 0 100 0 65003 65002 65001 ?
* x ::ffff:10.10.10.2 0 100 0 65003 65002 65001 ?
*>x 1003::2/128 ::ffff:10.10.10.1 0 100 0 65003 65002 65001 i
*>xw2001::/48 ::ffff:10.10.10.7 0 100 0 65006 65004 ?
*>xw2001::2/128 ::ffff:10.10.10.7 0 100 0 65006 65004 i
*>xw2002::/48 ::ffff:10.10.10.7 0 100 0 65006 65004 ?
*>xw2002::2/128 ::ffff:10.10.10.7 0 100 0 65005 65004 i
*>xw2003::/48 ::ffff:10.10.10.7 0 100 0 65006 65004 ?
*>x fe80::1/128 ::ffff:10.10.10.2 0 100 0 65003 65002 65001 i
Total number of prefixes 12
BLEAF1#show bgp l2vpn evpn
BGP table version is 269, local router ID is 10.10.10.5
Status codes: s suppressed, d damped, h history, a add-path, b back-up, * valid, > best, i - internal,
l - labeled, S Stale
Origin codes: i - IGP, e - EGP, ? - incomplete
Description : Ext-Color - Extended community color
[EVPN route type]:[ESI]:[VNID]:[relevent route informantion]
1 - Ethernet Auto-discovery Route
2 - MAC/IP Route
3 - Inclusive Multicast Route
4 - Ethernet Segment Route
5 - Prefix Route
Network Next Hop Metric LocPrf Weight Path Peer Encap
RD[7001:1001]
*> [5]:[0]:[0]:[8]:[101.0.0.0]:[0.0.0.0]:[1000]
10.10.10.1 0 100 0 65003 65002 65001 ? fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 ? fe80::230:abff:feea:da1e VXLAN
*> [5]:[0]:[0]:[8]:[102.0.0.0]:[0.0.0.0]:[1000]
10.10.10.1 0 100 0 65003 65002 65001 ? fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 ? fe80::230:abff:feea:da1e VXLAN
*> [5]:[0]:[0]:[8]:[103.0.0.0]:[0.0.0.0]:[1000]
10.10.10.1 0 100 0 65003 65002 65001 ? fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 ? fe80::230:abff:feea:da1e VXLAN
*> [5]:[0]:[0]:[32]:[101.1.1.240]:[0.0.0.0]:[1000]
10.10.10.1 0 100 0 65003 65002 65001 ? fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 ? fe80::230:abff:feea:da1e VXLAN
*> [5]:[0]:[0]:[48]:[1001::]:[::]:[1000]
10.10.10.1 0 100 0 65003 65002 65001 ? fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 ? fe80::230:abff:feea:da1e VXLAN
*> [5]:[0]:[0]:[48]:[1002::]:[::]:[1000]
10.10.10.1 0 100 0 65003 65002 65001 ? fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 ? fe80::230:abff:feea:da1e VXLAN
*> [5]:[0]:[0]:[48]:[1003::]:[::]:[1000]
10.10.10.1 0 100 0 65003 65002 65001 ? fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 ? fe80::230:abff:feea:da1e VXLAN
RD[7002:1001]
*> [5]:[0]:[0]:[8]:[101.0.0.0]:[0.0.0.0]:[1000]
10.10.10.2 0 100 0 65003 65002 65001 ? fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 ? fe80::230:abff:feea:da1e VXLAN
*> [5]:[0]:[0]:[8]:[102.0.0.0]:[0.0.0.0]:[1000]
10.10.10.2 0 100 0 65003 65002 65001 ? fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 ? fe80::230:abff:feea:da1e VXLAN
*> [5]:[0]:[0]:[8]:[103.0.0.0]:[0.0.0.0]:[1000]
10.10.10.2 0 100 0 65003 65002 65001 ? fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 ? fe80::230:abff:feea:da1e VXLAN
*> [5]:[0]:[0]:[32]:[101.1.1.240]:[0.0.0.0]:[1000]
10.10.10.2 0 100 0 65003 65002 65001 ? fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 ? fe80::230:abff:feea:da1e VXLAN
*> [5]:[0]:[0]:[48]:[1001::]:[::]:[1000]
10.10.10.2 0 100 0 65003 65002 65001 ? fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 ? fe80::230:abff:feea:da1e VXLAN
*> [5]:[0]:[0]:[48]:[1002::]:[::]:[1000]
10.10.10.2 0 100 0 65003 65002 65001 ? fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 ? fe80::230:abff:feea:da1e VXLAN
*> [5]:[0]:[0]:[48]:[1003::]:[::]:[1000]
10.10.10.2 0 100 0 65003 65002 65001 ? fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 ? fe80::230:abff:feea:da1e VXLAN
RD[7007:7001]
*> [5]:[0]:[0]:[8]:[201.0.0.0]:[0.0.0.0]:[2000]
10.10.10.7 0 100 0 65006 65004 ? 10.10.10.22 VXLAN
* 10.10.10.7 0 100 0 65005 65004 ? 10.10.10.21 VXLAN
*> [5]:[0]:[0]:[8]:[202.0.0.0]:[0.0.0.0]:[2000]
10.10.10.7 0 100 0 65006 65004 ? 10.10.10.22 VXLAN
* 10.10.10.7 0 100 0 65005 65004 ? 10.10.10.21 VXLAN
*> [5]:[0]:[0]:[8]:[203.0.0.0]:[0.0.0.0]:[2000]
10.10.10.7 0 100 0 65006 65004 ? 10.10.10.22 VXLAN
* 10.10.10.7 0 100 0 65005 65004 ? 10.10.10.21 VXLAN
*> [5]:[0]:[0]:[32]:[201.1.1.2]:[0.0.0.0]:[2000]
10.10.10.7 0 100 0 65005 65004 i 10.10.10.21 VXLAN
* 10.10.10.7 0 100 0 65006 65004 i 10.10.10.22 VXLAN
*> [5]:[0]:[0]:[32]:[201.1.1.240]:[0.0.0.0]:[2000]
10.10.10.7 0 100 0 65006 65004 ? 10.10.10.22 VXLAN
* 10.10.10.7 0 100 0 65005 65004 ? 10.10.10.21 VXLAN
*> [5]:[0]:[0]:[32]:[202.1.1.2]:[0.0.0.0]:[2000]
10.10.10.7 0 100 0 65005 65004 i 10.10.10.21 VXLAN
* 10.10.10.7 0 100 0 65006 65004 i 10.10.10.22 VXLAN
*> [5]:[0]:[0]:[48]:[2001::]:[::]:[2000]
10.10.10.7 0 100 0 65006 65004 ? 10.10.10.22 VXLAN
* 10.10.10.7 0 100 0 65005 65004 ? 10.10.10.21 VXLAN
*> [5]:[0]:[0]:[48]:[2002::]:[::]:[2000]
10.10.10.7 0 100 0 65006 65004 ? 10.10.10.22 VXLAN
* 10.10.10.7 0 100 0 65005 65004 ? 10.10.10.21 VXLAN
*> [5]:[0]:[0]:[48]:[2003::]:[::]:[2000]
10.10.10.7 0 100 0 65006 65004 ? 10.10.10.22 VXLAN
* 10.10.10.7 0 100 0 65005 65004 ? 10.10.10.21 VXLAN
*> [5]:[0]:[0]:[128]:[2001::2]:[::]:[2000]
10.10.10.7 0 100 0 65006 65004 i 10.10.10.22 VXLAN
* 10.10.10.7 0 100 0 65005 65004 i 10.10.10.21 VXLAN
*> [5]:[0]:[0]:[128]:[2002::2]:[::]:[2000]
10.10.10.7 0 100 0 65005 65004 i 10.10.10.21 VXLAN
* 10.10.10.7 0 100 0 65006 65004 i 10.10.10.22 VXLAN
RD[10.10.10.1:1]
*> [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1001]:[1001]
10.10.10.1 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
*> [2]:[0]:[1001]:[48,0000:0000:abcd]:[32,101.1.1.1]:[1001]
10.10.10.1 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
*> [2]:[0]:[1001]:[48,0000:0000:abcd]:[128,1001::1][1001]
10.10.10.1 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
*> [2]:[0]:[1001]:[48,0000:0000:abcd]:[128,fe80::200:ff:fe00:abcd][1001]
10.10.10.1 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1001]:[48,0000:0101:0001]:[0]:[1001]
10.10.10.1 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1001]:[48,0000:0101:0001]:[32,101.1.1.2]:[1001]:[1000]
10.10.10.1 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1001]:[48,0000:0101:0001]:[128,1001::2][1001]:[1000]
10.10.10.1 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
RD[10.10.10.1:2]
*> [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1002]:[1002]
10.10.10.1 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
*> [2]:[0]:[1002]:[48,0000:0000:abcd]:[32,102.1.1.1]:[1002]
10.10.10.1 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
*> [2]:[0]:[1002]:[48,0000:0000:abcd]:[128,1002::1][1002]
10.10.10.1 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
*> [2]:[0]:[1002]:[48,0000:0000:abcd]:[128,fe80::200:ff:fe00:abcd][1002]
10.10.10.1 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
RD[10.10.10.1:3]
*> [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1003]:[1003]
10.10.10.1 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
*> [2]:[0]:[1003]:[48,0000:0000:abcd]:[32,103.1.1.1]:[1003]
10.10.10.1 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
*> [2]:[0]:[1003]:[48,0000:0000:abcd]:[128,1003::1][1003]
10.10.10.1 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
*> [2]:[0]:[1003]:[48,0000:0000:abcd]:[128,fe80::200:ff:fe00:abcd][1003]
10.10.10.1 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1003]:[48,0000:0103:0001]:[0]:[1003]
10.10.10.1 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1003]:[48,0000:0103:0001]:[128,1003::2][1003]:[1000]
10.10.10.1 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
RD[10.10.10.1:64512]
*> [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[4294965295]:[0]
10.10.10.1 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
RD[10.10.10.2:1]
*> [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1001]:[1001]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
*> [2]:[0]:[1001]:[48,0000:0000:abcd]:[32,101.1.1.1]:[1001]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
*> [2]:[0]:[1001]:[48,0000:0000:abcd]:[128,1001::1][1001]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
*> [2]:[0]:[1001]:[48,0000:0000:abcd]:[128,fe80::200:ff:fe00:abcd][1001]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1001]:[48,0000:0101:0001]:[0]:[1001]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1001]:[48,0000:0101:0001]:[128,fe80::1][1001]:[1000]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
RD[10.10.10.2:2]
*> [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1002]:[1002]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
*> [2]:[0]:[1002]:[48,0000:0000:abcd]:[32,102.1.1.1]:[1002]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
*> [2]:[0]:[1002]:[48,0000:0000:abcd]:[128,1002::1][1002]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
*> [2]:[0]:[1002]:[48,0000:0000:abcd]:[128,fe80::200:ff:fe00:abcd][1002]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1002]:[48,0000:0102:0001]:[0]:[1002]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1002]:[48,0000:0102:0001]:[32,102.1.1.2]:[1002]:[1000]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1002]:[48,0000:0102:0001]:[128,1002::2][1002]:[1000]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
RD[10.10.10.2:3]
*> [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1003]:[1003]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
*> [2]:[0]:[1003]:[48,0000:0000:abcd]:[32,103.1.1.1]:[1003]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
*> [2]:[0]:[1003]:[48,0000:0000:abcd]:[128,1003::1][1003]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
*> [2]:[0]:[1003]:[48,0000:0000:abcd]:[128,fe80::200:ff:fe00:abcd][1003]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1003]:[48,0000:0103:0001]:[0]:[1003]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1003]:[48,0000:0103:0001]:[32,103.1.1.2]:[1003]:[1000]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1003]:[48,0000:0103:0001]:[128,1002::2][1003]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
RD[10.10.10.2:64512]
*> [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[4294965295]:[0]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc46 VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1e VXLAN
Total number of prefixes 64
BLEAF1#show ip bgp 101.1.1.2/32 vrf l3_vrf_1
BGP routing table entry for 101.1.1.2/32
Paths: (1 available, best #1, table Default-IP-Routing-Table)
Not advertised to any peer
AS path: 65003 65002 65001
Path Selection reason: Nothing left to compare
Nexthop:10.10.10.1 (IGP metric 0) from fe80::36ef:b6ff:fe69:fc46 (Remote Id:10.10.10.15) Peer nexthop: fe80::36ef:b6ff:fe69:fc46
Origin IGP, metric 0, localpref 100 valid, external, best, source-safi: 70
Duplicated: (source VRF-ID: 0, source VRF: DEFAULT, VRF-External, imported)
Extended Community: RT:101:101 1001:1001 Encapsulation:VxLAN EVPN_Router's_Mac:1444.8fc8.0fc9 SubType-0x0b:000000000065
rx path_id: -1 tx path_id: -1
Add-Path Announcement: Not advertised to any peer
Origin-AS validity: disabled Last update: Mon Dec 15 08:05:46 2025, 00:02:12 ago
BLEAF1#show ip bgp 102.1.1.2/32 vrf l3_vrf_1
BGP routing table entry for 102.1.1.2/32
Paths: (1 available, best #1, table Default-IP-Routing-Table)
Not advertised to any peer
AS path: 65003 65002 65001
Path Selection reason: Nothing left to compare
Nexthop:10.10.10.2 (IGP metric 0) from fe80::36ef:b6ff:fe69:fc46 (Remote Id:10.10.10.15) Peer nexthop: fe80::36ef:b6ff:fe69:fc46
Origin IGP, metric 0, localpref 100 valid, external, best, source-safi: 70
Duplicated: (source VRF-ID: 0, source VRF: DEFAULT, VRF-External, imported)
Extended Community: RT:102:102 1001:1001 Encapsulation:VxLAN EVPN_Router's_Mac:9819.2c9b.37d3 SubType-0x0b:000000000066
rx path_id: -1 tx path_id: -1
Add-Path Announcement: Not advertised to any peer
Origin-AS validity: disabled Last update: Mon Dec 15 07:56:31 2025, 00:11:27 ago
BLEAF1#show ip bgp 201.1.1.2/32 vrf l3_vrf_1
BGP routing table entry for 201.1.1.2/32
Paths: (1 available, best #1, table Default-IP-Routing-Table)
Not advertised to any peer
AS path: 65005 65004
Path Selection reason: Nothing left to compare
Nexthop:10.10.10.7 (IGP metric 0) from 10.10.10.21 (Remote Id:10.10.10.21) Peer nexthop: 10.10.10.21
Origin IGP, metric 0, localpref 100 valid, external, best, source-safi: 70
Stitched: (Recieved from the external fabric peer)
Extended Community: SOO:1005:1005 RT:7001:7001 Encapsulation:VxLAN EVPN_Router's_Mac:1444.8fc9.07c9
rx path_id: -1 tx path_id: -1
Add-Path Announcement: Not advertised to any peer
Origin-AS validity: disabled Last update: Mon Dec 15 08:05:06 2025, 00:02:53 ago
BLEAF1#show ip bgp 202.1.1.2/32 vrf l3_vrf_1
BGP routing table entry for 202.1.1.2/32
Paths: (1 available, best #1, table Default-IP-Routing-Table)
Not advertised to any peer
AS path: 65005 65004
Path Selection reason: Nothing left to compare
Nexthop:10.10.10.7 (IGP metric 0) from 10.10.10.21 (Remote Id:10.10.10.21) Peer nexthop: 10.10.10.21
Origin IGP, metric 0, localpref 100 valid, external, best, source-safi: 70
Stitched: (Recieved from the external fabric peer)
Extended Community: SOO:1005:1005 RT:7001:7001 Encapsulation:VxLAN EVPN_Router's_Mac:1444.8fc9.07c9
rx path_id: -1 tx path_id: -1
Add-Path Announcement: Not advertised to any peer
Origin-AS validity: disabled Last update: Mon Dec 15 08:05:06 2025, 00:02:53 ago
BLEAF1#show evpn l3vni-map
L3VNI Trans-L3VNI L2VNI IRB-interface
=====================================================
1000 2000 --- ---
BLEAF1#show nvo vxlan mac-table
=================================================================================================================================================================
VXLAN MAC Entries
=================================================================================================================================================================
VNID Interface VlanId In-VlanId Mac-Addr VTEP-Ip/ESI Type Status MAC move AccessPortDesc LeafFlag
_________________________________________________________________________________________________________________________________________________________________
Total number of entries are : 0
BLEAF1#
BLEAF1#
BLEAF2
BLEAF2#show nvo vxlan
VXLAN Information
=================
Codes: NW - Network Port
AC - Access Port
(u) - Untagged
VNID VNI-Name VNI-Type Type Interface ESI VLAN DF-Status Src-Addr Dst-Addr Router-Mac
_______________________________________________________________________________________________________________________________________________
1000 ---- L3 NW ---- ---- ---- ---- 10.10.10.6 10.10.10.1 1444.8fc8.0fc9
1000 ---- L3 NW ---- ---- ---- ---- 10.10.10.6 10.10.10.2 9819.2c9b.37d3
2000 ---- L3 NW ---- ---- ---- ---- 10.10.10.6 10.10.10.7 1444.8fc9.07c9
Total number of entries are 3
BLEAF2#show nvo vxlan tunnel
VXLAN Network tunnel Entries
Source Destination Status Up/Down Update
========================================================================
10.10.10.6 10.10.10.7 Installed 00:40:31 00:40:31
10.10.10.6 10.10.10.1 Installed 00:40:30 00:40:30
10.10.10.6 10.10.10.2 Installed 00:40:30 00:40:30
Total number of entries are 3
BLEAF2#show nvo vxlan arp-cache
VXLAN ARP-CACHE Information
===========================
VNID Ip-Addr Mac-Addr Type Age-Out Retries-Left
_______________________________________________________________________________________
Total number of entries are 0
BLEAF2#show nvo vxlan nd-cache
VXLAN ND-CACHE Information
===========================
VNID Ip-Addr Mac-Addr Type Age-Out Retries-Left
____________________________________________________________________________________________________
Total number of entries are 0
BLEAF2#show ip bgp summary
BGP router identifier 10.10.10.6, local AS number 65004
BGP table version is 57
7 BGP AS-PATH entries
0 BGP community entries
4 Configured ebgp ECMP multipath: Currently set at 4
Neighbor V AS MsgRcv MsgSen TblVer InQ OutQ Up/Down State/PfxRcd Desc
ce52(fe80::36ef:b6ff:fe69:fc5e) 4 65003 2848 2461 56 0 0 00:40:32 6
ce53(fe80::230:abff:feea:da1a) 4 65003 3577 2960 57 0 0 00:40:32 6
Total number of neighbors 2
Total number of Established sessions 2
BLEAF2#show bgp l2vpn evpn summary
BGP router identifier 10.10.10.6, local AS number 65004
BGP table version is 306
7 BGP AS-PATH entries
0 BGP community entries
Neighbor V AS MsgRcv MsgSen TblVer InQ OutQ Up/Down State/PfxRcd AD MACIP MCAST ESI PREFIX-ROUTE Desc
ce52(fe80::36ef:b6ff:fe69:fc5e) 4 65003 2848 2461 305 0 0 00:40:32 53 8 31 0 0 14
ce53(fe80::230:abff:feea:da1a) 4 65003 3577 2960 306 0 0 00:40:32 53 8 31 0 0 14
10.10.10.21 4 65005 2942 2842 301 0 0 00:40:32 11 0 0 0 0 11
10.10.10.22 4 65006 2928 2865 301 0 0 00:40:32 11 0 0 0 0 11
Total number of neighbors 4
Total number of Established sessions 4
BLEAF2#show ip route vrf all
Codes: K - kernel, C - connected, S - static, R - RIP, B - BGP
O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2,
ia - IS-IS inter area, E - EVPN,
v - vrf leaked
* - candidate default
IP Route Table for VRF "default"
B 10.10.10.1/32 [20/0] via fe80::36ef:b6ff:fe69:fc5e, ce52, installed 00:40:30, last update 00:40:30 ago
[20/0] via fe80::230:abff:feea:da1a, ce53
B 10.10.10.2/32 [20/0] via fe80::36ef:b6ff:fe69:fc5e, ce52, installed 00:40:30, last update 00:40:30 ago
[20/0] via fe80::230:abff:feea:da1a, ce53
O 10.10.10.5/32 [110/3] via 17.22.22.2, ce50/1, installed 18:46:52, last update 04:45:45 ago
[110/3] via 17.23.23.2, ce54/1
C 10.10.10.6/32 is directly connected, lo, installed 18:50:03, last update 18:50:03 ago
O 10.10.10.7/32 [110/3] via 17.22.22.2, ce50/1, installed 18:49:08, last update 18:49:03 ago
[110/3] via 17.23.23.2, ce54/1
B 10.10.10.11/32 [20/0] via fe80::36ef:b6ff:fe69:fc5e, ce52, installed 00:40:31, last update 00:40:31 ago
[20/0] via fe80::230:abff:feea:da1a, ce53
B 10.10.10.12/32 [20/0] via fe80::36ef:b6ff:fe69:fc5e, ce52, installed 00:40:31, last update 00:40:31 ago
[20/0] via fe80::230:abff:feea:da1a, ce53
B 10.10.10.14/32 [20/0] via fe80::230:abff:feea:da1a, ce53, installed 00:40:30, last update 00:40:30 ago
B 10.10.10.15/32 [20/0] via fe80::36ef:b6ff:fe69:fc5e, ce52, installed 00:40:30, last update 00:40:30 ago
O 10.10.10.21/32 [110/2] via 17.22.22.2, ce50/1, installed 18:49:08, last update 18:49:08 ago
O 10.10.10.22/32 [110/2] via 17.23.23.2, ce54/1, installed 18:49:03, last update 18:49:03 ago
O 17.18.18.0/24 [110/2] via 17.23.23.2, ce54/1, installed 18:49:03, last update 18:49:03 ago
O 17.19.19.0/24 [110/2] via 17.22.22.2, ce50/1, installed 18:49:08, last update 18:49:08 ago
O 17.20.20.0/24 [110/2] via 17.22.22.2, ce50/1, installed 18:47:37, last update 18:47:37 ago
O 17.21.21.0/24 [110/2] via 17.23.23.2, ce54/1, installed 04:46:30, last update 04:46:30 ago
C 17.22.22.0/24 is directly connected, ce50/1, installed 18:49:58, last update 18:49:58 ago
C 17.23.23.0/24 is directly connected, ce54/1, installed 18:49:58, last update 18:49:58 ago
O 17.24.24.0/24 [110/2] via 17.23.23.2, ce54/1, installed 18:49:08, last update 18:49:03 ago
[110/2] via 17.22.22.2, ce50/1
C 127.0.0.0/8 is directly connected, lo, installed 18:50:29, last update 18:50:29 ago
IP Route Table for VRF "management"
C 10.16.104.0/24 is directly connected, eth0, installed 18:50:01, last update 18:50:01 ago
C 127.0.0.0/8 is directly connected, lo.management, installed 18:50:29, last update 18:50:29 ago
IP Route Table for VRF "l3_vrf_1"
B 10.10.10.1/32 [0/0] is directly connected, tunvxlan2, installed 00:40:30, last update 00:40:30 ago
B 10.10.10.2/32 [0/0] is directly connected, tunvxlan2, installed 00:40:30, last update 00:40:30 ago
B 10.10.10.7/32 [0/0] is directly connected, tunvxlanw2, installed 00:40:31, last update 00:40:31 ago
B 101.0.0.0/8 [20/0] via 10.10.10.1 (recursive is directly connected, tunvxlan2), installed 00:40:31, last update 00:40:31 ago
B 101.1.1.2/32 [20/0] via 10.10.10.1 (recursive is directly connected, tunvxlan2), installed 00:01:33, last update 00:01:33 ago
B 101.1.1.240/32 [20/0] via 10.10.10.1 (recursive is directly connected, tunvxlan2), installed 00:40:31, last update 00:40:31 ago
B 102.0.0.0/8 [20/0] via 10.10.10.1 (recursive is directly connected, tunvxlan2), installed 00:40:31, last update 00:40:31 ago
B 102.1.1.2/32 [20/0] via 10.10.10.2 (recursive is directly connected, tunvxlan2), installed 00:11:34, last update 00:11:34 ago
B 103.0.0.0/8 [20/0] via 10.10.10.1 (recursive is directly connected, tunvxlan2), installed 00:40:31, last update 00:40:31 ago
B 103.1.1.2/32 [20/0] via 10.10.10.2 (recursive is directly connected, tunvxlan2), installed 00:11:34, last update 00:11:34 ago
C 127.0.0.0/8 is directly connected, lo.l3_vrf_1, installed 18:50:08, last update 18:50:08 ago
B 201.0.0.0/8 [20/0] via 10.10.10.7 (recursive is directly connected, tunvxlanw2), installed 00:40:31, last update 00:40:31 ago
B 201.1.1.2/32 [20/0] via 10.10.10.7 (recursive is directly connected, tunvxlanw2), installed 00:02:58, last update 00:02:58 ago
B 201.1.1.240/32 [20/0] via 10.10.10.7 (recursive is directly connected, tunvxlanw2), installed 00:40:31, last update 00:40:31 ago
B 202.0.0.0/8 [20/0] via 10.10.10.7 (recursive is directly connected, tunvxlanw2), installed 00:40:31, last update 00:40:31 ago
B 202.1.1.2/32 [20/0] via 10.10.10.7 (recursive is directly connected, tunvxlanw2), installed 00:02:58, last update 00:02:58 ago
B 203.0.0.0/8 [20/0] via 10.10.10.7 (recursive is directly connected, tunvxlanw2), installed 00:40:31, last update 00:40:31 ago
Gateway of last resort is not set
BLEAF2#show ipv6 route vrf all
IPv6 Routing Table
Codes: K - kernel route, C - connected, S - static, D- DHCP, R - RIP,
O - OSPF, IA - OSPF inter area, E1 - OSPF external type 1,
E2 - OSPF external type 2, E - EVPN N1 - OSPF NSSA external type 1,
N2 - OSPF NSSA external type 2, i - IS-IS, B - BGP,
v - vrf leaked
Timers: Uptime
IP Route Table for VRF "default"
C ::1/128 via ::, lo, installed 18:50:29, last update 18:50:29 ago
C fe80::/64 via ::, xe11, installed 01:42:51, last update 01:42:51 ago
IP Route Table for VRF "management"
C ::1/128 via ::, lo.management, installed 18:50:29, last update 18:50:29 ago
C fe80::/64 via ::, eth0, installed 18:50:29, last update 18:50:29 ago
IP Route Table for VRF "l3_vrf_1"
C ::1/128 via ::, lo.l3_vrf_1, installed 18:50:08, last update 18:50:08 ago
B ::ffff:a0a:a01/128 [0/0] via ::, tunvxlan2, installed 00:40:30, last update 00:40:30 ago
B ::ffff:a0a:a02/128 [0/0] via ::, tunvxlan2, installed 00:40:30, last update 00:40:30 ago
B ::ffff:a0a:a07/128 [0/0] via ::, tunvxlanw2, installed 00:40:31, last update 00:40:31 ago
B 1001::/48 [20/0] via ::ffff:a0a:a01 (recursive via ::, tunvxlan2), installed 00:40:31, last update 00:40:31 ago
B 1001::2/128 [20/0] via ::ffff:a0a:a01 (recursive via ::, tunvxlan2), installed 00:01:33, last update 00:01:33 ago
B 1002::/48 [20/0] via ::ffff:a0a:a01 (recursive via ::, tunvxlan2), installed 00:40:31, last update 00:40:31 ago
B 1002::2/128 [20/0] via ::ffff:a0a:a02 (recursive via ::, tunvxlan2), installed 00:11:34, last update 00:11:34 ago
B 1003::/48 [20/0] via ::ffff:a0a:a01 (recursive via ::, tunvxlan2), installed 00:40:31, last update 00:40:31 ago
B 1003::2/128 [20/0] via ::ffff:a0a:a01 (recursive via ::, tunvxlan2), installed 00:02:18, last update 00:02:18 ago
B 2001::/48 [20/0] via ::ffff:a0a:a07 (recursive via ::, tunvxlanw2), installed 00:40:31, last update 00:40:31 ago
B 2001::2/128 [20/0] via ::ffff:a0a:a07 (recursive via ::, tunvxlanw2), installed 00:02:58, last update 00:02:58 ago
B 2002::/48 [20/0] via ::ffff:a0a:a07 (recursive via ::, tunvxlanw2), installed 00:40:31, last update 00:40:31 ago
B 2002::2/128 [20/0] via ::ffff:a0a:a07 (recursive via ::, tunvxlanw2), installed 00:02:58, last update 00:02:58 ago
B 2003::/48 [20/0] via ::ffff:a0a:a07 (recursive via ::, tunvxlanw2), installed 00:40:31, last update 00:40:31 ago
C fe80::/64 via ::, tunvxlanw2, installed 18:50:02, last update 18:50:02 ago
B fe80::1/128 [20/0] via ::ffff:a0a:a02 (recursive via ::, tunvxlan2), installed 00:11:34, last update 00:11:34 ago
BLEAF2#show bgp vrf all
BGP table version is 1, local router ID is 33.1.1.1
Status codes: s suppressed, d damped, h history, a add-path, b back-up, * valid, > best, i - internal,
l - labeled, S Stale, x-EVPN, w-Stitched-routes
Origin codes: i - IGP, e - EGP, ? - incomplete
Description : Ext-Color - Extended community color
Network Next Hop Metric LocPrf Weight Path Ext-Color
BGP Route Table for VRF l3_vrf_1
*>x 101.0.0.0 10.10.10.1 0 100 0 65003 65002 65001 ?
* x 10.10.10.2 0 100 0 65003 65002 65001 ?
*>x 101.1.1.2/32 10.10.10.1 0 100 0 65003 65002 65001 i
*>x 101.1.1.240/32 10.10.10.1 0 100 0 65003 65002 65001 ?
* x 10.10.10.2 0 100 0 65003 65002 65001 ?
*>x 102.0.0.0 10.10.10.1 0 100 0 65003 65002 65001 ?
* x 10.10.10.2 0 100 0 65003 65002 65001 ?
*>x 102.1.1.2/32 10.10.10.2 0 100 0 65003 65002 65001 i
*>x 103.0.0.0 10.10.10.1 0 100 0 65003 65002 65001 ?
* x 10.10.10.2 0 100 0 65003 65002 65001 ?
*>x 103.1.1.2/32 10.10.10.2 0 100 0 65003 65002 65001 i
*>xw201.0.0.0/8 10.10.10.7 0 100 0 65006 65004 ?
*>xw201.1.1.2/32 10.10.10.7 0 100 0 65005 65004 i
*>xw201.1.1.240/32 10.10.10.7 0 100 0 65006 65004 ?
*>xw202.0.0.0/8 10.10.10.7 0 100 0 65006 65004 ?
*>xw202.1.1.2/32 10.10.10.7 0 100 0 65005 65004 i
*>xw203.0.0.0/8 10.10.10.7 0 100 0 65006 65004 ?
Total number of prefixes 13
*> 10.10.10.1/32 fe80::36ef:b6ff:fe69:fc5e 0 100 0 65003 65002 65001 i
* fe80::230:abff:feea:da1a 0 100 0 65003 65002 65001 i
*> 10.10.10.2/32 fe80::230:abff:feea:da1a 0 100 0 65003 65002 65001 i
* fe80::36ef:b6ff:fe69:fc5e 0 100 0 65003 65002 65001 i
*> 10.10.10.6/32 0.0.0.0 0 100 32768 i
* 0.0.0.0 0 100 32768 ?
*> 10.10.10.11/32 fe80::36ef:b6ff:fe69:fc5e 0 100 0 65003 65002 i
* fe80::230:abff:feea:da1a 0 100 0 65003 65002 i
*> 10.10.10.12/32 fe80::36ef:b6ff:fe69:fc5e 0 100 0 65003 65002 i
* fe80::230:abff:feea:da1a 0 100 0 65003 65002 i
*> 10.10.10.14/32 fe80::230:abff:feea:da1a 0 100 0 65003 i
* fe80::36ef:b6ff:fe69:fc5e 0 100 0 65003 65002 65003 i
*> 10.10.10.15/32 fe80::36ef:b6ff:fe69:fc5e 0 100 0 65003 i
* fe80::230:abff:feea:da1a 0 100 0 65003 65002 65003 i
*> 17.22.22.0/24 0.0.0.0 0 100 32768 ?
*> 17.23.23.0/24 0.0.0.0 0 100 32768 ?
Total number of prefixes 9
BLEAF2#show bgp ipv6 unicast vrf all
BGP table version is 1, local router ID is 33.1.1.1
Status codes: s suppressed, d damped, h history, a add-path, b back-up, * valid, > best, i - internal,
l - labeled, S Stale, x-EVPN, w-Stitched-routes
Origin codes: i - IGP, e - EGP, ? - incomplete
Description : Ext-Color - Extended community color
Network Next Hop Metric LocPrf Weight Path
BGP Route Table for VRF l3_vrf_1
*>x 1001::/48 ::ffff:10.10.10.1 0 100 0 65003 65002 65001 ?
* x ::ffff:10.10.10.2 0 100 0 65003 65002 65001 ?
*>x 1001::2/128 ::ffff:10.10.10.1 0 100 0 65003 65002 65001 i
*>x 1002::/48 ::ffff:10.10.10.1 0 100 0 65003 65002 65001 ?
* x ::ffff:10.10.10.2 0 100 0 65003 65002 65001 ?
*>x 1002::2/128 ::ffff:10.10.10.2 0 100 0 65003 65002 65001 i
*>x 1003::/48 ::ffff:10.10.10.1 0 100 0 65003 65002 65001 ?
* x ::ffff:10.10.10.2 0 100 0 65003 65002 65001 ?
*>x 1003::2/128 ::ffff:10.10.10.1 0 100 0 65003 65002 65001 i
*>xw2001::/48 ::ffff:10.10.10.7 0 100 0 65005 65004 ?
*>xw2001::2/128 ::ffff:10.10.10.7 0 100 0 65006 65004 i
*>xw2002::/48 ::ffff:10.10.10.7 0 100 0 65005 65004 ?
*>xw2002::2/128 ::ffff:10.10.10.7 0 100 0 65005 65004 i
*>xw2003::/48 ::ffff:10.10.10.7 0 100 0 65005 65004 ?
*>x fe80::1/128 ::ffff:10.10.10.2 0 100 0 65003 65002 65001 i
Total number of prefixes 12
BLEAF2#show bgp l2vpn evpn
BGP table version is 306, local router ID is 10.10.10.6
Status codes: s suppressed, d damped, h history, a add-path, b back-up, * valid, > best, i - internal,
l - labeled, S Stale
Origin codes: i - IGP, e - EGP, ? - incomplete
Description : Ext-Color - Extended community color
[EVPN route type]:[ESI]:[VNID]:[relevent route informantion]
1 - Ethernet Auto-discovery Route
2 - MAC/IP Route
3 - Inclusive Multicast Route
4 - Ethernet Segment Route
5 - Prefix Route
Network Next Hop Metric LocPrf Weight Path Peer Encap
RD[7001:1001]
*> [5]:[0]:[0]:[8]:[101.0.0.0]:[0.0.0.0]:[1000]
10.10.10.1 0 100 0 65003 65002 65001 ? fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 ? fe80::230:abff:feea:da1a VXLAN
*> [5]:[0]:[0]:[8]:[102.0.0.0]:[0.0.0.0]:[1000]
10.10.10.1 0 100 0 65003 65002 65001 ? fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 ? fe80::230:abff:feea:da1a VXLAN
*> [5]:[0]:[0]:[8]:[103.0.0.0]:[0.0.0.0]:[1000]
10.10.10.1 0 100 0 65003 65002 65001 ? fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 ? fe80::230:abff:feea:da1a VXLAN
*> [5]:[0]:[0]:[32]:[101.1.1.240]:[0.0.0.0]:[1000]
10.10.10.1 0 100 0 65003 65002 65001 ? fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 ? fe80::230:abff:feea:da1a VXLAN
*> [5]:[0]:[0]:[48]:[1001::]:[::]:[1000]
10.10.10.1 0 100 0 65003 65002 65001 ? fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 ? fe80::230:abff:feea:da1a VXLAN
*> [5]:[0]:[0]:[48]:[1002::]:[::]:[1000]
10.10.10.1 0 100 0 65003 65002 65001 ? fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 ? fe80::230:abff:feea:da1a VXLAN
*> [5]:[0]:[0]:[48]:[1003::]:[::]:[1000]
10.10.10.1 0 100 0 65003 65002 65001 ? fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 ? fe80::230:abff:feea:da1a VXLAN
RD[7002:1001]
*> [5]:[0]:[0]:[8]:[101.0.0.0]:[0.0.0.0]:[1000]
10.10.10.2 0 100 0 65003 65002 65001 ? fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 ? fe80::230:abff:feea:da1a VXLAN
*> [5]:[0]:[0]:[8]:[102.0.0.0]:[0.0.0.0]:[1000]
10.10.10.2 0 100 0 65003 65002 65001 ? fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 ? fe80::230:abff:feea:da1a VXLAN
*> [5]:[0]:[0]:[8]:[103.0.0.0]:[0.0.0.0]:[1000]
10.10.10.2 0 100 0 65003 65002 65001 ? fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 ? fe80::230:abff:feea:da1a VXLAN
*> [5]:[0]:[0]:[32]:[101.1.1.240]:[0.0.0.0]:[1000]
10.10.10.2 0 100 0 65003 65002 65001 ? fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 ? fe80::230:abff:feea:da1a VXLAN
*> [5]:[0]:[0]:[48]:[1001::]:[::]:[1000]
10.10.10.2 0 100 0 65003 65002 65001 ? fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 ? fe80::230:abff:feea:da1a VXLAN
*> [5]:[0]:[0]:[48]:[1002::]:[::]:[1000]
10.10.10.2 0 100 0 65003 65002 65001 ? fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 ? fe80::230:abff:feea:da1a VXLAN
*> [5]:[0]:[0]:[48]:[1003::]:[::]:[1000]
10.10.10.2 0 100 0 65003 65002 65001 ? fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 ? fe80::230:abff:feea:da1a VXLAN
RD[7007:7001]
*> [5]:[0]:[0]:[8]:[201.0.0.0]:[0.0.0.0]:[2000]
10.10.10.7 0 100 0 65006 65004 ? 10.10.10.22 VXLAN
* 10.10.10.7 0 100 0 65005 65004 ? 10.10.10.21 VXLAN
*> [5]:[0]:[0]:[8]:[202.0.0.0]:[0.0.0.0]:[2000]
10.10.10.7 0 100 0 65006 65004 ? 10.10.10.22 VXLAN
* 10.10.10.7 0 100 0 65005 65004 ? 10.10.10.21 VXLAN
*> [5]:[0]:[0]:[8]:[203.0.0.0]:[0.0.0.0]:[2000]
10.10.10.7 0 100 0 65006 65004 ? 10.10.10.22 VXLAN
* 10.10.10.7 0 100 0 65005 65004 ? 10.10.10.21 VXLAN
*> [5]:[0]:[0]:[32]:[201.1.1.2]:[0.0.0.0]:[2000]
10.10.10.7 0 100 0 65005 65004 i 10.10.10.21 VXLAN
* 10.10.10.7 0 100 0 65006 65004 i 10.10.10.22 VXLAN
*> [5]:[0]:[0]:[32]:[201.1.1.240]:[0.0.0.0]:[2000]
10.10.10.7 0 100 0 65006 65004 ? 10.10.10.22 VXLAN
* 10.10.10.7 0 100 0 65005 65004 ? 10.10.10.21 VXLAN
*> [5]:[0]:[0]:[32]:[202.1.1.2]:[0.0.0.0]:[2000]
10.10.10.7 0 100 0 65005 65004 i 10.10.10.21 VXLAN
* 10.10.10.7 0 100 0 65006 65004 i 10.10.10.22 VXLAN
*> [5]:[0]:[0]:[48]:[2001::]:[::]:[2000]
10.10.10.7 0 100 0 65005 65004 ? 10.10.10.21 VXLAN
* 10.10.10.7 0 100 0 65006 65004 ? 10.10.10.22 VXLAN
*> [5]:[0]:[0]:[48]:[2002::]:[::]:[2000]
10.10.10.7 0 100 0 65005 65004 ? 10.10.10.21 VXLAN
* 10.10.10.7 0 100 0 65006 65004 ? 10.10.10.22 VXLAN
*> [5]:[0]:[0]:[48]:[2003::]:[::]:[2000]
10.10.10.7 0 100 0 65005 65004 ? 10.10.10.21 VXLAN
* 10.10.10.7 0 100 0 65006 65004 ? 10.10.10.22 VXLAN
*> [5]:[0]:[0]:[128]:[2001::2]:[::]:[2000]
10.10.10.7 0 100 0 65006 65004 i 10.10.10.22 VXLAN
* 10.10.10.7 0 100 0 65005 65004 i 10.10.10.21 VXLAN
*> [5]:[0]:[0]:[128]:[2002::2]:[::]:[2000]
10.10.10.7 0 100 0 65005 65004 i 10.10.10.21 VXLAN
* 10.10.10.7 0 100 0 65006 65004 i 10.10.10.22 VXLAN
RD[10.10.10.1:1]
*> [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1001]:[1001]
10.10.10.1 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
*> [2]:[0]:[1001]:[48,0000:0000:abcd]:[32,101.1.1.1]:[1001]
10.10.10.1 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
*> [2]:[0]:[1001]:[48,0000:0000:abcd]:[128,1001::1][1001]
10.10.10.1 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
*> [2]:[0]:[1001]:[48,0000:0000:abcd]:[128,fe80::200:ff:fe00:abcd][1001]
10.10.10.1 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1001]:[48,0000:0101:0001]:[0]:[1001]
10.10.10.1 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1001]:[48,0000:0101:0001]:[32,101.1.1.2]:[1001]:[1000]
10.10.10.1 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1001]:[48,0000:0101:0001]:[128,1001::2][1001]:[1000]
10.10.10.1 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
RD[10.10.10.1:2]
*> [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1002]:[1002]
10.10.10.1 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
*> [2]:[0]:[1002]:[48,0000:0000:abcd]:[32,102.1.1.1]:[1002]
10.10.10.1 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
*> [2]:[0]:[1002]:[48,0000:0000:abcd]:[128,1002::1][1002]
10.10.10.1 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
*> [2]:[0]:[1002]:[48,0000:0000:abcd]:[128,fe80::200:ff:fe00:abcd][1002]
10.10.10.1 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
RD[10.10.10.1:3]
*> [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1003]:[1003]
10.10.10.1 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
*> [2]:[0]:[1003]:[48,0000:0000:abcd]:[32,103.1.1.1]:[1003]
10.10.10.1 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
*> [2]:[0]:[1003]:[48,0000:0000:abcd]:[128,1003::1][1003]
10.10.10.1 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
*> [2]:[0]:[1003]:[48,0000:0000:abcd]:[128,fe80::200:ff:fe00:abcd][1003]
10.10.10.1 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1003]:[48,0000:0103:0001]:[0]:[1003]
10.10.10.1 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1003]:[48,0000:0103:0001]:[128,1003::2][1003]:[1000]
10.10.10.1 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
RD[10.10.10.1:64512]
*> [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[4294965295]:[0]
10.10.10.1 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.1 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
RD[10.10.10.2:1]
*> [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1001]:[1001]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
*> [2]:[0]:[1001]:[48,0000:0000:abcd]:[32,101.1.1.1]:[1001]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
*> [2]:[0]:[1001]:[48,0000:0000:abcd]:[128,1001::1][1001]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
*> [2]:[0]:[1001]:[48,0000:0000:abcd]:[128,fe80::200:ff:fe00:abcd][1001]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1001]:[48,0000:0101:0001]:[0]:[1001]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1001]:[48,0000:0101:0001]:[128,fe80::1][1001]:[1000]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
RD[10.10.10.2:2]
*> [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1002]:[1002]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
*> [2]:[0]:[1002]:[48,0000:0000:abcd]:[32,102.1.1.1]:[1002]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
*> [2]:[0]:[1002]:[48,0000:0000:abcd]:[128,1002::1][1002]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
*> [2]:[0]:[1002]:[48,0000:0000:abcd]:[128,fe80::200:ff:fe00:abcd][1002]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1002]:[48,0000:0102:0001]:[0]:[1002]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1002]:[48,0000:0102:0001]:[32,102.1.1.2]:[1002]:[1000]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1002]:[48,0000:0102:0001]:[128,1002::2][1002]:[1000]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
RD[10.10.10.2:3]
*> [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1003]:[1003]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
*> [2]:[0]:[1003]:[48,0000:0000:abcd]:[32,103.1.1.1]:[1003]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
*> [2]:[0]:[1003]:[48,0000:0000:abcd]:[128,1003::1][1003]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
*> [2]:[0]:[1003]:[48,0000:0000:abcd]:[128,fe80::200:ff:fe00:abcd][1003]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1003]:[48,0000:0103:0001]:[0]:[1003]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1003]:[48,0000:0103:0001]:[32,103.1.1.2]:[1003]:[1000]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1003]:[48,0000:0103:0001]:[128,1002::2][1003]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
RD[10.10.10.2:64512]
*> [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[4294965295]:[0]
10.10.10.2 0 100 0 65003 65002 65001 i fe80::36ef:b6ff:fe69:fc5e VXLAN
* 10.10.10.2 0 100 0 65003 65002 65001 i fe80::230:abff:feea:da1a VXLAN
Total number of prefixes 64
BLEAF2#show ip bgp 101.1.1.2/32 vrf l3_vrf_1
BGP routing table entry for 101.1.1.2/32
Paths: (1 available, best #1, table Default-IP-Routing-Table)
Not advertised to any peer
AS path: 65003 65002 65001
Path Selection reason: Nothing left to compare
Nexthop:10.10.10.1 (IGP metric 0) from fe80::36ef:b6ff:fe69:fc5e (Remote Id:10.10.10.15) Peer nexthop: fe80::36ef:b6ff:fe69:fc5e
Origin IGP, metric 0, localpref 100 valid, external, best, source-safi: 70
Duplicated: (source VRF-ID: 0, source VRF: DEFAULT, VRF-External, imported)
Extended Community: RT:101:101 1001:1001 Encapsulation:VxLAN EVPN_Router's_Mac:1444.8fc8.0fc9 SubType-0x0b:000000000065
rx path_id: -1 tx path_id: -1
Add-Path Announcement: Not advertised to any peer
Origin-AS validity: disabled Last update: Mon Dec 15 08:05:46 2025, 00:02:21 ago
BLEAF2#show ip bgp 102.1.1.2/32 vrf l3_vrf_1
BGP routing table entry for 102.1.1.2/32
Paths: (1 available, best #1, table Default-IP-Routing-Table)
Not advertised to any peer
AS path: 65003 65002 65001
Path Selection reason: Nothing left to compare
Nexthop:10.10.10.2 (IGP metric 0) from fe80::36ef:b6ff:fe69:fc5e (Remote Id:10.10.10.15) Peer nexthop: fe80::36ef:b6ff:fe69:fc5e
Origin IGP, metric 0, localpref 100 valid, external, best, source-safi: 70
Duplicated: (source VRF-ID: 0, source VRF: DEFAULT, VRF-External, imported)
Extended Community: RT:102:102 1001:1001 Encapsulation:VxLAN EVPN_Router's_Mac:9819.2c9b.37d3 SubType-0x0b:000000000066
rx path_id: -1 tx path_id: -1
Add-Path Announcement: Not advertised to any peer
Origin-AS validity: disabled Last update: Mon Dec 15 07:56:31 2025, 00:11:36 ago
BLEAF2#show ip bgp 201.1.1.2/32 vrf l3_vrf_1
BGP routing table entry for 201.1.1.2/32
Paths: (1 available, best #1, table Default-IP-Routing-Table)
Not advertised to any peer
AS path: 65005 65004
Path Selection reason: Nothing left to compare
Nexthop:10.10.10.7 (IGP metric 0) from 10.10.10.21 (Remote Id:10.10.10.21) Peer nexthop: 10.10.10.21
Origin IGP, metric 0, localpref 100 valid, external, best, source-safi: 70
Stitched: (Recieved from the external fabric peer)
Extended Community: SOO:1005:1005 RT:7001:7001 Encapsulation:VxLAN EVPN_Router's_Mac:1444.8fc9.07c9
rx path_id: -1 tx path_id: -1
Add-Path Announcement: Not advertised to any peer
Origin-AS validity: disabled Last update: Mon Dec 15 08:05:06 2025, 00:03:01 ago
BLEAF2#show ip bgp 202.1.1.2/32 vrf l3_vrf_1
BGP routing table entry for 202.1.1.2/32
Paths: (1 available, best #1, table Default-IP-Routing-Table)
Not advertised to any peer
AS path: 65005 65004
Path Selection reason: Nothing left to compare
Nexthop:10.10.10.7 (IGP metric 0) from 10.10.10.21 (Remote Id:10.10.10.21) Peer nexthop: 10.10.10.21
Origin IGP, metric 0, localpref 100 valid, external, best, source-safi: 70
Stitched: (Recieved from the external fabric peer)
Extended Community: SOO:1005:1005 RT:7001:7001 Encapsulation:VxLAN EVPN_Router's_Mac:1444.8fc9.07c9
rx path_id: -1 tx path_id: -1
Add-Path Announcement: Not advertised to any peer
Origin-AS validity: disabled Last update: Mon Dec 15 08:05:06 2025, 00:03:01 ago
BLEAF2#show evpn l3vni-map
L3VNI Trans-L3VNI L2VNI IRB-interface
=====================================================
1000 2000 --- ---
BLEAF2#show nvo vxlan mac-table
=================================================================================================================================================================
VXLAN MAC Entries
=================================================================================================================================================================
VNID Interface VlanId In-VlanId Mac-Addr VTEP-Ip/ESI Type Status MAC move AccessPortDesc LeafFlag
_________________________________________________________________________________________________________________________________________________________________
Total number of entries are : 0
BLEAF2#
BLEAF2#
BLEAF2#
BLEAF3
BLEAF3#show nvo vxlan
VXLAN Information
=================
Codes: NW - Network Port
AC - Access Port
(u) - Untagged
VNID VNI-Name VNI-Type Type Interface ESI VLAN DF-Status Src-Addr Dst-Addr Router-Mac
_______________________________________________________________________________________________________________________________________________
1000 ---- L3 NW ---- ---- ---- ---- 10.10.10.7 10.10.10.4 e001.a6a9.4b01
2000 ---- L3 NW ---- ---- ---- ---- 10.10.10.7 10.10.10.5 5c17.83ff.2255
2000 ---- L3 NW ---- ---- ---- ---- 10.10.10.7 10.10.10.6 7c8d.9caa.5231
Total number of entries are 3
BLEAF3#show nvo vxlan tunnel
VXLAN Network tunnel Entries
Source Destination Status Up/Down Update
========================================================================
10.10.10.7 10.10.10.5 Installed 00:40:41 00:40:41
10.10.10.7 10.10.10.4 Installed 00:40:41 00:40:41
10.10.10.7 10.10.10.6 Installed 00:40:42 00:40:42
Total number of entries are 3
BLEAF3#show nvo vxlan arp-cache
VXLAN ARP-CACHE Information
===========================
VNID Ip-Addr Mac-Addr Type Age-Out Retries-Left
_______________________________________________________________________________________
Total number of entries are 0
BLEAF3#show nvo vxlan nd-cache
VXLAN ND-CACHE Information
===========================
VNID Ip-Addr Mac-Addr Type Age-Out Retries-Left
____________________________________________________________________________________________________
Total number of entries are 0
BLEAF3#show ip bgp summary
BGP router identifier 10.10.10.7, local AS number 65004
BGP table version is 31
5 BGP AS-PATH entries
0 BGP community entries
4 Configured ebgp ECMP multipath: Currently set at 4
Neighbor V AS MsgRcv MsgSen TblVer InQ OutQ Up/Down State/PfxRcd Desc
xe7(fe80::6eb9:c5ff:fe15:8765) 4 65002 2790 2771 28 0 0 00:40:43 2
Total number of neighbors 1
Total number of Established sessions 1
BLEAF3#show bgp l2vpn evpn summary
BGP router identifier 10.10.10.7, local AS number 65004
BGP table version is 189
5 BGP AS-PATH entries
0 BGP community entries
Neighbor V AS MsgRcv MsgSen TblVer InQ OutQ Up/Down State/PfxRcd AD MACIP MCAST ESI PREFIX-ROUTE Desc
xe7(fe80::6eb9:c5ff:fe15:8765) 4 65002 2790 2771 181 0 0 00:40:43 29 0 19 3 0 7
10.10.10.21 4 65005 2975 2809 188 0 0 00:40:43 22 0 0 0 0 22
10.10.10.22 4 65006 2970 2808 188 0 0 00:40:43 22 0 0 0 0 22
Total number of neighbors 3
Total number of Established sessions 3
BLEAF3#show ip route vrf all
Codes: K - kernel, C - connected, S - static, R - RIP, B - BGP
O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2,
ia - IS-IS inter area, E - EVPN,
v - vrf leaked
* - candidate default
IP Route Table for VRF "default"
B 10.10.10.4/32 [20/0] via fe80::6eb9:c5ff:fe15:8765, xe7, installed 00:40:41, last update 00:40:41 ago
O 10.10.10.5/32 [110/3] via 17.18.18.2, xe3, installed 18:47:03, last update 04:45:56 ago
[110/3] via 17.19.19.2, xe2
O 10.10.10.6/32 [110/3] via 17.18.18.2, xe3, installed 18:49:24, last update 18:49:14 ago
[110/3] via 17.19.19.2, xe2
C 10.10.10.7/32 is directly connected, lo, installed 18:50:54, last update 18:50:54 ago
B 10.10.10.16/32 [20/0] via fe80::6eb9:c5ff:fe15:8765, xe7, installed 00:40:41, last update 00:40:41 ago
O 10.10.10.21/32 [110/2] via 17.19.19.2, xe2, installed 18:49:55, last update 18:49:55 ago
O 10.10.10.22/32 [110/2] via 17.18.18.2, xe3, installed 18:50:00, last update 18:50:00 ago
C 17.18.18.0/24 is directly connected, xe3, installed 18:50:51, last update 18:50:51 ago
C 17.19.19.0/24 is directly connected, xe2, installed 18:50:51, last update 18:50:51 ago
O 17.20.20.0/24 [110/2] via 17.19.19.2, xe2, installed 18:47:48, last update 18:47:48 ago
O 17.21.21.0/24 [110/2] via 17.18.18.2, xe3, installed 04:46:41, last update 04:46:41 ago
O 17.22.22.0/24 [110/2] via 17.19.19.2, xe2, installed 18:49:55, last update 18:49:55 ago
O 17.23.23.0/24 [110/2] via 17.18.18.2, xe3, installed 18:50:00, last update 18:50:00 ago
O 17.24.24.0/24 [110/2] via 17.19.19.2, xe2, installed 18:50:00, last update 18:49:55 ago
[110/2] via 17.18.18.2, xe3
C 127.0.0.0/8 is directly connected, lo, installed 18:51:27, last update 18:51:27 ago
IP Route Table for VRF "management"
C 10.16.112.0/24 is directly connected, eth0, installed 18:50:49, last update 18:50:49 ago
C 127.0.0.0/8 is directly connected, lo.management, installed 18:51:27, last update 18:51:27 ago
IP Route Table for VRF "l3_vrf_1"
B 10.10.10.4/32 [0/0] is directly connected, tunvxlan2, installed 00:40:41, last update 00:40:41 ago
B 10.10.10.5/32 [0/0] is directly connected, tunvxlanw2, installed 00:40:41, last update 00:40:41 ago
B 10.10.10.6/32 [0/0] is directly connected, tunvxlanw2, installed 00:40:42, last update 00:40:42 ago
B 101.0.0.0/8 [20/0] via 10.10.10.6 (recursive is directly connected, tunvxlanw2), installed 00:40:42, last update 00:40:42 ago
B 101.1.1.2/32 [20/0] via 10.10.10.5 (recursive is directly connected, tunvxlanw2), installed 00:11:45, last update 00:11:45 ago
B 101.1.1.240/32 [20/0] via 10.10.10.6 (recursive is directly connected, tunvxlanw2), installed 00:40:42, last update 00:40:42 ago
B 102.0.0.0/8 [20/0] via 10.10.10.6 (recursive is directly connected, tunvxlanw2), installed 00:40:42, last update 00:40:42 ago
B 102.1.1.2/32 [20/0] via 10.10.10.5 (recursive is directly connected, tunvxlanw2), installed 00:11:45, last update 00:11:45 ago
B 103.0.0.0/8 [20/0] via 10.10.10.6 (recursive is directly connected, tunvxlanw2), installed 00:40:42, last update 00:40:42 ago
C 127.0.0.0/8 is directly connected, lo.l3_vrf_1, installed 18:51:00, last update 18:51:00 ago
B 201.0.0.0/8 [20/0] via 10.10.10.4 (recursive is directly connected, tunvxlan2), installed 00:40:42, last update 00:40:42 ago
B 201.1.1.2/32 [20/0] via 10.10.10.4 (recursive is directly connected, tunvxlan2), installed 00:03:09, last update 00:03:09 ago
B 201.1.1.240/32 [20/0] via 10.10.10.4 (recursive is directly connected, tunvxlan2), installed 00:40:42, last update 00:40:42 ago
B 202.0.0.0/8 [20/0] via 10.10.10.4 (recursive is directly connected, tunvxlan2), installed 00:40:42, last update 00:40:42 ago
B 202.1.1.2/32 [20/0] via 10.10.10.4 (recursive is directly connected, tunvxlan2), installed 00:03:09, last update 00:03:09 ago
B 203.0.0.0/8 [20/0] via 10.10.10.4 (recursive is directly connected, tunvxlan2), installed 00:40:42, last update 00:40:42 ago
B 203.1.1.2/32 [20/0] via 10.10.10.4 (recursive is directly connected, tunvxlan2), installed 00:03:09, last update 00:03:09 ago
Gateway of last resort is not set
BLEAF3#show ipv6 route vrf all
IPv6 Routing Table
Codes: K - kernel route, C - connected, S - static, D- DHCP, R - RIP,
O - OSPF, IA - OSPF inter area, E1 - OSPF external type 1,
E2 - OSPF external type 2, E - EVPN N1 - OSPF NSSA external type 1,
N2 - OSPF NSSA external type 2, i - IS-IS, B - BGP, v - vrf leaked
Timers: Uptime
IP Route Table for VRF "default"
C ::1/128 via ::, lo, installed 18:51:27, last update 18:51:27 ago
C fe80::/64 via ::, xe1, installed 05:55:08, last update 05:55:08 ago
IP Route Table for VRF "management"
C ::1/128 via ::, lo.management, installed 18:51:27, last update 18:51:27 ago
C fe80::/64 via ::, eth0, installed 18:51:27, last update 18:51:27 ago
IP Route Table for VRF "l3_vrf_1"
C ::1/128 via ::, lo.l3_vrf_1, installed 18:51:00, last update 18:51:00 ago
B ::ffff:a0a:a04/128 [0/0] via ::, tunvxlan2, installed 00:40:41, last update 00:40:41 ago
B ::ffff:a0a:a05/128 [0/0] via ::, tunvxlanw2, installed 00:40:41, last update 00:40:41 ago
B ::ffff:a0a:a06/128 [0/0] via ::, tunvxlanw2, installed 00:40:42, last update 00:40:42 ago
B 1001::/48 [20/0] via ::ffff:a0a:a06 (recursive via ::, tunvxlanw2), installed 00:40:42, last update 00:40:42 ago
B 1001::2/128 [20/0] via ::ffff:a0a:a05 (recursive via ::, tunvxlanw2), installed 00:11:45, last update 00:11:45 ago
B 1002::/48 [20/0] via ::ffff:a0a:a06 (recursive via ::, tunvxlanw2), installed 00:40:42, last update 00:40:42 ago
B 1002::2/128 [20/0] via ::ffff:a0a:a05 (recursive via ::, tunvxlanw2), installed 00:11:45, last update 00:11:45 ago
B 1003::/48 [20/0] via ::ffff:a0a:a06 (recursive via ::, tunvxlanw2), installed 00:40:42, last update 00:40:42 ago
B 2001::/48 [20/0] via ::ffff:a0a:a04 (recursive via ::, tunvxlan2), installed 00:40:42, last update 00:40:42 ago
B 2001::2/128 [20/0] via ::ffff:a0a:a04 (recursive via ::, tunvxlan2), installed 00:03:09, last update 00:03:09 ago
B 2002::/48 [20/0] via ::ffff:a0a:a04 (recursive via ::, tunvxlan2), installed 00:40:42, last update 00:40:42 ago
B 2002::2/128 [20/0] via ::ffff:a0a:a04 (recursive via ::, tunvxlan2), installed 00:03:09, last update 00:03:09 ago
B 2003::/48 [20/0] via ::ffff:a0a:a04 (recursive via ::, tunvxlan2), installed 00:40:42, last update 00:40:42 ago
B 2003::2/128 [20/0] via ::ffff:a0a:a04 (recursive via ::, tunvxlan2), installed 00:03:09, last update 00:03:09 ago
C fe80::/64 via ::, tunvxlanw2, installed 18:50:53, last update 18:50:53 ago
B fe80::1/128 [20/0] via ::ffff:a0a:a04 (recursive via ::, tunvxlan2), installed 00:03:09, last update 00:03:09 ago
BLEAF3#show bgp vrf all
BGP table version is 1, local router ID is 63.1.1.1
Status codes: s suppressed, d damped, h history, a add-path, b back-up, * valid, > best, i - internal,
l - labeled, S Stale, x-EVPN, w-Stitched-routes
Origin codes: i - IGP, e - EGP, ? - incomplete
Description : Ext-Color - Extended community color
Network Next Hop Metric LocPrf Weight Path Ext-Color
BGP Route Table for VRF l3_vrf_1
*>xw101.0.0.0 10.10.10.6 0 100 0 65006 65004 ?
*>xw101.1.1.2/32 10.10.10.5 0 100 0 65005 65004 i
*>xw101.1.1.240/32 10.10.10.6 0 100 0 65006 65004 ?
*>xw102.0.0.0 10.10.10.6 0 100 0 65006 65004 ?
*>xw102.1.1.2/32 10.10.10.5 0 100 0 65005 65004 i
*>xw103.0.0.0 10.10.10.6 0 100 0 65006 65004 ?
*>x 201.0.0.0/8 10.10.10.4 0 100 0 65002 65001 ?
*>x 201.1.1.2/32 10.10.10.4 0 100 0 65002 65001 i
*>x 201.1.1.240/32 10.10.10.4 0 100 0 65002 65001 ?
*>x 202.0.0.0/8 10.10.10.4 0 100 0 65002 65001 ?
*>x 202.1.1.2/32 10.10.10.4 0 100 0 65002 65001 i
*>x 203.0.0.0/8 10.10.10.4 0 100 0 65002 65001 ?
*>x 203.1.1.2/32 10.10.10.4 0 100 0 65002 65001 i
Total number of prefixes 13
*> 10.10.10.4/32 fe80::6eb9:c5ff:fe15:8765 0 100 0 65002 65001 i
*> 10.10.10.7/32 0.0.0.0 0 100 32768 i
* 0.0.0.0 0 100 32768 ?
*> 10.10.10.16/32 fe80::6eb9:c5ff:fe15:8765 0 100 0 65002 i
*> 17.18.18.0/24 0.0.0.0 0 100 32768 ?
*> 17.19.19.0/24 0.0.0.0 0 100 32768 ?
Total number of prefixes 5
BLEAF3#show bgp ipv6 unicast vrf all
BGP table version is 1, local router ID is 63.1.1.1
Status codes: s suppressed, d damped, h history, a add-path, b back-up, * valid, > best, i - internal,
l - labeled, S Stale, x-EVPN, w-Stitched-routes
Origin codes: i - IGP, e - EGP, ? - incomplete
Description : Ext-Color - Extended community color
Network Next Hop Metric LocPrf Weight Path
BGP Route Table for VRF l3_vrf_1
*>xw1001::/48 ::ffff:10.10.10.6 0 100 0 65006 65004 ?
*>xw1001::2/128 ::ffff:10.10.10.5 0 100 0 65005 65004 i
*>xw1002::/48 ::ffff:10.10.10.6 0 100 0 65006 65004 ?
*>xw1002::2/128 ::ffff:10.10.10.5 0 100 0 65005 65004 i
*>xw1003::/48 ::ffff:10.10.10.6 0 100 0 65006 65004 ?
*>x 2001::/48 ::ffff:10.10.10.4 0 100 0 65002 65001 ?
*>x 2001::2/128 ::ffff:10.10.10.4 0 100 0 65002 65001 i
*>x 2002::/48 ::ffff:10.10.10.4 0 100 0 65002 65001 ?
*>x 2002::2/128 ::ffff:10.10.10.4 0 100 0 65002 65001 i
*>x 2003::/48 ::ffff:10.10.10.4 0 100 0 65002 65001 ?
*>x 2003::2/128 ::ffff:10.10.10.4 0 100 0 65002 65001 i
*>x fe80::1/128 ::ffff:10.10.10.4 0 100 0 65002 65001 i
Total number of prefixes 12
BLEAF3#show bgp l2vpn evpn
BGP table version is 189, local router ID is 10.10.10.7
Status codes: s suppressed, d damped, h history, a add-path, b back-up, * valid, > best, i - internal,
l - labeled, S Stale
Origin codes: i - IGP, e - EGP, ? - incomplete
Description : Ext-Color - Extended community color
[EVPN route type]:[ESI]:[VNID]:[relevent route informantion]
1 - Ethernet Auto-discovery Route
2 - MAC/IP Route
3 - Inclusive Multicast Route
4 - Ethernet Segment Route
5 - Prefix Route
Network Next Hop Metric LocPrf Weight Path Peer Encap
RD[7004:5001]
*> [5]:[0]:[0]:[8]:[201.0.0.0]:[0.0.0.0]:[1000]
10.10.10.4 0 100 0 65002 65001 ? fe80::6eb9:c5ff:fe15:8765 VXLAN
*> [5]:[0]:[0]:[8]:[202.0.0.0]:[0.0.0.0]:[1000]
10.10.10.4 0 100 0 65002 65001 ? fe80::6eb9:c5ff:fe15:8765 VXLAN
*> [5]:[0]:[0]:[8]:[203.0.0.0]:[0.0.0.0]:[1000]
10.10.10.4 0 100 0 65002 65001 ? fe80::6eb9:c5ff:fe15:8765 VXLAN
*> [5]:[0]:[0]:[32]:[201.1.1.240]:[0.0.0.0]:[1000]
10.10.10.4 0 100 0 65002 65001 ? fe80::6eb9:c5ff:fe15:8765 VXLAN
*> [5]:[0]:[0]:[48]:[2001::]:[::]:[1000]
10.10.10.4 0 100 0 65002 65001 ? fe80::6eb9:c5ff:fe15:8765 VXLAN
*> [5]:[0]:[0]:[48]:[2002::]:[::]:[1000]
10.10.10.4 0 100 0 65002 65001 ? fe80::6eb9:c5ff:fe15:8765 VXLAN
*> [5]:[0]:[0]:[48]:[2003::]:[::]:[1000]
10.10.10.4 0 100 0 65002 65001 ? fe80::6eb9:c5ff:fe15:8765 VXLAN
RD[7005:7001]
*> [5]:[0]:[0]:[8]:[101.0.0.0]:[0.0.0.0]:[2000]
10.10.10.5 0 100 0 65005 65004 ? 10.10.10.21 VXLAN
* 10.10.10.5 0 100 0 65006 65004 ? 10.10.10.22 VXLAN
*> [5]:[0]:[0]:[8]:[102.0.0.0]:[0.0.0.0]:[2000]
10.10.10.5 0 100 0 65005 65004 ? 10.10.10.21 VXLAN
* 10.10.10.5 0 100 0 65006 65004 ? 10.10.10.22 VXLAN
*> [5]:[0]:[0]:[8]:[103.0.0.0]:[0.0.0.0]:[2000]
10.10.10.5 0 100 0 65005 65004 ? 10.10.10.21 VXLAN
* 10.10.10.5 0 100 0 65006 65004 ? 10.10.10.22 VXLAN
*> [5]:[00:00:00:aa:aa:bb:bb:00:00:00]:[0]:[32]:[101.1.1.2]:[0.0.0.0]:[2000]
10.10.10.5 0 100 0 65005 65004 i 10.10.10.21 VXLAN
* 10.10.10.5 0 100 0 65006 65004 i 10.10.10.22 VXLAN
*> [5]:[0]:[0]:[32]:[101.1.1.240]:[0.0.0.0]:[2000]
10.10.10.5 0 100 0 65005 65004 ? 10.10.10.21 VXLAN
* 10.10.10.5 0 100 0 65006 65004 ? 10.10.10.22 VXLAN
*> [5]:[00:00:00:aa:aa:bb:bb:00:00:00]:[0]:[32]:[102.1.1.2]:[0.0.0.0]:[2000]
10.10.10.5 0 100 0 65005 65004 i 10.10.10.21 VXLAN
* 10.10.10.5 0 100 0 65006 65004 i 10.10.10.22 VXLAN
*> [5]:[0]:[0]:[48]:[1001::]:[::]:[2000]
10.10.10.5 0 100 0 65005 65004 ? 10.10.10.21 VXLAN
* 10.10.10.5 0 100 0 65006 65004 ? 10.10.10.22 VXLAN
*> [5]:[0]:[0]:[48]:[1002::]:[::]:[2000]
10.10.10.5 0 100 0 65005 65004 ? 10.10.10.21 VXLAN
* 10.10.10.5 0 100 0 65006 65004 ? 10.10.10.22 VXLAN
*> [5]:[0]:[0]:[48]:[1003::]:[::]:[2000]
10.10.10.5 0 100 0 65005 65004 ? 10.10.10.21 VXLAN
* 10.10.10.5 0 100 0 65006 65004 ? 10.10.10.22 VXLAN
*> [5]:[00:00:00:aa:aa:bb:bb:00:00:00]:[0]:[128]:[1001::2]:[::]:[2000]
10.10.10.5 0 100 0 65005 65004 i 10.10.10.21 VXLAN
* 10.10.10.5 0 100 0 65006 65004 i 10.10.10.22 VXLAN
*> [5]:[00:00:00:aa:aa:bb:bb:00:00:00]:[0]:[128]:[1002::2]:[::]:[2000]
10.10.10.5 0 100 0 65005 65004 i 10.10.10.21 VXLAN
* 10.10.10.5 0 100 0 65006 65004 i 10.10.10.22 VXLAN
RD[7006:7001]
*> [5]:[0]:[0]:[8]:[101.0.0.0]:[0.0.0.0]:[2000]
10.10.10.6 0 100 0 65006 65004 ? 10.10.10.22 VXLAN
* 10.10.10.6 0 100 0 65005 65004 ? 10.10.10.21 VXLAN
*> [5]:[0]:[0]:[8]:[102.0.0.0]:[0.0.0.0]:[2000]
10.10.10.6 0 100 0 65006 65004 ? 10.10.10.22 VXLAN
* 10.10.10.6 0 100 0 65005 65004 ? 10.10.10.21 VXLAN
*> [5]:[0]:[0]:[8]:[103.0.0.0]:[0.0.0.0]:[2000]
10.10.10.6 0 100 0 65006 65004 ? 10.10.10.22 VXLAN
* 10.10.10.6 0 100 0 65005 65004 ? 10.10.10.21 VXLAN
*> [5]:[00:00:00:aa:aa:bb:bb:00:00:00]:[0]:[32]:[101.1.1.2]:[0.0.0.0]:[2000]
10.10.10.6 0 100 0 65005 65004 i 10.10.10.21 VXLAN
* 10.10.10.6 0 100 0 65006 65004 i 10.10.10.22 VXLAN
*> [5]:[0]:[0]:[32]:[101.1.1.240]:[0.0.0.0]:[2000]
10.10.10.6 0 100 0 65006 65004 ? 10.10.10.22 VXLAN
* 10.10.10.6 0 100 0 65005 65004 ? 10.10.10.21 VXLAN
*> [5]:[00:00:00:aa:aa:bb:bb:00:00:00]:[0]:[32]:[102.1.1.2]:[0.0.0.0]:[2000]
10.10.10.6 0 100 0 65005 65004 i 10.10.10.21 VXLAN
* 10.10.10.6 0 100 0 65006 65004 i 10.10.10.22 VXLAN
*> [5]:[0]:[0]:[48]:[1001::]:[::]:[2000]
10.10.10.6 0 100 0 65006 65004 ? 10.10.10.22 VXLAN
* 10.10.10.6 0 100 0 65005 65004 ? 10.10.10.21 VXLAN
*> [5]:[0]:[0]:[48]:[1002::]:[::]:[2000]
10.10.10.6 0 100 0 65006 65004 ? 10.10.10.22 VXLAN
* 10.10.10.6 0 100 0 65005 65004 ? 10.10.10.21 VXLAN
*> [5]:[0]:[0]:[48]:[1003::]:[::]:[2000]
10.10.10.6 0 100 0 65006 65004 ? 10.10.10.22 VXLAN
* 10.10.10.6 0 100 0 65005 65004 ? 10.10.10.21 VXLAN
*> [5]:[00:00:00:aa:aa:bb:bb:00:00:00]:[0]:[128]:[1001::2]:[::]:[2000]
10.10.10.6 0 100 0 65005 65004 i 10.10.10.21 VXLAN
* 10.10.10.6 0 100 0 65006 65004 i 10.10.10.22 VXLAN
*> [5]:[00:00:00:aa:aa:bb:bb:00:00:00]:[0]:[128]:[1002::2]:[::]:[2000]
10.10.10.6 0 100 0 65005 65004 i 10.10.10.21 VXLAN
* 10.10.10.6 0 100 0 65006 65004 i 10.10.10.22 VXLAN
RD[10.10.10.4:1]
*> [2]:[0]:[1001]:[48,0000:0201:0001]:[0]:[1001]
10.10.10.4 0 100 0 65002 65001 i fe80::6eb9:c5ff:fe15:8765 VXLAN
*> [2]:[0]:[1001]:[48,0000:0201:0001]:[32,201.1.1.2]:[1001]:[1000]
10.10.10.4 0 100 0 65002 65001 i fe80::6eb9:c5ff:fe15:8765 VXLAN
*> [2]:[0]:[1001]:[48,0000:0201:0001]:[128,2001::2][1001]:[1000]
10.10.10.4 0 100 0 65002 65001 i fe80::6eb9:c5ff:fe15:8765 VXLAN
*> [2]:[0]:[1001]:[48,0000:0201:0001]:[128,fe80::1][1001]:[1000]
10.10.10.4 0 100 0 65002 65001 i fe80::6eb9:c5ff:fe15:8765 VXLAN
*> [2]:[0]:[1001]:[48,e001:a6a9:4b01]:[32,201.1.1.1]:[1001]
10.10.10.4 0 100 0 65002 65001 i fe80::6eb9:c5ff:fe15:8765 VXLAN
*> [2]:[0]:[1001]:[48,e001:a6a9:4b01]:[128,2001::1][1001]
10.10.10.4 0 100 0 65002 65001 i fe80::6eb9:c5ff:fe15:8765 VXLAN
*> [2]:[0]:[1001]:[48,e001:a6a9:4b01]:[128,fe80::e201:a6ff:fea9:4b01][1001]
10.10.10.4 0 100 0 65002 65001 i fe80::6eb9:c5ff:fe15:8765 VXLAN
*> [3]:[1001]:[32,10.10.10.4]
10.10.10.4 0 100 0 65002 65001 i fe80::6eb9:c5ff:fe15:8765 VXLAN
RD[10.10.10.4:2]
*> [2]:[0]:[1002]:[48,0000:0202:0001]:[0]:[1002]
10.10.10.4 0 100 0 65002 65001 i fe80::6eb9:c5ff:fe15:8765 VXLAN
*> [2]:[0]:[1002]:[48,0000:0202:0001]:[32,202.1.1.2]:[1002]:[1000]
10.10.10.4 0 100 0 65002 65001 i fe80::6eb9:c5ff:fe15:8765 VXLAN
*> [2]:[0]:[1002]:[48,0000:0202:0001]:[128,2002::2][1002]:[1000]
10.10.10.4 0 100 0 65002 65001 i fe80::6eb9:c5ff:fe15:8765 VXLAN
*> [2]:[0]:[1002]:[48,e001:a6a9:4b01]:[32,202.1.1.1]:[1002]
10.10.10.4 0 100 0 65002 65001 i fe80::6eb9:c5ff:fe15:8765 VXLAN
*> [2]:[0]:[1002]:[48,e001:a6a9:4b01]:[128,2002::1][1002]
10.10.10.4 0 100 0 65002 65001 i fe80::6eb9:c5ff:fe15:8765 VXLAN
*> [2]:[0]:[1002]:[48,e001:a6a9:4b01]:[128,fe80::e201:a6ff:fea9:4b01][1002]
10.10.10.4 0 100 0 65002 65001 i fe80::6eb9:c5ff:fe15:8765 VXLAN
*> [3]:[1002]:[32,10.10.10.4]
10.10.10.4 0 100 0 65002 65001 i fe80::6eb9:c5ff:fe15:8765 VXLAN
RD[10.10.10.4:3]
*> [2]:[0]:[1003]:[48,0000:0203:0001]:[0]:[1003]
10.10.10.4 0 100 0 65002 65001 i fe80::6eb9:c5ff:fe15:8765 VXLAN
*> [2]:[0]:[1003]:[48,0000:0203:0001]:[32,203.1.1.2]:[1003]:[1000]
10.10.10.4 0 100 0 65002 65001 i fe80::6eb9:c5ff:fe15:8765 VXLAN
*> [2]:[0]:[1003]:[48,0000:0203:0001]:[128,2003::2][1003]:[1000]
10.10.10.4 0 100 0 65002 65001 i fe80::6eb9:c5ff:fe15:8765 VXLAN
*> [2]:[0]:[1003]:[48,e001:a6a9:4b01]:[32,203.1.1.1]:[1003]
10.10.10.4 0 100 0 65002 65001 i fe80::6eb9:c5ff:fe15:8765 VXLAN
*> [2]:[0]:[1003]:[48,e001:a6a9:4b01]:[128,2003::1][1003]
10.10.10.4 0 100 0 65002 65001 i fe80::6eb9:c5ff:fe15:8765 VXLAN
*> [2]:[0]:[1003]:[48,e001:a6a9:4b01]:[128,fe80::e201:a6ff:fea9:4b01][1003]
10.10.10.4 0 100 0 65002 65001 i fe80::6eb9:c5ff:fe15:8765 VXLAN
*> [3]:[1003]:[32,10.10.10.4]
10.10.10.4 0 100 0 65002 65001 i fe80::6eb9:c5ff:fe15:8765 VXLAN
Total number of prefixes 51
BLEAF3#show ip bgp 101.1.1.2/32 vrf l3_vrf_1
BGP routing table entry for 101.1.1.2/32
Paths: (1 available, best #1, table Default-IP-Routing-Table)
Not advertised to any peer
AS path: 65005 65004
Path Selection reason: Nothing left to compare
Nexthop:10.10.10.5 (IGP metric 0) from 10.10.10.21 (Remote Id:10.10.10.21) Peer nexthop: 10.10.10.21
Origin IGP, metric 0, localpref 100 valid, external, best, source-safi: 70
Stitched: (Recieved from the external fabric peer)
Extended Community: SOO:1004:1004 RT:7001:7001 Encapsulation:VxLAN EVPN_Router's_Mac:5c17.83ff.2255
rx path_id: -1 tx path_id: -1
Add-Path Announcement: Not advertised to any peer
Origin-AS validity: disabled Last update: Mon Dec 15 07:56:30 2025, 00:11:47 ago
BLEAF3#show ip bgp 102.1.1.2/32 vrf l3_vrf_1
BGP routing table entry for 102.1.1.2/32
Paths: (1 available, best #1, table Default-IP-Routing-Table)
Not advertised to any peer
AS path: 65005 65004
Path Selection reason: Nothing left to compare
Nexthop:10.10.10.5 (IGP metric 0) from 10.10.10.21 (Remote Id:10.10.10.21) Peer nexthop: 10.10.10.21
Origin IGP, metric 0, localpref 100 valid, external, best, source-safi: 70
Stitched: (Recieved from the external fabric peer)
Extended Community: SOO:1004:1004 RT:7001:7001 Encapsulation:VxLAN EVPN_Router's_Mac:5c17.83ff.2255
rx path_id: -1 tx path_id: -1
Add-Path Announcement: Not advertised to any peer
Origin-AS validity: disabled Last update: Mon Dec 15 07:56:30 2025, 00:11:47 ago
BLEAF3#show ip bgp 201.1.1.2/32 vrf l3_vrf_1
BGP routing table entry for 201.1.1.2/32
Paths: (1 available, best #1, table Default-IP-Routing-Table)
Not advertised to any peer
AS path: 65002 65001
Path Selection reason: Nothing left to compare
Nexthop:10.10.10.4 (IGP metric 0) from fe80::6eb9:c5ff:fe15:8765 (Remote Id:10.10.10.16) Peer nexthop: fe80::6eb9:c5ff:fe15:8765
Origin IGP, metric 0, localpref 100 valid, external, best, source-safi: 70
Duplicated: (source VRF-ID: 0, source VRF: DEFAULT, VRF-External, imported)
Extended Community: RT:201:201 5001:5001 Encapsulation:VxLAN EVPN_Router's_Mac:e001.a6a9.4b01
rx path_id: -1 tx path_id: -1
Add-Path Announcement: Not advertised to any peer
Origin-AS validity: disabled Last update: Mon Dec 15 08:05:06 2025, 00:03:12 ago
BLEAF3#show ip bgp 202.1.1.2/32 vrf l3_vrf_1
BGP routing table entry for 202.1.1.2/32
Paths: (1 available, best #1, table Default-IP-Routing-Table)
Not advertised to any peer
AS path: 65002 65001
Path Selection reason: Nothing left to compare
Nexthop:10.10.10.4 (IGP metric 0) from fe80::6eb9:c5ff:fe15:8765 (Remote Id:10.10.10.16) Peer nexthop: fe80::6eb9:c5ff:fe15:8765
Origin IGP, metric 0, localpref 100 valid, external, best, source-safi: 70
Duplicated: (source VRF-ID: 0, source VRF: DEFAULT, VRF-External, imported)
Extended Community: RT:202:202 5001:5001 Encapsulation:VxLAN EVPN_Router's_Mac:e001.a6a9.4b01
rx path_id: -1 tx path_id: -1
Add-Path Announcement: Not advertised to any peer
Origin-AS validity: disabled Last update: Mon Dec 15 08:05:06 2025, 00:03:12 ago
BLEAF3#show evpn l3vni-map
L3VNI Trans-L3VNI L2VNI IRB-interface
=====================================================
1000 2000 --- ---
BLEAF3#show nvo vxlan mac-table
=================================================================================================================================================================
VXLAN MAC Entries
=================================================================================================================================================================
VNID Interface VlanId In-VlanId Mac-Addr VTEP-Ip/ESI Type Status MAC move AccessPortDesc LeafFlag
_________________________________________________________________________________________________________________________________________________________________
Total number of entries are : 0
BLEAF3#
BLEAF3#
LEAF1
LEAF1#show nvo vxlan
VXLAN Information
=================
Codes: NW - Network Port
AC - Access Port
(u) - Untagged
VNID VNI-Name VNI-Type Type Interface ESI VLAN DF-Status Src-Addr Dst-Addr Router-Mac
_______________________________________________________________________________________________________________________________________________
1000 ---- L3 NW ---- ---- ---- ---- 10.10.10.1 10.10.10.2 9819.2c9b.37d3
1000 ---- L3 NW ---- ---- ---- ---- 10.10.10.1 10.10.10.6 7c8d.9caa.5231
1000 ---- L3 NW ---- ---- ---- ---- 10.10.10.1 10.10.10.5 5c17.83ff.2255
1001 ---- L2 NW ---- ---- ---- ---- 10.10.10.1 10.10.10.2 --------------
1001 ---- -- AC po1 00:00:00:aa:aa:bb:bb:00:00:00 101 NON-DF ---- ----
1002 ---- L2 NW ---- ---- ---- ---- 10.10.10.1 10.10.10.2 --------------
1002 ---- -- AC po1 00:00:00:aa:aa:bb:bb:00:00:00 102 DF ---- ----
1003 ---- L2 NW ---- ---- ---- ---- 10.10.10.1 10.10.10.2 --------------
1003 ---- -- AC po1 00:00:00:aa:aa:bb:bb:00:00:00 103 NON-DF ---- ----
Total number of entries are 9
LEAF1#show nvo vxlan tunnel
VXLAN Network tunnel Entries
Source Destination Status Up/Down Update
========================================================================
10.10.10.1 10.10.10.2 Installed 00:41:01 00:41:01
10.10.10.1 10.10.10.6 Installed 00:41:02 00:41:02
10.10.10.1 10.10.10.5 Installed 00:41:02 00:41:02
Total number of entries are 3
LEAF1#show nvo vxlan arp-cache
VXLAN ARP-CACHE Information
===========================
VNID Ip-Addr Mac-Addr Type Age-Out Retries-Left
_______________________________________________________________________________________
1001 101.1.1.1 0000.0000.abcd Static Local ----
1001 101.1.1.2 0000.0101.0001 Dynamic Local ----
1002 102.1.1.1 0000.0000.abcd Static Local ----
1002 102.1.1.2 0000.0102.0001 Dynamic Remote ----
1003 103.1.1.1 0000.0000.abcd Static Local ----
1003 103.1.1.2 0000.0103.0001 Dynamic Remote ----
Total number of entries are 6
LEAF1#show nvo vxlan nd-cache
VXLAN ND-CACHE Information
===========================
VNID Ip-Addr Mac-Addr Type Age-Out Retries-Left
____________________________________________________________________________________________________
1001 1001::1 0000.0000.abcd Static Local ----
1001 1001::2 0000.0101.0001 Dynamic Local ----
1001 fe80::1 0000.0101.0001 Dynamic Remote ----
1001 fe80::200:ff:fe00:abcd 0000.0000.abcd Static Local ----
1002 1002::1 0000.0000.abcd Static Local ----
1002 1002::2 0000.0102.0001 Dynamic Remote ----
1002 fe80::200:ff:fe00:abcd 0000.0000.abcd Static Local ----
1003 1002::2 0000.0103.0001 Dynamic Remote ----
1003 1003::1 0000.0000.abcd Static Local ----
1003 1003::2 0000.0103.0001 Dynamic Local ----
1003 fe80::200:ff:fe00:abcd 0000.0000.abcd Static Local ----
Total number of entries are 11
LEAF1#show ip bgp summary
BGP router identifier 10.10.10.1, local AS number 65001
BGP table version is 52
6 BGP AS-PATH entries
0 BGP community entries
4 Configured ebgp ECMP multipath: Currently set at 4
Neighbor V AS MsgRcv MsgSen TblVer InQ OutQ Up/Down State/PfxRcd Desc
xe47(fe80::ba6a:97ff:fee2:4bce) 4 65002 927 754 51 0 0 00:41:05 11
xe8(fe80::1644:8fff:fe45:8dd5) 4 65002 911 682 52 0 0 00:41:05 11
Total number of neighbors 2
Total number of Established sessions 2
LEAF1#show bgp l2vpn evpn summary
BGP router identifier 10.10.10.1, local AS number 65001
BGP table version is 116
6 BGP AS-PATH entries
0 BGP community entries
Neighbor V AS MsgRcv MsgSen TblVer InQ OutQ Up/Down State/PfxRcd AD MACIP MCAST ESI PREFIX-ROUTE Desc
xe47(fe80::ba6a:97ff:fee2:4bce) 4 65002 927 754 114 0 0 00:41:05 54 4 17 3 1 29
xe8(fe80::1644:8fff:fe45:8dd5) 4 65002 911 682 116 0 0 00:41:05 54 4 17 3 1 29
Total number of neighbors 2
Total number of Established sessions 2
LEAF1#show ip route vrf all
Codes: K - kernel, C - connected, S - static, R - RIP, B - BGP
O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2,
ia - IS-IS inter area, E - EVPN,
v - vrf leaked
* - candidate default
IP Route Table for VRF "default"
C 10.10.10.1/32 is directly connected, lo, installed 03:52:36, last update 03:52:36 ago
B 10.10.10.2/32 [20/0] via fe80::ba6a:97ff:fee2:4bce, xe47, installed 00:41:02, last update 00:41:02 ago
[20/0] via fe80::1644:8fff:fe45:8dd5, xe8
B 10.10.10.5/32 [20/0] via fe80::ba6a:97ff:fee2:4bce, xe47, installed 00:41:02, last update 00:41:02 ago
[20/0] via fe80::1644:8fff:fe45:8dd5, xe8
B 10.10.10.6/32 [20/0] via fe80::ba6a:97ff:fee2:4bce, xe47, installed 00:41:02, last update 00:41:02 ago
[20/0] via fe80::1644:8fff:fe45:8dd5, xe8
B 10.10.10.11/32 [20/0] via fe80::1644:8fff:fe45:8dd5, xe8, installed 00:41:02, last update 00:41:02 ago
B 10.10.10.12/32 [20/0] via fe80::ba6a:97ff:fee2:4bce, xe47, installed 00:41:02, last update 00:41:02 ago
B 10.10.10.14/32 [20/0] via fe80::ba6a:97ff:fee2:4bce, xe47, installed 00:41:03, last update 00:41:03 ago
[20/0] via fe80::1644:8fff:fe45:8dd5, xe8
B 10.10.10.15/32 [20/0] via fe80::ba6a:97ff:fee2:4bce, xe47, installed 00:41:03, last update 00:41:03 ago
[20/0] via fe80::1644:8fff:fe45:8dd5, xe8
B 17.20.20.0/24 [20/0] via fe80::ba6a:97ff:fee2:4bce, xe47, installed 00:41:02, last update 00:41:02 ago
[20/0] via fe80::1644:8fff:fe45:8dd5, xe8
B 17.21.21.0/24 [20/0] via fe80::ba6a:97ff:fee2:4bce, xe47, installed 00:41:02, last update 00:41:02 ago
[20/0] via fe80::1644:8fff:fe45:8dd5, xe8
B 17.22.22.0/24 [20/0] via fe80::ba6a:97ff:fee2:4bce, xe47, installed 00:41:02, last update 00:41:02 ago
[20/0] via fe80::1644:8fff:fe45:8dd5, xe8
B 17.23.23.0/24 [20/0] via fe80::ba6a:97ff:fee2:4bce, xe47, installed 00:41:02, last update 00:41:02 ago
[20/0] via fe80::1644:8fff:fe45:8dd5, xe8
C 127.0.0.0/8 is directly connected, lo, installed 03:52:52, last update 03:52:52 ago
IP Route Table for VRF "management"
C 10.16.111.0/24 is directly connected, eth0, installed 03:52:34, last update 03:52:34 ago
C 127.0.0.0/8 is directly connected, lo.management, installed 03:52:52, last update 03:52:52 ago
IP Route Table for VRF "l3_vrf_1"
B 10.10.10.2/32 [0/0] is directly connected, tunvxlan2, installed 00:41:02, last update 00:41:02 ago
B 10.10.10.5/32 [0/0] is directly connected, tunvxlan2, installed 00:41:02, last update 00:41:02 ago
B 10.10.10.6/32 [0/0] is directly connected, tunvxlan2, installed 00:41:02, last update 00:41:02 ago
C 101.0.0.0/8 is directly connected, irb1001, installed 03:52:36, last update 03:52:36 ago
S 101.1.1.240/32 [1/0] is directly connected, irb1001, installed 03:52:36, last update 03:52:36 ago
C 102.0.0.0/8 is directly connected, irb1002, installed 03:52:36, last update 03:52:36 ago
C 103.0.0.0/8 is directly connected, irb1003, installed 03:52:36, last update 03:52:36 ago
C 127.0.0.0/8 is directly connected, lo.l3_vrf_1, installed 03:52:40, last update 03:52:40 ago
B 201.0.0.0/8 [20/0] via 10.10.10.5 (recursive is directly connected, tunvxlan2), installed 00:41:03, last update 00:41:03 ago
[20/0] via 10.10.10.6 (recursive is directly connected, tunvxlan2)
B 201.1.1.2/32 [20/0] via 10.10.10.6 (recursive is directly connected, tunvxlan2), installed 00:03:30, last update 00:03:30 ago
[20/0] via 10.10.10.5 (recursive is directly connected, tunvxlan2)
B 201.1.1.240/32 [20/0] via 10.10.10.5 (recursive is directly connected, tunvxlan2), installed 00:41:03, last update 00:41:03 ago
[20/0] via 10.10.10.6 (recursive is directly connected, tunvxlan2)
B 202.0.0.0/8 [20/0] via 10.10.10.5 (recursive is directly connected, tunvxlan2), installed 00:41:03, last update 00:41:03 ago
[20/0] via 10.10.10.6 (recursive is directly connected, tunvxlan2)
B 202.1.1.2/32 [20/0] via 10.10.10.5 (recursive is directly connected, tunvxlan2), installed 00:03:30, last update 00:03:30 ago
[20/0] via 10.10.10.6 (recursive is directly connected, tunvxlan2)
B 203.0.0.0/8 [20/0] via 10.10.10.5 (recursive is directly connected, tunvxlan2), installed 00:41:03, last update 00:41:03 ago
[20/0] via 10.10.10.6 (recursive is directly connected, tunvxlan2)
IP Route Table for VRF "l2_vrf_1"
IP Route Table for VRF "l2_vrf_2"
IP Route Table for VRF "l2_vrf_3"
IP Route Table for VRF "evpn-gvrf-1"
Gateway of last resort is not set
LEAF1#show ipv6 route vrf all
IPv6 Routing Table
Codes: K - kernel route, C - connected, S - static, D- DHCP, R - RIP,
O - OSPF, IA - OSPF inter area, E1 - OSPF external type 1,
E2 - OSPF external type 2, E - EVPN N1 - OSPF NSSA external type 1,
N2 - OSPF NSSA external type 2, i - IS-IS, B - BGP,
v - vrf leaked
Timers: Uptime
IP Route Table for VRF "default"
C ::1/128 via ::, lo, installed 03:52:53, last update 03:52:53 ago
C fe80::/64 via ::, xe10, installed 03:52:08, last update 03:52:08 ago
IP Route Table for VRF "management"
C ::1/128 via ::, lo.management, installed 03:52:53, last update 03:52:53 ago
C fe80::/64 via ::, eth0, installed 03:52:53, last update 03:52:53 ago
IP Route Table for VRF "l3_vrf_1"
C ::1/128 via ::, lo.l3_vrf_1, installed 03:52:41, last update 03:52:41 ago
B ::ffff:a0a:a02/128 [0/0] via ::, tunvxlan2, installed 00:41:03, last update 00:41:03 ago
B ::ffff:a0a:a05/128 [0/0] via ::, tunvxlan2, installed 00:41:03, last update 00:41:03 ago
B ::ffff:a0a:a06/128 [0/0] via ::, tunvxlan2, installed 00:41:03, last update 00:41:03 ago
C 1001::/48 via ::, irb1001, installed 03:52:37, last update 03:52:37 ago
C 1002::/48 via ::, irb1002, installed 03:52:37, last update 03:52:37 ago
C 1003::/48 via ::, irb1003, installed 03:52:37, last update 03:52:37 ago
B 2001::/48 [20/0] via ::ffff:a0a:a06 (recursive via ::, tunvxlan2), installed 00:41:04, last update 00:41:04 ago
[20/0] via ::ffff:a0a:a05 (recursive via ::, tunvxlan2)
B 2001::2/128 [20/0] via ::ffff:a0a:a06 (recursive via ::, tunvxlan2), installed 00:03:31, last update 00:03:31 ago
[20/0] via ::ffff:a0a:a05 (recursive via ::, tunvxlan2)
B 2002::/48 [20/0] via ::ffff:a0a:a06 (recursive via ::, tunvxlan2), installed 00:41:04, last update 00:41:04 ago
[20/0] via ::ffff:a0a:a05 (recursive via ::, tunvxlan2)
B 2002::2/128 [20/0] via ::ffff:a0a:a06 (recursive via ::, tunvxlan2), installed 00:03:31, last update 00:03:31 ago
[20/0] via ::ffff:a0a:a05 (recursive via ::, tunvxlan2)
B 2003::/48 [20/0] via ::ffff:a0a:a06 (recursive via ::, tunvxlan2), installed 00:41:04, last update 00:41:04 ago
[20/0] via ::ffff:a0a:a05 (recursive via ::, tunvxlan2)
C fe80::/64 via ::, irb1003, installed 03:52:37, last update 03:52:37 ago
IP Route Table for VRF "l2_vrf_1"
IP Route Table for VRF "l2_vrf_2"
IP Route Table for VRF "l2_vrf_3"
IP Route Table for VRF "evpn-gvrf-1"
LEAF1#show bgp vrf all
BGP table version is 1, local router ID is 103.1.1.1
Status codes: s suppressed, d damped, h history, a add-path, b back-up, * valid, > best, i - internal,
l - labeled, S Stale, x-EVPN, w-Stitched-routes
Origin codes: i - IGP, e - EGP, ? - incomplete
Description : Ext-Color - Extended community color
Network Next Hop Metric LocPrf Weight Path Ext-Color
BGP Route Table for VRF l3_vrf_1
*> 101.0.0.0 0.0.0.0 0 100 32768 ?
* x 10.10.10.2 0 100 0 65002 65001 ?
*> 101.1.1.240/32 0.0.0.0 0 100 32768 ?
* x 10.10.10.2 0 100 0 65002 65001 ?
*> 102.0.0.0 0.0.0.0 0 100 32768 ?
* x 10.10.10.2 0 100 0 65002 65001 ?
* x 102.1.1.2/32 10.10.10.2 0 100 0 65002 65001 i
*> 103.0.0.0 0.0.0.0 0 100 32768 ?
* x 10.10.10.2 0 100 0 65002 65001 ?
* x 103.1.1.2/32 10.10.10.2 0 100 0 65002 65001 i
*>x 201.0.0.0/8 10.10.10.6 0 100 0 65002 65003 65004 ?
* x 10.10.10.5 0 100 0 65002 65003 65004 ?
*>x 201.1.1.2/32 10.10.10.5 0 100 0 65002 65003 65004 i
* x 10.10.10.6 0 100 0 65002 65003 65004 i
*>x 201.1.1.240/32 10.10.10.6 0 100 0 65002 65003 65004 ?
* x 10.10.10.5 0 100 0 65002 65003 65004 ?
*>x 202.0.0.0/8 10.10.10.6 0 100 0 65002 65003 65004 ?
* x 10.10.10.5 0 100 0 65002 65003 65004 ?
*>x 202.1.1.2/32 10.10.10.6 0 100 0 65002 65003 65004 i
* x 10.10.10.5 0 100 0 65002 65003 65004 i
*>x 203.0.0.0/8 10.10.10.6 0 100 0 65002 65003 65004 ?
* x 10.10.10.5 0 100 0 65002 65003 65004 ?
Total number of prefixes 12
*> 10.10.10.1/32 0.0.0.0 0 100 32768 i
* 0.0.0.0 0 100 32768 ?
*> 10.10.10.2/32 fe80::1644:8fff:fe45:8dd5 0 100 0 65002 65001 i
* fe80::ba6a:97ff:fee2:4bce 0 100 0 65002 65001 i
*> 10.10.10.5/32 fe80::ba6a:97ff:fee2:4bce 0 100 0 65002 65003 65004 i
* fe80::1644:8fff:fe45:8dd5 0 100 0 65002 65003 65004 i
*> 10.10.10.6/32 fe80::1644:8fff:fe45:8dd5 0 100 0 65002 65003 65004 i
* fe80::ba6a:97ff:fee2:4bce 0 100 0 65002 65003 65004 i
*> 10.10.10.11/32 fe80::1644:8fff:fe45:8dd5 0 100 0 65002 i
* fe80::ba6a:97ff:fee2:4bce 0 100 0 65002 65003 65002 i
*> 10.10.10.12/32 fe80::ba6a:97ff:fee2:4bce 0 100 0 65002 i
* fe80::1644:8fff:fe45:8dd5 0 100 0 65002 65003 65002 i
*> 10.10.10.14/32 fe80::1644:8fff:fe45:8dd5 0 100 0 65002 65003 i
* fe80::ba6a:97ff:fee2:4bce 0 100 0 65002 65003 i
*> 10.10.10.15/32 fe80::1644:8fff:fe45:8dd5 0 100 0 65002 65003 i
* fe80::ba6a:97ff:fee2:4bce 0 100 0 65002 65003 i
*> 17.20.20.0/24 fe80::ba6a:97ff:fee2:4bce 0 100 0 65002 65003 65004 ?
* fe80::1644:8fff:fe45:8dd5 0 100 0 65002 65003 65004 ?
*> 17.21.21.0/24 fe80::ba6a:97ff:fee2:4bce 0 100 0 65002 65003 65004 ?
* fe80::1644:8fff:fe45:8dd5 0 100 0 65002 65003 65004 ?
*> 17.22.22.0/24 fe80::ba6a:97ff:fee2:4bce 0 100 0 65002 65003 65004 ?
* fe80::1644:8fff:fe45:8dd5 0 100 0 65002 65003 65004 ?
*> 17.23.23.0/24 fe80::ba6a:97ff:fee2:4bce 0 100 0 65002 65003 65004 ?
* fe80::1644:8fff:fe45:8dd5 0 100 0 65002 65003 65004 ?
Total number of prefixes 12
LEAF1#show bgp l2vpn evpn
BGP table version is 116, local router ID is 10.10.10.1
Status codes: s suppressed, d damped, h history, a add-path, b back-up, * valid, > best, i - internal,
l - labeled, S Stale
Origin codes: i - IGP, e - EGP, ? - incomplete
Description : Ext-Color - Extended community color
[EVPN route type]:[ESI]:[VNID]:[relevent route informantion]
1 - Ethernet Auto-discovery Route
2 - MAC/IP Route
3 - Inclusive Multicast Route
4 - Ethernet Segment Route
5 - Prefix Route
Network Next Hop Metric LocPrf Weight Path Peer Encap
RD[7002:1001]
*> [5]:[0]:[0]:[8]:[101.0.0.0]:[0.0.0.0]:[1000]
10.10.10.2 0 100 0 65002 65001 ? fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.2 0 100 0 65002 65001 ? fe80::ba6a:97ff:fee2:4bce VXLAN
*> [5]:[0]:[0]:[8]:[102.0.0.0]:[0.0.0.0]:[1000]
10.10.10.2 0 100 0 65002 65001 ? fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.2 0 100 0 65002 65001 ? fe80::ba6a:97ff:fee2:4bce VXLAN
*> [5]:[0]:[0]:[8]:[103.0.0.0]:[0.0.0.0]:[1000]
10.10.10.2 0 100 0 65002 65001 ? fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.2 0 100 0 65002 65001 ? fe80::ba6a:97ff:fee2:4bce VXLAN
*> [5]:[0]:[0]:[32]:[101.1.1.240]:[0.0.0.0]:[1000]
10.10.10.2 0 100 0 65002 65001 ? fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.2 0 100 0 65002 65001 ? fe80::ba6a:97ff:fee2:4bce VXLAN
*> [5]:[0]:[0]:[48]:[1001::]:[::]:[1000]
10.10.10.2 0 100 0 65002 65001 ? fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.2 0 100 0 65002 65001 ? fe80::ba6a:97ff:fee2:4bce VXLAN
*> [5]:[0]:[0]:[48]:[1002::]:[::]:[1000]
10.10.10.2 0 100 0 65002 65001 ? fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.2 0 100 0 65002 65001 ? fe80::ba6a:97ff:fee2:4bce VXLAN
*> [5]:[0]:[0]:[48]:[1003::]:[::]:[1000]
10.10.10.2 0 100 0 65002 65001 ? fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.2 0 100 0 65002 65001 ? fe80::ba6a:97ff:fee2:4bce VXLAN
RD[7005:1001]
*> [5]:[0]:[0]:[8]:[201.0.0.0]:[0.0.0.0]:[1000]
10.10.10.5 0 100 0 65002 65003 65004 ? fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.5 0 100 0 65002 65003 65004 ? fe80::ba6a:97ff:fee2:4bce VXLAN
*> [5]:[0]:[0]:[8]:[202.0.0.0]:[0.0.0.0]:[1000]
10.10.10.5 0 100 0 65002 65003 65004 ? fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.5 0 100 0 65002 65003 65004 ? fe80::ba6a:97ff:fee2:4bce VXLAN
*> [5]:[0]:[0]:[8]:[203.0.0.0]:[0.0.0.0]:[1000]
10.10.10.5 0 100 0 65002 65003 65004 ? fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.5 0 100 0 65002 65003 65004 ? fe80::ba6a:97ff:fee2:4bce VXLAN
*> [5]:[0]:[0]:[32]:[201.1.1.2]:[0.0.0.0]:[1000]
10.10.10.5 0 100 0 65002 65003 65004 i fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.5 0 100 0 65002 65003 65004 i fe80::ba6a:97ff:fee2:4bce VXLAN
*> [5]:[0]:[0]:[32]:[201.1.1.240]:[0.0.0.0]:[1000]
10.10.10.5 0 100 0 65002 65003 65004 ? fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.5 0 100 0 65002 65003 65004 ? fe80::ba6a:97ff:fee2:4bce VXLAN
*> [5]:[0]:[0]:[32]:[202.1.1.2]:[0.0.0.0]:[1000]
10.10.10.5 0 100 0 65002 65003 65004 i fe80::ba6a:97ff:fee2:4bce VXLAN
* 10.10.10.5 0 100 0 65002 65003 65004 i fe80::1644:8fff:fe45:8dd5 VXLAN
*> [5]:[0]:[0]:[48]:[2001::]:[::]:[1000]
10.10.10.5 0 100 0 65002 65003 65004 ? fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.5 0 100 0 65002 65003 65004 ? fe80::ba6a:97ff:fee2:4bce VXLAN
*> [5]:[0]:[0]:[48]:[2002::]:[::]:[1000]
10.10.10.5 0 100 0 65002 65003 65004 ? fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.5 0 100 0 65002 65003 65004 ? fe80::ba6a:97ff:fee2:4bce VXLAN
*> [5]:[0]:[0]:[48]:[2003::]:[::]:[1000]
10.10.10.5 0 100 0 65002 65003 65004 ? fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.5 0 100 0 65002 65003 65004 ? fe80::ba6a:97ff:fee2:4bce VXLAN
*> [5]:[0]:[0]:[128]:[2001::2]:[::]:[1000]
10.10.10.5 0 100 0 65002 65003 65004 i fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.5 0 100 0 65002 65003 65004 i fe80::ba6a:97ff:fee2:4bce VXLAN
*> [5]:[0]:[0]:[128]:[2002::2]:[::]:[1000]
10.10.10.5 0 100 0 65002 65003 65004 i fe80::ba6a:97ff:fee2:4bce VXLAN
* 10.10.10.5 0 100 0 65002 65003 65004 i fe80::1644:8fff:fe45:8dd5 VXLAN
RD[7006:1001]
*> [5]:[0]:[0]:[8]:[201.0.0.0]:[0.0.0.0]:[1000]
10.10.10.6 0 100 0 65002 65003 65004 ? fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.6 0 100 0 65002 65003 65004 ? fe80::ba6a:97ff:fee2:4bce VXLAN
*> [5]:[0]:[0]:[8]:[202.0.0.0]:[0.0.0.0]:[1000]
10.10.10.6 0 100 0 65002 65003 65004 ? fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.6 0 100 0 65002 65003 65004 ? fe80::ba6a:97ff:fee2:4bce VXLAN
*> [5]:[0]:[0]:[8]:[203.0.0.0]:[0.0.0.0]:[1000]
10.10.10.6 0 100 0 65002 65003 65004 ? fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.6 0 100 0 65002 65003 65004 ? fe80::ba6a:97ff:fee2:4bce VXLAN
*> [5]:[0]:[0]:[32]:[201.1.1.2]:[0.0.0.0]:[1000]
10.10.10.6 0 100 0 65002 65003 65004 i fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.6 0 100 0 65002 65003 65004 i fe80::ba6a:97ff:fee2:4bce VXLAN
*> [5]:[0]:[0]:[32]:[201.1.1.240]:[0.0.0.0]:[1000]
10.10.10.6 0 100 0 65002 65003 65004 ? fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.6 0 100 0 65002 65003 65004 ? fe80::ba6a:97ff:fee2:4bce VXLAN
*> [5]:[0]:[0]:[32]:[202.1.1.2]:[0.0.0.0]:[1000]
10.10.10.6 0 100 0 65002 65003 65004 i fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.6 0 100 0 65002 65003 65004 i fe80::ba6a:97ff:fee2:4bce VXLAN
*> [5]:[0]:[0]:[48]:[2001::]:[::]:[1000]
10.10.10.6 0 100 0 65002 65003 65004 ? fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.6 0 100 0 65002 65003 65004 ? fe80::ba6a:97ff:fee2:4bce VXLAN
*> [5]:[0]:[0]:[48]:[2002::]:[::]:[1000]
10.10.10.6 0 100 0 65002 65003 65004 ? fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.6 0 100 0 65002 65003 65004 ? fe80::ba6a:97ff:fee2:4bce VXLAN
*> [5]:[0]:[0]:[48]:[2003::]:[::]:[1000]
10.10.10.6 0 100 0 65002 65003 65004 ? fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.6 0 100 0 65002 65003 65004 ? fe80::ba6a:97ff:fee2:4bce VXLAN
*> [5]:[0]:[0]:[128]:[2001::2]:[::]:[1000]
10.10.10.6 0 100 0 65002 65003 65004 i fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.6 0 100 0 65002 65003 65004 i fe80::ba6a:97ff:fee2:4bce VXLAN
*> [5]:[0]:[0]:[128]:[2002::2]:[::]:[1000]
10.10.10.6 0 100 0 65002 65003 65004 i fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.6 0 100 0 65002 65003 65004 i fe80::ba6a:97ff:fee2:4bce VXLAN
RD[10.10.10.1:1] VRF[l2_vrf_1]
* [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1001]:[1001]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
*> 10.10.10.1 0 100 32768 i ---------- VXLAN
* [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[4294965295]:[0]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
* [2]:[0]:[1001]:[48,0000:0000:abcd]:[32,101.1.1.1]:[1001]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
*> 10.10.10.1 0 100 32768 i ---------- VXLAN
* [2]:[0]:[1001]:[48,0000:0000:abcd]:[128,1001::1][1001]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
*> 10.10.10.1 0 100 32768 i ---------- VXLAN
* [2]:[0]:[1001]:[48,0000:0000:abcd]:[128,fe80::200:ff:fe00:abcd][1001]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
*> 10.10.10.1 0 100 32768 i ---------- VXLAN
* [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1001]:[48,0000:0101:0001]:[0]:[1001]
10.10.10.2 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4bce VXLAN
*> 10.10.10.1 0 100 32768 i ---------- VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1001]:[48,0000:0101:0001]:[32,101.1.1.2]:[1001]:[1000]
10.10.10.1 0 100 32768 i ---------- VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1001]:[48,0000:0101:0001]:[128,1001::2][1001]:[1000]
10.10.10.1 0 100 32768 i ---------- VXLAN
* [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1001]:[48,0000:0101:0001]:[128,fe80::1][1001]:[1000]
10.10.10.2 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4bce VXLAN
*> [3]:[1001]:[32,10.10.10.1]
10.10.10.1 0 100 32768 i ---------- VXLAN
* [3]:[1001]:[32,10.10.10.2]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
RD[10.10.10.1:2] VRF[l2_vrf_2]
* [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1002]:[1002]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
*> 10.10.10.1 0 100 32768 i ---------- VXLAN
* [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[4294965295]:[0]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
* [2]:[0]:[1002]:[48,0000:0000:abcd]:[32,102.1.1.1]:[1002]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
*> 10.10.10.1 0 100 32768 i ---------- VXLAN
* [2]:[0]:[1002]:[48,0000:0000:abcd]:[128,1002::1][1002]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
*> 10.10.10.1 0 100 32768 i ---------- VXLAN
* [2]:[0]:[1002]:[48,0000:0000:abcd]:[128,fe80::200:ff:fe00:abcd][1002]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
*> 10.10.10.1 0 100 32768 i ---------- VXLAN
* [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1002]:[48,0000:0102:0001]:[0]:[1002]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
* [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1002]:[48,0000:0102:0001]:[32,102.1.1.2]:[1002]:[1000]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
* [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1002]:[48,0000:0102:0001]:[128,1002::2][1002]:[1000]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
*> [3]:[1002]:[32,10.10.10.1]
10.10.10.1 0 100 32768 i ---------- VXLAN
* [3]:[1002]:[32,10.10.10.2]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
RD[10.10.10.1:3] VRF[l2_vrf_3]
* [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1003]:[1003]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
*> 10.10.10.1 0 100 32768 i ---------- VXLAN
* [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[4294965295]:[0]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
* [2]:[0]:[1003]:[48,0000:0000:abcd]:[32,103.1.1.1]:[1003]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
*> 10.10.10.1 0 100 32768 i ---------- VXLAN
* [2]:[0]:[1003]:[48,0000:0000:abcd]:[128,1003::1][1003]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
*> 10.10.10.1 0 100 32768 i ---------- VXLAN
* [2]:[0]:[1003]:[48,0000:0000:abcd]:[128,fe80::200:ff:fe00:abcd][1003]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
*> 10.10.10.1 0 100 32768 i ---------- VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1003]:[48,0000:0103:0001]:[0]:[1003]
10.10.10.1 0 100 32768 i ---------- VXLAN
* 10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
* [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1003]:[48,0000:0103:0001]:[32,103.1.1.2]:[1003]:[1000]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
* [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1003]:[48,0000:0103:0001]:[128,1002::2][1003]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1003]:[48,0000:0103:0001]:[128,1003::2][1003]:[1000]
10.10.10.1 0 100 32768 i ---------- VXLAN
*> [3]:[1003]:[32,10.10.10.1]
10.10.10.1 0 100 32768 i ---------- VXLAN
* [3]:[1003]:[32,10.10.10.2]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
RD[10.10.10.1:64512] VRF[evpn-gvrf-1]
*> [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[4294965295]:[0]
10.10.10.1 0 100 32768 i ---------- VXLAN
*> [4]:[00:00:00:aa:aa:bb:bb:00:00:00]:[32,10.10.10.1]
10.10.10.1 0 100 32768 i ---------- VXLAN
* [4]:[00:00:00:aa:aa:bb:bb:00:00:00]:[32,10.10.10.2]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
RD[10.10.10.2:1]
*> [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1001]:[1001]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.2 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4bce VXLAN
*> [2]:[0]:[1001]:[48,0000:0000:abcd]:[32,101.1.1.1]:[1001]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.2 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4bce VXLAN
*> [2]:[0]:[1001]:[48,0000:0000:abcd]:[128,1001::1][1001]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.2 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4bce VXLAN
*> [2]:[0]:[1001]:[48,0000:0000:abcd]:[128,fe80::200:ff:fe00:abcd][1001]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.2 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4bce VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1001]:[48,0000:0101:0001]:[0]:[1001]
10.10.10.2 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4bce VXLAN
* 10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1001]:[48,0000:0101:0001]:[128,fe80::1][1001]:[1000]
10.10.10.2 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4bce VXLAN
* 10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
*> [3]:[1001]:[32,10.10.10.2]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.2 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4bce VXLAN
RD[10.10.10.2:2]
*> [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1002]:[1002]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.2 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4bce VXLAN
*> [2]:[0]:[1002]:[48,0000:0000:abcd]:[32,102.1.1.1]:[1002]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.2 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4bce VXLAN
*> [2]:[0]:[1002]:[48,0000:0000:abcd]:[128,1002::1][1002]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.2 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4bce VXLAN
*> [2]:[0]:[1002]:[48,0000:0000:abcd]:[128,fe80::200:ff:fe00:abcd][1002]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.2 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4bce VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1002]:[48,0000:0102:0001]:[0]:[1002]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.2 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4bce VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1002]:[48,0000:0102:0001]:[32,102.1.1.2]:[1002]:[1000]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.2 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4bce VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1002]:[48,0000:0102:0001]:[128,1002::2][1002]:[1000]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.2 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4bce VXLAN
*> [3]:[1002]:[32,10.10.10.2]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.2 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4bce VXLAN
RD[10.10.10.2:3]
*> [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1003]:[1003]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.2 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4bce VXLAN
*> [2]:[0]:[1003]:[48,0000:0000:abcd]:[32,103.1.1.1]:[1003]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.2 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4bce VXLAN
*> [2]:[0]:[1003]:[48,0000:0000:abcd]:[128,1003::1][1003]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.2 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4bce VXLAN
*> [2]:[0]:[1003]:[48,0000:0000:abcd]:[128,fe80::200:ff:fe00:abcd][1003]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.2 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4bce VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1003]:[48,0000:0103:0001]:[0]:[1003]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.2 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4bce VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1003]:[48,0000:0103:0001]:[32,103.1.1.2]:[1003]:[1000]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.2 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4bce VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1003]:[48,0000:0103:0001]:[128,1002::2][1003]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.2 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4bce VXLAN
*> [3]:[1003]:[32,10.10.10.2]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.2 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4bce VXLAN
RD[10.10.10.2:64512]
*> [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[4294965295]:[0]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.2 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4bce VXLAN
*> [4]:[00:00:00:aa:aa:bb:bb:00:00:00]:[32,10.10.10.2]
10.10.10.2 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dd5 VXLAN
* 10.10.10.2 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4bce VXLAN
Total number of prefixes 89
LEAF1#show nvo vxlan mac-table
=================================================================================================================================================================
VXLAN MAC Entries
=================================================================================================================================================================
VNID Interface VlanId In-VlanId Mac-Addr VTEP-Ip/ESI Type Status MAC move AccessPortDesc LeafFlag
_________________________________________________________________________________________________________________________________________________________________
1001 po1 101 ---- 0000.0101.0001 00:00:00:aa:aa:bb:bb:00:00:00 Dynamic Local ------- 0 ------- ----
1001 irb1001 ---- ---- 0000.0000.abcd 10.10.10.1 Static Local ------- 0 ------- ----
1002 ---- ---- ---- 0000.0102.0001 00:00:00:aa:aa:bb:bb:00:00:00 Dynamic Remote ------- 0 ------- ----
1002 irb1002 ---- ---- 0000.0000.abcd 10.10.10.1 Static Local ------- 0 ------- ----
1003 po1 103 ---- 0000.0103.0001 00:00:00:aa:aa:bb:bb:00:00:00 Dynamic Local ------- 0 ------- ----
1003 irb1003 ---- ---- 0000.0000.abcd 10.10.10.1 Static Local ------- 0 ------- ----
Total number of entries are : 6
LEAF1#
LEAF1#
LEAF1#
LEAF1#
LEAF1#
LEAF1#
LEAF2
LEAF2#show nvo vxlan
VXLAN Information
=================
Codes: NW - Network Port
AC - Access Port
(u) - Untagged
VNID VNI-Name VNI-Type Type Interface ESI VLAN DF-Status Src-Addr Dst-Addr Router-Mac
_______________________________________________________________________________________________________________________________________________
1000 ---- L3 NW ---- ---- ---- ---- 10.10.10.2 10.10.10.6 7c8d.9caa.5231
1000 ---- L3 NW ---- ---- ---- ---- 10.10.10.2 10.10.10.5 5c17.83ff.2255
1000 ---- L3 NW ---- ---- ---- ---- 10.10.10.2 10.10.10.1 1444.8fc8.0fc9
1001 ---- L2 NW ---- ---- ---- ---- 10.10.10.2 10.10.10.1 --------------
1001 ---- -- AC po1 00:00:00:aa:aa:bb:bb:00:00:00 101 DF ---- ----
1002 ---- L2 NW ---- ---- ---- ---- 10.10.10.2 10.10.10.1 --------------
1002 ---- -- AC po1 00:00:00:aa:aa:bb:bb:00:00:00 102 NON-DF ---- ----
1003 ---- L2 NW ---- ---- ---- ---- 10.10.10.2 10.10.10.1 --------------
1003 ---- -- AC po1 00:00:00:aa:aa:bb:bb:00:00:00 103 DF ---- ----
Total number of entries are 9
LEAF2#show nvo vxlan tunnel
VXLAN Network tunnel Entries
Source Destination Status Up/Down Update
========================================================================
10.10.10.2 10.10.10.6 Installed 00:41:12 00:41:12
10.10.10.2 10.10.10.5 Installed 00:41:11 00:41:11
10.10.10.2 10.10.10.1 Installed 00:41:11 00:41:11
Total number of entries are 3
LEAF2#show nvo vxlan arp-cache
VXLAN ARP-CACHE Information
===========================
VNID Ip-Addr Mac-Addr Type Age-Out Retries-Left
_______________________________________________________________________________________
1001 101.1.1.1 0000.0000.abcd Static Local ----
1001 101.1.1.2 0000.0101.0001 Dynamic Remote ----
1002 102.1.1.1 0000.0000.abcd Static Local ----
1002 102.1.1.2 0000.0102.0001 Dynamic Local ----
1003 103.1.1.1 0000.0000.abcd Static Local ----
1003 103.1.1.2 0000.0103.0001 Dynamic Local ----
Total number of entries are 6
LEAF2#show nvo vxlan nd-cache
VXLAN ND-CACHE Information
===========================
VNID Ip-Addr Mac-Addr Type Age-Out Retries-Left
____________________________________________________________________________________________________
1001 1001::1 0000.0000.abcd Static Local ----
1001 1001::2 0000.0101.0001 Dynamic Remote ----
1001 fe80::1 0000.0101.0001 Dynamic Local ----
1001 fe80::200:ff:fe00:abcd 0000.0000.abcd Static Local ----
1002 1002::1 0000.0000.abcd Static Local ----
1002 1002::2 0000.0102.0001 Dynamic Local ----
1002 fe80::200:ff:fe00:abcd 0000.0000.abcd Static Local ----
1003 1002::2 0000.0103.0001 Dynamic Local ----
1003 1003::1 0000.0000.abcd Static Local ----
1003 1003::2 0000.0103.0001 Dynamic Remote ----
1003 fe80::200:ff:fe00:abcd 0000.0000.abcd Static Local ----
Total number of entries are 11
LEAF2#show ip bgp summary
BGP router identifier 10.10.10.2, local AS number 65001
BGP table version is 32
6 BGP AS-PATH entries
0 BGP community entries
4 Configured ebgp ECMP multipath: Currently set at 4
Neighbor V AS MsgRcv MsgSen TblVer InQ OutQ Up/Down State/PfxRcd Desc
xe1(fe80::ba6a:97ff:fee2:4ba0) 4 65002 1023 681 32 0 0 00:41:13 11
xe3(fe80::1644:8fff:fe45:8dcd) 4 65002 961 782 32 0 0 00:41:13 11
Total number of neighbors 2
Total number of Established sessions 2
LEAF2#show bgp l2vpn evpn summary
BGP router identifier 10.10.10.2, local AS number 65001
BGP table version is 117
6 BGP AS-PATH entries
0 BGP community entries
Neighbor V AS MsgRcv MsgSen TblVer InQ OutQ Up/Down State/PfxRcd AD MACIP MCAST ESI PREFIX-ROUTE Desc
xe1(fe80::ba6a:97ff:fee2:4ba0) 4 65002 1023 681 117 0 0 00:41:13 51 4 14 3 1 29
xe3(fe80::1644:8fff:fe45:8dcd) 4 65002 961 782 117 0 0 00:41:13 51 4 14 3 1 29
Total number of neighbors 2
Total number of Established sessions 2
LEAF2#show ip route vrf all
Codes: K - kernel, C - connected, S - static, R - RIP, B - BGP
O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2,
ia - IS-IS inter area, E - EVPN,
v - vrf leaked
* - candidate default
IP Route Table for VRF "default"
B 10.10.10.1/32 [20/0] via fe80::ba6a:97ff:fee2:4ba0, xe1, installed 00:41:12, last update 00:41:12 ago
[20/0] via fe80::1644:8fff:fe45:8dcd, xe3
C 10.10.10.2/32 is directly connected, lo, installed 03:56:46, last update 03:56:46 ago
B 10.10.10.5/32 [20/0] via fe80::ba6a:97ff:fee2:4ba0, xe1, installed 00:41:12, last update 00:41:12 ago
[20/0] via fe80::1644:8fff:fe45:8dcd, xe3
B 10.10.10.6/32 [20/0] via fe80::ba6a:97ff:fee2:4ba0, xe1, installed 00:41:12, last update 00:41:12 ago
[20/0] via fe80::1644:8fff:fe45:8dcd, xe3
B 10.10.10.11/32 [20/0] via fe80::1644:8fff:fe45:8dcd, xe3, installed 00:41:12, last update 00:41:12 ago
B 10.10.10.12/32 [20/0] via fe80::ba6a:97ff:fee2:4ba0, xe1, installed 00:41:12, last update 00:41:12 ago
B 10.10.10.14/32 [20/0] via fe80::ba6a:97ff:fee2:4ba0, xe1, installed 00:41:13, last update 00:41:13 ago
[20/0] via fe80::1644:8fff:fe45:8dcd, xe3
B 10.10.10.15/32 [20/0] via fe80::ba6a:97ff:fee2:4ba0, xe1, installed 00:41:13, last update 00:41:13 ago
[20/0] via fe80::1644:8fff:fe45:8dcd, xe3
B 17.20.20.0/24 [20/0] via fe80::ba6a:97ff:fee2:4ba0, xe1, installed 00:41:12, last update 00:41:12 ago
[20/0] via fe80::1644:8fff:fe45:8dcd, xe3
B 17.21.21.0/24 [20/0] via fe80::ba6a:97ff:fee2:4ba0, xe1, installed 00:41:12, last update 00:41:12 ago
[20/0] via fe80::1644:8fff:fe45:8dcd, xe3
B 17.22.22.0/24 [20/0] via fe80::ba6a:97ff:fee2:4ba0, xe1, installed 00:41:12, last update 00:41:12 ago
[20/0] via fe80::1644:8fff:fe45:8dcd, xe3
B 17.23.23.0/24 [20/0] via fe80::ba6a:97ff:fee2:4ba0, xe1, installed 00:41:12, last update 00:41:12 ago
[20/0] via fe80::1644:8fff:fe45:8dcd, xe3
C 127.0.0.0/8 is directly connected, lo, installed 03:57:00, last update 03:57:00 ago
IP Route Table for VRF "management"
C 10.16.111.0/24 is directly connected, eth0, installed 03:56:43, last update 03:56:43 ago
C 127.0.0.0/8 is directly connected, lo.management, installed 03:57:00, last update 03:57:00 ago
IP Route Table for VRF "l3_vrf_1"
B 10.10.10.1/32 [0/0] is directly connected, tunvxlan2, installed 00:41:12, last update 00:41:12 ago
B 10.10.10.5/32 [0/0] is directly connected, tunvxlan2, installed 00:41:12, last update 00:41:12 ago
B 10.10.10.6/32 [0/0] is directly connected, tunvxlan2, installed 00:41:12, last update 00:41:12 ago
C 101.0.0.0/8 is directly connected, irb1001, installed 03:56:46, last update 03:56:46 ago
S 101.1.1.240/32 [1/0] is directly connected, irb1001, installed 03:56:45, last update 03:56:45 ago
C 102.0.0.0/8 is directly connected, irb1002, installed 03:56:46, last update 03:56:46 ago
C 103.0.0.0/8 is directly connected, irb1003, installed 03:56:46, last update 03:56:46 ago
C 127.0.0.0/8 is directly connected, lo.l3_vrf_1, installed 03:56:47, last update 03:56:47 ago
B 201.0.0.0/8 [20/0] via 10.10.10.5 (recursive is directly connected, tunvxlan2), installed 00:41:13, last update 00:41:13 ago
[20/0] via 10.10.10.6 (recursive is directly connected, tunvxlan2)
B 201.1.1.2/32 [20/0] via 10.10.10.6 (recursive is directly connected, tunvxlan2), installed 00:03:40, last update 00:03:40 ago
[20/0] via 10.10.10.5 (recursive is directly connected, tunvxlan2)
B 201.1.1.240/32 [20/0] via 10.10.10.5 (recursive is directly connected, tunvxlan2), installed 00:41:13, last update 00:41:13 ago
[20/0] via 10.10.10.6 (recursive is directly connected, tunvxlan2)
B 202.0.0.0/8 [20/0] via 10.10.10.5 (recursive is directly connected, tunvxlan2), installed 00:41:13, last update 00:41:13 ago
[20/0] via 10.10.10.6 (recursive is directly connected, tunvxlan2)
B 202.1.1.2/32 [20/0] via 10.10.10.6 (recursive is directly connected, tunvxlan2), installed 00:03:40, last update 00:03:40 ago
[20/0] via 10.10.10.5 (recursive is directly connected, tunvxlan2)
B 203.0.0.0/8 [20/0] via 10.10.10.5 (recursive is directly connected, tunvxlan2), installed 00:41:13, last update 00:41:13 ago
[20/0] via 10.10.10.6 (recursive is directly connected, tunvxlan2)
IP Route Table for VRF "l2_vrf_1"
IP Route Table for VRF "l2_vrf_2"
IP Route Table for VRF "l2_vrf_3"
IP Route Table for VRF "evpn-gvrf-1"
Gateway of last resort is not set
LEAF2#
LEAF2#show bgp l2vpn evpn
BGP table version is 117, local router ID is 10.10.10.2
Status codes: s suppressed, d damped, h history, a add-path, b back-up, * valid, > best, i - internal,
l - labeled, S Stale
Origin codes: i - IGP, e - EGP, ? - incomplete
Description : Ext-Color - Extended community color
[EVPN route type]:[ESI]:[VNID]:[relevent route informantion]
1 - Ethernet Auto-discovery Route
2 - MAC/IP Route
3 - Inclusive Multicast Route
4 - Ethernet Segment Route
5 - Prefix Route
Network Next Hop Metric LocPrf Weight Path Peer Encap
RD[7001:1001]
*> [5]:[0]:[0]:[8]:[101.0.0.0]:[0.0.0.0]:[1000]
10.10.10.1 0 100 0 65002 65001 ? fe80::1644:8fff:fe45:8dcd VXLAN
* 10.10.10.1 0 100 0 65002 65001 ? fe80::ba6a:97ff:fee2:4ba0 VXLAN
*> [5]:[0]:[0]:[8]:[102.0.0.0]:[0.0.0.0]:[1000]
10.10.10.1 0 100 0 65002 65001 ? fe80::1644:8fff:fe45:8dcd VXLAN
* 10.10.10.1 0 100 0 65002 65001 ? fe80::ba6a:97ff:fee2:4ba0 VXLAN
*> [5]:[0]:[0]:[8]:[103.0.0.0]:[0.0.0.0]:[1000]
10.10.10.1 0 100 0 65002 65001 ? fe80::1644:8fff:fe45:8dcd VXLAN
* 10.10.10.1 0 100 0 65002 65001 ? fe80::ba6a:97ff:fee2:4ba0 VXLAN
*> [5]:[0]:[0]:[32]:[101.1.1.240]:[0.0.0.0]:[1000]
10.10.10.1 0 100 0 65002 65001 ? fe80::1644:8fff:fe45:8dcd VXLAN
* 10.10.10.1 0 100 0 65002 65001 ? fe80::ba6a:97ff:fee2:4ba0 VXLAN
*> [5]:[0]:[0]:[48]:[1001::]:[::]:[1000]
10.10.10.1 0 100 0 65002 65001 ? fe80::1644:8fff:fe45:8dcd VXLAN
* 10.10.10.1 0 100 0 65002 65001 ? fe80::ba6a:97ff:fee2:4ba0 VXLAN
*> [5]:[0]:[0]:[48]:[1002::]:[::]:[1000]
10.10.10.1 0 100 0 65002 65001 ? fe80::1644:8fff:fe45:8dcd VXLAN
* 10.10.10.1 0 100 0 65002 65001 ? fe80::ba6a:97ff:fee2:4ba0 VXLAN
*> [5]:[0]:[0]:[48]:[1003::]:[::]:[1000]
10.10.10.1 0 100 0 65002 65001 ? fe80::1644:8fff:fe45:8dcd VXLAN
* 10.10.10.1 0 100 0 65002 65001 ? fe80::ba6a:97ff:fee2:4ba0 VXLAN
RD[7005:1001]
*> [5]:[0]:[0]:[8]:[201.0.0.0]:[0.0.0.0]:[1000]
10.10.10.5 0 100 0 65002 65003 65004 ? fe80::ba6a:97ff:fee2:4ba0 VXLAN
* 10.10.10.5 0 100 0 65002 65003 65004 ? fe80::1644:8fff:fe45:8dcd VXLAN
*> [5]:[0]:[0]:[8]:[202.0.0.0]:[0.0.0.0]:[1000]
10.10.10.5 0 100 0 65002 65003 65004 ? fe80::ba6a:97ff:fee2:4ba0 VXLAN
* 10.10.10.5 0 100 0 65002 65003 65004 ? fe80::1644:8fff:fe45:8dcd VXLAN
*> [5]:[0]:[0]:[8]:[203.0.0.0]:[0.0.0.0]:[1000]
10.10.10.5 0 100 0 65002 65003 65004 ? fe80::ba6a:97ff:fee2:4ba0 VXLAN
* 10.10.10.5 0 100 0 65002 65003 65004 ? fe80::1644:8fff:fe45:8dcd VXLAN
*> [5]:[0]:[0]:[32]:[201.1.1.2]:[0.0.0.0]:[1000]
10.10.10.5 0 100 0 65002 65003 65004 i fe80::1644:8fff:fe45:8dcd VXLAN
* 10.10.10.5 0 100 0 65002 65003 65004 i fe80::ba6a:97ff:fee2:4ba0 VXLAN
*> [5]:[0]:[0]:[32]:[201.1.1.240]:[0.0.0.0]:[1000]
10.10.10.5 0 100 0 65002 65003 65004 ? fe80::ba6a:97ff:fee2:4ba0 VXLAN
* 10.10.10.5 0 100 0 65002 65003 65004 ? fe80::1644:8fff:fe45:8dcd VXLAN
*> [5]:[0]:[0]:[32]:[202.1.1.2]:[0.0.0.0]:[1000]
10.10.10.5 0 100 0 65002 65003 65004 i fe80::1644:8fff:fe45:8dcd VXLAN
* 10.10.10.5 0 100 0 65002 65003 65004 i fe80::ba6a:97ff:fee2:4ba0 VXLAN
*> [5]:[0]:[0]:[48]:[2001::]:[::]:[1000]
10.10.10.5 0 100 0 65002 65003 65004 ? fe80::ba6a:97ff:fee2:4ba0 VXLAN
* 10.10.10.5 0 100 0 65002 65003 65004 ? fe80::1644:8fff:fe45:8dcd VXLAN
*> [5]:[0]:[0]:[48]:[2002::]:[::]:[1000]
10.10.10.5 0 100 0 65002 65003 65004 ? fe80::ba6a:97ff:fee2:4ba0 VXLAN
* 10.10.10.5 0 100 0 65002 65003 65004 ? fe80::1644:8fff:fe45:8dcd VXLAN
*> [5]:[0]:[0]:[48]:[2003::]:[::]:[1000]
10.10.10.5 0 100 0 65002 65003 65004 ? fe80::ba6a:97ff:fee2:4ba0 VXLAN
* 10.10.10.5 0 100 0 65002 65003 65004 ? fe80::1644:8fff:fe45:8dcd VXLAN
*> [5]:[0]:[0]:[128]:[2001::2]:[::]:[1000]
10.10.10.5 0 100 0 65002 65003 65004 i fe80::1644:8fff:fe45:8dcd VXLAN
* 10.10.10.5 0 100 0 65002 65003 65004 i fe80::ba6a:97ff:fee2:4ba0 VXLAN
*> [5]:[0]:[0]:[128]:[2002::2]:[::]:[1000]
10.10.10.5 0 100 0 65002 65003 65004 i fe80::1644:8fff:fe45:8dcd VXLAN
* 10.10.10.5 0 100 0 65002 65003 65004 i fe80::ba6a:97ff:fee2:4ba0 VXLAN
RD[7006:1001]
*> [5]:[0]:[0]:[8]:[201.0.0.0]:[0.0.0.0]:[1000]
10.10.10.6 0 100 0 65002 65003 65004 ? fe80::ba6a:97ff:fee2:4ba0 VXLAN
* 10.10.10.6 0 100 0 65002 65003 65004 ? fe80::1644:8fff:fe45:8dcd VXLAN
*> [5]:[0]:[0]:[8]:[202.0.0.0]:[0.0.0.0]:[1000]
10.10.10.6 0 100 0 65002 65003 65004 ? fe80::ba6a:97ff:fee2:4ba0 VXLAN
* 10.10.10.6 0 100 0 65002 65003 65004 ? fe80::1644:8fff:fe45:8dcd VXLAN
*> [5]:[0]:[0]:[8]:[203.0.0.0]:[0.0.0.0]:[1000]
10.10.10.6 0 100 0 65002 65003 65004 ? fe80::ba6a:97ff:fee2:4ba0 VXLAN
* 10.10.10.6 0 100 0 65002 65003 65004 ? fe80::1644:8fff:fe45:8dcd VXLAN
*> [5]:[0]:[0]:[32]:[201.1.1.2]:[0.0.0.0]:[1000]
10.10.10.6 0 100 0 65002 65003 65004 i fe80::1644:8fff:fe45:8dcd VXLAN
* 10.10.10.6 0 100 0 65002 65003 65004 i fe80::ba6a:97ff:fee2:4ba0 VXLAN
*> [5]:[0]:[0]:[32]:[201.1.1.240]:[0.0.0.0]:[1000]
10.10.10.6 0 100 0 65002 65003 65004 ? fe80::ba6a:97ff:fee2:4ba0 VXLAN
* 10.10.10.6 0 100 0 65002 65003 65004 ? fe80::1644:8fff:fe45:8dcd VXLAN
*> [5]:[0]:[0]:[32]:[202.1.1.2]:[0.0.0.0]:[1000]
10.10.10.6 0 100 0 65002 65003 65004 i fe80::1644:8fff:fe45:8dcd VXLAN
* 10.10.10.6 0 100 0 65002 65003 65004 i fe80::ba6a:97ff:fee2:4ba0 VXLAN
*> [5]:[0]:[0]:[48]:[2001::]:[::]:[1000]
10.10.10.6 0 100 0 65002 65003 65004 ? fe80::ba6a:97ff:fee2:4ba0 VXLAN
* 10.10.10.6 0 100 0 65002 65003 65004 ? fe80::1644:8fff:fe45:8dcd VXLAN
*> [5]:[0]:[0]:[48]:[2002::]:[::]:[1000]
10.10.10.6 0 100 0 65002 65003 65004 ? fe80::ba6a:97ff:fee2:4ba0 VXLAN
* 10.10.10.6 0 100 0 65002 65003 65004 ? fe80::1644:8fff:fe45:8dcd VXLAN
*> [5]:[0]:[0]:[48]:[2003::]:[::]:[1000]
10.10.10.6 0 100 0 65002 65003 65004 ? fe80::ba6a:97ff:fee2:4ba0 VXLAN
* 10.10.10.6 0 100 0 65002 65003 65004 ? fe80::1644:8fff:fe45:8dcd VXLAN
*> [5]:[0]:[0]:[128]:[2001::2]:[::]:[1000]
10.10.10.6 0 100 0 65002 65003 65004 i fe80::1644:8fff:fe45:8dcd VXLAN
* 10.10.10.6 0 100 0 65002 65003 65004 i fe80::ba6a:97ff:fee2:4ba0 VXLAN
*> [5]:[0]:[0]:[128]:[2002::2]:[::]:[1000]
10.10.10.6 0 100 0 65002 65003 65004 i fe80::1644:8fff:fe45:8dcd VXLAN
* 10.10.10.6 0 100 0 65002 65003 65004 i fe80::ba6a:97ff:fee2:4ba0 VXLAN
RD[10.10.10.1:1]
*> [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1001]:[1001]
10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
* 10.10.10.1 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4ba0 VXLAN
*> [2]:[0]:[1001]:[48,0000:0000:abcd]:[32,101.1.1.1]:[1001]
10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
* 10.10.10.1 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4ba0 VXLAN
*> [2]:[0]:[1001]:[48,0000:0000:abcd]:[128,1001::1][1001]
10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
* 10.10.10.1 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4ba0 VXLAN
*> [2]:[0]:[1001]:[48,0000:0000:abcd]:[128,fe80::200:ff:fe00:abcd][1001]
10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
* 10.10.10.1 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4ba0 VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1001]:[48,0000:0101:0001]:[0]:[1001]
10.10.10.1 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4ba0 VXLAN
* 10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1001]:[48,0000:0101:0001]:[32,101.1.1.2]:[1001]:[1000]
10.10.10.1 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4ba0 VXLAN
* 10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1001]:[48,0000:0101:0001]:[128,1001::2][1001]:[1000]
10.10.10.1 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4ba0 VXLAN
* 10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
*> [3]:[1001]:[32,10.10.10.1]
10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
* 10.10.10.1 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4ba0 VXLAN
RD[10.10.10.1:2]
*> [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1002]:[1002]
10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
* 10.10.10.1 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4ba0 VXLAN
*> [2]:[0]:[1002]:[48,0000:0000:abcd]:[32,102.1.1.1]:[1002]
10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
* 10.10.10.1 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4ba0 VXLAN
*> [2]:[0]:[1002]:[48,0000:0000:abcd]:[128,1002::1][1002]
10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
* 10.10.10.1 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4ba0 VXLAN
*> [2]:[0]:[1002]:[48,0000:0000:abcd]:[128,fe80::200:ff:fe00:abcd][1002]
10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
* 10.10.10.1 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4ba0 VXLAN
*> [3]:[1002]:[32,10.10.10.1]
10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
* 10.10.10.1 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4ba0 VXLAN
RD[10.10.10.1:3]
*> [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1003]:[1003]
10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
* 10.10.10.1 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4ba0 VXLAN
*> [2]:[0]:[1003]:[48,0000:0000:abcd]:[32,103.1.1.1]:[1003]
10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
* 10.10.10.1 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4ba0 VXLAN
*> [2]:[0]:[1003]:[48,0000:0000:abcd]:[128,1003::1][1003]
10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
* 10.10.10.1 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4ba0 VXLAN
*> [2]:[0]:[1003]:[48,0000:0000:abcd]:[128,fe80::200:ff:fe00:abcd][1003]
10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
* 10.10.10.1 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4ba0 VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1003]:[48,0000:0103:0001]:[0]:[1003]
10.10.10.1 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4ba0 VXLAN
* 10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1003]:[48,0000:0103:0001]:[128,1003::2][1003]:[1000]
10.10.10.1 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4ba0 VXLAN
* 10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
*> [3]:[1003]:[32,10.10.10.1]
10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
* 10.10.10.1 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4ba0 VXLAN
RD[10.10.10.1:64512]
*> [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[4294965295]:[0]
10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
* 10.10.10.1 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4ba0 VXLAN
*> [4]:[00:00:00:aa:aa:bb:bb:00:00:00]:[32,10.10.10.1]
10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
* 10.10.10.1 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4ba0 VXLAN
RD[10.10.10.2:1] VRF[l2_vrf_1]
* [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1001]:[1001]
10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
*> 10.10.10.2 0 100 32768 i ---------- VXLAN
* [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[4294965295]:[0]
10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
* [2]:[0]:[1001]:[48,0000:0000:abcd]:[32,101.1.1.1]:[1001]
10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
*> 10.10.10.2 0 100 32768 i ---------- VXLAN
* [2]:[0]:[1001]:[48,0000:0000:abcd]:[128,1001::1][1001]
10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
*> 10.10.10.2 0 100 32768 i ---------- VXLAN
* [2]:[0]:[1001]:[48,0000:0000:abcd]:[128,fe80::200:ff:fe00:abcd][1001]
10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
*> 10.10.10.2 0 100 32768 i ---------- VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1001]:[48,0000:0101:0001]:[0]:[1001]
10.10.10.2 0 100 32768 i ---------- VXLAN
* 10.10.10.1 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4ba0 VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1001]:[48,0000:0101:0001]:[32,101.1.1.2]:[1001]:[1000]
10.10.10.1 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4ba0 VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1001]:[48,0000:0101:0001]:[128,1001::2][1001]:[1000]
10.10.10.1 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4ba0 VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1001]:[48,0000:0101:0001]:[128,fe80::1][1001]:[1000]
10.10.10.2 0 100 32768 i ---------- VXLAN
* [3]:[1001]:[32,10.10.10.1]
10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
*> [3]:[1001]:[32,10.10.10.2]
10.10.10.2 0 100 32768 i ---------- VXLAN
RD[10.10.10.2:2] VRF[l2_vrf_2]
* [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1002]:[1002]
10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
*> 10.10.10.2 0 100 32768 i ---------- VXLAN
* [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[4294965295]:[0]
10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
* [2]:[0]:[1002]:[48,0000:0000:abcd]:[32,102.1.1.1]:[1002]
10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
*> 10.10.10.2 0 100 32768 i ---------- VXLAN
* [2]:[0]:[1002]:[48,0000:0000:abcd]:[128,1002::1][1002]
10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
*> 10.10.10.2 0 100 32768 i ---------- VXLAN
* [2]:[0]:[1002]:[48,0000:0000:abcd]:[128,fe80::200:ff:fe00:abcd][1002]
10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
*> 10.10.10.2 0 100 32768 i ---------- VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1002]:[48,0000:0102:0001]:[0]:[1002]
10.10.10.2 0 100 32768 i ---------- VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1002]:[48,0000:0102:0001]:[32,102.1.1.2]:[1002]:[1000]
10.10.10.2 0 100 32768 i ---------- VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1002]:[48,0000:0102:0001]:[128,1002::2][1002]:[1000]
10.10.10.2 0 100 32768 i ---------- VXLAN
* [3]:[1002]:[32,10.10.10.1]
10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
*> [3]:[1002]:[32,10.10.10.2]
10.10.10.2 0 100 32768 i ---------- VXLAN
RD[10.10.10.2:3] VRF[l2_vrf_3]
* [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1003]:[1003]
10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
*> 10.10.10.2 0 100 32768 i ---------- VXLAN
* [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[4294965295]:[0]
10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
* [2]:[0]:[1003]:[48,0000:0000:abcd]:[32,103.1.1.1]:[1003]
10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
*> 10.10.10.2 0 100 32768 i ---------- VXLAN
* [2]:[0]:[1003]:[48,0000:0000:abcd]:[128,1003::1][1003]
10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
*> 10.10.10.2 0 100 32768 i ---------- VXLAN
* [2]:[0]:[1003]:[48,0000:0000:abcd]:[128,fe80::200:ff:fe00:abcd][1003]
10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
*> 10.10.10.2 0 100 32768 i ---------- VXLAN
* [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1003]:[48,0000:0103:0001]:[0]:[1003]
10.10.10.1 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4ba0 VXLAN
*> 10.10.10.2 0 100 32768 i ---------- VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1003]:[48,0000:0103:0001]:[32,103.1.1.2]:[1003]:[1000]
10.10.10.2 0 100 32768 i ---------- VXLAN
*> [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1003]:[48,0000:0103:0001]:[128,1002::2][1003]
10.10.10.2 0 100 32768 i ---------- VXLAN
* [2]:[00:00:00:aa:aa:bb:bb:00:00:00]:[1003]:[48,0000:0103:0001]:[128,1003::2][1003]:[1000]
10.10.10.1 0 100 0 65002 65001 i fe80::ba6a:97ff:fee2:4ba0 VXLAN
* [3]:[1003]:[32,10.10.10.1]
10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
*> [3]:[1003]:[32,10.10.10.2]
10.10.10.2 0 100 32768 i ---------- VXLAN
RD[10.10.10.2:64512] VRF[evpn-gvrf-1]
*> [1]:[00:00:00:aa:aa:bb:bb:00:00:00]:[4294965295]:[0]
10.10.10.2 0 100 32768 i ---------- VXLAN
* [4]:[00:00:00:aa:aa:bb:bb:00:00:00]:[32,10.10.10.1]
10.10.10.1 0 100 0 65002 65001 i fe80::1644:8fff:fe45:8dcd VXLAN
*> [4]:[00:00:00:aa:aa:bb:bb:00:00:00]:[32,10.10.10.2]
10.10.10.2 0 100 32768 i ---------- VXLAN
Total number of prefixes 86
LEAF2#terminal length 0
LEAF2#
LEAF2#
LEAF2#
LEAF2#show nvo vxlan mac-table
=================================================================================================================================================================
VXLAN MAC Entries
=================================================================================================================================================================
VNID Interface VlanId In-VlanId Mac-Addr VTEP-Ip/ESI Type Status MAC move AccessPortDesc LeafFlag
_________________________________________________________________________________________________________________________________________________________________
1001 po1 101 ---- 0000.0101.0001 00:00:00:aa:aa:bb:bb:00:00:00 Dynamic Local ------- 0 ------- ----
1001 irb1001 ---- ---- 0000.0000.abcd 10.10.10.2 Static Local ------- 0 ------- ----
1002 po1 102 ---- 0000.0102.0001 00:00:00:aa:aa:bb:bb:00:00:00 Dynamic Local ------- 0 ------- ----
1002 irb1002 ---- ---- 0000.0000.abcd 10.10.10.2 Static Local ------- 0 ------- ----
1003 po1 103 ---- 0000.0103.0001 00:00:00:aa:aa:bb:bb:00:00:00 Dynamic Local ------- 0 ------- ----
1003 irb1003 ---- ---- 0000.0000.abcd 10.10.10.2 Static Local ------- 0 ------- ----
Total number of entries are : 6
LEAF2#
LEAF3
LEAF3#terminal length 0
LEAF3#
LEAF3#
LEAF3#
LEAF3#
LEAF3#show nvo vxlan
VXLAN Information
=================
Codes: NW - Network Port
AC - Access Port
(u) - Untagged
VNID VNI-Name VNI-Type Type Interface ESI VLAN DF-Status Src-Addr Dst-Addr Router-Mac
_______________________________________________________________________________________________________________________________________________
1000 ---- L3 NW ---- ---- ---- ---- 10.10.10.4 10.10.10.7 1444.8fc9.07c9
1001 ---- -- AC xe34 --- Single Homed Port --- 2001 ---- ---- ----
1002 ---- -- AC xe34 --- Single Homed Port --- 2002 ---- ---- ----
1003 ---- -- AC xe34 --- Single Homed Port --- 2003 ---- ---- ----
Total number of entries are 4
LEAF3#show nvo vxlan tunnel
VXLAN Network tunnel Entries
Source Destination Status Up/Down Update
========================================================================
10.10.10.4 10.10.10.7 Installed 00:41:34 00:41:34
Total number of entries are 1
LEAF3#show nvo vxlan arp-cache
VXLAN ARP-CACHE Information
===========================
VNID Ip-Addr Mac-Addr Type Age-Out Retries-Left
_______________________________________________________________________________________
1001 201.1.1.1 e001.a6a9.4b01 Static Local ----
1001 201.1.1.2 0000.0201.0001 Dynamic Local ----
1002 202.1.1.1 e001.a6a9.4b01 Static Local ----
1002 202.1.1.2 0000.0202.0001 Dynamic Local ----
1003 203.1.1.1 e001.a6a9.4b01 Static Local ----
1003 203.1.1.2 0000.0203.0001 Dynamic Local ----
Total number of entries are 6
LEAF3#show nvo vxlan nd-cache
VXLAN ND-CACHE Information
===========================
VNID Ip-Addr Mac-Addr Type Age-Out Retries-Left
____________________________________________________________________________________________________
1001 2001::1 e001.a6a9.4b01 Static Local ----
1001 2001::2 0000.0201.0001 Dynamic Local ----
1001 fe80::1 0000.0201.0001 Dynamic Local ----
1001 fe80::e201:a6ff:fea9:4b01 e001.a6a9.4b01 Static Local ----
1002 2002::1 e001.a6a9.4b01 Static Local ----
1002 2002::2 0000.0202.0001 Dynamic Local ----
1002 fe80::e201:a6ff:fea9:4b01 e001.a6a9.4b01 Static Local ----
1003 2003::1 e001.a6a9.4b01 Static Local ----
1003 2003::2 0000.0203.0001 Dynamic Local ----
1003 fe80::e201:a6ff:fea9:4b01 e001.a6a9.4b01 Static Local ----
Total number of entries are 10
LEAF3#show ip bgp summary
BGP router identifier 10.10.10.4, local AS number 65001
BGP table version is 4
3 BGP AS-PATH entries
0 BGP community entries
4 Configured ebgp ECMP multipath: Currently set at 4
Neighbor V AS MsgRcv MsgSen TblVer InQ OutQ Up/Down State/PfxRcd Desc
ce4(fe80::6eb9:c5ff:fe15:878f) 4 65002 3095 3142 4 0 0 00:41:35 4
Total number of neighbors 1
Total number of Established sessions 1
LEAF3#show bgp l2vpn evpn summary
BGP router identifier 10.10.10.4, local AS number 65001
BGP table version is 34
3 BGP AS-PATH entries
0 BGP community entries
Neighbor V AS MsgRcv MsgSen TblVer InQ OutQ Up/Down State/PfxRcd AD MACIP MCAST ESI PREFIX-ROUTE Desc
ce4(fe80::6eb9:c5ff:fe15:878f) 4 65002 3095 3142 34 0 0 00:41:35 11 0 0 0 0 11
Total number of neighbors 1
Total number of Established sessions 1
LEAF3#show ip route vrf all
Codes: K - kernel, C - connected, S - static, R - RIP, B - BGP
O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2,
ia - IS-IS inter area, E - EVPN,
v - vrf leaked
* - candidate default
IP Route Table for VRF "default"
C 10.10.10.4/32 is directly connected, lo, installed 21:28:10, last update 21:28:10 ago
B 10.10.10.7/32 [20/0] via fe80::6eb9:c5ff:fe15:878f, ce4, installed 00:41:34, last update 00:41:34 ago
B 10.10.10.16/32 [20/0] via fe80::6eb9:c5ff:fe15:878f, ce4, installed 00:41:34, last update 00:41:34 ago
B 17.18.18.0/24 [20/0] via fe80::6eb9:c5ff:fe15:878f, ce4, installed 00:41:34, last update 00:41:34 ago
B 17.19.19.0/24 [20/0] via fe80::6eb9:c5ff:fe15:878f, ce4, installed 00:41:34, last update 00:41:34 ago
C 127.0.0.0/8 is directly connected, lo, installed 21:28:46, last update 21:28:46 ago
IP Route Table for VRF "management"
C 10.16.111.0/24 is directly connected, eth0, installed 21:28:07, last update 21:28:07 ago
C 127.0.0.0/8 is directly connected, lo.management, installed 21:28:46, last update 21:28:46 ago
IP Route Table for VRF "l3_vrf_1"
B 10.10.10.7/32 [0/0] is directly connected, tunvxlan2, installed 00:41:34, last update 00:41:34 ago
B 101.0.0.0/8 [20/0] via 10.10.10.7 (recursive is directly connected, tunvxlan2), installed 00:41:35, last update 00:41:35 ago
B 101.1.1.2/32 [20/0] via 10.10.10.7 (recursive is directly connected, tunvxlan2), installed 00:22:43, last update 00:22:43 ago
B 101.1.1.240/32 [20/0] via 10.10.10.7 (recursive is directly connected, tunvxlan2), installed 00:41:35, last update 00:41:35 ago
B 102.0.0.0/8 [20/0] via 10.10.10.7 (recursive is directly connected, tunvxlan2), installed 00:41:35, last update 00:41:35 ago
B 102.1.1.2/32 [20/0] via 10.10.10.7 (recursive is directly connected, tunvxlan2), installed 00:22:43, last update 00:22:43 ago
B 103.0.0.0/8 [20/0] via 10.10.10.7 (recursive is directly connected, tunvxlan2), installed 00:41:35, last update 00:41:35 ago
C 127.0.0.0/8 is directly connected, lo.l3_vrf_1, installed 21:28:19, last update 21:28:19 ago
C 201.0.0.0/8 is directly connected, irb1001, installed 01:06:59, last update 01:06:59 ago
S 201.1.1.240/32 [1/0] is directly connected, irb1001, installed 01:04:14, last update 01:04:14 ago
C 202.0.0.0/8 is directly connected, irb1002, installed 01:06:59, last update 01:06:59 ago
C 203.0.0.0/8 is directly connected, irb1003, installed 01:06:59, last update 01:06:59 ago
IP Route Table for VRF "l2_vrf_1"
IP Route Table for VRF "l2_vrf_2"
IP Route Table for VRF "l2_vrf_3"
Gateway of last resort is not set
LEAF3#show ipv6 route vrf all
IPv6 Routing Table
Codes: K - kernel route, C - connected, S - static, D- DHCP, R - RIP,
O - OSPF, IA - OSPF inter area, E1 - OSPF external type 1,
E2 - OSPF external type 2, E - EVPN N1 - OSPF NSSA external type 1,
N2 - OSPF NSSA external type 2, i - IS-IS, B - BGP,
v - vrf leaked
Timers: Uptime
IP Route Table for VRF "default"
C ::1/128 via ::, lo, installed 21:28:46, last update 21:28:46 ago
C fe80::/64 via ::, xe1/3, installed 01:43:56, last update 01:43:56 ago
IP Route Table for VRF "management"
C ::1/128 via ::, lo.management, installed 21:28:46, last update 21:28:46 ago
C fe80::/64 via ::, eth0, installed 21:28:46, last update 21:28:46 ago
IP Route Table for VRF "l3_vrf_1"
C ::1/128 via ::, lo.l3_vrf_1, installed 21:28:19, last update 21:28:19 ago
B ::ffff:a0a:a07/128 [0/0] via ::, tunvxlan2, installed 00:41:34, last update 00:41:34 ago
B 1001::/48 [20/0] via ::ffff:a0a:a07 (recursive via ::, tunvxlan2), installed 00:41:35, last update 00:41:35 ago
B 1001::2/128 [20/0] via ::ffff:a0a:a07 (recursive via ::, tunvxlan2), installed 00:22:43, last update 00:22:43 ago
B 1002::/48 [20/0] via ::ffff:a0a:a07 (recursive via ::, tunvxlan2), installed 00:41:35, last update 00:41:35 ago
B 1002::2/128 [20/0] via ::ffff:a0a:a07 (recursive via ::, tunvxlan2), installed 00:22:43, last update 00:22:43 ago
B 1003::/48 [20/0] via ::ffff:a0a:a07 (recursive via ::, tunvxlan2), installed 00:41:35, last update 00:41:35 ago
C 2001::/48 via ::, irb1001, installed 01:06:59, last update 01:06:59 ago
C 2002::/48 via ::, irb1002, installed 01:06:59, last update 01:06:59 ago
C 2003::/48 via ::, irb1003, installed 01:06:59, last update 01:06:59 ago
C fe80::/64 via ::, tunvxlan2, installed 01:04:25, last update 01:04:25 ago
IP Route Table for VRF "l2_vrf_1"
IP Route Table for VRF "l2_vrf_2"
IP Route Table for VRF "l2_vrf_3"
LEAF3#show bgp vrf all
BGP table version is 1, local router ID is 203.1.1.1
Status codes: s suppressed, d damped, h history, a add-path, b back-up, * valid, > best, i - internal,
l - labeled, S Stale, x-EVPN, w-Stitched-routes
Origin codes: i - IGP, e - EGP, ? - incomplete
Description : Ext-Color - Extended community color
Network Next Hop Metric LocPrf Weight Path Ext-Color
BGP Route Table for VRF l3_vrf_1
*>x 101.0.0.0 10.10.10.7 0 100 0 65002 65004 ?
*>x 101.1.1.2/32 10.10.10.7 0 100 0 65002 65004 i
*>x 101.1.1.240/32 10.10.10.7 0 100 0 65002 65004 ?
*>x 102.0.0.0 10.10.10.7 0 100 0 65002 65004 ?
*>x 102.1.1.2/32 10.10.10.7 0 100 0 65002 65004 i
*>x 103.0.0.0 10.10.10.7 0 100 0 65002 65004 ?
*> 201.0.0.0/8 0.0.0.0 0 100 32768 ?
*> 201.1.1.240/32 0.0.0.0 0 100 32768 ?
*> 202.0.0.0/8 0.0.0.0 0 100 32768 ?
*> 203.0.0.0/8 0.0.0.0 0 100 32768 ?
Total number of prefixes 10
*> 10.10.10.4/32 0.0.0.0 0 100 32768 i
* 0.0.0.0 0 100 32768 ?
*> 10.10.10.7/32 fe80::6eb9:c5ff:fe15:878f 0 100 0 65002 65004 i
*> 10.10.10.16/32 fe80::6eb9:c5ff:fe15:878f 0 100 0 65002 i
*> 17.18.18.0/24 fe80::6eb9:c5ff:fe15:878f 0 100 0 65002 65004 ?
*> 17.19.19.0/24 fe80::6eb9:c5ff:fe15:878f 0 100 0 65002 65004 ?
Total number of prefixes 5
LEAF3#show bgp l2vpn evpn
BGP table version is 34, local router ID is 10.10.10.4
Status codes: s suppressed, d damped, h history, a add-path, b back-up, * valid, > best, i - internal,
l - labeled, S Stale
Origin codes: i - IGP, e - EGP, ? - incomplete
Description : Ext-Color - Extended community color
[EVPN route type]:[ESI]:[VNID]:[relevent route informantion]
1 - Ethernet Auto-discovery Route
2 - MAC/IP Route
3 - Inclusive Multicast Route
4 - Ethernet Segment Route
5 - Prefix Route
Network Next Hop Metric LocPrf Weight Path Peer Encap
RD[7007:5001]
*> [5]:[0]:[0]:[8]:[101.0.0.0]:[0.0.0.0]:[1000]
10.10.10.7 0 100 0 65002 65004 ? fe80::6eb9:c5ff:fe15:878f VXLAN
*> [5]:[0]:[0]:[8]:[102.0.0.0]:[0.0.0.0]:[1000]
10.10.10.7 0 100 0 65002 65004 ? fe80::6eb9:c5ff:fe15:878f VXLAN
*> [5]:[0]:[0]:[8]:[103.0.0.0]:[0.0.0.0]:[1000]
10.10.10.7 0 100 0 65002 65004 ? fe80::6eb9:c5ff:fe15:878f VXLAN
*> [5]:[00:00:00:aa:aa:bb:bb:00:00:00]:[0]:[32]:[101.1.1.2]:[0.0.0.0]:[1000]
10.10.10.7 0 100 0 65002 65004 i fe80::6eb9:c5ff:fe15:878f VXLAN
*> [5]:[0]:[0]:[32]:[101.1.1.240]:[0.0.0.0]:[1000]
10.10.10.7 0 100 0 65002 65004 ? fe80::6eb9:c5ff:fe15:878f VXLAN
*> [5]:[00:00:00:aa:aa:bb:bb:00:00:00]:[0]:[32]:[102.1.1.2]:[0.0.0.0]:[1000]
10.10.10.7 0 100 0 65002 65004 i fe80::6eb9:c5ff:fe15:878f VXLAN
*> [5]:[0]:[0]:[48]:[1001::]:[::]:[1000]
10.10.10.7 0 100 0 65002 65004 ? fe80::6eb9:c5ff:fe15:878f VXLAN
*> [5]:[0]:[0]:[48]:[1002::]:[::]:[1000]
10.10.10.7 0 100 0 65002 65004 ? fe80::6eb9:c5ff:fe15:878f VXLAN
*> [5]:[0]:[0]:[48]:[1003::]:[::]:[1000]
10.10.10.7 0 100 0 65002 65004 ? fe80::6eb9:c5ff:fe15:878f VXLAN
*> [5]:[00:00:00:aa:aa:bb:bb:00:00:00]:[0]:[128]:[1001::2]:[::]:[1000]
10.10.10.7 0 100 0 65002 65004 i fe80::6eb9:c5ff:fe15:878f VXLAN
*> [5]:[00:00:00:aa:aa:bb:bb:00:00:00]:[0]:[128]:[1002::2]:[::]:[1000]
10.10.10.7 0 100 0 65002 65004 i fe80::6eb9:c5ff:fe15:878f VXLAN
RD[10.10.10.4:1] VRF[l2_vrf_1]
*> [2]:[0]:[1001]:[48,0000:0201:0001]:[0]:[1001]
10.10.10.4 0 100 32768 i ---------- VXLAN
*> [2]:[0]:[1001]:[48,0000:0201:0001]:[32,201.1.1.2]:[1001]:[1000]
10.10.10.4 0 100 32768 i ---------- VXLAN
*> [2]:[0]:[1001]:[48,0000:0201:0001]:[128,2001::2][1001]:[1000]
10.10.10.4 0 100 32768 i ---------- VXLAN
*> [2]:[0]:[1001]:[48,0000:0201:0001]:[128,fe80::1][1001]:[1000]
10.10.10.4 0 100 32768 i ---------- VXLAN
*> [2]:[0]:[1001]:[48,e001:a6a9:4b01]:[32,201.1.1.1]:[1001]
10.10.10.4 0 100 32768 i ---------- VXLAN
*> [2]:[0]:[1001]:[48,e001:a6a9:4b01]:[128,2001::1][1001]
10.10.10.4 0 100 32768 i ---------- VXLAN
*> [2]:[0]:[1001]:[48,e001:a6a9:4b01]:[128,fe80::e201:a6ff:fea9:4b01][1001]
10.10.10.4 0 100 32768 i ---------- VXLAN
*> [3]:[1001]:[32,10.10.10.4]
10.10.10.4 0 100 32768 i ---------- VXLAN
RD[10.10.10.4:2] VRF[l2_vrf_2]
*> [2]:[0]:[1002]:[48,0000:0202:0001]:[0]:[1002]
10.10.10.4 0 100 32768 i ---------- VXLAN
*> [2]:[0]:[1002]:[48,0000:0202:0001]:[32,202.1.1.2]:[1002]:[1000]
10.10.10.4 0 100 32768 i ---------- VXLAN
*> [2]:[0]:[1002]:[48,0000:0202:0001]:[128,2002::2][1002]:[1000]
10.10.10.4 0 100 32768 i ---------- VXLAN
*> [2]:[0]:[1002]:[48,e001:a6a9:4b01]:[32,202.1.1.1]:[1002]
10.10.10.4 0 100 32768 i ---------- VXLAN
*> [2]:[0]:[1002]:[48,e001:a6a9:4b01]:[128,2002::1][1002]
10.10.10.4 0 100 32768 i ---------- VXLAN
*> [2]:[0]:[1002]:[48,e001:a6a9:4b01]:[128,fe80::e201:a6ff:fea9:4b01][1002]
10.10.10.4 0 100 32768 i ---------- VXLAN
*> [3]:[1002]:[32,10.10.10.4]
10.10.10.4 0 100 32768 i ---------- VXLAN
RD[10.10.10.4:3] VRF[l2_vrf_3]
*> [2]:[0]:[1003]:[48,0000:0203:0001]:[0]:[1003]
10.10.10.4 0 100 32768 i ---------- VXLAN
*> [2]:[0]:[1003]:[48,0000:0203:0001]:[32,203.1.1.2]:[1003]:[1000]
10.10.10.4 0 100 32768 i ---------- VXLAN
*> [2]:[0]:[1003]:[48,0000:0203:0001]:[128,2003::2][1003]:[1000]
10.10.10.4 0 100 32768 i ---------- VXLAN
*> [2]:[0]:[1003]:[48,e001:a6a9:4b01]:[32,203.1.1.1]:[1003]
10.10.10.4 0 100 32768 i ---------- VXLAN
*> [2]:[0]:[1003]:[48,e001:a6a9:4b01]:[128,2003::1][1003]
10.10.10.4 0 100 32768 i ---------- VXLAN
*> [2]:[0]:[1003]:[48,e001:a6a9:4b01]:[128,fe80::e201:a6ff:fea9:4b01][1003]
10.10.10.4 0 100 32768 i ---------- VXLAN
*> [3]:[1003]:[32,10.10.10.4]
10.10.10.4 0 100 32768 i ---------- VXLAN
Total number of prefixes 33
LEAF3#show nvo vxlan mac-table
=================================================================================================================================================================
VXLAN MAC Entries
=================================================================================================================================================================
VNID Interface VlanId In-VlanId Mac-Addr VTEP-Ip/ESI Type Status MAC move AccessPortDesc LeafFlag
_________________________________________________________________________________________________________________________________________________________________
1001 xe34 2001 ---- 0000.0201.0001 10.10.10.4 Dynamic Local ------- 0 ------- ----
1001 irb1001 ---- ---- e001.a6a9.4b01 10.10.10.4 Static Local ------- 0 ------- ----
1002 xe34 2002 ---- 0000.0202.0001 10.10.10.4 Dynamic Local ------- 0 ------- ----
1002 irb1002 ---- ---- e001.a6a9.4b01 10.10.10.4 Static Local ------- 0 ------- ----
1003 xe34 2003 ---- 0000.0203.0001 10.10.10.4 Dynamic Local ------- 0 ------- ----
1003 irb1003 ---- ---- e001.a6a9.4b01 10.10.10.4 Static Local ------- 0 ------- ----
Total number of entries are : 6
LEAF3#
LEAF3#
LEAF3#
R1
R1#show ip route
Codes: K - kernel, C - connected, S - static, R - RIP, B - BGP
O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2,
ia - IS-IS inter area, E - EVPN,
v - vrf leaked
* - candidate default
IP Route Table for VRF "default"
O 10.10.10.5/32 [110/2] via 17.20.20.1, xe1/1, installed 14:19:43, last update 14:19:43 ago
O 10.10.10.6/32 [110/2] via 17.22.22.1, xe31/1, installed 14:22:04, last update 14:22:04 ago
O 10.10.10.7/32 [110/2] via 17.19.19.1, xe1/2, installed 14:22:35, last update 14:22:35 ago
C 10.10.10.21/32 is directly connected, lo, installed 1d16h57m, last update 1d16h57m ago
O 10.10.10.22/32 [110/2] via 17.24.24.1, xe6/1, installed 1d16h56m, last update 1d16h56m ago
O 17.18.18.0/24 [110/2] via 17.24.24.1, xe6/1, installed 14:23:30, last update 14:22:35 ago
[110/2] via 17.19.19.1, xe1/2
C 17.19.19.0/24 is directly connected, xe1/2, installed 14:23:30, last update 14:23:30 ago
C 17.20.20.0/24 is directly connected, xe1/1, installed 14:20:29, last update 14:20:29 ago
O 17.21.21.0/24 [110/2] via 17.20.20.1, xe1/1, installed 00:19:21, last update 00:19:21 ago
[110/2] via 17.24.24.1, xe6/1
C 17.22.22.0/24 is directly connected, xe31/1, installed 14:22:49, last update 14:22:49 ago
O 17.23.23.0/24 [110/2] via 17.22.22.1, xe31/1, installed 14:22:45, last update 14:22:04 ago
[110/2] via 17.24.24.1, xe6/1
C 17.24.24.0/24 is directly connected, xe6/1, installed 1d16h57m, last update 1d16h57m ago
C 127.0.0.0/8 is directly connected, lo, installed 1d16h58m, last update 1d16h58m ago
Gateway of last resort is not set
R1#show bgp l2vpn evpn summary
BGP router identifier 10.10.10.21, local AS number 65005
BGP table version is 350
4 BGP AS-PATH entries
0 BGP community entries
Neighbor V AS MsgRcv MsgSen TblVer InQ OutQ Up/Down State/PfxRcd AD MACIP MCAST ESI PREFIX-ROUTE Desc
10.10.10.5 4 65004 5796 5965 346 0 0 14:19:40 13 0 0 0 0 13
10.10.10.6 4 65004 5840 5925 350 0 0 14:21:54 13 0 0 0 0 13
10.10.10.7 4 65004 5851 5952 350 0 0 14:22:31 14 0 0 0 0 14
10.10.10.22 4 65006 5985 6001 350 0 0 1d16h56m 30 0 0 0 0 30
Total number of neighbors 4
Total number of Established sessions 4
R1#show ip ospf neighbor
Total number of full neighbors: 4
OSPF process 100 VRF(default):
Neighbor ID Pri State Dead Time Address Interface Instance ID
10.10.10.7 1 Full/Backup 00:00:31 17.19.19.1 xe1/2 0
10.10.10.5 1 Full/Backup 00:00:32 17.20.20.1 xe1/1 0
10.10.10.6 1 Full/Backup 00:00:31 17.22.22.1 xe31/1 0
10.10.10.22 1 Full/DR 00:00:30 17.24.24.1 xe6/1 0
R1#
R2
R2#show ip route
Codes: K - kernel, C - connected, S - static, R - RIP, B - BGP
O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2,
ia - IS-IS inter area, E - EVPN,
v - vrf leaked
* - candidate default
IP Route Table for VRF "default"
O 10.10.10.5/32 [110/2] via 17.21.21.1, xe1/1, installed 00:18:49, last update 00:18:49 ago
O 10.10.10.6/32 [110/2] via 17.23.23.1, xe31/1, installed 14:22:06, last update 14:22:06 ago
O 10.10.10.7/32 [110/2] via 17.18.18.1, xe1/2, installed 14:22:58, last update 14:22:58 ago
O 10.10.10.21/32 [110/2] via 17.24.24.2, xe6/1, installed 1d16h56m, last update 1d16h56m ago
C 10.10.10.22/32 is directly connected, lo, installed 1d16h58m, last update 1d16h58m ago
C 17.18.18.0/24 is directly connected, xe1/2, installed 14:23:43, last update 14:23:43 ago
O 17.19.19.0/24 [110/2] via 17.24.24.2, xe6/1, installed 14:23:43, last update 14:22:58 ago
[110/2] via 17.18.18.1, xe1/2
O 17.20.20.0/24 [110/2] via 17.24.24.2, xe6/1, installed 14:20:41, last update 00:18:49 ago
[110/2] via 17.21.21.1, xe1/1
C 17.21.21.0/24 is directly connected, xe1/1, installed 00:19:34, last update 00:19:34 ago
O 17.22.22.0/24 [110/2] via 17.23.23.1, xe31/1, installed 14:22:57, last update 14:22:06 ago
[110/2] via 17.24.24.2, xe6/1
C 17.23.23.0/24 is directly connected, xe31/1, installed 14:23:02, last update 14:23:02 ago
C 17.24.24.0/24 is directly connected, xe6/1, installed 1d16h57m, last update 1d16h57m ago
C 127.0.0.0/8 is directly connected, lo, installed 1d16h58m, last update 1d16h58m ago
Gateway of last resort is not set
R2#show bgp l2vpn evpn summary
BGP router identifier 10.10.10.22, local AS number 65006
BGP table version is 318
4 BGP AS-PATH entries
0 BGP community entries
Neighbor V AS MsgRcv MsgSen TblVer InQ OutQ Up/Down State/PfxRcd AD MACIP MCAST ESI PREFIX-ROUTE Desc
10.10.10.5 4 65004 5793 5951 316 0 0 00:18:48 17 0 0 0 0 17
10.10.10.6 4 65004 5830 5915 318 0 0 14:22:05 17 0 0 0 0 17
10.10.10.7 4 65004 5831 5948 318 0 0 14:22:52 26 0 0 0 0 26
10.10.10.21 4 65005 6001 5986 318 0 0 1d16h56m 30 0 0 0 0 30
Total number of neighbors 4
Total number of Established sessions 4
R2#show ip ospf neighbor
Total number of full neighbors: 4
OSPF process 100 VRF(default):
Neighbor ID Pri State Dead Time Address Interface Instance ID
10.10.10.7 1 Full/Backup 00:00:35 17.18.18.1 xe1/2 0
10.10.10.5 1 Full/Backup 00:00:31 17.21.21.1 xe1/1 0
10.10.10.6 1 Full/Backup 00:00:32 17.23.23.1 xe31/1 0
10.10.10.21 1 Full/Backup 00:00:29 17.24.24.2 xe6/1 0
R2#
SPINE1
SPINE1#show ip route
Codes: K - kernel, C - connected, S - static, R - RIP, B - BGP
O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2,
ia - IS-IS inter area, E - EVPN,
v - vrf leaked
* - candidate default
IP Route Table for VRF "default"
B 10.10.10.1/32 [20/0] via fe80::1644:8fff:fec8:fd5, xe8, installed 14:21:54, last update 14:21:54 ago
B 10.10.10.2/32 [20/0] via fe80::9a19:2cff:fe9b:37d7, xe3, installed 16:58:02, last update 16:58:02 ago
B 10.10.10.5/32 [20/0] via fe80::36ef:b6ff:fe69:fc42, ce49, installed 14:19:13, last update 10:09:17 ago
[20/0] via fe80::230:abff:feea:da39, xe45
B 10.10.10.6/32 [20/0] via fe80::36ef:b6ff:fe69:fc42, ce49, installed 14:21:30, last update 10:09:17 ago
[20/0] via fe80::230:abff:feea:da39, xe45
C 10.10.10.11/32 is directly connected, lo, installed 17:06:36, last update 17:06:36 ago
B 10.10.10.12/32 [20/0] via fe80::9a19:2cff:fe9b:37d7, xe3, installed 17:06:15, last update 07:13:32 ago
[20/0] via fe80::36ef:b6ff:fe69:fc42, ce49
[20/0] via fe80::1644:8fff:fec8:fd5, xe8
[20/0] via fe80::230:abff:feea:da39, xe45
B 10.10.10.14/32 [20/0] via fe80::230:abff:feea:da39, xe45, installed 17:05:02, last update 17:05:02 ago
B 10.10.10.15/32 [20/0] via fe80::36ef:b6ff:fe69:fc42, ce49, installed 10:09:17, last update 10:09:17 ago
B 17.20.20.0/24 [20/0] via fe80::36ef:b6ff:fe69:fc42, ce49, installed 14:19:13, last update 10:09:17 ago
[20/0] via fe80::230:abff:feea:da39, xe45
B 17.21.21.0/24 [20/0] via fe80::36ef:b6ff:fe69:fc42, ce49, installed 00:18:22, last update 00:18:22 ago
[20/0] via fe80::230:abff:feea:da39, xe45
B 17.22.22.0/24 [20/0] via fe80::36ef:b6ff:fe69:fc42, ce49, installed 14:21:30, last update 10:09:17 ago
[20/0] via fe80::230:abff:feea:da39, xe45
B 17.23.23.0/24 [20/0] via fe80::36ef:b6ff:fe69:fc42, ce49, installed 14:21:30, last update 10:09:17 ago
[20/0] via fe80::230:abff:feea:da39, xe45
C 127.0.0.0/8 is directly connected, lo, installed 17:07:05, last update 17:07:05 ago
Gateway of last resort is not set
SPINE1#show ip bgp summary
BGP router identifier 10.10.10.11, local AS number 65002
BGP table version is 32
10 BGP AS-PATH entries
0 BGP community entries
4 Configured ebgp ECMP multipath: Currently set at 4
Neighbor V AS MsgRcv MsgSen TblVer InQ OutQ Up/Down State/PfxRcd Desc
xe3(fe80::9a19:2cff:fe9b:37d7) 4 65001 2580 2817 32 0 0 16:58:04 5
ce49(fe80::36ef:b6ff:fe69:fc42) 4 65003 1548 1570 32 0 0 10:09:19 8
xe8(fe80::1644:8fff:fec8:fd5) 4 65001 2568 2766 32 0 0 14:21:56 2
xe45(fe80::230:abff:feea:da39) 4 65003 2798 2745 32 0 0 17:05:04 9
Total number of neighbors 4
Total number of Established sessions 4
SPINE1#show bgp l2vpn evpn summary
BGP router identifier 10.10.10.11, local AS number 65002
BGP table version is 345
10 BGP AS-PATH entries
0 BGP community entries
Neighbor V AS MsgRcv MsgSen TblVer InQ OutQ Up/Down State/PfxRcd AD MACIP MCAST ESI PREFIX-ROUTE Desc
xe3(fe80::9a19:2cff:fe9b:37d7) 4 65001 2580 2817 342 0 0 16:58:06 35 4 16 3 1 11
ce49(fe80::36ef:b6ff:fe69:fc42) 4 65003 1548 1570 345 0 0 10:09:21 25 2 3 0 0 20
xe8(fe80::1644:8fff:fec8:fd5) 4 65001 2568 2766 345 0 0 14:21:58 31 4 9 3 1 14
xe45(fe80::230:abff:feea:da39) 4 65003 2798 2745 345 0 0 17:05:06 20 0 0 0 0 20
Total number of neighbors 4
Total number of Established sessions 4
SPINE1#
SPINE2
SPINE2#show ip route
Codes: K - kernel, C - connected, S - static, R - RIP, B - BGP
O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2,
ia - IS-IS inter area, E - EVPN,
v - vrf leaked
* - candidate default
IP Route Table for VRF "default"
B 10.10.10.1/32 [20/0] via fe80::1644:8fff:fec8:ffa, xe47, installed 14:22:01, last update 14:22:01 ago
B 10.10.10.2/32 [20/0] via fe80::9a19:2cff:fe9b:37d6, xe1, installed 16:58:10, last update 16:58:10 ago
B 10.10.10.5/32 [20/0] via fe80::36ef:b6ff:fe69:fc66, ce50, installed 14:19:20, last update 10:09:24 ago
[20/0] via fe80::230:abff:feea:da38, xe57
B 10.10.10.6/32 [20/0] via fe80::36ef:b6ff:fe69:fc66, ce50, installed 14:21:37, last update 10:09:24 ago
[20/0] via fe80::230:abff:feea:da38, xe57
B 10.10.10.11/32 [20/0] via fe80::9a19:2cff:fe9b:37d6, xe1, installed 17:05:09, last update 07:14:11 ago
[20/0] via fe80::36ef:b6ff:fe69:fc66, ce50
[20/0] via fe80::1644:8fff:fec8:ffa, xe47
[20/0] via fe80::230:abff:feea:da38, xe57
C 10.10.10.12/32 is directly connected, lo, installed 1d16h57m, last update 1d16h57m ago
B 10.10.10.14/32 [20/0] via fe80::230:abff:feea:da38, xe57, installed 17:05:09, last update 17:05:09 ago
B 10.10.10.15/32 [20/0] via fe80::36ef:b6ff:fe69:fc66, ce50, installed 10:09:24, last update 10:09:24 ago
B 17.20.20.0/24 [20/0] via fe80::36ef:b6ff:fe69:fc66, ce50, installed 14:19:20, last update 10:09:24 ago
[20/0] via fe80::230:abff:feea:da38, xe57
B 17.21.21.0/24 [20/0] via fe80::36ef:b6ff:fe69:fc66, ce50, installed 00:18:30, last update 00:18:29 ago
[20/0] via fe80::230:abff:feea:da38, xe57
B 17.22.22.0/24 [20/0] via fe80::36ef:b6ff:fe69:fc66, ce50, installed 14:21:37, last update 10:09:24 ago
[20/0] via fe80::230:abff:feea:da38, xe57
B 17.23.23.0/24 [20/0] via fe80::36ef:b6ff:fe69:fc66, ce50, installed 14:21:37, last update 10:09:24 ago
[20/0] via fe80::230:abff:feea:da38, xe57
C 127.0.0.0/8 is directly connected, lo, installed 1d16h57m, last update 1d16h57m ago
Gateway of last resort is not set
SPINE2#show ip bgp summary
BGP router identifier 10.10.10.12, local AS number 65002
BGP table version is 39
11 BGP AS-PATH entries
0 BGP community entries
4 Configured ebgp ECMP multipath: Currently set at 4
Neighbor V AS MsgRcv MsgSen TblVer InQ OutQ Up/Down State/PfxRcd Desc
xe57(fe80::230:abff:feea:da38) 4 65003 3123 3461 39 0 0 17:05:11 10
xe47(fe80::1644:8fff:fec8:ffa) 4 65001 6065 6251 39 0 0 14:22:03 11
ce50(fe80::36ef:b6ff:fe69:fc66) 4 65003 1797 2110 39 0 0 10:09:26 11
xe1(fe80::9a19:2cff:fe9b:37d6) 4 65001 2727 3096 39 0 0 16:58:12 8
Total number of neighbors 4
Total number of Established sessions 4
SPINE2#show bgp l2vpn evpn summary
BGP router identifier 10.10.10.12, local AS number 65002
BGP table version is 406
11 BGP AS-PATH entries
0 BGP community entries
Neighbor V AS MsgRcv MsgSen TblVer InQ OutQ Up/Down State/PfxRcd AD MACIP MCAST ESI PREFIX-ROUTE Desc
xe57(fe80::230:abff:feea:da38) 4 65003 3123 3461 406 0 0 17:05:13 75 8 25 6 2 34
xe47(fe80::1644:8fff:fec8:ffa) 4 65001 6068 6251 406 0 0 14:22:05 68 8 25 6 2 27
ce50(fe80::36ef:b6ff:fe69:fc66) 4 65003 1797 2111 406 0 0 10:09:28 75 8 25 6 2 34
xe1(fe80::9a19:2cff:fe9b:37d6) 4 65001 2727 3096 406 0 0 16:58:14 71 8 25 6 2 30
Total number of neighbors 4
Total number of Established sessions 4
SPINE2#
SPINE2#
SPINE3
SPINE3#show ip route
Codes: K - kernel, C - connected, S - static, R - RIP, B - BGP
O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2,
ia - IS-IS inter area, E - EVPN,
v - vrf leaked
* - candidate default
IP Route Table for VRF "default"
B 10.10.10.4/32 [20/0] via fe80::e201:a6ff:fea9:4b05, ce49, installed 16:58:48, last update 16:58:48 ago
B 10.10.10.7/32 [20/0] via fe80::1644:8fff:fec9:7ce, xe7, installed 14:22:31, last update 14:22:31 ago
C 10.10.10.16/32 is directly connected, lo, installed 1d16h56m, last update 1d16h56m ago
B 17.18.18.0/24 [20/0] via fe80::1644:8fff:fec9:7ce, xe7, installed 14:22:31, last update 14:22:31 ago
B 17.19.19.0/24 [20/0] via fe80::1644:8fff:fec9:7ce, xe7, installed 14:22:31, last update 14:22:31 ago
C 127.0.0.0/8 is directly connected, lo, installed 1d16h56m, last update 1d16h56m ago
Gateway of last resort is not set
SPINE3#show ip bgp summary
BGP router identifier 10.10.10.16, local AS number 65002
BGP table version is 9
3 BGP AS-PATH entries
0 BGP community entries
4 Configured ibgp ECMP multipath: Currently set at 4
Neighbor V AS MsgRcv MsgSen TblVer InQ OutQ Up/Down State/PfxRcd Desc
xe7(fe80::1644:8fff:fec9:7ce) 4 65004 5834 5808 9 0 0 14:22:35 3
ce49(fe80::e201:a6ff:fea9:4b05) 4 65001 2611 3116 9 0 0 16:58:52 1
Total number of neighbors 2
Total number of Established sessions 2
SPINE3#show bgp l2vpn evpn summary
BGP router identifier 10.10.10.16, local AS number 65002
BGP table version is 73
3 BGP AS-PATH entries
0 BGP community entries
Neighbor V AS MsgRcv MsgSen TblVer InQ OutQ Up/Down State/PfxRcd AD MACIP MCAST ESI PREFIX-ROUTE Desc
xe7(fe80::1644:8fff:fec9:7ce) 4 65004 5834 5808 70 0 0 14:22:36 10 0 0 0 0 10
ce49(fe80::e201:a6ff:fea9:4b05) 4 65001 2611 3116 73 0 0 16:58:53 26 0 16 3 0 7
Total number of neighbors 2
Total number of Established sessions 2
SPINE3#
SuperSpine1
SuperSpine1#show ip route
Codes: K - kernel, C - connected, S - static, R - RIP, B - BGP
O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2,
ia - IS-IS inter area, E - EVPN,
v - vrf leaked
* - candidate default
IP Route Table for VRF "default"
B 10.10.10.1/32 [20/0] via fe80::ba6a:97ff:fee2:4bc6, ce1/3, installed 14:22:16, last update 07:52:59 ago
[20/0] via fe80::1644:8fff:fe45:8df5, ce1/4
B 10.10.10.2/32 [20/0] via fe80::ba6a:97ff:fee2:4bc6, ce1/3, installed 16:58:25, last update 07:52:59 ago
[20/0] via fe80::1644:8fff:fe45:8df5, ce1/4
B 10.10.10.5/32 [20/0] via fe80::5e17:83ff:feff:2276, ce31/1, installed 14:19:36, last update 14:19:36 ago
B 10.10.10.6/32 [20/0] via fe80::7e8d:9cff:feaa:524e, ce29/1, installed 14:21:53, last update 14:21:53 ago
B 10.10.10.11/32 [20/0] via fe80::1644:8fff:fe45:8df5, ce1/4, installed 17:05:25, last update 17:05:25 ago
B 10.10.10.12/32 [20/0] via fe80::ba6a:97ff:fee2:4bc6, ce1/3, installed 17:05:25, last update 17:05:25 ago
C 10.10.10.14/32 is directly connected, lo, installed 17:05:59, last update 17:05:59 ago
B 10.10.10.15/32 [20/0] via fe80::ba6a:97ff:fee2:4bc6, ce1/3, installed 07:42:10, last update 07:41:47 ago
[20/0] via fe80::7e8d:9cff:feaa:524e, ce29/1
[20/0] via fe80::5e17:83ff:feff:2276, ce31/1
[20/0] via fe80::1644:8fff:fe45:8df5, ce1/4
B 17.20.20.0/24 [20/0] via fe80::5e17:83ff:feff:2276, ce31/1, installed 14:19:36, last update 14:19:36 ago
B 17.21.21.0/24 [20/0] via fe80::5e17:83ff:feff:2276, ce31/1, installed 00:18:45, last update 00:18:44 ago
B 17.22.22.0/24 [20/0] via fe80::7e8d:9cff:feaa:524e, ce29/1, installed 14:21:53, last update 14:21:53 ago
B 17.23.23.0/24 [20/0] via fe80::7e8d:9cff:feaa:524e, ce29/1, installed 14:21:53, last update 14:21:53 ago
C 127.0.0.0/8 is directly connected, lo, installed 17:06:48, last update 17:06:48 ago
Gateway of last resort is not set
SuperSpine1#show ip bgp summary
BGP router identifier 10.10.10.14, local AS number 65003
BGP table version is 30
9 BGP AS-PATH entries
0 BGP community entries
4 Configured ebgp ECMP multipath: Currently set at 4
Neighbor V AS MsgRcv MsgSen TblVer InQ OutQ Up/Down State/PfxRcd Desc
ce1/4(fe80::1644:8fff:fe45:8df5) 4 65002 2746 2798 30 0 0 17:05:28 6
ce31/1(fe80::5e17:83ff:feff:2276) 4 65004 2510 2910 30 0 0 14:19:39 4
ce29/1(fe80::7e8d:9cff:feaa:524e) 4 65004 2490 2813 30 0 0 14:21:56 4
ce1/3(fe80::ba6a:97ff:fee2:4bc6) 4 65002 2742 2764 30 0 0 17:05:28 5
Total number of neighbors 4
Total number of Established sessions 4
SuperSpine1#show bgp l2vpn evpn summary
BGP router identifier 10.10.10.14, local AS number 65003
BGP table version is 337
9 BGP AS-PATH entries
0 BGP community entries
Neighbor V AS MsgRcv MsgSen TblVer InQ OutQ Up/Down State/PfxRcd AD MACIP MCAST ESI PREFIX-ROUTE Desc
ce1/4(fe80::1644:8fff:fe45:8df5) 4 65002 2746 2799 335 0 0 17:05:29 69 8 25 6 2 28
ce31/1(fe80::5e17:83ff:feff:2276) 4 65004 2510 2910 336 0 0 14:19:40 16 0 6 0 0 10
ce29/1(fe80::7e8d:9cff:feaa:524e) 4 65004 2490 2813 336 0 0 14:21:57 16 0 6 0 0 10
ce1/3(fe80::ba6a:97ff:fee2:4bc6) 4 65002 2742 2764 336 0 0 17:05:29 66 8 25 6 2 25
Total number of neighbors 4
Total number of Established sessions 4
SuperSpine1#
SuperSpine1#
SuperSpine2
SuperSpine2#show ip route
Codes: K - kernel, C - connected, S - static, R - RIP, B - BGP
O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2,
ia - IS-IS inter area, E - EVPN,
v - vrf leaked
* - candidate default
IP Route Table for VRF "default"
B 10.10.10.1/32 [20/0] via fe80::ba6a:97ff:fee2:4bd0, ce11/1, 10:15:29
[20/0] via fe80::1644:8fff:fe45:8dfb, ce14/1
B 10.10.10.2/32 [20/0] via fe80::ba6a:97ff:fee2:4bd0, ce11/1, 10:15:29
[20/0] via fe80::1644:8fff:fe45:8dfb, ce14/1
B 10.10.10.5/32 [20/0] via fe80::5e17:83ff:feff:225e, ce15/1, 10:15:28
B 10.10.10.6/32 [20/0] via fe80::7e8d:9cff:feaa:524f, ce9/1, 10:15:28
B 10.10.10.11/32 [20/0] via fe80::1644:8fff:fe45:8dfb, ce14/1, 10:15:28
B 10.10.10.12/32 [20/0] via fe80::ba6a:97ff:fee2:4bd0, ce11/1, 10:15:28
B 10.10.10.14/32 [20/0] via fe80::ba6a:97ff:fee2:4bd0, ce11/1, 10:15:29
[20/0] via fe80::7e8d:9cff:feaa:524f, ce9/1
[20/0] via fe80::5e17:83ff:feff:225e, ce15/1
[20/0] via fe80::1644:8fff:fe45:8dfb, ce14/1
C 10.10.10.15/32 is directly connected, lo, 10:15:34
B 17.20.20.0/24 [20/0] via fe80::5e17:83ff:feff:225e, ce15/1, 10:15:28
B 17.21.21.0/24 [20/0] via fe80::5e17:83ff:feff:225e, ce15/1, 00:24:34
B 17.22.22.0/24 [20/0] via fe80::7e8d:9cff:feaa:524f, ce9/1, 10:15:28
B 17.23.23.0/24 [20/0] via fe80::7e8d:9cff:feaa:524f, ce9/1, 10:15:28
C 127.0.0.0/8 is directly connected, lo, 1d15h48m
Gateway of last resort is not set
SuperSpine2#show ip bgp summary
BGP router identifier 10.10.10.15, local AS number 65003
BGP table version is 14
12 BGP AS-PATH entries
0 BGP community entries
4 Configured ebgp ECMP multipath: Currently set at 4
Neighbor V AS MsgRcv MsgSen TblVer InQ OutQ Up/Down State/PfxRcd
ce14/1 4 65002 1571 1550 14 0 0 10:10:01 10
ce15/1 4 65004 1571 1651 14 0 0 10:10:01 8
ce9/1 4 65004 1533 1601 14 0 0 10:10:01 8
ce11/1 4 65002 1583 1601 14 0 0 10:10:01 10
Total number of neighbors 4
Total number of Established sessions 4
SuperSpine2#
SuperSpine2#
SuperSpine2#show bgp l2vpn evpn summary
BGP router identifier 10.10.10.15, local AS number 65003
BGP table version is 108
12 BGP AS-PATH entries
0 BGP community entries
Neighbor V AS MsgRcv MsgSen TblVer InQ OutQ Up/Down State/PfxRcd AD MACIP MCAST ESI PREFIX-ROUTE
ce14/1 4 65002 1570 1549 107 0 0 10:09:50 61 8 25 6 2 22
ce15/1 4 65004 1571 1651 108 0 0 10:09:50 51 8 19 0 0 24
ce9/1 4 65004 1532 1601 108 0 0 10:09:50 51 8 19 0 0 24
ce11/1 4 65002 1582 1600 108 0 0 10:09:50 64 8 25 6 2 23
Total number of neighbors 4
Total number of Established sessions 4
SuperSpine2#
EVPN L3 Gateway with VXLAN Stitching - Commands
evpn-stitching
Use this command to enable EVPN L3 gateway with VXLAN stitching.
Use no parameter of this command to disable EVPN L3 gateway with VXLAN stitching.
Command Syntax
evpn-stitching
no evpn-stitching
Parameters
None
Default
None
Command Mode
VRF mode
Applicability
Introduced in OcNOS version 7.0.0.
Example
The following example shows how to enable EVPN L3 gateway with VXLAN stitching:
#configure terminal
(config)#ip vrf red
(config-vrf)#evpn-stitching
(config-vrf-evpn)#commit
(config-vrf-evpn)#
#configure terminal
(config)#ip vrf red
(config-vrf)#no evpn-stitching
(config-vrf)#commit
rd (route distinguisher)
Use this command to assign a route distinguisher (RD).
Use no parameter of this command to remove the configured RD.
Command Syntax
rd ASN:nn_or_IP-address:nn
no rd ASN:nn_or_IP-address:nn
Parameters
ASN:nn_or_IP-address:nn | AS number and an arbitrary number (for example, 100:1). Otherwise, specify a 32-bit IP address and an arbitrary number (for example, 192.16.10.1:1). |
•
Default
None
Command Mode
evpn-stitching mode
Applicability
Introduced in OcNOS version 7.0.0.
Example
The following example shows how to configure an EVPN instance with VXLAN Stitching:
#configure terminal
(config)#ip vrf red
(config-vrf)#rd 101:101
(config-vrf)#evpn-stitching
(config-vrf-evpn)#rd 102:102
(config-vrf-evpn)#commit
#configure terminal
(config)#ip vrf red
(config-vrf)#evpn-stitching
(config-vrf-evpn)#no rd 102:102
(config-vrf-evpn)#commit
route-target
Use this command to configure a route-target of type import, export, or both to the EVPN instance.
Use no parameter of this command to remove the configured the route-target.
Command Syntax
route-target (import|export|both) (ASN:nn_or_IP-address:nn)
no route-target (import|export|both) (ASN:nn_or_IP-address:nn)
Parameters
import | AImport routing information. |
export | Export routing information. |
both | Import and export routing information. |
ASN:nn_or_IP-address:nn | AS number and an arbitrary number (for example, 100:1). Otherwise, specify a 32-bit IP address and an arbitrary number (for example, 192.16.10.1:1). |
Default
None
Command Mode
evpn-stitching mode
Applicability
Introduced in OcNOS version 7.0.0.
Example
The following example is for configuring an EVPN instance with VXLAN stitching, including route-target import/export::
#configure terminal
(config)#ip vrf red
(config-vrf)#evpn-stitching
(config-vrf-evpn)#rd 102:102
(config-vrf-evpn)#route-target both 102:102
(config-vrf-evpn)#commit
#configure terminal
(config)#ip vrf red
(config-vrf)#evpn-stitching
(config-vrf-evpn)#no route-target both 102:102
(config-vrf-evpn)#commit
host-route-extend
Use this command to enable host route extension for a given L2VNI or all L2VNIs in EVPN stitching mode.
Use no parameter of this command to disable host route extension.
Command Syntax
host-route-extend-l2vni <VNI_RANGE | all>
no host-route-extend-l2vni
Parameters
VNI_RANGE | Specifies L2VNIs in the range <1-16777215> for which host route extension is enabled. |
all | Applies host route extension to all configured L2VNIs. |
Default
None
Command Mode
evpn-stitching mode
Applicability
Introduced in OcNOS version 7.0.0.
Example
The following example shows how to configure a :
#configure terminal
(config)#ip vrf red
(config-vrf)#evpn-stitching
(config-vrf-evpn)#host-route-extend-l2vni all
(config-vrf-evpn)#commit
#configure terminal
(config)#ip vrf red
(config-vrf)#evpn-stitching
(config-vrf-evpn)#no host-route-extend-l2vni all
(config-vrf-evpn)#commit
#configure terminal
(config)#ip vrf red
(config-vrf)#evpn-stitching
(config-vrf-evpn)#host-route-extend-l2vni 1-2,5,10-14
(config-vrf-evpn)#commit
#configure terminal
(config)#ip vrf red
(config-vrf)#evpn-stitching
(config-vrf-evpn)#no host-route-extend-l2vni 1-2,5,10-14
(config-vrf-evpn)#commit
translation-l3vni
Use this command to configure L3VNI translation from a local L3VNI to a DCI L3VNI.
Use no parameter of this command to disable the L3VNI translation.
Command Syntax
translation-l3vni <1-16777215>
no translation-l3vni
Parameters
<1-16777215> | Specifies the L3VNI identifier to be used for translation. |
Default
None
Command Mode
evpn-stitching mode
Applicability
Introduced in OcNOS version 7.0.0.
Example
The following example shows how to configure an L3VNI translation:
#configure terminal
(config)#ip vrf red
(config-vrf)#l3vni 1000
(config-vrf)#evpn-stitching
(config-vrf-evpn)#translation-l3vni 300
(config-vrf-evpn)#commit
%% After map/unmap of L3VNI from VRF red, interfaces are unbounded with VRF
(config-vrf-evpn)#
#configure terminal
(config)#ip vrf red
(config-vrf)#evpn-stitching
(config-vrf-evpn)#no translation-l3vni
(config-vrf-evpn)#commit
%% After map/unmap of L3VNI from VRF red, interfaces are unbounded with VRF
(config-vrf-evpn)#
exit-config-vrf-evpn-mode
Use this command to exit the EVPN stitching.
Command Syntax
exit-config-vrf-evpn-mode
Parameters
None
Default
None
Command Mode
evpn-stitching mode
Applicability
Introduced in OcNOS version 7.0.0.
Example
The following example shows how to exit an EVPN Stitching:
#configure terminal
(config)#ip vrf red
(config-vrf)#evpn-stitching
(config-vrf-evpn)#exit-config-vrf-evpn-mode
(config-vrf)#
Implementation Examples
Scenario 1: A service provider needs to extend Layer 2 services from a VXLAN-based data center fabric to an MPLS-based WAN domain without protocols merging. Within this architecture, the Border Gateway (BGW) or Stitching Gateway performs encapsulation translation while preserving EVPN route semantics.
Use Case 1: By establishing separate BGP sessions for the DC and WAN, the BGW facilitates the exchange of EVPN Type-2 MAC routes. The BGW imports MAC routes from the VXLAN fabric and re-advertises them to the MPLS domain with appropriate service labels. This ensures MAC/IP mobility and route consistency for workloads spanning across heterogeneous data centers.
Scenario 2: A customer wants traffic from an L3VPN site to reach specific hosts in a VXLAN-based data center where reachability is discovered via Type-2 MAC-IP routes.
Use Case 2: The Border Gateway installs a /32 prefix route derived from the received Type-2 MAC-IP route into the associated IP-VRF. It then redistributes this prefix into the VPNv4/v6 address family toward the DCI domain. This allows seamless Layer 3 connectivity where the BGW acts as the next hop for both the VXLAN fabric and the MPLS WAN.
Scenario 3: A multi-site data center fabric requires scalable Layer 3 routing between sites across an MPLS backbone.
Use Case 3: The Border Gateway re-originates EVPN Type-5 routes imported from the VXLAN fabric into the VPNv4/v6 address family to be advertised to the DCI domain. In the reverse direction, VPNv4/v6 routes from the WAN are imported into the IP-VRF and re-advertised as Type-5 routes into the VXLAN fabric. This avoids protocol conversion while maintaining independent scaling per domain.
Troubleshooting
1. The gateway will not function unless specific global NVO parameters are active and the system has been restarted.
• Verify nvo vxlan enable and nvo vxlan irb are configured in the running configuration.
• Confirm the node was rebooted after these commands were committed.
2. If the translation tunnel does not establish between sites, verify that the peer type fabric external is configured on the BLEAFs facing the core.
Glossary
The following provides definitions for key terms or abbreviations and their meanings used throughout this document:
Key Terms/Acronym | Description |
|---|
ACL | Access Control List |
BGP | Border Gateway Protocol |
BLEAF | Border Leaf |
DPATH | Domain Path |
EVPN | Ethernet Virtual Private Network |
IRB | Integrated Routing and Bridging |
L3VNI | Layer 3 Virtual Network Identifier |
NVO | Network Virtualization Overlay |
QoS | Quality of Service |
SOO | Site-of-Origin |
VRF | Virtual Routing and Forwarding |
VTEP | VXLAN Tunnel End Point |
VXLAN | Virtual Extensible LAN |