Linux教程

Linux_PVE_e1000e网卡Hang

本文主要是介绍Linux_PVE_e1000e网卡Hang,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

Linux_PVE_e1000e网卡Hang

转载注明来源: 本文链接 来自osnosn的博客,写于 2021-04-30.

搜到的文章(关于Linux中e1000e内核驱动错误)

  • 1000e Reset adapter unexpectedly / Detected Hardware Unit Hang
    提到只需要 tso off。也有提到 Disabling Enhanced C1 (C1E) in the BIOS 解决的。
  • e1000: Detected Tx Unit Hang - network is not operational
  • e1000e hardware unit hangs when TSO is on
  • Proxmox 5x “e1000 driver hang” fix
  • e1000 driver hang
    说是需要 tso off gso off, 也有提到只需要 tso off
  • e1000 detected Tx Unit Hang
  • intel的网卡故障
  • Linux e1000e (Intel networking driver) problems galore, where do I start?
    说是因为网卡EEPROM中启用了电源管理功能,导致的问题。
  • Linux环境中的网络分段卸载技术 GSO/TSO/UFO/LRO/GRO
    关于 TSO,GSO 的解释。TSO (TCP Segmentation Offloading), GSO (Generic Segemetation Offload)

我的备忘

  • 2009年时,Centos7系统,我碰到这个问题。网卡自动协商在1000baseT/Full,几个小时后,网卡就死掉了。
    解决办法是用ethtool 强制指定网卡工作在 100baseT/Full。
  • 2021年又碰到这个问题。PVE系统。
    PVE缺省没有安装ethtool工具。先 apt install ethtool
    /etc/network/interfaces 中, 对应的 iface eno1 ... 下面:
    post-up /usr/sbin/ethtool -K eno1 tso off gso off
    问题解决,syslog 中不再有错误信息。
    • 有文章说,仅 tso off 就够了。我没测试。
  • 查看对应网卡的内核功能特性,ethtool -k eno1

转载注明来源: 本文链接 https://www.cnblogs.com/osnosn/p/14723454.html
来自 osnosn的博客 https://www.cnblogs.com/osnosn/ .


这篇关于Linux_PVE_e1000e网卡Hang的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!