I Currently Have a Running server with multiple KVMs running different Servers within each, now I would like to add another separate interface to serve another group of KVMs on the same server.
There are Currently Three Nic cards in the Box
Nic 1 -- Lan 1 -- Host only
Nic 2 -- Lan 1 -- br0 for the first set of KVMs
Nic 3 -- Lan 2 -- br1 for the second set of KVMs
When I run this one of the Bridges shuts down, normally br0 taking the entire first set offline.
This is my current interfaces:
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth1
iface eth1 inet static
address 192.168.1.20
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1
# dns-* options are implemented by the resolvconf package, if installed
dns-nameservers 8.8.8.8 4.2.2.6 8.8.4.4
dns-search firezen.com
auto eth0
iface eth0 inet manual
auto br0
iface br0 inet static
address 192.168.1.21
network 192.168.1.0
netmask 255.255.255.0
broadcast 192.168.1.255
#gateway 192.168.1.1
bridge_ports eth0
bridge_stp off
bridge_fd 0
bridge_maxwait 0
iface eth2 inet manual
#auto br1
#iface br1 inet static
# address 192.168.1.57
# network 192.168.1.0
# netmask 255.255.255.0
# broadcast 192.168.1.255
# gateway 192.168.1.1
# bridge_ports eth2
# bridge_stp off
# bridge_fd 0
# bridge_maxwait 0
#auto br1
#iface br1 inet dhcp
# bridge_ports eth2
# bridge_stp off < This was what I was using lastly, could not get
# bridge_fd 0 the above to work.
# bridge_maxwait 0
Both networks are 192.168.1.x based. If you need any other information Please let me know, and Thank you in advanced.