Search results

  1. C

    [SOLVED] Issues with SRIOV-based NIC-passthrough to firewall

    I'm passing through a VF from my Intel X722-based NIC to a firewall (OPNsense) qemu vm which uses CARP for high-availability. However, due to filtering by the PF, the packets destined to the virtual CARP MAC addresses do not reach the VF/guest. This is "by design" and if such functionality is...
  2. C

    Combining custom cloud init with auto-generated

    Wouldn't it be sufficient to introduce some method to pass the VMID to the custom cloud-init file? Then one could have a (dynamically generated) cicustom file for every VM and the template can be cloned without any modifications afterwards. *or* A hook for a new vm being created from template...
  3. C

    cloud-init and Buster generic image network problem

    I'm using this one: https://cdimage.debian.org/cdimage/cloud/buster/20191117-80/debian-10-generic-amd64-20191117-80.qcow2 The OpenStack image gave me problems with physical drivers (didn't even find cdrom for cloud-init but also lacked driver for my passthrough nics).
  4. C

    cloud-init and Buster generic image network problem

    I can see the rename to eth0 using "nocloud" citype, but not when using configdrive But even with nocloud, the interface IP is not applied to eth0 as /etc/network/interfaces.d/50-cloud-init.cfg is never read. The "." in .cfg seems to be an invalid character in included files. However, this is...
  5. C

    cloud-init and Buster generic image network problem

    Did anyone try Buster cloud images (specifically the generic image) with Proxmox and cloud-init yet? I tried with both nocloud and configdrive but can't get the network settings to apply. The cloud-init template seems to assume net0 is eth0, but it is changed to ens18. But even if I replace eth0...
  6. C

    ifupdown2 bridge-vids issues

    Thanks for the feedback! However, it looks like ifupdown2 was replaced by ifupdown accidentally at some point which seems to have caused the issue. So above stated issue exist on ifupdown, *not* ifupdown2. (Which is strange, I thought vlan-aware-bridges and bridge-vids were introduced with...
  7. C

    ifupdown2 bridge-vids issues

    I use a vlan-aware bridge on a Proxmox VE 6.1 system with a following network configuration: auto vmbr0 iface vmbr0 inet manual bridge-ports eno7 bridge-stp off bridge-fd 0 bridge-vlan-aware yes bridge-vids 2-4094 bridge-pvid 1 mtu 9000 However, my NIC (Intel X722...