Toolpack:Creating IUA Peers C: Difference between revisions
No edit summary |
No edit summary |
||
| (5 intermediate revisions by the same 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 | |||
|3.0, 3.2, 3.3 | |||
|} | |||
After you create the IUA link(s), you must define the IUA peers. | |||
To create an IUA peer: | To create an IUA peer: | ||
| Line 52: | 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 14:24, 24 June 2024
| This article applies to: | Product | Version |
| Tmedia | 3.0, 3.2, 3.3 |
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]"
}





