pOpYRaid
Members
-
Joined
-
Last visited
Solutions
-
pOpYRaid's post in SSH fails to start on boot was marked as the answerFigured out whats going on.
I had the following in my /boot/config/go file:
# enable IEEE 802.3az (Energy Efficient Ethernet): Could be incompatible to LACP bonds and break SSH daemon! for i in /sys/class/net/eth?; do dev=$(basename $i); [[ $(echo $(ethtool --show-eee $dev 2> /dev/null) | grep -c "Supported EEE link modes: 1") -eq 1 ]] && ethtool --set-eee $dev eee on; done
This restarted the NIC and brougth it down/up during boot, which affected sshd.
After comment it out, it works now (tried 3 reboots and sshd was running).
Disabling EEE did not hurt idle power consumption which is basically the same with or without.