Search results

  1. H

    proxmox API : disable interface from autostarting

    installing ifupdown2 immediately knocked my management network offline.
  2. H

    proxmox API : disable interface from autostarting

    i'm trying to create a bonded interface with the proxmox api. eg. pvesh create nodes/NODE/network --iface=bond0 --type=bond --bond_mode=802.3ad --bond_xmit_hash_policy=layer2+3 --autostart=1 --slaves='eno1 eno2'. this creates... auto bond0 iface bond0 inet manual bond-slaves eno1...
  3. H

    Rest API Delete VM

    thanks. which other vm apis are async?
  4. H

    Rest API Delete VM

    does the DELETE nodes/NODe/qemu/VMID function run asynchronously? after executing that api call, i was still able to see the VMID when I execute GET nodes/NODE/qemu.
  5. H

    API equivalent of qm guest exec

    also tried qm guest exec 100 '/bin/ls -ald /tmp' but didnt work.
  6. H

    API equivalent of qm guest exec

    what's the api of pvesh equivalent of qm guest exec? eg. qm guest exec 100 '/bin/ls' -- '-ald' '/tmp' i tried pvesh create /nodes/xxx/qemu/100/agent/exec -command 'ls -ald /tmp', but it's giving me an error: Wide character in die at /usr/share/perl5/PVE/RESTHandler.pm line 869. also, i...
  7. H

    qemu lock files

    nobody knows?
  8. H

    /root/.ssh/authorized_keys

    What are the SSH keys generated by proxmox used for? Is it safe for my config management scripts to overwrite this file with a custom one?
  9. H

    qemu lock files

    is it normal for lock files to remain in /run/lock/qemu-server/ even when no VMs are running?
  10. H

    pvesh return code

    Does pvesh always return 255 on a get request when it can't find an object? eg. pvesh get /access/users/johndoe status=$? # <- always 255 if not found? would my script break on updates/upgrades if i depend on 255 being returned?
  11. H

    Disable WebUI subscription nag message

    is it possible to disable that subscription message when logging into the webui on the free version?
  12. H

    unattended install

    proxmox works on ubuntu?
  13. H

    LDAP sync

    how do i filter ldap user sync by ldap group and assign those accounts to a proxmox group? i have the following set: User Filter: memberOf=cn=MyProxmoxUsers,ou=Groups,dc=example,dc=com but it's not working. without the filter, i'm able to list all the users, so i can confirm ldap sync is...
  14. H

    unattended install

    i'm trying to automate the entire setup process end to end. i have already gotten a lot of it automated via my config management system. the missing piece is the initial setup the install the base server with networking/ssh enabled. an ideal solution for me would be something like a local...
  15. H

    LDAP config - user name '' is too short (500)

    looks like this only works as root.
  16. H

    LDAP config - user name '' is too short (500)

    I'm trying to auth using ldap, but when i try to prevew sync, i get the error: user name '' is too short (500)
  17. H

    unattended install

    can i preseed the proxmox installer?
  18. H

    unattended install

    you installed the base debian manually?
  19. H

    Proxmox API - optional parameters

    how can i pass optional parameters to the rest API? eg. GET /api2/json//nodes/{node}/network this takes an optional 'type' parameter. how do i set this type parameter in a curl / wget query?