Search results

  1. D

    Your wish list for Proxmox

    You sir, get my point 100%. I love Proxmox, it is a core platform in my lab which I rely upon to keep my technical skills up-to-date, where else are you going to recompile the kernel on the fly to try out the latest and greatest technologies.... Hyper-V and VMware don't provide that level of...
  2. D

    Your wish list for Proxmox

    Totally missing the 'point'. Ah well, thank you for your time. Have a good day sir.
  3. D

    Your wish list for Proxmox

    I would like to add, that in my professional consultancy career, I have over the past decade on numerous instances attempted to offer Proxmox as a platform solution, not once have I been successful. The issues always revolved around presumptions driven by how it looked... There is a natural...
  4. D

    Your wish list for Proxmox

    The 'windows 8' argument didnt turn Microsoft away, we're now at Windows 11 and it is evolving to the day (much to the hate of old-techies), the argument is not relevant... this is about the future, the gen-z and beyond... Regarding Incus, it was not about features, it is about attraction to...
  5. D

    Your wish list for Proxmox

    Been with Proxmox for years, been great for lab non-commercial use as a platform to simplify vm/container management with mouse clicks. But I've over the years come to realise that it seems to lack in a few areas, and I know that making any feature requests tends to just dissapear into the void...
  6. D

    Proxmox VE 8.3 released!

    @t.lamprecht - great release guys!!! Looking forward to playing with the SDN enhancements. Was a little dismayed though, still no MACVTAP support :( Hope we can get this in soon, been on and off requested for a few years now, I even filed a friendly request...
  7. D

    Is this possible?

    As advised by @UdoB - feature requested submitted: https://bugzilla.proxmox.com/show_bug.cgi?id=5795
  8. D

    Is this possible?

    Proxmox team, please can you add macvtap to the networking options for guests? it has been asked for across the years numerous times, but it has resulted in total silence. It can't even be implemented by manually tweaking the guest config file via the args.... really really unfortunate. It is...
  9. D

    Is this possible?

    Host nic is not being used, no IP assigned etc etc. Would like to assign that nic to a guest where the guest retains the 'mac' address of the host nic, so that all traffic goes to the guest and back out of course. My problem is that MAC spoofing cannot be enabled on my environment due to hard...
  10. D

    Slow Network Speeds in Containers in Guests

    On the proxmox host, do a: # ethtool -k <interface-name> (thats lower case 'k') check the value of 'generic-receive-offload', if it is 'on', then try: # ethtool -K <interface-name> gro off (thats upper case 'k') see if that helps....
  11. D

    What keeps overwriting my custom 'arg' entry in the config?

    Ah, there was an invisible character in the args which forces it to just trim off the rest of the args from said character.
  12. D

    What keeps overwriting my custom 'arg' entry in the config?

    This doesn't happen on another vm, but on this vm Proxmox keeps resetting the arg entry in the vm config to defaults, I do not desire this behaviour, any ideas how to disable this? Yes I am not making any changes via the UI, proxmox just seems to reset the args every vm shutdown.
  13. D

    Chelsio have released Kernel 5.4 official drivers!

    "Added support for latest Distributions RHEL8.2/8.1/7.8, Ubuntu 20.04 and Kernel.org 5.4" I shall be putting some hours aside to try this out! Also Chelsio are supporting Debian based distros through their self-compile drivers, it's just they do not submit their drivers upstream as they work...
  14. D

    Hot-Plug NVME not working

    Just to update, the issue in the end was the hot-plug functionality in Debian, it works fine in RHEL, Debian throws a wobbly. To be frank I didn't like the RHEL+oVirt setup one bit, quite clunky in comparison to Proxmox and its ease of flexibility, plus RHEL doesn't support RDMA CIFS which is a...
  15. D

    Hot-Plug NVME not working

    Also, I'm unable to passthrough the bridge-card itself, unless that is not permitted as it is a PCI switch. Update: I've put in a new boot-drive and am in the process of installing RHE8 and oVirt, to see if the same issue manifests in that setup.
  16. D

    Hot-Plug NVME not working

    I see in the log that the hotplug button event is captured, but the kernel seems to have an issue assigning addresses, I will try this with a different brand drive too to see if the issue is not drive specific. In the log we can see the button event being captured and triggering the assignment...
  17. D

    Hot-Plug NVME not working

    Proxmox VE 6.2 I slot a drive into the nvme backplane and heres dmesg output: Jun 04 13:57:01 arcadia kernel: pci 0000:89:00.0: [1c58:0023] type 00 class 0x010802 Jun 04 13:57:01 arcadia kernel: pci 0000:89:00.0: reg 0x10: [mem 0x00000000-0x00003fff 64bit] Jun 04 13:57:01 arcadia kernel: pci...
  18. D

    Kernel source, Documentation folder?

    From what I have deduced through email exchanges with Chelsio support, they're not really big fans of supporting Debian as priority, they are hell bent on sticking with Red Hat, lo and behold RHV comes with all the offloading features enabled. The growth of Proxmox in enterprise is getting...
  19. D

    Kernel source, Documentation folder?

    Understood. I'm trying to build a modified version of the t4_tom and nvme-offload kernel modules (latest chelsio offloading drivers), as the inbox drivers are the standard nic drivers rather than offload enabled. Definitely some fun as I try and get Chelsio driver code patched enough to...
  20. D

    Kernel source, Documentation folder?

    I guess I can just create a merged folder with both but overriden by the backported tree? but if there is a cooler way to do it without copying files around I'm all ears. Looking through the kernel makefile, it appears that's what it does too, so I guess I'd have to do the same thing, no...