Connectivity Guide

Table Of Contents
OS10(config-router-bgp-65002)# neighbor 22.22.22.22
OS10(config-router-neighbor)# remote-as 65001
OS10(config-router-neighbor)# update-source loopback 0
OS10(config-router-neighbor)# no shutdown
OS10(config-router-neighbor)# send-community extended
OS10(config-router-neighbor)# address-family ipv4 unicast
OS10(config-router-bgp-neighbor-af)# no activate
OS10(config-router-bgp-neighbor-af)# exit
OS10(config-router-neighbor)# address-family l2vpn evpn
OS10(config-router-bgp-neighbor-af)# activate
OS10(config-router-bgp-neighbor-af)# allowas-in 1
OS10(config-router-bgp-neighbor-af)# exit
OS10(config-router-neighbor)# exit
OS10(config-router-bgp-65002)# exit
5. Congure a VXLAN virtual network with a remote tunnel endpoint
OS10(config)# virtual-network 10000
OS10(config-vn)# vxlan-vni 100
OS10(config-vn-vxlan-vni-100)# exit
OS10(config-vn)# exit
6. Assign VLAN member interfaces to a virtual network
OS10(config)# interface vlan100
OS10(config-if-vl-100)# virtual-network 10000
OS10(config-if-vl-100)# exit
7. Congure access ports as members for a switch-scoped VLAN-to-VNI mapping
OS10(config)# interface ethernet 1/1/5
OS10(conf-if-eth1/1/5)# switchport mode trunk
OS10(conf-if-eth1/1/5)# switchport access vlan 100
OS10(conf-if-eth1/1/5)# exit
8. Add access ports to the VXLAN virtual network
OS10(config)# virtual-network 10000
OS10(conf-vn-10000)# member-interface ethernet 1/1/5 untagged
OS10(conf-vn-10000)# exit
9. Congure upstream network-facing ports
OS10(config)# interface ethernet1/1/1
OS10(conf-if-eth1/1/1)# no shutdown
OS10(conf-if-eth1/1/1)# no switchport
OS10(conf-if-eth1/1/1)# mtu 1650
OS10(conf-if-eth1/1/1)# ip address 17.1.1.1/24
OS10(conf-if-eth1/1/1)# exit
OS10(config)# interface ethernet1/1/2
OS10(conf-if-eth1/1/2)# no shutdown
OS10(conf-if-eth1/1/2)# no switchport
OS10(conf-if-eth1/1/1)# mtu 1650
OS10(conf-if-eth1/1/2)# ip address 18.1.1.1/24
OS10(conf-if-eth1/1/2)# exit
10. Congure EVPN
Manually congure the EVPN instance, Route Distinguisher, and Route Target:
OS10(config)# evpn
OS10(config-evpn)# evi 10000
OS10(config-evpn-evi-10000)# vni 100
OS10(config-evpn-evi-10000)# rd 1.1.1.1:10000
OS10(config-evpn-evi-10000)# route-target 65002:16777316 both
OS10(config-evpn-evi-10000)# exit
OS10(config-evpn)# exit
VXLAN
571