Toolpack:Creating the IUA Configuration D: Difference between revisions
(Created page with "=== '''''Applies to version(s): v2.9''''' === {{DISPLAYTITLE:Creating the IUA Configuration}} To create your IUA system, you must create a new IUA configuration. To crea...") |
No edit summary |
||
| (5 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
{{DISPLAYTITLE:Creating the IUA Configuration}} | {{DISPLAYTITLE:Creating the IUA Configuration}} | ||
{| class="wikitable" | |||
|- | |||
|rowspan="3"|This article applies to: | |||
|'''Product''' | |||
|'''Version''' | |||
|- | |||
|Tmedia | |||
|3.0, 3.2, 3.3 | |||
|} | |||
To create your [[IUA]] system, you must create a new IUA configuration. | To create your [[IUA]] system, you must create a new IUA configuration. | ||
To create an IUA configuration: | To create an IUA configuration: | ||
1- Click '''IUA''' in the navigation panel | 1- Click '''IUA''' in the navigation panel | ||
| Line 29: | Line 36: | ||
'''Path''' | '''Path''' | ||
<pre> | <pre> | ||
/configurations/@[configuration_name]/hardware_units/@[hardware_name]/iua_stacks/@[iua_stack] | |||
</pre> | </pre> | ||
'''Parameters (text)''' | '''Parameters (text)''' | ||
<pre> | <pre> | ||
/configurations/@[configuration_name]/hardware_units/@[hardware_name]/iua_stacks/@[iua_stack] | |||
enabled = true | |||
name = "@[iua_stack]" | |||
/configurations/@[configuration_name]/hardware_units/@[hardware_name]/iua_stacks/@[iua_stack]/timers | |||
as_pending_timer = "1 second" | |||
heartbeat_timer = "" | |||
sctp_poll_timer = "1 second" | |||
</pre> | </pre> | ||
'''Parameters (json)''' | '''Parameters (json)''' | ||
<pre> | <pre> | ||
{ | |||
"enabled" : true, | |||
"name" : "@[iua_stack]", | |||
"timers" : { | |||
"as_pending_timer" : "1 second", | |||
"heartbeat_timer" : "", | |||
"sctp_poll_timer" : "1 second" | |||
} | |||
</pre> | </pre> | ||
</div> | </div> | ||
Latest revision as of 14:23, 24 June 2024
| This article applies to: | Product | Version |
| Tmedia | 3.0, 3.2, 3.3 |
To create your IUA system, you must create a new IUA configuration.
To create an IUA configuration:
1- Click IUA in the navigation panel
2- Create the IUA configuration:
- Enter a name for the IUA service
- Click Create
3- Verify that the "Iua Cfg was successfully created" message appears
Path
/configurations/@[configuration_name]/hardware_units/@[hardware_name]/iua_stacks/@[iua_stack]
Parameters (text)
/configurations/@[configuration_name]/hardware_units/@[hardware_name]/iua_stacks/@[iua_stack] enabled = true name = "@[iua_stack]" /configurations/@[configuration_name]/hardware_units/@[hardware_name]/iua_stacks/@[iua_stack]/timers as_pending_timer = "1 second" heartbeat_timer = "" sctp_poll_timer = "1 second"
Parameters (json)
{
"enabled" : true,
"name" : "@[iua_stack]",
"timers" : {
"as_pending_timer" : "1 second",
"heartbeat_timer" : "",
"sctp_poll_timer" : "1 second"
}

