Hi there.
I have my Proxmox VE (latest 7.3) pre-configured for LAGGs with LACP, currently only with a single interface assigned to
All works fine so far and «Apply Configuration» works flawlessly, generating such
But ifupdown2 reports:
Should I worry about that warning?
How can I add
My second question is, why can't I configure LACP fast mode on the bond0 interface through PVE webUI?
If I have LACP fast rate set on the other side (LAGG on switch ports), is it really required to have it set to fast as well on PVE bond0 side, or is that not really required, as heartbeats are anyway sent from the switch every second and it would care about it.
And instead of fine-tuning the bond0 interfaces in
I have my Proxmox VE (latest 7.3) pre-configured for LAGGs with LACP, currently only with a single interface assigned to
bond0
slaves, so I can go live by adding the second interface once I (physically) migrate to new switches (Aruba 6300 Series).All works fine so far and «Apply Configuration» works flawlessly, generating such
/etc/network/interfaces
:
Code:
auto lo
iface lo inet loopback
auto eno1
iface eno1 inet manual
iface eno2 inet manual
auto bond0
iface bond0 inet manual
bond-slaves eno1
bond-miimon 100
bond-mode 802.3ad
bond-xmit-hash-policy layer2
auto vmbr0
iface vmbr0 inet static
address XXX.XXX.XXX.204/26
gateway XXX.XXX.XXX.193
bridge-ports bond0
bridge-stp off
bridge-fd 0
auto vmbr1
iface vmbr1 inet static
address 10.0.0.204/24
bridge-ports eno2
bridge-stp off
bridge-fd 0
But ifupdown2 reports:
Bash:
$ ifreload -a
warning: bond0: attribute bond-min-links is set to '0'
Should I worry about that warning?
How can I add
bond-min-links 1
to the bond0 interface through PVE webUI? Is it recommended to override the default bond-min-links 0
?My second question is, why can't I configure LACP fast mode on the bond0 interface through PVE webUI?
bond-lacp-rate 1
seems to be what I am searching for (according to https://forum.proxmox.com/threads/bond-lacp-rate.17360/#post-88508) - Why such an important setting is not available in the webUI, at least under "Advanced"?If I have LACP fast rate set on the other side (LAGG on switch ports), is it really required to have it set to fast as well on PVE bond0 side, or is that not really required, as heartbeats are anyway sent from the switch every second and it would care about it.
And instead of fine-tuning the bond0 interfaces in
/etc/network/interfaces
manually, would there be a way to change the defaults for min-links and lacp-rate on kernel level?