Network interfaces might cause problems in some on-prem environments, especially if the servers are provisioned by VMware. Please review the checksum settings of the following interfaces:
ethtool --show-offload ens192 | grep tx-checksum
ethtool --show-offload cni0 | grep tx-checksum
ethtool --show-offload flannel.1 | grep tx-checksum
If they are enabled, please disable them and go with stanctl up again.
sudo ethtool -K ens192 tx-checksumming off
sudo ethtool -K flannel.1 tx-checksumming off
sudo ethtool -K cni0 tx-checksumming off
Note: The cni0
and flannel.1
interfaces are created each time during the k3s setup process, so make sure checksum offloading is disabled properly during or immediately after setup.
** The commands provided are based on Rhel. If you encounter errors on Ubuntu, please find the appropriate Ubuntu equivalents, as offloading feature names or syntax might differ.