Linux VLAN interfaces

Lets create a VLAN sub interface on a physical interface eth0 then add this new vlan subinterface eth0.10 to a new bridge br10

We might want to do this so that VM's running on this host have access to this VLAN

1ip link add link eth0 name eth0.10 type vlan id 10
2ip link set dev eth0.10 up
3brctl addbr br10
4brctl addif br10 eth0.10

A great source of info for VXLAN stuff is here https://vincent.bernat.ch/en/blog/2017-vxlan-linux