I need to configure two subnets to be used by my KVM machines.
Initially I configured the vmbr0 interface with a configuration like this:
It worked just perfect and all the VMs assigned to vmbr0 have network connection. Later I got another subnet and tried to add an additional network interface like:
Unfortunately any VM assigned to vmbr1 does seems to have a network.
Anyone have an idea what's wrong with my configuration?
Initially I configured the vmbr0 interface with a configuration like this:
Code:
auto vmbr0
iface vmbr0 inet static
address xxx.xxx.216.48
netmask 255.255.255.248
bridge_ports none
bridge_stp off
bridge_fd 0
It worked just perfect and all the VMs assigned to vmbr0 have network connection. Later I got another subnet and tried to add an additional network interface like:
Code:
auto vmbr1
iface vmbr1 inet static
address xxx.xxx.108.0
netmask 255.255.255.248
bridge_ports none
bridge_stp off
bridge_fd 0
Unfortunately any VM assigned to vmbr1 does seems to have a network.
Anyone have an idea what's wrong with my configuration?