Get Radius Configuration of Element (v2.0)
GET/v2.0/api/tenants/:tenant_id/elements/:element_id/radii
List the radius configuration of an element in a tenant.
Request
Path Parameters
The tenant ID.
The element ID.
Responses
- 200
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- ]
- ]
The actual count.
The ID.
The tenant ID.
items ElementRadius[]
The element radius description. Max limit = 256.
The element radius ID.
The name of the radius server.
The override indicator. Certain configurations can be overridden from RADIUS server using the user policy.
radius_configuration RadiusConfiguration[]
The details of the radius configuration parameters.
The radius configuration accounting port number between 1-65535. Default port is 1813.
The radius configuration authentication port number between 1-65535. Default port is 1812.
The version of the IP.
The priority value between 1-255. Lower the priority number, higher is the priority.
If the shared secret is retained. Value = True/False.
The valid IP address (IPv4).
The shared secret, the length of the secret must be between 8-64 characters.
The encrypted shared secret. Value = True.
The radius profile ID.
The source interface ID of the selected port.
A information field that can be added to identify the radius server. Maximum 10 unique tags of length 128 each are allowed.
{
"count": 0,
"id": "string",
"tenant_id": "string",
"items": [
{
"id": "string",
"name": "string",
"override_indicator": [
"string"
],
"radius_configuration": [
{
"accounting_port": 0,
"authentication_port": 0,
"ip_version": 0,
"priority": 0,
"retain_shared_secret": true,
"server_ip_address": "string",
"shared_secret": "string",
"shared_secret_encrypted": "string"
}
],
"radius_profile_id": "string",
"source_interface_id": "string",
"tags": [
"string"
]
}
]
}