解决 PVE 下 eno1 Detected Hardware Unit Hang 的问题

这个问题是 Intel 网卡特有的问题,e1000e 的 driver 在网络流量过大时就会出现这个问题。从内核 3.10 就有这种情况,一直到目前我的内核(5.4.41)仍然没有解决。


解决方法:


/etc/network/interfaces file:

iface eno1 inet manual
post-up ethtool -K eno1 tso off gso off

 

nano /etc/network/interfaces

iface eno1 inet manual
    post-up /usr/bin/logger -p debug -t ifup "Disabling offload for eno1" && /sbin/ethtool -K $IFACE tso off gso off gro off && /usr/bin/logger -p debug -t ifup "Disabled offload for eno1"

© 版权声明