查看硬件
yum -y install pciutils kernel-deve gcc
lspci | grep Ethernet
80fc4aed-c8f4-4ff7-a362-774011e2624c.jpg
安装驱动
安装
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