Recent content by luckman212

  1. L

    API to get VMs where "onboot=1" (autostart) ?

    I reduced the # of API calls by writing a shell function and doing some of the heavy lifting in JQ, but it's still a but clunky. Ok, thanks for confirming at least. Maybe this is something that can be improved in the future.
  2. L

    API to get VMs where "onboot=1" (autostart) ?

    I have some maintenance scripts where I need to pause/resume a set of VMs on my PVE 9.1 cluster. I want this script to operate on all VMs that are set to auto-start (onboot=1) I found the /nodes/{node}/qemu API endpoint, but sadly the onboot parameter is not included in its output. I can get...
  3. L

    Suppress repeating system log message

    I have these too. Is there any way to stop them from even reaching the journalctl log? They are filling up my Proxmox GUI log screen...
  4. L

    IPv6 on ISCSI and Proxmox 8

    Same issue! PVE 9.1.1 + Synology DSM 7.3 I have tried setting node.session.scan = manual in /etc/iscsi/iscsid.conf and then deleting the IPv6 nodes but that doesn't survive a reboot. Help!
  5. L

    Code 43 - Intel Arc A310 - Windows Host

    Just adding here, I had a similar Code 43 issue that I was tearing my hair out over. Spent days trying to get it working. See github issue #387 In the end, I rolled a brand new VM (everything else stayed the same) and voila, it worked fine. Worth a try maybe?
  6. L

    Proxmox Virtual Environment 9.1 available!

    Nice! What's the correct way to update a PVE9.0 node to 9.1? would it be just apt update apt dist-upgrade
  7. L

    if reboot is triggered pve node goes away too fast before ha migration is finished

    Just adding a data point: I also experience this error from time to time on my 9.0.11 cluster
  8. L

    PROXMOX Cluster GUI behind HA Layer 4 Loadbalancer and Reverse Proxy

    Anything new/different here, 2 years and 2 major versions later? I'd also like to know if putting my 3 PVE 9 nodes behind a reverse proxy so I can access e.g. "proxmox.mydomain.lan" without worrying about which node might be up/down or rebooting etc...
  9. L

    Opt-in Linux 6.17 Kernel for Proxmox VE 9 available on test & no-subscription

    So far so good, a few hours in 3-node cluster running PVE 9.0.11: (2x) Intel 285H + (1x) Intel 225H Also running https://github.com/strongtz/i915-sriov-dkms for iGPU passthru, working...
  10. L

    Opt-in Linux 6.14 Kernel for Proxmox VE 8 available on test & no-subscription

    Got it, thanks @patch Yes I updated to 6.14.8-2 just now and vfio is sort of working again for me with i915-sriov-dkms driver 2025.07.22 But, my Win11 vm isn't getting accelerated graphics anymore for some reason. But, the VFs are there root@pve01:~# { dmesg | egrep 'VFs?$'; lspci | grep VGA; }...
  11. L

    Opt-in Linux 6.14 Kernel for Proxmox VE 8 available on test & no-subscription

    Is proxmox-kernel 6.14.8-2~bpo12+1 still only available in the pvetest repo? Any idea when it will flip over to pve-no-subscription?
  12. L

    Opt-in Linux 6.14 Kernel for Proxmox VE 8 available on test & no-subscription

    Sorry if this is the wrong place to ask but could you point me in the right direction for how to generate/switch to the self-compiled 6.14.8 kernel?
  13. L

    Supported parameters in subnets.cfg?

    @floh8 I found a very similar request already, so I added this suggestion to it: https://bugzilla.proxmox.com/show_bug.cgi?id=6014#c1
  14. L

    Supported parameters in subnets.cfg?

    Ah actually it does work, I just was editing the files on the wrong node..... doh! This is all that is needed (I saved it as /etc/dnsmasq.d/dhcpnat/searchdomain.conf on all nodes...) dhcp-option=tag:dhcpnat-10.0.0.0-24,option:domain-name,lab01...
  15. L

    Supported parameters in subnets.cfg?

    I came looking for the same. Currently the VMs attached to my Simple dhcpsnat zone do not receive a default search domain from dnsmasq. I would like to supply something like "lab01" or "internal" etc. Is it possible? Seems like we should be able to hand-edit the config files at e.g...