Ubuntu 22.04 添加网卡ixgbe兼容参数方法
一、介绍
二、ixgbe网卡兼容
2.1 临时添加(重启后失效)
# 检查当前网卡驱动
lsmod |grep ixgbe
# 临时添加参数
modprobe -r ixgbe
modprobe ixgbe allow_unsupported_sfp=1
2.2 永久添加
- 创建配置文件
cat > /etc/modprobe.d/ixgbe.conf << EOF
options ixgbe allow_unsupported_sfp=1
EOF
- 更新 initramfs
update-initramfs -u
- 重启系统

浙公网安备 33010602011771号