码迷,mamicode.com
首页 > 其他好文 > 详细

万兆光模块无法识别问题

时间:2019-02-03 19:31:35      阅读:837      评论:0      收藏:0      [点我收藏+]

标签:ifconf   mod   网卡驱动   config   ems   port   eth   识别   connect   

Linux ixgbe网卡(光模块)兼容性问题

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) 

但是使用ip addr或者ifconfig -a命令,却找不到网卡,使用demsg可以看到以下出错信息:
ixgbe 0000:06:00.0: failed to load because an unsupported SFP+ module type was detected 

解决问题的方法是: 

  • 卸载ixgbe驱动(万兆网卡的驱动)
    rmmod ixgbe 

  • 再加载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或ip addr就能够看到网卡信息了。

万兆光模块无法识别问题

标签:ifconf   mod   网卡驱动   config   ems   port   eth   识别   connect   

原文地址:https://www.cnblogs.com/raymike90/p/10350858.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!