Hi, I'm trying to connect my Promox machine via Link Aggregation to a HP1810 switch. For this purpose, I have configured two ports as trunk (LACP Active) in the web interface of the switch and link aggregation on Proxmox. netstat -i suggests that this is working:
However, what concers me is that there is an error in syslog when the bond is started:
Anything I should do about this?
interfaces (ifupdown2 is installed):
Thanks!
Code:
Iface MTU RX-OK RX-ERR RX-DRP RX-OVR TX-OK TX-ERR TX-DRP TX-OVR Flg
bond0 1500 68517 0 150 0 74159 0 2 0 BMmRU
eno1 1500 32572 0 0 0 64806 0 0 0 BMsRU
eno2 1500 35945 0 0 0 9352 0 0 0 BMsRU
However, what concers me is that there is an error in syslog when the bond is started:
Code:
bond0: Warning: No 802.3ad response from the link partner for any adapters in the bond
Anything I should do about this?
interfaces (ifupdown2 is installed):
Code:
auto lo
iface lo inet loopback
iface enp1s0f4u4 inet manual
auto eno1
iface eno1 inet manual
auto eno2
iface eno2 inet manual
auto eno3
iface eno3 inet manual
auto eno4
iface eno4 inet manual
auto bond0
iface bond0 inet manual
bond-slaves eno1 eno2
bond-miimon 100
bond-mode 802.3ad
bond-xmit-hash-policy layer2+3
auto vmbr0
iface vmbr0 inet static
address 192.168.2.33/24
gateway 192.168.2.1
bridge-ports bond0
bridge-stp off
bridge-fd 0
Thanks!