you should add:
1. vmbr0 to your VM & your VLAN
or
2. add simple SDN:
- zones->add->simple
- Vnets->create->choose name, and the simple zones you have created
- create subnet for the Vnets
-SNAT: give internet to your future VM
View attachment 70193
-> then DHCP range between 192.168.200.1 - 192.168.200.253
after add the 2 bridges to your VM vxlan and vnet snat, and u should have internet + communication between vm
auto lo
iface lo inet loopback
iface enp61s0 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.100.100/24
gateway 192.168.100.254
bridge-ports enp61s0
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
post-up echo 1 > /proc/sys/net/ipv4/ip_forward
post-up iptables -t nat -A POSTROUTING -s '192.168.22.0/24' -o vmbr0 -j MASQUERADE
post-down iptables -t nat -D POSTROUTING -s '192.168.22.0/24' -o vmbr0 -j MASQUERADE
post-up iptables -t raw -I PREROUTING -i fwbr+ -j CT --zone 1
post-down iptables -t raw -D PREROUTING -i fwbr+ -j CT --zone 1
auto vmbr0.22 # vlan: 22 is the TAG
iface vmbr0.22 inet static
address 192.168.22.254
netmask 255.255.255.0
Did you attach vmbr0 & VLAN to your VM?
i never used vxlan but i suppose it work the same as vlan