Toolpack:Creating the M2UA Configuration D
From TBwiki
(Difference between revisions)
(Created page with "=== '''''Applies to version(s): v2.9.''''' === {{DISPLAYTITLE:Creating the M2UA Configuration}} To create your M2UA system, you must create a new M2UA configuration. M2UA...") |
|||
| (4 intermediate revisions by one user not shown) | |||
| Line 1: | Line 1: | ||
| − | |||
{{DISPLAYTITLE:Creating the M2UA Configuration}} | {{DISPLAYTITLE:Creating the M2UA Configuration}} | ||
| + | {| class="wikitable" | ||
| + | |- | ||
| + | |rowspan="3"|This article applies to: | ||
| + | |'''Product''' | ||
| + | |'''Version''' | ||
| + | |- | ||
| + | |Tmedia | ||
| + | |2.9, 2.10, 3.0, 3.2 | ||
| + | |} | ||
| + | |||
To create your [[M2UA]] system, you must create a new M2UA configuration. | To create your [[M2UA]] system, you must create a new M2UA configuration. | ||
| Line 29: | Line 38: | ||
'''Path''' | '''Path''' | ||
<pre> | <pre> | ||
| + | /configurations/@[configuration_name]/hardware_units/@[hardware_name]/m2ua_stacks/@[m2ua_stack] | ||
</pre> | </pre> | ||
'''Parameters (text)''' | '''Parameters (text)''' | ||
<pre> | <pre> | ||
| + | /configurations/@[configuration_name]/hardware_units/@[hardware_name]/m2ua_stacks/@[m2ua_stack] | ||
| + | enabled = true | ||
| + | name = "@[m2ua_stack]" | ||
| + | node_type = "Signaling Gateway (SG)" | ||
| + | |||
| + | /configurations/@[configuration_name]/hardware_units/@[hardware_name]/m2ua_stacks/@[m2ua_stack]/advanced_parameters | ||
| + | one_identifier_per_primitive = false | ||
| + | |||
| + | /configurations/@[configuration_name]/hardware_units/@[hardware_name]/m2ua_stacks/@[m2ua_stack]/timers | ||
| + | ack_timer = "1 second" | ||
| + | as_pending_timer = "1 second" | ||
| + | heartbeat_timer = "" | ||
| + | nb_aspm_retry = 5 | ||
| + | sctp_poll_timer = "1 second" | ||
| + | ss7_cong_poll_timer = "1 second" | ||
</pre> | </pre> | ||
'''Parameters (json)''' | '''Parameters (json)''' | ||
<pre> | <pre> | ||
| + | { | ||
| + | "advanced_parameters" : { | ||
| + | "one_identifier_per_primitive" : false | ||
| + | }, | ||
| + | "enabled" : true, | ||
| + | "name" : "@[m2ua_stack]", | ||
| + | "node_type" : "Signaling Gateway (SG)", | ||
| + | "timers" : { | ||
| + | "ack_timer" : "1 second", | ||
| + | "as_pending_timer" : "1 second", | ||
| + | "heartbeat_timer" : "", | ||
| + | "nb_aspm_retry" : 5, | ||
| + | "sctp_poll_timer" : "1 second", | ||
| + | "ss7_cong_poll_timer" : "1 second" | ||
| + | } | ||
</pre> | </pre> | ||
</div> | </div> | ||
Latest revision as of 14:48, 25 November 2020
| This article applies to: | Product | Version |
| Tmedia | 2.9, 2.10, 3.0, 3.2 |
To create your M2UA system, you must create a new M2UA configuration.
M2UA (Message Transfer Part 2 User Adaptation Layer) is used to interface the MTP2 Layer of a signaling gateway to the MTP3 Layer of a media gateway controller (MGC). M2UA can also be seen as a way to extend an MTP2 link. An M2UA link is always bound to an MTP2 link.
To create an M2UA configuration:
1- Click M2UA in the navigation panel
2- Create the M2UA configuration:
- Enter a name for the M2UA service
- Select a Node Type (SG, ASP, M2UA-MTP2 Relay)
- Click Create
3- Verify that the "M2ua Cfg was successfully created" message appears
Path
/configurations/@[configuration_name]/hardware_units/@[hardware_name]/m2ua_stacks/@[m2ua_stack]
Parameters (text)
/configurations/@[configuration_name]/hardware_units/@[hardware_name]/m2ua_stacks/@[m2ua_stack] enabled = true name = "@[m2ua_stack]" node_type = "Signaling Gateway (SG)" /configurations/@[configuration_name]/hardware_units/@[hardware_name]/m2ua_stacks/@[m2ua_stack]/advanced_parameters one_identifier_per_primitive = false /configurations/@[configuration_name]/hardware_units/@[hardware_name]/m2ua_stacks/@[m2ua_stack]/timers ack_timer = "1 second" as_pending_timer = "1 second" heartbeat_timer = "" nb_aspm_retry = 5 sctp_poll_timer = "1 second" ss7_cong_poll_timer = "1 second"
Parameters (json)
{
"advanced_parameters" : {
"one_identifier_per_primitive" : false
},
"enabled" : true,
"name" : "@[m2ua_stack]",
"node_type" : "Signaling Gateway (SG)",
"timers" : {
"ack_timer" : "1 second",
"as_pending_timer" : "1 second",
"heartbeat_timer" : "",
"nb_aspm_retry" : 5,
"sctp_poll_timer" : "1 second",
"ss7_cong_poll_timer" : "1 second"
}

