the VMs.
While I've comfortable with networking, virtualization and linux, I'm a relative newbie to both proxmox and Debian. I'm clearly missing something on configuring the network and am hoping to get some help.
What I'm trying to do is the following:
I have 4 nic's in the proxmox server, and I'm trying to create 2 bonds of 2 nic's each. 1 for Storage only (vlan6) and then 1 for everything else. Server management is in vlan1 and then I'm hoping to use vlan1 11 for VM's. The subnets used are as follows:
vlan1: 10.9.0.0/24
vlan11: 10.9.11.0/24
Both on bond0
vlan6: 10.6.6.0/24
Bond1:
LACP is working fine on both sides (I've got a Cisco 3750 switch and have used etherchannel for years).
What doesn't work is vlan11 for the vm's. I'm sure that I've just misunderstand the 'container' concept here... and basically vmbr11 doesn't seem to work and I can't see any traffic on vlan11.
Here's my interfaces file:
# network interface settings
auto lo
iface lo inet loopback
iface eth0 inet manual
iface eth1 inet manual
iface eth2 inet manual
iface eth3 inet manual
auto bond0
iface bond0 inet manual
slaves eth0 eth3
bond_miimon 100
# Bond Mode 802.3ad
bond_mode 4
pre-up ifup eth0 eth3
post-down ifdown eth0 eth3
auto bond0.11
iface bond0.11 inet manual
vlan-raw-device bond0
auto bond1
iface bond1 inet static
address 10.9.6.10
netmask 255.255.255.0
slaves eth1 eth2
bomd_miimon 100
bond_mode 802.3ad
pre-up ifup eth1 eth2
post-down ifdown eth1 eth2
auto vmbr0
iface vmbr0 inet static
address 10.9.0.10
netmask 255.255.255.0
gateway 10.9.0.254
bridge_ports bond0
bridge_stp off
bridge_fd 0
auto vmbr11
iface vmbr11 inet static
address 10.9.11.253
netmask2 255.255.255.0
bridge_ports bond0.11
bridge_stp off
bridge_fd 0
I've tried vmbr11 both with and without an address...
thanks in advance.
While I've comfortable with networking, virtualization and linux, I'm a relative newbie to both proxmox and Debian. I'm clearly missing something on configuring the network and am hoping to get some help.
What I'm trying to do is the following:
I have 4 nic's in the proxmox server, and I'm trying to create 2 bonds of 2 nic's each. 1 for Storage only (vlan6) and then 1 for everything else. Server management is in vlan1 and then I'm hoping to use vlan1 11 for VM's. The subnets used are as follows:
vlan1: 10.9.0.0/24
vlan11: 10.9.11.0/24
Both on bond0
vlan6: 10.6.6.0/24
Bond1:
LACP is working fine on both sides (I've got a Cisco 3750 switch and have used etherchannel for years).
What doesn't work is vlan11 for the vm's. I'm sure that I've just misunderstand the 'container' concept here... and basically vmbr11 doesn't seem to work and I can't see any traffic on vlan11.
Here's my interfaces file:
# network interface settings
auto lo
iface lo inet loopback
iface eth0 inet manual
iface eth1 inet manual
iface eth2 inet manual
iface eth3 inet manual
auto bond0
iface bond0 inet manual
slaves eth0 eth3
bond_miimon 100
# Bond Mode 802.3ad
bond_mode 4
pre-up ifup eth0 eth3
post-down ifdown eth0 eth3
auto bond0.11
iface bond0.11 inet manual
vlan-raw-device bond0
auto bond1
iface bond1 inet static
address 10.9.6.10
netmask 255.255.255.0
slaves eth1 eth2
bomd_miimon 100
bond_mode 802.3ad
pre-up ifup eth1 eth2
post-down ifdown eth1 eth2
auto vmbr0
iface vmbr0 inet static
address 10.9.0.10
netmask 255.255.255.0
gateway 10.9.0.254
bridge_ports bond0
bridge_stp off
bridge_fd 0
auto vmbr11
iface vmbr11 inet static
address 10.9.11.253
netmask2 255.255.255.0
bridge_ports bond0.11
bridge_stp off
bridge_fd 0
I've tried vmbr11 both with and without an address...
thanks in advance.