I need to create a persistent network bridge for Virtual machines (libvirt)
So this bridge does not need any physical ports, connections will be routed for this bridge.
If I set this up manually, it works as I described. However I can't get this to persist between reboots.
I have created the bridge in /etc/network/interfaces:
auto vm-bridge
iface vm-bridge inet static
address 10.1.0.1
broadcast 10.1.0.3
netmask 255.255.255.252
gateway 10.1.0.1
However the interface is not created when the host reboots. All reference on the internet are adding bridge_ports to the bridge, so I'm not sure what I'm missing.