Resources | system | licenseManager | licenseServer

licenseServer

This table is used to configure individual license managers.

Configuration

ParameterPresenceTypeDefaultDescription
nameMstring 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.
userNameMstring The username used to access the license manager
passwordMstring The password used to access the license manager
connectionTimeoutOint325 This is the time to wait for a response from the license manager ( secs ).
RESTCONF API: GET Example

curl -kisu 'admin:secret' -X GET https://{SBX-SERVER}/restconf/data/sonusSystem:system/licenseManager/licenseServer={name}

RESTCONF API: POST Example

curl -kisu 'admin:secret' -X POST -H 'Content-Type: application/yang-data+xml' https://{SBX-SERVER}/restconf/data/sonusSystem:system/licenseManager --data '
<licenseServer>
     <name>{name}</name>
     <priority>{priority}</priority>
     <serverAddress>{serverAddress}</serverAddress>
     <userName>{userName}</userName>
     <password>{password}</password>
</licenseServer>
'

RESTCONF API: DELETE Example

curl -kisu 'admin:secret' -X DELETE https://{SBX-SERVER}/restconf/data/sonusSystem:system/licenseManager/licenseServer={name}

  • No labels