set interfaces bridge br12 description 'For-vxlan12' set interfaces ethernet eth0 address '22.22.22.4/24' set interfaces ethernet eth1 bridge-group bridge 'br12' set protocols bgp 65001 parameters default no-ipv4-unicast set protocols bgp 65001 parameters router-id '22.22.22.4' set protocols bgp 65001 peer-group fabric capability extended-nexthop set protocols bgp 65001 peer-group fabric remote-as '65001' set system config-management commit-revisions '100' set system console device ttyS0 speed '9600' set system host-name 'right-r2' ### Autostart commands ### sudo nano -c /config/scripts/vyos-postconfig-bootup.script sudo ip link add vxlan12 type vxlan id 12 dstport 8472 local 22.22.22.4 nolearning sudo ip link set up dev vxlan12 sudo brctl addif br12 vxlan12 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.4 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 !