Toolpack: Adding RADIUS Server(s)
From TBwiki
This article applies to: | Product | Version |
Tmedia | 2.9, 2.10, 3.0, 3.2 | |
SBC | 3.0, 3.1 |
These instructions are used to add a RADIUS accounting server or a RADIUS authorization server target to the configuration.
Call Detail Records (CDR) or Call authorization requests will be sent to these servers.
Multiple RADIUS servers can be configured to provide RADIUS redundancy.
1- Select RADIUS from the navigation panel.
2- In the Editing RADIUS client configuration page, select Create new RADIUS server
3- Configure the RADIUS server with these parameters:
- Name to recognize the server.
- Server IP address is the IP address of the RADIUS server we want to access.
- Server UDP Port is the UDP port of the RADIUS server we want to access (default port is 1813 for accounting and 1812 for authorization/authentication)
- Server type is Accounting for CDR and Authorization for Authorization and Authentication.
- Server secret is the passphrase to authenticate the TMG on the RADIUS server.
Advanced Parameters:
- Public IP address is used if the TMG is behind a NAT
- Timeout is the request timeout in milliseconds for each request to this server.
- Retries is the number of retries the RADIUS client will try before falling back to other methods. See full details on functionality here: CDR redundancy
4- You can configure multiple RADIUS servers to provide redundancy protection for RADIUS servers. Each entry can have different settings.
Path
/configurations/@[configuration_name]/radius_servers/@[radius_server]
Parameters (text)
/configurations/@[configuration_name]/radius_servers/@[radius_server] ip_address = "@[address_number]" name = "@[radius_server]" port = @[port_number] secret = "@[secret]" type = "Accounting" /configurations/@[configuration_name]/radius_servers/@[radius_server]/advanced_parameters associated_authorization_server = "" ip_header_tos = 0 polling_delay = "5 seconds" polling_enabled = false public_ip_address = "" retries = 2 timeout = "10 seconds"
Parameters (json)
{ "advanced_parameters" : { "associated_authorization_server" : "", "ip_header_tos" : 0, "polling_delay" : "5 seconds", "polling_enabled" : false, "public_ip_address" : "", "retries" : 2, "timeout" : "10 seconds" }, "ip_address" : "@[address_number]", "name" : "@[radius_server]", "port" : @[port_number], "secret" : "@[secret]", "type" : "Accounting" }
List of Parameters
Advanced Parameters