2023年9月9日 星期六

Ubuntu/Debian系列-啟動SFP 10-Gigabit(光纖)模組


Ubuntu/Debian系列-啟動82599ES 10-Gigabit(光纖)模組

光纖(萬兆)網路卡如何啟用:

Intel Corporation 82599ES 10-Gigabit SFI/SFPNetwork Connection



1.刪除ixgbe模組
rmmod ixgbe


※關閉ixgbe模組,igbe模組不會受影響,如果外網配置在igbe就不用擔心


2.重新設定ixgbe模組啟用方式
modprobe ixgbe allow_unsupported_sfp=1


3.測試萬兆網卡(eno1),是否可以正常up
ip link set eno1 down #關閉網卡
ip link set eno1 up #啟用網卡




4.查看萬兆網卡驅動後,網卡速率
ethtool eno1


5.配置網卡IP
vi /etc/netplan/00-installer-config.yaml



6.設定開機自動啟用萬兆網卡
vi /etc/rc.local

#!/bin/sh -e
#
# rc.local
rmmod ixgbe
modprobe ixgbe allow_unsupported_sfp=1
systemctl restart networking



7.設定給開機啟動文件執行權限
chmod +x /etc/rc.local





沒有留言:

張貼留言