Toolpack:Creating an SCCP Route C
From TBwiki
(Difference between revisions)
(Created page with "=== '''''Applies to version(s): v2.9''''' === {{DISPLAYTITLE:Creating an SCCP Route}} Now that you have created an SCCP LSAP, you must create a new [[Toolpack:Create_a...") |
(Added northbound data) |
||
Line 60: | Line 60: | ||
'''Path''' | '''Path''' | ||
<pre> | <pre> | ||
+ | /configurations/@[configuration_name]/sccp_stacks/@[sccp_stack]/sccp_networks/@[sccp_network]/sccp_lsaps/@[sccp_lsap]/sccp_routes/@[sccp_route] | ||
</pre> | </pre> | ||
'''Parameters (text)''' | '''Parameters (text)''' | ||
<pre> | <pre> | ||
+ | /configurations/@[configuration_name]/sccp_stacks/@[sccp_stack]/sccp_networks/@[sccp_network]/sccp_lsaps/@[sccp_lsap]/sccp_routes/@[sccp_route] | ||
+ | backup_point_codes = [ ] | ||
+ | destination_point_code = "@[point_code]" | ||
+ | name = "@[sccp_route]" | ||
+ | protocol_variant = "ITU96" | ||
+ | replication_mode = "DOMINANT" | ||
+ | sls_mask = "5_BITS" | ||
+ | |||
+ | /configurations/@[configuration_name]/sccp_stacks/@[sccp_stack]/sccp_networks/@[sccp_network]/sccp_lsaps/@[sccp_lsap]/sccp_routes/@[sccp_route]/advanced_parameters | ||
+ | broadband_support = false | ||
+ | options = [ "ADJACENT_NODE", "ONLINE_BY_DEFAULT" ] | ||
</pre> | </pre> | ||
'''Parameters (json)''' | '''Parameters (json)''' | ||
<pre> | <pre> | ||
+ | { | ||
+ | "advanced_parameters" : { | ||
+ | "broadband_support" : false, | ||
+ | "options" : [ | ||
+ | "ADJACENT_NODE", | ||
+ | "ONLINE_BY_DEFAULT" | ||
+ | ] | ||
+ | }, | ||
+ | "backup_point_codes" : [ | ||
+ | ], | ||
+ | "destination_point_code" : "@[point_code]", | ||
+ | "name" : "@[sccp_route]", | ||
+ | "protocol_variant" : "ITU96", | ||
+ | "replication_mode" : "DOMINANT", | ||
+ | "sls_mask" : "5_BITS", | ||
+ | } | ||
</pre> | </pre> | ||
</div> | </div> |
Revision as of 11:44, 21 January 2016
Applies to version(s): v2.9
Now that you have created an SCCP LSAP, you must create a new SCCP route for your system. This step in the Web Portal configuration exists to create a route to a specific destination point code (DPC).
To Create an SCCP Route:
1- Select SCCP from the navigation panel
2- Select an SCCP Network
3- Select an SCCP LSAP
4- Click Create new Sccp Route in the SCCP LSAP configuration window
5- Configure the new SCCP Route:
- Choose a Name for the new route
- Select a Protocol Variant
- Select a Replication Mode (ANSI96 and TELCORDIA variants)
- Select an SLS Mask (ANSI and TELCORDIA protocol variants)
- Select a Destination Point Code for this route
- Click Create
6- Verify that the "SccpRoute was successfully created" message appears
7- Configure SCCP Route Backup Point Code
- Assign Backup Point Codes to use in case this route's DPC is not available.
- Note: For each selected point codes, a valid SCCP route must exist.
Path
/configurations/@[configuration_name]/sccp_stacks/@[sccp_stack]/sccp_networks/@[sccp_network]/sccp_lsaps/@[sccp_lsap]/sccp_routes/@[sccp_route]
Parameters (text)
/configurations/@[configuration_name]/sccp_stacks/@[sccp_stack]/sccp_networks/@[sccp_network]/sccp_lsaps/@[sccp_lsap]/sccp_routes/@[sccp_route] backup_point_codes = [ ] destination_point_code = "@[point_code]" name = "@[sccp_route]" protocol_variant = "ITU96" replication_mode = "DOMINANT" sls_mask = "5_BITS" /configurations/@[configuration_name]/sccp_stacks/@[sccp_stack]/sccp_networks/@[sccp_network]/sccp_lsaps/@[sccp_lsap]/sccp_routes/@[sccp_route]/advanced_parameters broadband_support = false options = [ "ADJACENT_NODE", "ONLINE_BY_DEFAULT" ]
Parameters (json)
{ "advanced_parameters" : { "broadband_support" : false, "options" : [ "ADJACENT_NODE", "ONLINE_BY_DEFAULT" ] }, "backup_point_codes" : [ ], "destination_point_code" : "@[point_code]", "name" : "@[sccp_route]", "protocol_variant" : "ITU96", "replication_mode" : "DOMINANT", "sls_mask" : "5_BITS", }
List of Parameters
- Name
- Protocol Variant
- Replication Mode
- SLS Mask (For ANSI and TELCORDIA variants only)
- Destination Point Code
Advanced Parameters