set interfaces bridge br14 description 'For-vxlan14' set interfaces ethernet eth0 address '22.22.22.5/24' set interfaces ethernet eth2 bridge-group bridge 'br14' set protocols bgp 65001 parameters default no-ipv4-unicast set protocols bgp 65001 parameters router-id '22.22.22.5' set protocols bgp 65001 peer-group fabric capability extended-nexthop set protocols bgp 65001 peer-group fabric remote-as '65001' set system host-name 'bottom' ### Autostart commands ### sudo nano -c /config/scripts/vyos-postconfig-bootup.script sudo ip link add vxlan14 type vxlan id 14 dstport 8472 local 22.22.22.5 nolearning sudo ip link set up dev vxlan14 sudo brctl addif br14 vxlan14 vtysh -c "conf t" -c "router bgp 65001" -c "neighbor 22.22.22.254 peer-group fabric" vtysh -c "conf t" -c "router bgp 65001" -c " address-family l2vpn evpn" -c " neighbor fabric activate" -c " advertise-all-vni " ### Show vtysh ### ! router bgp 65001 bgp router-id 22.22.22.5 no bgp default ipv4-unicast neighbor fabric peer-group neighbor fabric remote-as 65001 neighbor fabric capability extended-nexthop neighbor 22.22.22.254 peer-group fabric ! address-family l2vpn evpn neighbor fabric activate advertise-all-vni exit-address-family !