After a lot of research and testing I am reaching out to the community to find if anyone has LACP experience setting up LACP with paramatures and working.
We are utilizing a Cisco switch, cisco-sw-sx350x-52, and port channels. We have solid working LACP connection to our hardware with Ubuntu 2024.04, netplan and Incus.
Example of Ubuntu 2024.04 netplan LACP:
bonds:
bond0:
dhcp4: no
dhcp6: no
interfaces:
- eno5
- eno6
parameters:
mode: 802.3ad
lacp-rate: fast
transmit-hash-policy: layer2+3
mii-monitor-interval: 100
min-links: 1
The vlan we have based on the bond “instances” is setup but we are finding the packets are not reaching the switch, we are believing it has to do with the LACP is not getting set up properly. I did not add the mii config as I am not sure how it is spelled out yet. I still need to learn how to convert the API into workable yaml settings.
Has others been able to setup a proper LACP yet with IncusOS with additional parameters?
Hmm, I’m not sure where you’re getting some of the keys you’re setting.
^ Those are the fields available when configuring a bond.
We default to a fast LACP rate and to 3+4 balancing internally.
I’m assuming you’re setting this all up through a network.yaml seed as otherwise you’d need to specify MAC addresses rather than interface names.
It’s probably a bit different from your case as I have an IP on the untagged VLAN on top of having a couple of VLAN interfaces. Also I’m in an IPv6-only environment.
I was trying to refrain from using MAC address as much as we could for enterprise roll out but for testing, why not. The current “install” completes with “successful”, including the new incusos interface and the proper IP; but not able to connect for NTP or Secure Boot updates.
I have to look again where I received the wrong parms. I had looked at the API options but I was not sure if it were all inclusive. Good to know. It does make sense why all the examples do not add the options since they are default.
Thank you for sharing your networking. I can test first thing early tomorrow morning and let you know.