Supported link modes: 10000baseT/FullAny idea if this unlocks speeds other than 10G?
A 1G SFP fiber module. My ISP only provides 1GB (hackable to 2.5gb), and I was hoping to be able to connect it directly, but as of now the card wont recognize the module, presumably because the card can't negotiate (or be hard coded to) 1/2.5GBDo you want to use 1G SFP modules
I may try to upgrade this weekend. I've been traveling for work and don't like tinkering when I'm not guaranteed to be around the "home lab". Any chance you have tried an perf tests? what module version is part of this new pve kernel?Proxmox released proxmox-kernel-signed-6.8.12-1 to the no-subscription repository, which sources Ubuntu-6.8.0-43.43 (where ubuntu finally reverts the ixgbe 553 breakage from back in Linux Kernel 6.1).
Try it out, installed and works after reboot without the OOT intel IXGBE installed for me. Have not done any iperf.
Building module:
Cleaning build area...
BUILD_KERNEL=6.8.12-1-pve make -C src/ KERNELDIR=/lib/modules/6.8.12-1-pve/build.......(bad exit status: 2)
Error! Bad return status for module build on kernel: 6.8.12-1-pve (x86_64)
Consult /var/lib/dkms/ixgbe/5.19.9/build/make.log for more information.
Error! One or more modules failed to install during autoinstall.
Refer to previous errors for more information.
dkms: autoinstall for kernel: 6.8.12-1-pve failed!
run-parts: /etc/kernel/postinst.d/dkms exited with return code 11
Failed to process /etc/kernel/postinst.d at /var/lib/dpkg/info/proxmox-kernel-6.8.12-1-pve-signed.postinst line 20.
dpkg: error processing package proxmox-kernel-6.8.12-1-pve-signed (--configure):
installed proxmox-kernel-6.8.12-1-pve-signed package post-installation script subprocess returned error exit status 2
You should not need to build the ixgbe OOT driver with 6.8.12-1, it should just work out of the box. useThanks for the heads-up. Trying to upgrade to kernel 6.8.12-1-pve broke veeam, which I then uninstalled, and now it's failing to build the ixgbe driver. I previously posted where it looked like it was working but apparently it had actually booted to the old 5.15 kernel
Code:Building module: Cleaning build area... BUILD_KERNEL=6.8.12-1-pve make -C src/ KERNELDIR=/lib/modules/6.8.12-1-pve/build.......(bad exit status: 2) Error! Bad return status for module build on kernel: 6.8.12-1-pve (x86_64) Consult /var/lib/dkms/ixgbe/5.19.9/build/make.log for more information. Error! One or more modules failed to install during autoinstall. Refer to previous errors for more information. dkms: autoinstall for kernel: 6.8.12-1-pve failed! run-parts: /etc/kernel/postinst.d/dkms exited with return code 11 Failed to process /etc/kernel/postinst.d at /var/lib/dpkg/info/proxmox-kernel-6.8.12-1-pve-signed.postinst line 20. dpkg: error processing package proxmox-kernel-6.8.12-1-pve-signed (--configure): installed proxmox-kernel-6.8.12-1-pve-signed package post-installation script subprocess returned error exit status 2
proxmox-boot-tool kernel pin 6.8.12-1-pve --next-boot
to force trial the new kernel on the next boot only. that means you are likely having the same issue I was with a zombie 5.19.9 build attempt. see my post in this thread https://forum.proxmox.com/threads/intel-x553-sfp-ixgbe-no-go-on-pve8.135129/post-688845Consult /var/lib/dkms/ixgbe/5.19.9/build/make.log for more information.
You should not need to build the ixgbe OOT driver with 6.8.12-1, it should just work out of the box. useproxmox-boot-tool kernel pin 6.8.12-1-pve --next-boot
to force trial the new kernel on the next boot only.
I am curious if you have pinned the old 5.15 kernel?
and the DKMS error message states
that means you are likely having the same issue I was with a zombie 5.19.9 build attempt. see my post in this thread https://forum.proxmox.com/threads/intel-x553-sfp-ixgbe-no-go-on-pve8.135129/post-688845
So to be clear this is/was a main linux kernel ixgbe regression affecting all distributions dating back to kernel 6.1. It was only reverted in 6.9 and backported to LTS Kernels 6.6 and 6.1 in May 2024. So Proxmox (actually Ubuntu) is only 2-3 months behind on back porting this fix to 6.8. See: https://forum.proxmox.com/threads/intel-x553-sfp-ixgbe-no-go-on-pve8.135129/post-690100However, I am not pleased with proxmox due to the amount of time it took to fix this OBVIOUS REGRESSION - it's been most of a year, and this has affected THOUSANDS of installs.
Anyway, thank you all, I will test it again.@yixin Both the current 6.8* and optional 6.11* Ubuntu derived kernels from Proxmox 8.3 are working for me. No longer have to build the out of tree Intel kernel to get working x553 networking.
What you are describing is different behavior from what most reported or experienced previously.
sudo apt-get install proxmox-default-headers build-essential dkms gcc make
cd /tmp
wget https://sourceforge.net/projects/e1000/files/ixgbe%20stable/5.20.10/ixgbe-5.20.10.tar.gz
tar xvfvz ixgbe-5.20.10.tar.gz -C /usr/src
nano /usr/src/ixgbe-5.20.10/dkms.conf
#Add the following into the file dkms.conf file
MAKE="BUILD_KERNEL=${kernelver} make -C src/ KERNELDIR=/lib/modules/${kernelver}/build"
CLEAN="make -C src/ clean"
BUILT_MODULE_NAME=ixgbe
BUILT_MODULE_LOCATION=src/
DEST_MODULE_LOCATION="/updates"
PACKAGE_NAME=ixgbe-dkms
PACKAGE_VERSION=5.20.10
#run the following:
rm -rf /var/lib/dkms/ixgbe
#Then run the following commands:
sudo dkms add ixgbe/5.20.10
sudo dkms build ixgbe/5.20.10
sudo dkms install ixgbe/5.20.10
dmesg | grep ixgbe
[ 4.255494] ixgbe: module verification failed: signature and/or required key missing - tainting kernel
Feb 24 18:26:31 pve kernel: Intel(R) 10GbE PCI Express Linux Network Driver - version 5.20.10
Feb 24 18:26:31 pve kernel: Copyright (C) 1999 - 2024 Intel Corporation
Linux pve 6.8.12-8-pve
/usr/lib/modules/6.8.12-8-pve/updates/dkms/ixgbe.ko
/var/lib/dkms/ixgbe/5.20.10/6.8.12-8-pve/x86_64/module/ixgbe.ko
modinfo ixgbe
filename: /lib/modules/6.8.12-8-pve/updates/dkms/ixgbe.ko
version: 5.20.10
license: GPL
description: Intel(R) 10GbE PCI Express Linux Network Driver
author: Intel Corporation, <linux.nics@intel.com>
srcversion: EEFC2B521A94BD9EC3A291A
...
depends: dca
retpoline: Y
name: ixgbe
vermagic: 6.8.12-8-pve SMP preempt mod_unload modversions
sig_id: PKCS#7
signer: DKMS module signing key
sig_key: 25:FB:FD:A6:C1:B5:CE:53:57:8C:45:32:29:93:A8:2F:DF:50:FD:F6
sig_hashalgo: sha512
signature: 9D:95:13:5E:39:3F:7A:6A:81:88:DB:A1:23:70:08:DB:9F:76:3A:46:
51:67:4D:F6:A2:A7:C8:5F:8E:25:46:5B:AF:A8:59:59:FC:5B:90:1F:
1A:1C:0E:4A:A0:91:E0:BB:E5:7A:E6:78:73:41:01:D5:70:69:41:3F:
..
ls -la /lib/modules/6.8.12-8-pve/updates/dkms/ixgbe.ko
-rw-r--r-- 1 root root 1101141 Feb 24 08:32 /lib/modules/6.8.12-8-pve/updates/dkms/ixgbe.ko
We use essential cookies to make this site work, and optional cookies to enhance your experience.