2024-2-25
Intel 82599网卡模块兼容问题
使用Intel 82599芯片,配Finisar或者国产光模块不兼容,发现插上模块后网卡识别不了了。(会看到dmesg提示:failed to load because an unsupported SFP+ or QSFP module type was detected。)主要原因82599系的网卡默认只支持自家的模块,第三方模块不兼容。要暂时解决这个问题我们可以通过修改网卡参数来使网卡可用解决办法rmmod ixgbe //卸载光模块驱动(Intel 10G模块的驱动为ixgbe)modprobe ixgbe allow_unsupported_sfp=1,1 //允许系统支持网卡不......