Hi, I am using Proxmox just for 2 or 3 Month now. I love it, its Open Source and uses ZFS. I've used ESXi for about 7 years before I moved to PVE.
Everything was running fine. I wanted to care about networking performance and activate Bonding, wich I used all the time under Vmware.
My old Config looks like that. vLans are working and my VMs and LXC Container got IPs from DHCP.
Wanted to start with balance-rr first and then move on to LACP later
(There are more vLans to configure, but I wanted to get one running and move on)
Everything was running fine. I wanted to care about networking performance and activate Bonding, wich I used all the time under Vmware.
My old Config looks like that. vLans are working and my VMs and LXC Container got IPs from DHCP.
Code:
auto lo
iface lo inet loopback
iface enp9s0 inet manual
iface enp5s0 inet manual
auto vmbr0
iface vmbr0 inet static
address 10.2.0.11
netmask 255.255.255.0
gateway 10.2.0.254
bridge-ports bond0
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
Code:
auto lo
iface lo inet loopback
iface enp9s0 inet manual
iface enp5s0 inet manual
auto bond0
iface bond0 inet manual
bond-slaves enp5s0 enp9s0
bond-miimon 100
bond-mode balance-rr
auto bond0.40
iface bond0.40 inet manual
vlan-raw-device bond0
auto vmbr0
iface vmbr0 inet static
address 10.2.0.11
netmask 255.255.255.0
gateway 10.2.0.254
bridge-ports bond0
bridge-stp off
bridge-fd 0
auto vmbr40
iface vmbr40 inet manual
bridge_ports bond0.40
bridge_stp off
bridge_fd 0