Toolpack:Creating IUA Peers C
From TBwiki
(Difference between revisions)
(added northbound data) |
|||
Line 52: | Line 52: | ||
'''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> |
Revision as of 14:33, 25 January 2016
Applies to version(s): v2.9
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]" }