Toolpack:Creating a Line Service D
(Created page with "=== '''''Applies to version(s): v2.9.''''' === {{DISPLAYTITLE:Creating a Line Service}} A line service defines the type of paylaod that a line interface carries or it defines...") |
|||
(12 intermediate revisions by one user not shown) | |||
Line 1: | Line 1: | ||
− | |||
{{DISPLAYTITLE:Creating a Line Service}} | {{DISPLAYTITLE:Creating a Line Service}} | ||
+ | {| class="wikitable" | ||
+ | |- | ||
+ | |rowspan="2"|This article applies to: | ||
+ | |'''Product''' | ||
+ | |'''Version''' | ||
+ | |- | ||
+ | |Tmedia | ||
+ | |2.9, 2.10, 3.0, 3.2 | ||
+ | |} | ||
− | A line service defines the type of paylaod that a line interface carries or it defines another line service. The | + | A line service defines the type of paylaod that a line interface carries or it defines another line service. The configuration of a line service ends when it reaches the E1/J1/T1 line service. |
− | The E1 | + | The E1/T1 line services are also known as trunks or spans. |
− | To create | + | To create line service(s): |
Line 19: | Line 27: | ||
− | 3- | + | 3- You can create one line service at a time or multiple line services in a single pass. |
+ | |||
+ | 3a- To create a single line service, click '''Create New Child Line Service'''. | ||
[[Image:CreateLineService_1a.png]] | [[Image:CreateLineService_1a.png]] | ||
− | + | 3b- To create a range of line services in a single pass, click '''Create Multiple Child Line Services'''. | |
− | + | ||
+ | [[Image:CreateMultipleLineService_0_A.png]] | ||
+ | |||
+ | 4- Enter values for the line service. | ||
+ | |||
+ | 4a- Single line service: | ||
+ | * Enter a '''name''' for the new line service | ||
* Select an available '''local index'''. | * Select an available '''local index'''. | ||
− | * Select a '''framing'''mode. | + | * Select a '''framing''' mode. |
* Click '''Create'''. | * Click '''Create'''. | ||
Line 33: | Line 49: | ||
− | 5- The new line service | + | 4b- Multiple Line Services |
+ | * Enter a '''name''' for the range of line services. | ||
+ | * Select a renge of line interfaces for which the line services will be created. (Use the CTRL key to select individual line intefraces or the shift key to select a range.) | ||
+ | * Enter the number of line services you will create for the line interface. Enter 1 for T1/E1. | ||
+ | * Enter the starting index in '''first index to create'''. | ||
+ | * Select a '''framing''' mode. | ||
+ | * Click '''Create'''. | ||
+ | |||
+ | [[Image:CreateMultipleLineService_1_A.png]] | ||
+ | |||
+ | |||
+ | 5- The new line service(s) are displayed in the '''Line Services''' list | ||
[[Image:CreateLineService_3.png]] | [[Image:CreateLineService_3.png]] | ||
Line 43: | Line 70: | ||
'''Path''' | '''Path''' | ||
<pre> | <pre> | ||
+ | /configurations/@[configuration_name]/hardware_units/@[hardware_name]/tdm_line_interfaces/@[line_interface_name]/line_services/@[line_service_name] | ||
</pre> | </pre> | ||
'''Parameters (text)''' | '''Parameters (text)''' | ||
<pre> | <pre> | ||
+ | /configurations/@[configuration_name]/hardware_units/@[hardware_name]/tdm_line_interfaces/@[line_interface_name]/line_services/@[line_service_name] | ||
+ | local_index = 0 | ||
+ | name = @[line_service_name] | ||
+ | |||
+ | /configurations/@[configuration_name]/hardware_units/@[hardware_name]/tdm_line_interfaces/@[line_interface_name]/line_services/@[line_service_name]/parameters | ||
+ | audio_companding = "AUTO" | ||
+ | framing = "AUTO" | ||
+ | idle_code = 85 | ||
+ | loop_time = false | ||
+ | |||
+ | /configurations/@[configuration_name]/hardware_units/@[hardware_name]/tdm_line_interfaces/@[line_interface_name]/line_services/@[line_service_name]/state | ||
+ | loopback_type = "None" | ||
</pre> | </pre> | ||
'''Parameters (json)''' | '''Parameters (json)''' | ||
<pre> | <pre> | ||
+ | { | ||
+ | "@[line service name]" : { | ||
+ | "local_index" : 0, | ||
+ | "name" : "@[line service name]", | ||
+ | "parameters" : { | ||
+ | "audio_companding" : "AUTO", | ||
+ | "framing" : "AUTO", | ||
+ | "idle_code" : 85, | ||
+ | "loop_time" : false | ||
+ | }, | ||
+ | "state" : { | ||
+ | "loopback_type" : "None" | ||
+ | } | ||
+ | } | ||
+ | } | ||
</pre> | </pre> | ||
</div> | </div> | ||
− | |||
− | |||
==List of Parameters== | ==List of Parameters== | ||
* [[Parameter: Name|Name]] | * [[Parameter: Name|Name]] | ||
+ | * [[Parameter: Type|Type]] | ||
* [[Parameter: Local Index|Local Index]] | * [[Parameter: Local Index|Local Index]] | ||
− | * [[Parameter: | + | * [[Parameter: Length|Length]] |
+ | * [[Parameter: Encoding|Encoding]] | ||
'''Advanced Parameters''' | '''Advanced Parameters''' |
Latest revision as of 15:21, 24 November 2020
This article applies to: | Product | Version |
Tmedia | 2.9, 2.10, 3.0, 3.2 |
A line service defines the type of paylaod that a line interface carries or it defines another line service. The configuration of a line service ends when it reaches the E1/J1/T1 line service.
The E1/T1 line services are also known as trunks or spans.
To create line service(s):
1- Select TDM Line Interfaces from the navigation panel
2- Select the line interface for which you would like to create a line service.
3- You can create one line service at a time or multiple line services in a single pass.
3a- To create a single line service, click Create New Child Line Service.
3b- To create a range of line services in a single pass, click Create Multiple Child Line Services.
4- Enter values for the line service.
4a- Single line service:
- Enter a name for the new line service
- Select an available local index.
- Select a framing mode.
- Click Create.
4b- Multiple Line Services
- Enter a name for the range of line services.
- Select a renge of line interfaces for which the line services will be created. (Use the CTRL key to select individual line intefraces or the shift key to select a range.)
- Enter the number of line services you will create for the line interface. Enter 1 for T1/E1.
- Enter the starting index in first index to create.
- Select a framing mode.
- Click Create.
5- The new line service(s) are displayed in the Line Services list
Path
/configurations/@[configuration_name]/hardware_units/@[hardware_name]/tdm_line_interfaces/@[line_interface_name]/line_services/@[line_service_name]
Parameters (text)
/configurations/@[configuration_name]/hardware_units/@[hardware_name]/tdm_line_interfaces/@[line_interface_name]/line_services/@[line_service_name] local_index = 0 name = @[line_service_name] /configurations/@[configuration_name]/hardware_units/@[hardware_name]/tdm_line_interfaces/@[line_interface_name]/line_services/@[line_service_name]/parameters audio_companding = "AUTO" framing = "AUTO" idle_code = 85 loop_time = false /configurations/@[configuration_name]/hardware_units/@[hardware_name]/tdm_line_interfaces/@[line_interface_name]/line_services/@[line_service_name]/state loopback_type = "None"
Parameters (json)
{ "@[line service name]" : { "local_index" : 0, "name" : "@[line service name]", "parameters" : { "audio_companding" : "AUTO", "framing" : "AUTO", "idle_code" : 85, "loop_time" : false }, "state" : { "loopback_type" : "None" } } }
List of Parameters
Advanced Parameters