Toolpack:Creating an IP Tunnel B

From TBwiki
(Difference between revisions)
Jump to: navigation, search
(Added northbound data)
Line 40: Line 40:
 
'''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>

Revision as of 12:47, 13 December 2015

Applies to version(s): v2.9.

One or more IP tunnels can be defined to manage the IP traffic betweeen two networks.


To configure an IP tunnel

1. Select IP Interfaces from the navigation panel:

Create Voip Interface 0.png


2. Click Create New Tunnel:

CreateIP Tunnel 0.png


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

CreateIP Tunnel 1.png


4. Verify that the Tunnel was successfully created message is displayed.

CreateIP Tunnel 2.png


Path


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

Personal tools