Recent content by TodorPetkov

  1. T

    VLAN trunks in UI

    Haven't played much with it after this, but seems UI still allows single VLAN per instance. Regards
  2. T

    Two NICs two subnets

    Looking at your configuration, the port of the Unifi gateway, to where the physical port (enp3s0) of the server is connected, needs to be configured in trunk with at least VLAN2 - this is the VLAN configured on the CT. If Unifi port is in access mode, then you need to remove the VLAN tag from...
  3. T

    Two NICs two subnets

    Can you show the network configuration of the CT in the PVE UI?
  4. T

    Two NICs two subnets

    Hello, probably interface enp3s0 is connected to a switch? Is the switchport in access or in trunk mode? Can you show the configuration of the VM network? Are you able to ping 192.168.4.23 from the VM and vice versa? Regards
  5. T

    So close... I just want to display CPU, Nvme, HDD temps on summary page of Proxmox

    Looking at the code you pasted and comparing it with the tutorial, seems the 'HDDtemperature' item is different. Have you tried the original one? Disclaimer: I am not a coder, so if someone has more knowledge, do not hesitate;)
  6. T

    So close... I just want to display CPU, Nvme, HDD temps on summary page of Proxmox

    Hello, do you actually have /dev/sda as device? Can you show output of ls -ld /dev/sd*
  7. T

    I can't exceed 1GB of internet with a 10GB network card

    I see ethtool says "Speed: 1000Mb/s" (suppose this is on the PVE server itself, not in VM), can you enforce it to 10000Mb/s? Something like " ethtool -s eno1 autoneg on speed 10000 duplex full". Keep in mind you may get disconnected from the server, so I suggest doing it via IPMI or direct...
  8. T

    I can't exceed 1GB of internet with a 10GB network card

    Hi, enable multiqueue and try again (https://www.reddit.com/r/Proxmox/comments/w7ongm/10gb_to_vm/)
  9. T

    Limit web interface on 8006 to just loopback?

    Hi, check 17.2.2 (https://pve.proxmox.com/pve-docs/pve-admin-guide.html#_pveproxy_proxmox_ve_api_proxy_daemon) Hope this helps. Regards
  10. T

    I can't exceed 1GB of internet with a 10GB network card

    Hello, to what kind of equipment is this server connected to? Can you check the port on the other end?
  11. T

    Changing Ethernet Interface Name

    Hi, check this https://wiki.debian.org/NetworkInterfaceNames#CUSTOM_SCHEMES_USING_.LINK_FILES Disclaimer: It may cause other issues, if there is a hardcoded interface name somewhere.
  12. T

    VLAN trunks in UI

    Thanks, I checked and it's 32. I don't have that much now, but it's good to know for the future;) Regards
  13. T

    VLAN trunks in UI

    I was just curious about the option. From system administration point of view different untagged NICs in the VM are the best solution, but some commercial firewall vendors have (or used to have) limits in the number of "physical" interface, that's why I asked. Regards
  14. T

    VLAN trunks in UI

    Hello, multiple VLAN on the virtual NIC, but strict list of them. For example, physical NIC on the host has VLANS 10,11,12,13. I needed VLANs 10 and 11 passed to the virtual NIC in the VM, but not 12 and 13. "trunks" option to the interface does this, I was just wondering if this option can be...
  15. T

    VLAN trunks in UI

    Hello, I was looking at a way to pass two or more vlans to interface and I came across the "trunks" option to --netX flag. I don't see this configurable via UI, is there a plan to add it there? I don't mind cli, quite the opposite, but sometimes I have to give access to the UI to someone who...