Cool, that one seems to match the behaviour you're seeing.
Proxmox uses a package called
ifupdown2
for managing network interfaces, and that
ifupdown2-pre
service seems to be a part of it.
You can check if there are errors showing up for a given systemd service by using
journalctl
with the name of the service (passed with
-u
):
Bash:
# journalctl -u ifupdown2-pre -n 50
That'll show the last 50 lines of the log output from that service. Generally 50 lines should be enough for it to contain some kind of hint as to what's going wrong, but feel free to choose bigger/smaller/etc numbers as needed.
You can do the same thing with the
systemd-udev-settle
service too, to try and get useful info out of that:
Bash:
# journalctl -u systemd-udev-settle -n 50
Looking through that logs.txt some stuff jumps out.
This looks like your network cards?
Code:
Jun 04 18:34:17 clotho kernel: igb 0000:05:00.1: Intel(R) Gigabit Ethernet Network Connection
...
Jun 04 18:34:17 clotho kernel: scsi host10: Emulex OneConnect OCe10100, FCoE Initiator on PCI bus 82 device 02 irq 86
Jun 04 18:34:17 clotho kernel: be2net 0000:82:00.0 enp130s0f0: renamed from eth2
And I'm guessing this is your HBA?
Code:
Jun 04 18:34:17 clotho kernel: mpt2sas_cm0: LSISAS2308: FWVersion(20.00.07.00), ChipRevision(0x05)
Jun 04 18:34:17 clotho kernel: mpt2sas_cm0: Protocol=(Initiator,Target), Capabilities=(TLR,EEDP,Snapshot Buffer,Diag Trace Buffer,Task Set Full,NCQ)
There's a kernel problem showing up at around line 1520 of that log file too:
Code:
Jun 04 18:34:17 clotho kernel: scsi: waiting for bus probes to complete ...
Jun 04 18:34:17 clotho kernel: scsi host9: ioc0: LSISAS1068E B3, FwRev=011a0000h, Ports=1, MaxQ=478, IRQ=24
Jun 04 18:34:17 clotho kernel: detected buffer overflow in strnlen
Jun 04 18:34:17 clotho kernel: ------------[ cut here ]------------
Jun 04 18:34:17 clotho kernel: kernel BUG at lib/string_helpers.c:1048!
Jun 04 18:34:17 clotho kernel: invalid opcode: 0000 [#1] PREEMPT SMP PTI
Jun 04 18:34:17 clotho kernel: CPU: 0 PID: 8 Comm: kworker/0:0 Not tainted 6.8.4-3-pve #1
Jun 04 18:34:17 clotho kernel: Hardware name: Supermicro X9DRD-7LN4F(-JBOD)/X9DRD-EF/X9DRD-7LN4F, BIOS 3.3 08/23/2018
Jun 04 18:34:17 clotho kernel: Workqueue: events work_for_cpu_fn
Jun 04 18:34:17 clotho kernel: RIP: 0010:fortify_panic+0x13/0x20
Jun 04 18:34:17 clotho kernel: Code: cc 66 0f 1f 44 00 00 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 55 48 89 fe 48 c7 c7 88 ef fe a8 48 89 e5 e8 4d 40 9b ff <0f> 0b 66 66 2e 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90 90 90 90
Jun 04 18:34:17 clotho kernel: RSP: 0018:ffff9c6800093c38 EFLAGS: 00010246
Jun 04 18:34:17 clotho kernel: RAX: 0000000000000023 RBX: ffff8c95db5d8038 RCX: 0000000000000000
Jun 04 18:34:17 clotho kernel: RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000000
Jun 04 18:34:17 clotho kernel: RBP: ffff9c6800093c38 R08: 0000000000000000 R09: 0000000000000000
Jun 04 18:34:17 clotho kernel: R10: 0000000000000000 R11: 0000000000000000 R12: ffff8c95c4f29800
Jun 04 18:34:17 clotho kernel: R13: ffff8c95da04a000 R14: ffff8c95da04a028 R15: ffff8c95c65d8000
Jun 04 18:34:17 clotho kernel: FS: 0000000000000000(0000) GS:ffff8ca4ff600000(0000) knlGS:0000000000000000
Jun 04 18:34:17 clotho kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
Jun 04 18:34:17 clotho kernel: CR2: 00007fff11bbef70 CR3: 0000000781636004 CR4: 00000000001706f0
Jun 04 18:34:17 clotho kernel: Call Trace:
Jun 04 18:34:17 clotho kernel: <TASK>
Jun 04 18:34:17 clotho kernel: ? show_regs+0x6d/0x80
Jun 04 18:34:17 clotho kernel: ? die+0x37/0xa0
Jun 04 18:34:17 clotho kernel: ? do_trap+0xd4/0xf0
Jun 04 18:34:17 clotho kernel: ? do_error_trap+0x71/0xb0
Jun 04 18:34:17 clotho kernel: ? fortify_panic+0x13/0x20
Jun 04 18:34:17 clotho kernel: ? exc_invalid_op+0x52/0x80
Jun 04 18:34:17 clotho kernel: ? fortify_panic+0x13/0x20
Jun 04 18:34:17 clotho kernel: ? asm_exc_invalid_op+0x1b/0x20
Jun 04 18:34:17 clotho kernel: ? fortify_panic+0x13/0x20
Jun 04 18:34:17 clotho kernel: ? fortify_panic+0x13/0x20
Jun 04 18:34:17 clotho kernel: mptsas_probe_one_phy.constprop.0.isra.0+0xaad/0xac0 [mptsas]
Jun 04 18:34:17 clotho kernel: mptsas_probe_hba_phys.isra.0+0x795/0x910 [mptsas]
Jun 04 18:34:17 clotho kernel: mptsas_scan_sas_topology+0x42/0x380 [mptsas]
Jun 04 18:34:17 clotho kernel: ? scsi_autopm_put_host+0x1a/0x30
Jun 04 18:34:17 clotho kernel: mptsas_probe+0x3f8/0x570 [mptsas]
Jun 04 18:34:17 clotho kernel: local_pci_probe+0x47/0xb0
Jun 04 18:34:17 clotho kernel: work_for_cpu_fn+0x1a/0x30
Jun 04 18:34:17 clotho kernel: process_one_work+0x16d/0x350
Jun 04 18:34:17 clotho kernel: worker_thread+0x306/0x440
Jun 04 18:34:17 clotho kernel: ? __pfx_worker_thread+0x10/0x10
Jun 04 18:34:17 clotho kernel: kthread+0xf2/0x120
Jun 04 18:34:17 clotho kernel: ? __pfx_kthread+0x10/0x10
Jun 04 18:34:17 clotho kernel: ret_from_fork+0x47/0x70
Jun 04 18:34:17 clotho kernel: ? __pfx_kthread+0x10/0x10
Jun 04 18:34:17 clotho kernel: ret_from_fork_asm+0x1b/0x30
Jun 04 18:34:17 clotho kernel: </TASK>
Jun 04 18:34:17 clotho kernel: Modules linked in: usbhid hid nvme_core mptsas(+) nvme_auth crc32_pclmul mpt3sas be2net mptscsih igb scsi_transport_fc ehci_pci ahci i2c_i801 mptbase raid_class i2c_algo_bit ehci_hcd libahci i2c_smbus lpc_ich scsi_transport_sas dca wmi
Jun 04 18:34:17 clotho kernel: ---[ end trace 0000000000000000 ]---
Jun 04 18:34:17 clotho kernel: mpt2sas_cm1: port enable: SUCCESS
Jun 04 18:34:17 clotho kernel: RIP: 0010:fortify_panic+0x13/0x20
Jun 04 18:34:17 clotho kernel: Code: cc 66 0f 1f 44 00 00 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 55 48 89 fe 48 c7 c7 88 ef fe a8 48 89 e5 e8 4d 40 9b ff <0f> 0b 66 66 2e 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90 90 90 90
Jun 04 18:34:17 clotho kernel: RSP: 0018:ffff9c6800093c38 EFLAGS: 00010246
Jun 04 18:34:17 clotho kernel: RAX: 0000000000000023 RBX: ffff8c95db5d8038 RCX: 0000000000000000
Jun 04 18:34:17 clotho kernel: RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000000
Jun 04 18:34:17 clotho kernel: RBP: ffff9c6800093c38 R08: 0000000000000000 R09: 0000000000000000
Jun 04 18:34:17 clotho kernel: R10: 0000000000000000 R11: 0000000000000000 R12: ffff8c95c4f29800
Jun 04 18:34:17 clotho kernel: R13: ffff8c95da04a000 R14: ffff8c95da04a028 R15: ffff8c95c65d8000
Jun 04 18:34:17 clotho kernel: FS: 0000000000000000(0000) GS:ffff8ca4ff600000(0000) knlGS:0000000000000000
Jun 04 18:34:17 clotho kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
Jun 04 18:34:17 clotho kernel: CR2: 00007fff11bbef70 CR3: 0000000781636004 CR4: 00000000001706f0
That's not good at all. My suspicion is that kernel error is what's upsetting the
systemd-udev-settle
service.
I'd definitely try dropping back to the the older 6.5 kernel as suggested by
@gfngfn256 above to see if anything changes.
The instructions for doing that are in the Proxmox Roadmap's ver 8.2 Release notes
here. Under the "Kernel 6.8" heading.