Download full document:

aaaradiusparams

Configuration for RADIUS parameter resource.

Properties

(click to see Operations)

Name Data Type PermissionsDescription
serverip<String>Read-writeIP address of your RADIUS server.<br>Minimum length = 1
serverport<Integer>Read-writePort number on which the RADIUS server listens for connections.<br>Default value: 1812<br>Minimum value = 1
authtimeout<Double>Read-writeMaximum number of seconds that the NetScaler appliance waits for a response from the RADIUS server.<br>Default value: 3<br>Minimum value = 1
radkey<String>Read-writeThe key shared between the RADIUS server and clients. <br>Required for allowing the NetScaler appliance to communicate with the RADIUS server.<br>Minimum length = 1
radnasip<String>Read-writeSend the NetScaler IP (NSIP) address to the RADIUS server as the Network Access Server IP (NASIP) part of the Radius protocol.<br>Possible values = ENABLED, DISABLED
radnasid<String>Read-writeSend the Network Access Server ID (NASID) for your NetScaler appliance to the RADIUS server as the nasid part of the Radius protocol.
radvendorid<Double>Read-writeVendor ID for RADIUS group extraction.<br>Minimum value = 1
radattributetype<Double>Read-writeAttribute type for RADIUS group extraction.<br>Minimum value = 1
radgroupsprefix<String>Read-writePrefix string that precedes group names within a RADIUS attribute for RADIUS group extraction.
radgroupseparator<String>Read-writeGroup separator string that delimits group names within a RADIUS attribute for RADIUS group extraction.
passencoding<String>Read-writeEnable password encoding in RADIUS packets that the NetScaler appliance sends to the RADIUS server.<br>Default value: pap<br>Possible values = pap, chap, mschapv1, mschapv2
ipvendorid<Double>Read-writeVendor ID attribute in the RADIUS response. <br>If the attribute is not vendor-encoded, it is set to 0.
ipattributetype<Double>Read-writeIP attribute type in the RADIUS response.<br>Minimum value = 1
accounting<String>Read-writeConfigure the RADIUS server state to accept or refuse accounting messages.<br>Possible values = ON, OFF
pwdvendorid<Double>Read-writeVendor ID of the password in the RADIUS response. Used to extract the user password.<br>Minimum value = 1
pwdattributetype<Double>Read-writeAttribute type of the Vendor ID in the RADIUS response.<br>Minimum value = 1
defaultauthenticationgroup<String>Read-writeThis is the default group that is chosen when the authentication succeeds in addition to extracted groups.<br>Maximum length = 64
callingstationid<String>Read-writeSend Calling-Station-ID of the client to the RADIUS server. IP Address of the client is sent as its Calling-Station-ID.<br>Default value: DISABLED<br>Possible values = ENABLED, DISABLED
authservretry<Double>Read-writeNumber of retry by the NetScaler appliance before getting response from the RADIUS server.<br>Default value: 3<br>Minimum value = 1<br>Maximum value = 10
authentication<String>Read-writeConfigure the RADIUS server state to accept or refuse authentication messages.<br>Default value: ON<br>Possible values = ON, OFF
groupauthname<String>Read-onlyTo associate AAA users with an AAA group, use the command<br><br> "bind AAA group ... -username ...".<br><br>You can bind different policies to each AAA group. Use the command<br><br> "bind AAA group ... -policy ...".
ipaddress<String>Read-onlyIP Address.
builtin<String[]>Read-onlyIndicates that a variable is a built-in (SYSTEM INTERNAL) type.<br>Possible values = MODIFIABLE, DELETABLE, IMMUTABLE, PARTITION_ALL

Operations

(click to see Properties)

UPDATE | UNSET | GET (ALL)

Some options that you can use for each operations:

  • Getting warnings in response: NITRO allows you to get warnings in an operation by specifying the "warning" query parameter as "yes". For example, to get warnings while connecting to the NetScaler appliance, the URL is as follows:

    http://<netscaler-ip-address>/nitro/v1/config/login?warning=yes

    If any, the warnings are displayed in the response payload with the HTTP code "209 X-NITRO-WARNING".

  • Authenticated access for individual NITRO operations: NITRO allows you to logon to the NetScaler appliance to perform individual operations. You can use this option instead of creating a NITRO session (using the login object) and then using that session to perform all operations,

    To do this, you must specify the username and password in the request header of the NITRO request as follows:

    X-NITRO-USER:<username>

    X-NITRO-PASS:<password>

    Note: In such cases, make sure that the request header DOES not include the following:

    Cookie:NITRO_AUTH_TOKEN=<tokenvalue>

Note:

Mandatory parameters are marked in red and placeholder content is marked in <green>.

update

URL: http://<netscaler-ip-address>/nitro/v1/config/aaaradiusparams

HTTP Method: PUT

Request Headers:

Cookie:NITRO_AUTH_TOKEN=<tokenvalue> Content-Type:application/json

Request Payload:

{"aaaradiusparams":{
      "serverip":<String_value>,
      "serverport":<Integer_value>,
      "authtimeout":<Double_value>,
      "radkey":<String_value>,
      "radnasip":<String_value>,
      "radnasid":<String_value>,
      "radvendorid":<Double_value>,
      "radattributetype":<Double_value>,
      "radgroupsprefix":<String_value>,
      "radgroupseparator":<String_value>,
      "passencoding":<String_value>,
      "ipvendorid":<Double_value>,
      "ipattributetype":<Double_value>,
      "accounting":<String_value>,
      "pwdvendorid":<Double_value>,
      "pwdattributetype":<Double_value>,
      "defaultauthenticationgroup":<String_value>,
      "callingstationid":<String_value>,
      "authservretry":<Double_value>,
      "authentication":<String_value>
}}

Response:

HTTP Status Code on Success: 200 OK HTTP Status Code on Failure: 4xx <string> (for general HTTP errors) or 5xx <string> (for NetScaler-specific errors). The response payload provides details of the error

unset

URL: http://<netscaler-ip-address>/nitro/v1/config/aaaradiusparams?action=unset

HTTP Method: POST

Request Headers:

Cookie:NITRO_AUTH_TOKEN=<tokenvalue> Content-Type:application/json

Request Payload:

{"aaaradiusparams":{
      "serverip":true,
      "serverport":true,
      "authtimeout":true,
      "radnasip":true,
      "radnasid":true,
      "radvendorid":true,
      "radattributetype":true,
      "radgroupsprefix":true,
      "radgroupseparator":true,
      "passencoding":true,
      "ipvendorid":true,
      "ipattributetype":true,
      "accounting":true,
      "pwdvendorid":true,
      "pwdattributetype":true,
      "defaultauthenticationgroup":true,
      "callingstationid":true,
      "authservretry":true,
      "authentication":true
}}

Response:

HTTP Status Code on Success: 200 OK HTTP Status Code on Failure: 4xx <string> (for general HTTP errors) or 5xx <string> (for NetScaler-specific errors). The response payload provides details of the error

get (all)

URL: http://<netscaler-ip-address>/nitro/v1/config/aaaradiusparams

HTTP Method: GET

Request Headers:

Cookie:NITRO_AUTH_TOKEN=<tokenvalue> Accept:application/json

Response:

HTTP Status Code on Success: 200 OK HTTP Status Code on Failure: 4xx <string> (for general HTTP errors) or 5xx <string> (for NetScaler-specific errors). The response payload provides details of the errorResponse Headers:

Content-Type:application/json

Response Payload:

{ "aaaradiusparams": [ {
      "serverip":<String_value>,
      "serverport":<Integer_value>,
      "radkey":<String_value>,
      "groupauthname":<String_value>,
      "authtimeout":<Double_value>,
      "radnasip":<String_value>,
      "radnasid":<String_value>,
      "ipaddress":<String_value>,
      "radvendorid":<Double_value>,
      "radattributetype":<Double_value>,
      "radgroupsprefix":<String_value>,
      "radgroupseparator":<String_value>,
      "passencoding":<String_value>,
      "ipvendorid":<Double_value>,
      "ipattributetype":<Double_value>,
      "accounting":<String_value>,
      "pwdvendorid":<Double_value>,
      "pwdattributetype":<Double_value>,
      "defaultauthenticationgroup":<String_value>,
      "callingstationid":<String_value>,
      "authservretry":<Double_value>,
      "authentication":<String_value>,
      "builtin":<String[]_value>
}]}