• Network creation on the pool using xo-cli

    2
    0 Votes
    2 Posts
    230 Views
    DanpD
    @Pix FYI, I was just doing some testing on this exact function and I was able to add a network to the pool when using the UUID for the host's matching PIF. The UUID you were using is from the pool's network, which won't work here. For example -- Networks [17:29 xenserver-slnqfzrh ~]# xe network-list uuid ( RO) : a379a6e7-f099-f838-6514-486de4d56e80 name-label ( RW): Pool-wide network associated with eth0 name-description ( RW): bridge ( RO): xenbr0 uuid ( RO) : b14a0bdd-2f77-25f7-3a76-b830ff971624 name-label ( RW): Pool-wide network associated with eth2 name-description ( RW): bridge ( RO): xenbr2 uuid ( RO) : 00b6604f-9098-023b-5880-0ef9f8e1b437 name-label ( RW): Pool-wide network associated with eth1 name-description ( RW): bridge ( RO): xenbr1 uuid ( RO) : e3be0e1a-9872-4b90-c851-35eb30a86920 name-label ( RW): Pool-wide network associated with eth3 name-description ( RW): bridge ( RO): xenbr3 uuid ( RO) : c54ecffe-9467-5d5f-cb73-ec10dedef2b9 name-label ( RW): Host internal management network name-description ( RW): Network on which guests will be assigned a private link-local IP address which can be used to talk XenAPI bridge ( RO): xenapi PIFs [17:49 xenserver-slnqfzrh ~]# xe pif-list network-uuid=00b6604f-9098-023b-5880-0ef9f8e1b437 uuid ( RO) : ea3edc31-9b23-402c-a65e-2316c88febb5 device ( RO): eth1 currently-attached ( RO): true VLAN ( RO): -1 network-uuid ( RO): 00b6604f-9098-023b-5880-0ef9f8e1b437 uuid ( RO) : 3a1ef416-787f-45b4-ace9-0147c2f3ca07 device ( RO): eth1 currently-attached ( RO): true VLAN ( RO): -1 network-uuid ( RO): 00b6604f-9098-023b-5880-0ef9f8e1b437 Adding a VLAN [18:27 21] xoa:xoa$ xo-cli network.create pool=63b7154a-1a6c-8642-525e-c6abb0acc941 name="VLAN20 - On Eth1" pif=ea3edc31-9b23-402c-a65e-2316c88febb5 vlan=json:20 52d18dc6-8078-a7ce-4bc5-d4337d2fb970 HTH, Dan
  • Grafana Xen Orchestra

    2
    0 Votes
    2 Posts
    199 Views
    olivierlambertO
    Hi, Can you describe the target/objective you want to achieve/expect?
  • 0 Votes
    6 Posts
    482 Views
    S
    @pxn said in Java SDK, XmlRpcClientException: Failed to parse server's response: Duplicate name: restrict_vtpm: If you still encounter this issue - I found the way to bypass it. You can create your own mapper by extending on RecursiveTypeParserImpl and just copy-paste logic from MapParser (package org.apache.xmlrpc.parser;), except that logic of checking duplication, then you can inject custom parser to your custom factory (Extend TypeFactoryImpl and override getParser method). And inject this Factory to your client new XmlRpcClient().setTypeFactory(new CustomFactory(client)); This works fine for me, I hope this could help you. Alex
  • how to query users and there vms there own

    11
    0 Votes
    11 Posts
    298 Views
    olivierlambertO
    Yes, you can have a list of all available calls by doing xo-cli list-commands
  • XO Rest API

    28
    1
    0 Votes
    28 Posts
    2k Views
    julien-fJ
    Yes, you can use JSON-RPC et REST APIs together for now We will try to add support for CPU settings soon. Also, expect things to accelerate in 2025 regarding the REST API.
  • 0 Votes
    9 Posts
    334 Views
    M
    @CodeMercenary Can't help you there. The only thing I use(d) is the cli on the xcp hosts themselves. reboot or shutdown
  • Clarification on Creating ResourceSet via xo-cli

    4
    0 Votes
    4 Posts
    182 Views
    julien-fJ
    @samuelolavo Shell only handles string values, to pass other types to xo-cli you need to encode them in JSON and use the json: prefix: xo-cli resourceSet.create name=test-resource subjects=json:'["d301d9ea-9e22-4480-bf40-111111111111"]' objects=json:'["8fb06362-d8fe-598b-f819-11111111111111"]' shareByDefault=json:true
  • xo-cli user.create issues

    7
    0 Votes
    7 Posts
    321 Views
    julien-fJ
    @samuelolavo No, users management and self service are not in the REST API yet.
  • action rolling_update fails with strange error

    Solved
    6
    0 Votes
    6 Posts
    352 Views
    V
    @julien-f thanks! I have tested it and its working now! cheers Ringo
  • Sorting out APIs and Ansible Modules

    7
    0 Votes
    7 Posts
    700 Views
    olivierlambertO
    Yes, you can use Terraform directly
  • Using API to automate VM OS Drive replacement

    9
    0 Votes
    9 Posts
    446 Views
    K
    Hi @olivierlambert , Okay, I made some progress today and have worked out the steps to remove, delete or add drives to a VM. Removed drive from the server attached to and also deleted the disk itself xo-cli vdi.delete id=<the id of the VDI> Removed drive from the server attached to, but didn't delete the disk! xo-cli vdb.delete id=<the id of the VBD> Added a drive to the server xo-cli vm.attachDisk vdi=<the id of the VDI> vm=<the id of VM> If was the last one that I was missing. I'm still not sure of the difference between the 'uuid' and 'id' fields, but will use the 'id' as this seems to be what the commands are wanting. Thanks Kent.
  • programmatically connect SR (NFS)

    Solved
    5
    0 Votes
    5 Posts
    334 Views
    olivierlambertO
    Perfect, excellent news Enjoy XCP-ng!
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • Get VNC Console Stream via REST API

    4
    0 Votes
    4 Posts
    437 Views
    julien-fJ
    @Morpheus0x Your feature request has been noted and will be put in the backlog. It appears to be trivial so it should we'll try to do it soon but I cannot tell you when.
  • Xen Orchestra API and documentation - Examples

    Moved
    11
    0 Votes
    11 Posts
    2k Views
    olivierlambertO
    I think it might be easier to do so with the new REST API, what do you think @julien-f ?
  • Disable TX checksumming with API

    3
    0 Votes
    3 Posts
    240 Views
    S
    @splastunov said in Disable TX checksumming with API: XAPI Thank you, I found https://xapi-project.github.io/xen-api/networking.html
  • Example - List all VM backups

    7
    0 Votes
    7 Posts
    728 Views
    K
    @cmuller Thank you! It's great to see code-sharing in the forum!
  • Inquiry about Obtaining VM Disk Space Usage via XO API or XO-CLI

    5
    0 Votes
    5 Posts
    415 Views
    julien-fJ
    First of all, take a look at the general XO REST API documentation. Then, take a look at xo-cli --help which explain how to use it to interact with the REST API. You can list all VDIs at /rest/v0/vdis, snapshots are available at /rest/v0/vdi-snapshots. You also have the ability to list the VDIs attached to a specific VM at /rest/v0/vms/:id/vdis.
  • Accessing Resource Set and ACLs Information via API

    3
    0 Votes
    3 Posts
    242 Views
    julien-fJ
    @samuelolavo Not exposed in the REST API yet. You can use the legacy API for this: xo-cli acl.get xo-cli resourceSet.getAll
  • Fetch backup information

    11
    0 Votes
    11 Posts
    602 Views
    R
    @julien-f maybe there can we some recoverypoint endpoint? or remotes?