W
wally
Guest
Have a cluster both nodes have 2 NIC I am setting up KVM clients and have 2 different networks. I can create VM and bind to vmbr0 but I am not seeing vmbr1 via the web gui, how can I remedy this. Here is an example of my /etc/network/interfaces file:
cat /etc/network/interfaces
# network interface settings
auto lo
iface lo inet loopback
iface eth0 inet manual
iface eth1 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.68.251
netmask 255.255.255.0
gateway 192.168.68.1
bridge_ports eth0
bridge_stp off
bridge_fd 0
auto vmbr1
iface vmbr1 inet static
address 192.168.99.251
netmask 255.255.255.0
gateway 192.168.99.1
bridge_ports eth1
bridge_stp off
bridge_fd 0
I want to create some VM and have them only use vmbr0 others I want to use vmbr1 but again the Bridge section just shows vmbr0 and NAT (User Mode Network).
cat /etc/network/interfaces
# network interface settings
auto lo
iface lo inet loopback
iface eth0 inet manual
iface eth1 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.68.251
netmask 255.255.255.0
gateway 192.168.68.1
bridge_ports eth0
bridge_stp off
bridge_fd 0
auto vmbr1
iface vmbr1 inet static
address 192.168.99.251
netmask 255.255.255.0
gateway 192.168.99.1
bridge_ports eth1
bridge_stp off
bridge_fd 0
I want to create some VM and have them only use vmbr0 others I want to use vmbr1 but again the Bridge section just shows vmbr0 and NAT (User Mode Network).