【centos7】安装光模块驱动
2019-05-20 本文已影响0人
小醉90s
查看硬件
yum -y install pciutils kernel-deve gcc
lspci | grep Ethernet

安装驱动
安装
tar xf ixgbe-5.5.5.tar.gz
cd ixgbe-5.5.5/src
make install
加载(立即生效)
rmmod ixgbe; modprobe ixgbe allow_unsupported_sfp=1,1
重启生效
添加启动参数
vim /etc/default/grub
GRUB_CMDLINE_LINUX="ipv6.disable=1 crashkernel=auto rhgb quiet** ixgbe.allow_unsupported_sfp=1,1**"
生成开机启动配置文件
grub2-mkconfig -o /boot/grub2/grub.cfg
重启验证
reboot