环境说明

操作系统:Ubuntu20.04.4 x64
内核版本:5.15.0-25-generic

禁用插在PCI-E上的10G单口光卡

查看网卡驱动

  1. ethtool -i eth0|grep

输出

  1. driver: ixgbe
  2. version: 5.1.0-k
  1. lsmod |grep ixgbe

卸载光卡驱动并加入黑名单

  1. modprobe -r ixgbe
  2. echo "blacklist ixgbe" >> /etc/modprobe.d/blacklist.conf
  3. echo "install ixgbe /bin/false" >> /etc/modprobe.d/blacklist.conf
  4. update-initramfs -u