I added another NIC so I am able to have a Windows VM with a "floating" (change the IP address of Windows to have access to physical computers on different subnets instead of making changes to Proxmox and reboot each time) subnet.
While downloading updates for the new VM, the Internet was dropped and wouldn't come back up until I reboot. I tried to download updates again only to have the same thing happen. I decided to just do some browsing the Internet for and about 10 minutes later, the connection dropped.
My /etc/network/interfaces look like this:
While downloading updates for the new VM, the Internet was dropped and wouldn't come back up until I reboot. I tried to download updates again only to have the same thing happen. I decided to just do some browsing the Internet for and about 10 minutes later, the connection dropped.
My /etc/network/interfaces look like this:
Code:
# network interface settings
auto lo
iface lo inet loopback
iface eth0 inet manual
iface eth1 inet manual
iface eth2 inet manual
auto eth3
iface eth3 inet manual
auto bond0
iface bond0 inet static
address 192.168.3.2
netmask 255.255.255.0
slaves eth1 eth2
bond_miimon 100
bond_mode 802.3ad
auto vmbr0
iface vmbr0 inet static
address 192.168.2.2
netmask 255.255.255.0
gateway 192.168.1.1
bridge_ports eth0
bridge_stp off
bridge_fd 0
auto vmbr1
iface vmbr1 inet manual
bridge_ports eth3
bridge_stp off
bridge_fd 0