Toolpack:Creating an IP Tunnel B: Difference between revisions
(Created page with "=== '''''Applies to version(s): v2.9.''''' === {{DISPLAYTITLE:Configuring an IP tunnel}} One or more IP tunnels can be defined to manage the IP traffic betweeen two networks....") |
No edit summary |
||
| (10 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
{{DISPLAYTITLE:Configuring an IP tunnel}} | {{DISPLAYTITLE:Configuring an IP tunnel}} | ||
{| class="wikitable" | |||
|- | |||
|rowspan="2"|This article applies to: | |||
|'''Product''' | |||
|'''Version''' | |||
|- | |||
|Tmedia | |||
|3.0, 3.2, 3.3 | |||
|} | |||
One or more IP tunnels can be defined to manage the IP traffic betweeen two networks. | One or more IP tunnels can be defined to manage the IP traffic betweeen two networks. | ||
== To configure an IP tunnel == | == To configure an IP tunnel (PPPoE) == | ||
1. Select '''IP Interfaces''' from the navigation panel: | 1. Select '''IP Interfaces''' from the navigation panel: | ||
| Line 13: | Line 20: | ||
[[Image:Create Voip Interface_0.png]] | [[Image:Create Voip Interface_0.png]] | ||
<br> 2. Click '''Create New Tunnel''' | <br> 2. Click the '''Tunnels''' tab: | ||
*Click '''Create New Tunnel''' | |||
[[Image:CreateIP_Tunnel_0.png]] | [[Image:CreateIP_Tunnel_0.png]] | ||
| Line 37: | Line 45: | ||
'''Path''' | '''Path''' | ||
<pre> | <pre> | ||
/configurations/@[configuration_name]/hardware_units/@[hardware_name]/tunnels/@[tunnel_name] | |||
</pre> | </pre> | ||
'''Parameters (text)''' | '''Parameters (text)''' | ||
<pre> | <pre> | ||
/configurations/@[configuration_name]/hardware_units/@[hardware_name]/tunnels/@[tunnel_name] | |||
name = "@[tunnel_name]" | |||
password = "@[password]" | |||
type = "PPPoE" | |||
unique_name = ".31" | |||
username = "@[user_name]" | |||
virtual_port = "" | |||
/configurations/@[configuration_name]/hardware_units/@[hardware_name]/tunnels/@[tunnel_name]/advanced_parameters | |||
lcp_interval = "4 seconds" | |||
lcp_max_failure = 5 | |||
mss_clamping = 1452 | |||
mtu = 1492 | |||
overwrite_default_gateway = false | |||
</pre> | </pre> | ||
'''Parameters (json)''' | '''Parameters (json)''' | ||
<pre> | <pre> | ||
{ | |||
"advanced_parameters" : { | |||
"lcp_interval" : "4 seconds", | |||
"lcp_max_failure" : 5, | |||
"mss_clamping" : 1452, | |||
"mtu" : 1492, | |||
"overwrite_default_gateway" : false | |||
}, | |||
"name" : "@[tunnel_name]", | |||
"password" : "@[password]", | |||
"type" : "PPPoE", | |||
"unique_name" : ".31", | |||
"username" : "@[user_name]", | |||
"virtual_port" : "" | |||
} | |||
</pre> | </pre> | ||
</div> | </div> | ||
== List of Parameters == | == List of Parameters == | ||
| Line 62: | Line 99: | ||
*[[Parameter: LCP maximum polling failure|LCP maximum polling failure]] | *[[Parameter: LCP maximum polling failure|LCP maximum polling failure]] | ||
*[[Parameter: Overwrite global default gateway|Overwrite global default gateway]] | *[[Parameter: Overwrite global default gateway|Overwrite global default gateway]] | ||
*[[Parameter: MTU|MTU]] | |||
*[[Parameter: MSS clamping|MSS clamping]] | |||
Latest revision as of 14:03, 23 June 2024
| This article applies to: | Product | Version |
| Tmedia | 3.0, 3.2, 3.3 |
One or more IP tunnels can be defined to manage the IP traffic betweeen two networks.
To configure an IP tunnel (PPPoE)
1. Select IP Interfaces from the navigation panel:
2. Click the Tunnels tab:
- Click Create New Tunnel
3. Configure the range of ports:
- Enter a name for the IP tunnel
- Select a protocol for the IP tunnel
- Provide a user name and password
- Select a virtual port
- Click Create
4. Verify that the Tunnel was successfully created message is displayed.
Path
/configurations/@[configuration_name]/hardware_units/@[hardware_name]/tunnels/@[tunnel_name]
Parameters (text)
/configurations/@[configuration_name]/hardware_units/@[hardware_name]/tunnels/@[tunnel_name] name = "@[tunnel_name]" password = "@[password]" type = "PPPoE" unique_name = ".31" username = "@[user_name]" virtual_port = "" /configurations/@[configuration_name]/hardware_units/@[hardware_name]/tunnels/@[tunnel_name]/advanced_parameters lcp_interval = "4 seconds" lcp_max_failure = 5 mss_clamping = 1452 mtu = 1492 overwrite_default_gateway = false
Parameters (json)
{
"advanced_parameters" : {
"lcp_interval" : "4 seconds",
"lcp_max_failure" : 5,
"mss_clamping" : 1452,
"mtu" : 1492,
"overwrite_default_gateway" : false
},
"name" : "@[tunnel_name]",
"password" : "@[password]",
"type" : "PPPoE",
"unique_name" : ".31",
"username" : "@[user_name]",
"virtual_port" : ""
}
List of Parameters
Advanced Parameters


