美文网首页
万兆网卡加载失败

万兆网卡加载失败

作者: 无名a先生 | 来源:发表于2016-11-23 16:34 被阅读0次

    不兼容万兆光模块
    ixgbe光纤网卡的驱动在默认情况下不支持第三方兼容光模块,会导致网卡驱动加载失败,表现为,执行lspci |grep 82599能看到网卡在pci设备中

    06:00.0 Ethernet controller: Intel Corporation 82599EB 10-Gigabit SFI/SFP+ Network Connection (rev 01)
    06:00.1 Ethernet controller: Intel Corporation 82599EB 10-Gigabit SFI/SFP+ Network Connection (rev 01)
    

    但是使用ifconfig -a命令,却找不到网卡,使用demsg可以看到以下出错信息:

    ixgbe 0000:06:00.0: failed to load because an unsupported SFP+ module type was detected
    

    解决问题的方法是如下

    执行rmmod ixgbe,卸载掉驱动,
    然后执行modprobe ixgbe allow_unsupported_sfp=1
    

    驱动对allow_unsupported_sfp的解释为:
    allow_unsupported_sfp:Allow unsupported and untested SFP+ modules on 82599-based adapters (uint)

    重新加载后,大部分情况下ifconfig就能够看到网卡信息了。

    相关文章

      网友评论

          本文标题:万兆网卡加载失败

          本文链接:https://www.haomeiwen.com/subject/vudvpttx.html