Toolpack:Creating the M2UA Configuration D
From TBwiki
		(Difference between revisions)
		
		
 (Added northbound data)  | 
		m  | 
		||
| Line 1: | Line 1: | ||
| − | === '''''Applies to version(s): v2.9.''''' ===  | + | === '''''Applies to version(s): v2.9, v2.10''''' ===  | 
{{DISPLAYTITLE:Creating the M2UA Configuration}}  | {{DISPLAYTITLE:Creating the M2UA Configuration}}  | ||
To create your [[M2UA]] system, you must create a new M2UA configuration.  | To create your [[M2UA]] system, you must create a new M2UA configuration.  | ||
Revision as of 11:19, 2 November 2016
Applies to version(s): v2.9, v2.10
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"
 }

