Long story short, with the new kernel of PVE 8.2 this machine here…
Please note that the interface names did not change between the kernel versions; they are still the same.
ifupdown2 does not apply the network configuration at boot; bridges like
However, configuring the network interfaces manually does work (although each command is followed by a bunch of errors) and allows me to reach the webinterface:
This should be the error that comes up during boot and prevents ifupdown2 from working:
→ see attachment
The network configuration in /etc/network/interfaces is fairly trivial:
This system is essentially a fresh install (8.0 or 8.1) updated to 8.2 via apt.
These issues do not occur when booting the old Linux 6.2 kernel. It only happens with the new 6.8 kernel.
- hangs at the systemd-udev thing during boot for a while.
- boots with all network interfaces being down.
- takes forever to shutdown because of
Failed to deinitialize RCFW
followed by a stream ofAMD-Vi IO_PAGE_FAULT
s.
Please note that the interface names did not change between the kernel versions; they are still the same.
ifupdown2 does not apply the network configuration at boot; bridges like
vmbr0
are never created.ifreload -a
does not work either: error: Another instance of this program is already running.
However, configuring the network interfaces manually does work (although each command is followed by a bunch of errors) and allows me to reach the webinterface:
Code:
ip addr add 192.168.70.185/24 dev eno1np0
ip link set eno1np0 up
ip route add default via 192.168.70.1
Code:
[ 208.744897] bnxt_en 0000:45:00.0 bnxt_re0: Failed to add GID: 0xffffff92
[ 208.744943] infiniband bnxt_re0: add_roce_gid GID add failed port=1 index=2
[ 208.744977] __ib_cache_gid_add: unable to add gid 0000:0000:0000:0000:0000:ffff:c0a8:46b9 error=-110
[ 208.745020] bnxt_en 0000:45:00.0 bnxt_re0: Failed to add GID: 0xffffff92
[ 208.745052] infiniband bnxt_re0: add_roce_gid GID add failed port=1 index=2
[ 208.745083] __ib_cache_gid_add: unable to add gid 0000:0000:0000:0000:0000:ffff:c0a8:46b9 error=-110
[ 210.130377] bnxt_en 0000:45:00.1: QPLIB: bnxt_re_is_fw_stalled: FW STALL Detected. cmdq[0xe]=0x3 waited (102231 > 100000) msec active 1
[ 210.130433] bnxt_en 0000:45:00.1 bnxt_re1: Failed to modify HW QP
[ 210.130465] infiniband bnxt_re1: Couldn't change QP1 state to INIT: -110
[ 210.130496] infiniband bnxt_re1: Couldn't start port
[ 210.130614] bnxt_en 0000:45:00.1 bnxt_re1: Failed to destroy HW QP
[ 210.131811] bnxt_en 0000:45:00.1 bnxt_re1: Free MW failed: 0xffffff92
[ 210.132341] infiniband bnxt_re1: Couldn't open port 1
[ 210.133872] infiniband bnxt_re1: Device registered with IB successfully
[ 214.163648] bnxt_en 0000:45:00.0 eno1np0: NIC Link is Up, 1000 Mbps full duplex, Flow control: none
[ 214.163714] bnxt_en 0000:45:00.0 eno1np0: EEE is not active
[ 214.163731] bnxt_en 0000:45:00.0 eno1np0: FEC autoneg off encoding: None
[ 214.179839] bnxt_en 0000:45:00.0 bnxt_re0: Failed to add GID: 0xffffff92
[ 214.179865] infiniband bnxt_re0: add_roce_gid GID add failed port=1 index=2
[ 214.179886] __ib_cache_gid_add: unable to add gid 0000:0000:0000:0000:0000:ffff:c0a8:46b9 error=-110
[ 214.179911] bnxt_en 0000:45:00.0 bnxt_re0: Failed to add GID: 0xffffff92
[ 214.179931] infiniband bnxt_re0: add_roce_gid GID add failed port=1 index=2
[ 214.179950] __ib_cache_gid_add: unable to add gid 0000:0000:0000:0000:0000:ffff:c0a8:46b9 error=-110
This should be the error that comes up during boot and prevents ifupdown2 from working:
→ see attachment
The network configuration in /etc/network/interfaces is fairly trivial:
Code:
auto lo
iface lo inet loopback
iface eno1np0 inet manual
iface eno2np1 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.70.185/24
gateway 192.168.70.1
bridge-ports eno1np0
bridge-stp off
bridge-fd 0
iface enxbe3af2b6059f inet manual
This system is essentially a fresh install (8.0 or 8.1) updated to 8.2 via apt.
These issues do not occur when booting the old Linux 6.2 kernel. It only happens with the new 6.8 kernel.