Resources | system | licenseServer

licenseServer

This table is used to configure individual license servers.

Configuration

ParameterPresenceTypeDefaultDescription
serverNameMstring The name used to reference this server
priorityMint32 The server selection priority for this server. The lower the numerical value, the higher the priority for the server.
serverAddressMstring The IPv4 or IPv6 ipaddress of the server as either a hostname, an IPv4 address in dot notation, or an IPv6 address in hex-colon notation.
REST API: GET Example

curl -kisu 'admin:secret' -X GET https://{SBX-SERVER}/api/config/system/licenseServer/{serverName}

REST API: POST Example

curl -kisu 'admin:secret' -X POST -H 'Content-Type: application/vnd.yang.data+xml' https://{SBX-SERVER}/api/config/system --data '
<licenseServer>
     <serverName>{serverName}</serverName>
     <priority>{priority}</priority>
     <serverAddress>{serverAddress}</serverAddress>
</licenseServer>
'

REST API: DELETE Example

curl -kisu 'admin:secret' -X DELETE https://{SBX-SERVER}/api/config/system/licenseServer/{serverName}

  • No labels