Search results

  1. dakralex

    Strange Issue Using Virtio on 10Gb Network Adapters

    The NIC statistics can be viewed with ethtool -S enp8s0, where it also has hw/sw counters for e.g. rx/tx_errors, etc.
  2. dakralex

    Strange Issue Using Virtio on 10Gb Network Adapters

    The statistics of the NIC provided by ethtool would be interesting as they also can usually tell whether any errors occurred on the hardware itself and/or if there were any resolved by the kernel. Does a tcpdump indicate any failures to send packets (e.g. many TCP resends, etc.) between...
  3. dakralex

    Error showing in Datacenter Summary page

    Hi! It seems like that one of your guests is in an error state, which indicates that you're using the HA Manager. Does any of your VMs/containers on the left side have an error icon on them? What is the output of ha-manager status? You can check why the guest was put in error state through the...
  4. dakralex

    Unable to downgrade ESXi-Import tools to 0.7.2

    Hi! All of the current Proxmox VE repositories have the more recent pve-esxi-import-tools 0.7.4 available on them, which should have fixed the error you are experiencing. Is the apt cache up to date (i.e. apt dist-upgrade)?
  5. dakralex

    Strange Issue Using Virtio on 10Gb Network Adapters

    Hm, interesting, thanks for getting back so quick! What is the exact switch model that you currently use? Are there any known issues between the i225-LM, x520-da or x550-t2 NICs and the switch you have? What does ethtool tell you about the NIC?
  6. dakralex

    How to Preserve Advanced Bonding Options When Using Proxmox GUI

    Welcome to the Proxmox forum, rpierluigi! The options should still be preserved even after changing them through the web interface. This shouldn't be necessary, but if you want to make sure that there is no interference, you can always create an extra configuration file in...
  7. dakralex

    Strange Issue Using Virtio on 10Gb Network Adapters

    Hi! Which kernel version are you using with these cards? Have you tried running other kernel versions? Could you provide a lspci -nnk of the network cards and if there's any interesting logs while these stutters persist in dmesg (e.g. dmesg | grep igb or dmesg | grep ixgbe)?
  8. dakralex

    VirtIO issues with suricata

    Hi! Currently, there is no option to add custom flags to the network device parameters. You could pass these via -args but bare in mind that the tap devices aren't created for them automatically, so they need to be set up manually or you could write a script that does that, but this is of...
  9. dakralex

    Proxmox host with a static IP

    In that case you really want to setup these firewall rules on the VNet bridge itself, i.e. you should create these rules in the Datacenter firewall as stated in the same paragraph ;)
  10. dakralex

    Proxmox host with a static IP

    Hi! If you want to setup SNAT and DHCP with the SDN, then you need to enable automatic DHCP in the dhcpsnat zone, make the VMs use the vnet1 bridge, and define a DHCP range in the VNet's subnet. There is a guide for this setup here [0]. [0]...
  11. dakralex

    [SOLVED] What controls VM console resolution? (noVNC) (Ubuntu)(cloud-init)

    Hi! How did you setup the cloud init VM? Usually, cloud init VMs are expected to be used over a serial interface instead of a graphical display. Usually this is done by setting kernel parameters, e.g. providing the console parameter to the kernel. You can see the current kernel parameters in...
  12. dakralex

    Proxmox 8.4.1 Fresh Install BCM57416 10G Ethernet Adapter Not Recognized

    Hi! Thanks for reaching out, there's another user that seems to have similar problems [0]. It would be helpful to have more information, could you provide a boot log for the system? Does the NIC have the most recent firmware on it? [0] https://forum.proxmox.com/threads/167132/
  13. dakralex

    Provide selection of the kernel version in the installer

    Yes, some boot logs would be great to further investigate here what the problem is, so dmesg/journalctl, and optionally a lspci and ethtool output would be great. On another note, have you tried to upgrade the firmware for the BCM57416?
  14. dakralex

    How to increase Receive-Buffer (RX-Buffer) in LXC Container?

    How did you make sure that the change did not take effect on the container? The container shares the host's kernel, so if the sysctl config has been set there, it is also set for the container. Either way, aren't there better defenses for these attacks then enlarging the receive buffer?
  15. dakralex

    Provide selection of the kernel version in the installer

    Hi! Does the error occur also for the first restart after the installation? The current ISO image does only ship the 6.8 kernel and as it's not a network installer, it is only designed to install packages which are shipped with the ISO image and doesn't have knowledge about other available...
  16. dakralex

    [SOLVED] ESXi Import Wizard - Is there a CLI equivalent

    FYI this can of course be any vmid, which isn't taken yet by another guest, so calling /cluster/nextid is what the web interface would also do to get the next free vmid when the Create Wizard is opened.
  17. dakralex

    Issues configuring network via API Proxmox VE 8.4

    The error you described above should only happen if the bridge wasn't specified at all and the SDN is enabled. Could you try again with encoding the parameters in the URL?
  18. dakralex

    Issues configuring network via API Proxmox VE 8.4

    Hi! Could you provide the complete API call that you make to the create_vm API endpoint? I suspect that the SDN is configured and one of the net* options is either malformed and therefore doesn't provide a correct bridge/vnet, but the whole API call provides more information to investigate here.
  19. dakralex

    i cant access my second node anymore. Only my first node seem to work and i cant update anything on it.

    Hi! Are there any messages relevant to this in the syslog? Are there any errors when you open the Dev Tools (F12) when you're on one of the WebGUI in the browser? Have you tried restarting both the API server and its proxy (systemctl restart pvedaemon pveproxy)?
  20. dakralex

    [SOLVED] ESXi Import Wizard - Is there a CLI equivalent

    Hi! Yes, there is and the one you found is also the correct one! Suppose I want to import the virtual machine with the name TestVM from the ESXi storage esxistore to Proxmox VE on the local storage with vmid 404, then the command would need to be: qm import 404...