Recent content by jort

  1. J

    creating multiple vmbridges from a single network card

    i want to create multiple vmbr from a single eth, without having to restart my cluster is this possible? and if so how do i do it?
  2. J

    GET vncwebsocket doesnt seem to work

    this is what happens if i copy the curl command to my own terminal, it seems that it runs a second get command which doesnt take the second parameter i passed with the command. if i specify the port first it doesnt detect the ticket if i specify the ticket first it doesnt detect the port.
  3. J

    GET vncwebsocket doesnt seem to work

    no matter how or what i pass i always get NULL back or the error property is missing and is not optional while i did pass it. im using javascript to generate a curl command curl -X GET -k -b pveAuthcookie= (ticket gotten from access.ticket)...
  4. J

    Create multiple OVS bridges on a single interface without rebooting?

    this is what im currently working on, however im not too familiar with proxmox so i cant figure out how to create multiple bridges on a single network card. im using the API to only return the bridges the user is supposed to have access to, my main issue is how do i configure a bridge in such...
  5. J

    Create multiple OVS bridges on a single interface without rebooting?

    i want to allow my users to create multiple separate networks functioning as virtual switches. so they can build their own network with VM's functioning as servers within that network without interfering with each other while still having access to the internet edit: id like to able to have...
  6. J

    Create multiple OVS bridges on a single interface without rebooting?

    i have followed https://pve.proxmox.com/wiki/Network_Configuration and am using the default config. however i would like to create multiple OVS bridges on my eth0, without having to reboot my node. is there a way to do this? as of now promox doesnt allow multiple bridges on the same eth...
  7. J

    Passing a ticket to noVNC

    im using novnc to grant people access to the console of their VM through a custom UI instead of the default proxmox UI, however the default UI saves a ticket in the browser which it uses for the consoles. how to i pass a new ticket to the noVNC in my browser or how to i save one in my browser?
  8. J

    creating new disk image via api?

    curl -X POST -k -b...
  9. J

    Change vm boot order via api?

    thanks alot, thats a really useful page.
  10. J

    Change vm boot order via api?

    i was using the GET on /nodes/NODE/qemu/VMID/config to get its current boot order but i didnt find any such value's in the returned object. but ill try setting the startup in my PUT object, any guides on how these things should be formatted?