Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Resources | system | jsrcServer | remoteServer

remoteServer

Specifies the JSRC remote server configuration.

Configuration

ParameterPresenceTypeDefaultDescription
srcNameMstring JSRC server identifier
stateOenumerationdisabled Admin state of the JSRC server
srcServerAddressMip-address The IPv4 or IPv6 ipaddress of the JSRC server as an IPv4 address in dot notation, or an IPv6 address in hex-colon notation.
srcUsernameMstring the username for the SOAP gateway
srcPasswordMstring the password for the SOAP gateway
REST API: GET Example

curl -kisu 'admin:secret' -X GET https://{SBX-SERVER}/api/config/system/jsrcServer/remoteServer/{srcName}

REST API: POST Example

curl -kisu 'admin:secret' -X POST -H 'Content-Type: application/vnd.yang.data+xml' https://{SBX-SERVER}/api/config/system/jsrcServer --data '
<remoteServer>
     <srcName>{srcName}</srcName>
     <srcServerAddress>{srcServerAddress}</srcServerAddress>
     <srcUsername>{srcUsername}</srcUsername>
     <srcPassword>{srcPassword}</srcPassword>
</remoteServer>
'

REST API: DELETE Example

curl -kisu 'admin:secret' -X DELETE https://{SBX-SERVER}/api/config/system/jsrcServer/remoteServer/{srcName}