We had some issues with some broadcom nics going down after update to 6.8
Workaround: NICs go up if you do a
FIX: Update Broadcom Firmware to latest firmware and blacklist their "beautiful" infiniband-driver
This will update ALL YOUR Broadcom-Network Cards to their latest firmware (live) (but reboot needed after it):
This is a snippet from our standards in our thomas-krenn pve ceph deployments. Theres also a snippet for blacklisting the infiniband driver:
The Firmwareupdate needs a reboot to get active!
Workaround: NICs go up if you do a
service networking restart
FIX: Update Broadcom Firmware to latest firmware and blacklist their "beautiful" infiniband-driver
This will update ALL YOUR Broadcom-Network Cards to their latest firmware (live) (but reboot needed after it):
apt install unzip
cat << 'EOF' > bcm-nic-update.sh
wget https://www.thomas-krenn.com/redx/tools/mb_download.php/ct.YuuHGw/mid.y9b3b4ba2bf7ab3b8/bnxtnvm.zip
unzip bnxtnvm.zip
chmod +x bnxtnvm
for i in $(./bnxtnvm listdev | grep 'Device Interface Name' | awk '{print $5}')
do
./bnxtnvm -dev=$i install -online -y
done
EOF
chmod +x bcm-nic-update.sh
./bcm-nic-update.sh
This is a snippet from our standards in our thomas-krenn pve ceph deployments. Theres also a snippet for blacklisting the infiniband driver:
Code:
echo "blacklist bnxt_re" >> /etc/modprobe.d/blacklist-bnxt_re.conf
update-initramfs -u
The Firmwareupdate needs a reboot to get active!
Last edited: