Toolpack:Creating an IP Port Range SBC A
From TBwiki
(Difference between revisions)
(→Applies to version(s): v2.9, v2.10) |
(→Applies to version(s): v3.0) |
||
| Line 6: | Line 6: | ||
<br> | <br> | ||
| + | |||
| + | == To configure an RTP port range == | ||
| + | |||
| + | 1. Select '''Hosts IP Interfaces''' from the navigation panel: | ||
| + | |||
| + | Allyn: Screenshot here | ||
| + | |||
| + | <br> 2. Click the '''RTP Port Ranges''' tab: | ||
| + | *Click '''Create New RTP Port Ranges''' | ||
| + | |||
| + | Allyn: Screenshot here | ||
| + | |||
| + | <br> 3. Configure the range of ports: | ||
| + | |||
| + | *Enter a name for the port range | ||
| + | *Select one or more Host IP interfaces | ||
| + | *Enter a minimum port number for the port range | ||
| + | *Enter a maximum port number for the port range | ||
| + | *Click '''Create''' | ||
| + | |||
| + | |||
| + | Allyn: Screenshot here | ||
| + | |||
| + | |||
| + | |||
| + | '''Path''' | ||
| + | <pre> | ||
| + | /configurations/@[configuration_name]/hardware_units/@[hardware_name]/rtp_port_ranges/Default | ||
| + | </pre> | ||
| + | |||
| + | '''Parameters (text)''' | ||
| + | <pre> | ||
| + | /configurations/@[configuration_name]/hardware_units/@[hardware_name]/rtp_port_ranges/Default | ||
| + | ip_interface = "@[hardware_name]"."@[port_name]" | ||
| + | name = "Default" | ||
| + | port_max = 60000 | ||
| + | port_min = 10000 | ||
| + | unique_name = "@[name]" | ||
| + | </pre> | ||
| + | |||
| + | |||
| + | '''Parameters (json)''' | ||
| + | <pre> | ||
| + | { | ||
| + | "ip_interface" : "@[hardware_name]"."@[port_name]", | ||
| + | "name" : "Default", | ||
| + | "port_max" : 60000, | ||
| + | "port_min" : 10000, | ||
| + | "unique_name" : "@[name]" | ||
| + | } | ||
| + | </pre> | ||
| + | </div> | ||
Revision as of 13:31, 4 May 2017
Applies to version(s): v3.0
A range of IP ports can be configured.
To configure an RTP port range
1. Select Hosts IP Interfaces from the navigation panel:
Allyn: Screenshot here
2. Click the RTP Port Ranges tab:
- Click Create New RTP Port Ranges
Allyn: Screenshot here
3. Configure the range of ports:
- Enter a name for the port range
- Select one or more Host IP interfaces
- Enter a minimum port number for the port range
- Enter a maximum port number for the port range
- Click Create
Allyn: Screenshot here
Path
/configurations/@[configuration_name]/hardware_units/@[hardware_name]/rtp_port_ranges/Default
Parameters (text)
/configurations/@[configuration_name]/hardware_units/@[hardware_name]/rtp_port_ranges/Default ip_interface = "@[hardware_name]"."@[port_name]" name = "Default" port_max = 60000 port_min = 10000 unique_name = "@[name]"
Parameters (json)
{
"ip_interface" : "@[hardware_name]"."@[port_name]",
"name" : "Default",
"port_max" : 60000,
"port_min" : 10000,
"unique_name" : "@[name]"
}
</div>