Hey all, I'm having trouble configuring a VM Bridge off of a LACP interface. I'll post my /etc/network/interfaces below, as I'm sure that will help. I'm using a TP-Link TL-SG1016DE operating a 2-port trunk, connecting to a PRO-1000 dual-port NIC. I'm not having any trouble with the interface or the actual LACP setup, as I can connect to the node's IP address (192.168.1.51) that's been assigned to the bond and get both SSH and the web-ui. My issue is that when I switch a KVM (don't have any OpenVZ setup, so I haven't tried) machine over to vmbr1 which I set up to link to bond0, I can't send or receive any packets. The minute I switch it back to vmbr0, which is set up to the onboard nic (I think it's a realtek, if memory serves), packets flow fine. It's not a huge issue, as I'm using this in a lab environment, but I'd like to be able to stop using the onboard nic for anything outside my management vlan.
# cat /etc/network/interfaces
I'm sure I'm missing something simple. I'm still very new to the non-basic (anything above subnetting, tbh) network topics.
Thanks,
Sgt
# cat /etc/network/interfaces
Code:
# network interface settings
auto lo
iface lo inet loopback
iface eth0 inet manual
iface eth1 inet manual
iface eth2 inet manual
auto bond0
iface bond0 inet manual
slaves eth1 eth2
bond-miimon 100
bond-mode 802.3ad
bond-downdelay 200
bond-updelay 200
bond-lacp-rate 4
auto vmbr0
iface vmbr0 inet static
address 192.168.1.50
netmask 255.255.254.0
bridge_ports eth0
bridge_stp off
bridge_fd 0
auto vmbr1
iface vmbr1 inet static
address 192.168.1.51
netmask 255.255.254.0
gateway 192.168.0.1
bridge_ports bond0
bridge_stp off
bridge_fd 0
I'm sure I'm missing something simple. I'm still very new to the non-basic (anything above subnetting, tbh) network topics.
Thanks,
Sgt