Toolpack:Configuring RADIUS client D

From TBwiki
(Difference between revisions)
Jump to: navigation, search
(Created page with "=== '''''Applies to version(s): v2.9''''' === {{DISPLAYTITLE:Toolpack: Configuring RADIUS}} This article describes how to configure a TMG system to capture CDRs, using a RADIU...")
 
 
(11 intermediate revisions by 2 users not shown)
Line 1: Line 1:
=== '''''Applies to version(s): v2.9''''' ===
 
 
{{DISPLAYTITLE:Toolpack: Configuring RADIUS}}
 
{{DISPLAYTITLE:Toolpack: Configuring RADIUS}}
This article describes how to configure a TMG system to capture CDRs, using a RADIUS server. RADIUS requests are sent from the TMG management port (mgmt0) or from the [[Virtual IP Interfaces|Virtual IP Interfaces]] (if they are configured).  
+
{| class="wikitable"
 +
|-
 +
|rowspan="3"|This article applies to:
 +
|'''Product'''
 +
|'''Version'''
 +
|-
 +
|Tmedia
 +
|2.9, 2.10, 3.0, 3.2
 +
|-
 +
|SBC
 +
|3.0, 3.1
 +
|}
 +
 
 +
This article describes how to configure a TMG system to capture [[CDR]]s, using a [[RADIUS]] server. [[RADIUS]] requests are sent from the TMG configured [[Change_VoIP_Interface_IP_Address|IP Interfaces]] or from the management port.  
  
  
Line 10: Line 22:
  
 
2- You can modify the following parameters:
 
2- You can modify the following parameters:
*'''Timezone''' will use the local timezone or the GMT timezone in the CDR records
+
*'''Timezone'''  
*'''Time format''' describes how to display the time in human readable format in the CDR records. This is based on the [http://php.net/manual/en/function.strftime.php strftime function]
+
*'''Time format'''  
 +
*'''Source IP interface'''
  
 
'''Advanced Parameters:'''
 
'''Advanced Parameters:'''
*'''Maximum accounting concurrent records''' is the maximum number of simultaneous accounting records to be sent to the RADIUS servers. This improves the RADIUS performance of the system: it allows the RADIUS client to deal with servers that have high latency relative to the number of request/responses per second to be achieved. Default value is 10 records.
+
*'''Maximum accounting concurrent records'''
*'''Maximum accounting queued records''' is the maximum number of accounting records to queue when the maximum number of pending records has been reached. When the maximum number of queued messages is reached, CDR records will be dropped. To prevent this, make sure the system supports [[CDR redundancy|CDR redundancy]]. Default value is 12000 records.
+
*'''Maximum accounting queued records'''  
*'''Maximum authorization concurrent requests''' is the maximum number of simultaneous authorization requests to be sent to RADIUS servers. Default value is 200 requests.
+
*'''Maximum authorization concurrent requests'''  
*'''Maximum authorization queued requests''' is the maximum number of authorization requests to queue when the maximum number of pending requests is reached. Default value is 12000 requests.
+
*'''Maximum authorization queued requests'''  
*'''Additional dictionary''' is an additional RADIUS dictionary for custom attributes.
+
*'''Additional dictionary'''  
  
 
*Click '''Create'''.
 
*Click '''Create'''.
Line 34: Line 47:
 
'''Path'''
 
'''Path'''
 
<pre>
 
<pre>
 +
/configurations/@[configuration_name]/radius_clients/@[radius_client]
 
</pre>
 
</pre>
  
 
'''Parameters (text)'''
 
'''Parameters (text)'''
 
<pre>
 
<pre>
 +
/configurations/@[configuration_name]/radius_clients/@[radius_client]
 +
additional_dictionnary = ""
 +
ip_interface          = "ANY"
 +
time_format            = "%H:%M:%S.@m %z %a %b %d %Y"
 +
timezone              = "Greenwich Mean Time"
 +
 +
/configurations/@[configuration_name]/radius_clients/@[radius_client]/accounting_queue
 +
maximum_concurrent_records = 10
 +
maximum_queued_records    = 12000
 +
 +
/configurations/@[configuration_name]/radius_clients/@[radius_client]/authorization_queue
 +
maximum_concurrent_requests = 200
 +
maximum_queued_requests    = 12000
 
</pre>
 
</pre>
  
 
'''Parameters (json)'''
 
'''Parameters (json)'''
 
<pre>
 
<pre>
 +
{
 +
  "accounting_queue" : {
 +
    "maximum_concurrent_records" : 10,
 +
    "maximum_queued_records" : 12000
 +
  },
 +
  "additional_dictionnary" : "",
 +
  "authorization_queue" : {
 +
    "maximum_concurrent_requests" : 200,
 +
    "maximum_queued_requests" : 12000
 +
  },
 +
  "ip_interface" : "ANY",
 +
  "time_format" : "%H:%M:%S.@m %z %a %b %d %Y",
 +
  "timezone" : "Greenwich Mean Time"
 +
}
 
</pre>
 
</pre>
 
</div>
 
</div>
 +
 +
== List of Parameters ==
 +
 +
*[[Parameter: Timezone|Timezone]]
 +
*[[Parameter: Time format|Time format]]
 +
*[[Parameter: Source IP interface|Source IP interface]]
 +
 +
'''Advanced'''
 +
*[[Parameter: Maximum accounting concurrent records|Maximum accounting concurrent records]]
 +
*[[Parameter: Maximum accounting queued records|Maximum accounting queued records]]
 +
*[[Parameter: Maximum authorization concurrent requests|Maximum authorization concurrent requests]]
 +
*[[Parameter: Maximum authorization queued requests|Maximum authorization queued requests]]
 +
*[[Parameter: Additional dictionary|Additional dictionary]]

Latest revision as of 15:09, 9 December 2020

This article applies to: Product Version
Tmedia 2.9, 2.10, 3.0, 3.2
SBC 3.0, 3.1

This article describes how to configure a TMG system to capture CDRs, using a RADIUS server. RADIUS requests are sent from the TMG configured IP Interfaces or from the management port.


1- Select RADIUS from the navigation panel.

ConfiguringRadius 0.png


2- You can modify the following parameters:

  • Timezone
  • Time format
  • Source IP interface

Advanced Parameters:

  • Maximum accounting concurrent records
  • Maximum accounting queued records
  • Maximum authorization concurrent requests
  • Maximum authorization queued requests
  • Additional dictionary
  • Click Create.

ConfiguringRadius A 1.png


3- Verify that the RADIUS client configuration successfully created message is displayed.

ConfiguringRadius A 2.png


Path

/configurations/@[configuration_name]/radius_clients/@[radius_client]

Parameters (text)

/configurations/@[configuration_name]/radius_clients/@[radius_client]
additional_dictionnary = ""
ip_interface           = "ANY"
time_format            = "%H:%M:%S.@m %z %a %b %d %Y"
timezone               = "Greenwich Mean Time"

/configurations/@[configuration_name]/radius_clients/@[radius_client]/accounting_queue
maximum_concurrent_records = 10
maximum_queued_records     = 12000

/configurations/@[configuration_name]/radius_clients/@[radius_client]/authorization_queue
maximum_concurrent_requests = 200
maximum_queued_requests     = 12000

Parameters (json)

{
  "accounting_queue" : {
    "maximum_concurrent_records" : 10,
    "maximum_queued_records" : 12000
  },
  "additional_dictionnary" : "",
  "authorization_queue" : {
    "maximum_concurrent_requests" : 200,
    "maximum_queued_requests" : 12000
  },
  "ip_interface" : "ANY",
  "time_format" : "%H:%M:%S.@m %z %a %b %d %Y",
  "timezone" : "Greenwich Mean Time"
}

List of Parameters

Advanced

Personal tools