Toolpack:Creating M2UA Links C
From TBwiki
(Difference between revisions)
(Created page with "=== '''''Applies to version(s): v2.9''''' === {{DISPLAYTITLE:Creating M2UA Links}} AFter you create an M2UA cluster, you must create M2UA links for your system. An M2UA l...") |
(added northbound data) |
||
| Line 50: | Line 50: | ||
'''Path''' | '''Path''' | ||
<pre> | <pre> | ||
| + | /configurations/@[configuration_name]/hardware_units/@[hardware_name]/m2ua_stacks/@[m2ua_stack]/m2ua_saps/@[m2ua_sap]/m2ua_clusters/@[m2ua_cluster]/m2ua_links/@[m2ua_link] | ||
</pre> | </pre> | ||
'''Parameters (text)''' | '''Parameters (text)''' | ||
<pre> | <pre> | ||
| + | /configurations/@[configuration_name]/hardware_units/@[hardware_name]/m2ua_stacks/@[m2ua_stack]/m2ua_saps/@[m2ua_sap]/m2ua_clusters/@[m2ua_cluster]/m2ua_links/@[m2ua_link] | ||
| + | intf_id = "1" | ||
| + | intf_id_type = "Integer" | ||
| + | mtp2_link = "NONE" | ||
| + | name = "@[m2ua_link]" | ||
| + | protocol_type = "ITU" | ||
| + | |||
| + | /configurations/@[configuration_name]/hardware_units/@[hardware_name]/m2ua_stacks/@[m2ua_stack]/m2ua_saps/@[m2ua_sap]/m2ua_clusters/@[m2ua_cluster]/m2ua_links/@[m2ua_link]/state | ||
| + | target_link_state = "Connected" | ||
</pre> | </pre> | ||
'''Parameters (json)''' | '''Parameters (json)''' | ||
<pre> | <pre> | ||
| + | { | ||
| + | "intf_id" : "1", | ||
| + | "intf_id_type" : "Integer", | ||
| + | "mtp2_link" : "NONE", | ||
| + | "name" : "@[m2ua_link]", | ||
| + | "protocol_type" : "ITU", | ||
| + | "state" : { | ||
| + | "target_link_state" : "Connected" | ||
| + | } | ||
| + | } | ||
</pre> | </pre> | ||
</div> | </div> | ||
Revision as of 16:09, 22 January 2016
Applies to version(s): v2.9
AFter you create an M2UA cluster, you must create M2UA links for your system.
An M2UA link is always bound to an MTP2 link, and can be seen a way of extending MTP2 functionality.
To create an M2UA link:
1- Click M2UA in the navigation panel
2- Select an M2UA SAP
3- Select an M2UA Cluster
4- Click Create New M2ua Link in the M2UA cluster configuration window:
5- Configure the new M2UA link:
- Enter a name for the link
- IMPORTANT!
- For a system on a signaling gateway: Select an MTP2 link
- For a system on a media gateway controller: Select NONE
- Select a protocol type (same as MTP2)
- Select an interface ID type
- Enter an appropriate interface ID (must be unique to each link)
- Click Create
6- Verify that the "M2ua Link was successfully created" message appears
Path
/configurations/@[configuration_name]/hardware_units/@[hardware_name]/m2ua_stacks/@[m2ua_stack]/m2ua_saps/@[m2ua_sap]/m2ua_clusters/@[m2ua_cluster]/m2ua_links/@[m2ua_link]
Parameters (text)
/configurations/@[configuration_name]/hardware_units/@[hardware_name]/m2ua_stacks/@[m2ua_stack]/m2ua_saps/@[m2ua_sap]/m2ua_clusters/@[m2ua_cluster]/m2ua_links/@[m2ua_link] intf_id = "1" intf_id_type = "Integer" mtp2_link = "NONE" name = "@[m2ua_link]" protocol_type = "ITU" /configurations/@[configuration_name]/hardware_units/@[hardware_name]/m2ua_stacks/@[m2ua_stack]/m2ua_saps/@[m2ua_sap]/m2ua_clusters/@[m2ua_cluster]/m2ua_links/@[m2ua_link]/state target_link_state = "Connected"
Parameters (json)
{
"intf_id" : "1",
"intf_id_type" : "Integer",
"mtp2_link" : "NONE",
"name" : "@[m2ua_link]",
"protocol_type" : "ITU",
"state" : {
"target_link_state" : "Connected"
}
}




