Toolpack:Creating IUA Peers C
From TBwiki
(Difference between revisions)
(Created page with "=== '''''Applies to version(s): v2.9''''' === {{DISPLAYTITLE:Creating IUA Peers}} AFter you create the IUA link(s), you must define the IUA peers. To create an IUA peer: 1-...") |
|||
(5 intermediate revisions by one user not shown) | |||
Line 1: | Line 1: | ||
− | |||
{{DISPLAYTITLE:Creating IUA Peers}} | {{DISPLAYTITLE:Creating IUA Peers}} | ||
− | + | {| class="wikitable" | |
+ | |- | ||
+ | |rowspan="3"|This article applies to: | ||
+ | |'''Product''' | ||
+ | |'''Version''' | ||
+ | |- | ||
+ | |Tmedia | ||
+ | |2.9, 2.10, 3.0, 3.2 | ||
+ | |} | ||
+ | |||
+ | After you create the IUA link(s), you must define the IUA peers. | ||
To create an IUA peer: | To create an IUA peer: | ||
Line 46: | Line 55: | ||
[[Image:Create_Iua_Peer_3.png]] | [[Image:Create_Iua_Peer_3.png]] | ||
+ | |||
<div class="mw-collapsible mw-collapsed" data-collapsetext="Northbound Interface" data-expandtext="Northbound Interface" style="width: 400px;"> | <div class="mw-collapsible mw-collapsed" data-collapsetext="Northbound Interface" data-expandtext="Northbound Interface" style="width: 400px;"> | ||
Line 51: | Line 61: | ||
'''Path''' | '''Path''' | ||
<pre> | <pre> | ||
+ | /configurations/@[configuration_name]/hardware_units/@[hardware_name]/iua_stacks/@[iua_stack]/iua_saps/@[iua_sap]/iua_clusters/@[iua_cluster]/iua_peers/@[iua_peer] | ||
</pre> | </pre> | ||
'''Parameters (text)''' | '''Parameters (text)''' | ||
<pre> | <pre> | ||
+ | /configurations/@[configuration_name]/hardware_units/@[hardware_name]/iua_stacks/@[iua_stack]/iua_saps/@[iua_sap]/iua_clusters/@[iua_cluster]/iua_peers/@[iua_peer] | ||
+ | dst_port = 9900 | ||
+ | ip_dsts = [ "@[address_number]" ] | ||
+ | name = "@[iua_peer]" | ||
+ | |||
+ | /configurations/@[configuration_name]/hardware_units/@[hardware_name]/iua_stacks/@[iua_stack]/iua_saps/@[iua_sap]/iua_clusters/@[iua_cluster]/iua_peers/@[iua_peer]/advanced_parameters | ||
+ | ip_header_tos = 0 | ||
+ | nb_of_sctp_streams = 32 | ||
+ | prim_timeout = "1 second" | ||
+ | valid_asp_id_req = false | ||
</pre> | </pre> | ||
'''Parameters (json)''' | '''Parameters (json)''' | ||
<pre> | <pre> | ||
+ | { | ||
+ | "advanced_parameters" : { | ||
+ | "ip_header_tos" : 0, | ||
+ | "nb_of_sctp_streams" : 32, | ||
+ | "prim_timeout" : "1 second", | ||
+ | "valid_asp_id_req" : false | ||
+ | }, | ||
+ | "dst_port" : 9900, | ||
+ | "ip_dsts" : [ | ||
+ | "@[address_number]" | ||
+ | ], | ||
+ | "name" : "@[iua_peer]" | ||
+ | } | ||
</pre> | </pre> | ||
</div> | </div> | ||
− | |||
Latest revision as of 13:54, 9 December 2020
This article applies to: | Product | Version |
Tmedia | 2.9, 2.10, 3.0, 3.2 |
After you create the IUA link(s), you must define the IUA peers.
To create an IUA peer:
1- Click IUA in the navigation panel
2- Select an IUA SAP
3- Select an IUA Cluster
4- Click Create New Iua Peer in the IUA cluster configuration window:
5- Configure the new IUA peer:
- Enter a name for the peer
- Enter a destination port (as configured in the destination element)
- Click Create
6- Verify that the "Iua Peer was successfully created" message appears
7- Enter a destination address for the peer:
- Enter a destination address
- Click the "<<" button to add it to the list of destination addresses
- Verify that the (your address) was successfully added message appears
Path
/configurations/@[configuration_name]/hardware_units/@[hardware_name]/iua_stacks/@[iua_stack]/iua_saps/@[iua_sap]/iua_clusters/@[iua_cluster]/iua_peers/@[iua_peer]
Parameters (text)
/configurations/@[configuration_name]/hardware_units/@[hardware_name]/iua_stacks/@[iua_stack]/iua_saps/@[iua_sap]/iua_clusters/@[iua_cluster]/iua_peers/@[iua_peer] dst_port = 9900 ip_dsts = [ "@[address_number]" ] name = "@[iua_peer]" /configurations/@[configuration_name]/hardware_units/@[hardware_name]/iua_stacks/@[iua_stack]/iua_saps/@[iua_sap]/iua_clusters/@[iua_cluster]/iua_peers/@[iua_peer]/advanced_parameters ip_header_tos = 0 nb_of_sctp_streams = 32 prim_timeout = "1 second" valid_asp_id_req = false
Parameters (json)
{ "advanced_parameters" : { "ip_header_tos" : 0, "nb_of_sctp_streams" : 32, "prim_timeout" : "1 second", "valid_asp_id_req" : false }, "dst_port" : 9900, "ip_dsts" : [ "@[address_number]" ], "name" : "@[iua_peer]" }