As Linux is all about managing configuration files, here are the output of three of them, where all the config for the lab is contained: ---------- cumulus@VX2:mgmt-vrf:~$ cat /etc/network/interfaces auto lo iface lo inet loopback address 10.0.0.22/32 address fc00::10:0:0:22/128 auto eth0 iface eth0 address 192.168.44.91/24 vrf mgmt auto swp1 iface swp1 bridge-vids 23-24 222 444 666 auto CUST iface CUST vrf-table auto auto bridge iface bridge bridge-ports swp1 vni123 vni456 vni789 bridge-vids 23-24 222 444 666 bridge-vlan-aware yes auto mgmt iface mgmt address 127.0.0.1/8 vrf-table auto auto vlan23 iface vlan23 address 10.22.33.22/24 vlan-id 23 vlan-raw-device bridge auto vlan24 iface vlan24 address 10.22.44.22/24 vlan-id 24 vlan-raw-device bridge auto vlan222 iface vlan222 address 192.168.0.254/24 address fc00::192:168:0:254/112 address-virtual 00:00:5E:00:01:23 192.168.0.250/24 hwaddress 00:20:00:01:23:02 vlan-id 222 vlan-raw-device bridge vrf CUST auto vlan444 iface vlan444 address 192.168.1.254/24 address fc00::192:168:1:254/112 address-virtual 00:00:5E:00:04:56 192.168.1.250/24 hwaddress 00:20:00:04:56:02 vlan-id 444 vlan-raw-device bridge vrf CUST auto vlan666 iface vlan666 ip6-forward off ip-forward off vlan-id 666 vlan-raw-device bridge auto vni123 iface vni123 bridge-access 222 bridge-arp-nd-suppress on bridge-learning off mstpctl-bpduguard yes mstpctl-portbpdufilter yes vxlan-id 123 vxlan-local-tunnelip 10.0.0.22 auto vni456 iface vni456 bridge-access 444 bridge-arp-nd-suppress on bridge-learning off mstpctl-bpduguard yes mstpctl-portbpdufilter yes vxlan-id 456 vxlan-local-tunnelip 10.0.0.22 auto vni789 iface vni789 bridge-access 666 bridge-arp-nd-suppress on bridge-learning off mstpctl-bpduguard yes mstpctl-portbpdufilter yes vxlan-id 789 vxlan-local-tunnelip 10.0.0.22 cumulus@VX2:mgmt-vrf:~$ sudo cat /etc/frr/daemons zebra=yes bgpd=yes ospfd=no ospf6d=no ripd=no ripngd=no isisd=no pimd=no ldpd=no nhrpd=no eigrpd=no babeld=no cumulus@VX2:mgmt-vrf:~$ sudo cat /etc/frr/frr.conf frr version 3.2+cl3u4 frr defaults datacenter hostname VX2 username cumulus nopassword ! service integrated-vtysh-config ! log syslog ! router bgp 65012 bgp router-id 10.0.0.22 coalesce-time 1000 bgp bestpath as-path multipath-relax neighbor 10.0.0.11 remote-as 65011 neighbor 10.0.0.11 password OVERLAY neighbor 10.0.0.11 ebgp-multihop 5 neighbor 10.0.0.11 update-source lo neighbor 10.22.33.33 remote-as 65001 neighbor 10.22.33.33 password FABRIC neighbor 10.22.44.44 remote-as 65002 neighbor 10.22.44.44 password FABRIC ! address-family ipv4 unicast network 10.0.0.22/32 no neighbor 10.0.0.11 activate maximum-paths 2 exit-address-family ! address-family l2vpn evpn neighbor 10.0.0.11 activate vni 789 rd 10.0.0.22:789 route-target import 65000:789 route-target export 65000:789 exit-vni vni 456 rd 10.0.0.22:456 route-target import 65000:456 route-target export 65000:456 exit-vni vni 123 rd 10.0.0.22:123 route-target import 65000:123 route-target export 65000:123 exit-vni advertise-all-vni advertise-default-gw exit-address-family ! line vty ! -------