I want to connect my Proxmox host to my TP-Link switch via two nics as LACP LAG and configured Proxmox like that:
I did that via the GUI:
However, whenever I configure the LAG on my TP-Link Switch, I cannot reach Proxmox anymore. This only works when LACP for the two ports is disabled.
I'm wondering about two things:
Why can I even reach Proxmox as long as I did not configure my switch to use LACP LAG?
Why can't I reach Proxmox anymore if I enable the LAG?
This how I configured LAG on the switch:
Only if I remove this configuration, I can reach the Proxmox host. Is it possible that LAG on the Proxmox host is not active, even though I configured it via the GUI to do so? I already restarted the Proxmox host already multiple times, no change.
This is the output of ip a
Any help is greatly appreciated.
Code:
auto lo
iface lo inet loopback
auto enP3p49s0
iface enP3p49s0 inet manual
auto enP4p65s0
iface enP4p65s0 inet manual
auto bond0
iface bond0 inet manual
bond-slaves enP3p49s0 enP4p65s0
bond-miimon 100
bond-mode 802.3ad
bond-xmit-hash-policy layer2
#Switch Ports 5 6
auto vmbr0
iface vmbr0 inet static
address 192.168.20.33/24
gateway 192.168.20.1
bridge-ports bond0
bridge-stp off
bridge-fd 0
I did that via the GUI:
However, whenever I configure the LAG on my TP-Link Switch, I cannot reach Proxmox anymore. This only works when LACP for the two ports is disabled.
I'm wondering about two things:
Why can I even reach Proxmox as long as I did not configure my switch to use LACP LAG?
Why can't I reach Proxmox anymore if I enable the LAG?
This how I configured LAG on the switch:
Only if I remove this configuration, I can reach the Proxmox host. Is it possible that LAG on the Proxmox host is not active, even though I configured it via the GUI to do so? I already restarted the Proxmox host already multiple times, no change.
This is the output of ip a
Code:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: enP4p65s0: <BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP> mtu 1500 qdisc mq master bond0 state UP group default qlen 1000
link/ether c0:74:2b:ff:5c:3b brd ff:ff:ff:ff:ff:ff permaddr c0:74:2b:ff:5c:3a
3: enP3p49s0: <BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP> mtu 1500 qdisc mq master bond0 state UP group default qlen 1000
link/ether c0:74:2b:ff:5c:3b brd ff:ff:ff:ff:ff:ff
4: bond0: <BROADCAST,MULTICAST,MASTER,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP group default qlen 1000
link/ether c0:74:2b:ff:5c:3b brd ff:ff:ff:ff:ff:ff
5: vmbr0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
link/ether c0:74:2b:ff:5c:3b brd ff:ff:ff:ff:ff:ff
inet 192.168.20.33/24 scope global vmbr0
valid_lft forever preferred_lft forever
inet6 fe80::c274:2bff:feff:5c3b/64 scope link
valid_lft forever preferred_lft forever
Any help is greatly appreciated.