Changes

Created page with "==Summary== <b>Virtual Private Network</b> (<b>VPN</b>) is a method of connecting multiple private networks across the Internet. VPNs can serve to achieve many different goal..."
==Summary==

<b>Virtual Private Network</b> (<b>VPN</b>) is a method of connecting multiple private networks across the Internet. VPNs can serve to achieve many different goals, but some of its main purposes are:
<ul>
<li>access between remote private networks;</li>
<li>data encryption;</li>
<li>anonymity when browsing the Internet.</li>
</ul>

This page is an overview of different types of VPNs supported by {{{name}}} routers.

==OpenVPN==

<b>OpenVPN</b> is an open-source software application that implements virtual private network (VPN) techniques for creating secure point-to-point or site-to-site connections in routed or bridged configurations and remote access facilities. It is often regarded as being the most universal VPN protocol because of its flexibility, support of SSL/TLS security, multiple encryption methods, many networking features and compatibility with most OS platforms.

{{{name}}} routers run OpenVPN version <b>2.4.5</b>.

===OpenVPN client===
----
An <b>OpenVPN client</b> is an entity that initiates a connection to an OpenVPN server. To create a new client instance, go to the <i>Services → VPN → OpenVPN</i> section, select <i>Role: Client</i>, enter a custom name and click the 'Add New' button. An OpenVPN client instance with the given name will appear in the "OpenVPN Configuration" list. A maximum of six OpenVPN client instances are allowed to be added.

To begin configuration, click the 'Edit' button next to the client instance. Refer to the figure and table below for information on the OpenVPN client's configuration fields:

[[File:{{{file_openvpn_client_config}}}]]

<table class="nd-mantable">
<tr>
<th>Field</th>
<th>Value</th>
<th>Description</th>
</tr>
<tr>
<td>Enable</td>
<td>yes | no; default: <b>no</b></td>
<td>Turns the OpenVPN instance on or off.</td>
</tr>
<tr>
<td>TUN/TAP</td>
<td>TUN (tunnel) | TAP (bridged); default: <b>TUN (tunnel)</b></td>
<td>Virtual network device type.
<ul>
<li><b>TUN</b> - a virtual point-to-point IP link which operates at the network layer (OSI layer 3), used when routing is required.</li>
<li><b>TAP</b> - a virtual Ethernet adapter (switch), operates at the data link layer (OSI layer 2), used when bridging is required.</li>
</ul>
</td>
</tr>
<tr>
<td>Protocol</td>
<td>UDP | TCP; default: <b>UDP</b></td>
<td>Transfer protocol used for the OpenVPN connection.
<ul>
<li><b>Transmission Control Protocol</b> (<b>TCP</b>) - most commonly used protocol in the Internet Protocol (IP) suite. It ensures the recipient will receive packets in the order they were sent by numbering, analysing response messages, checking for errors and resending them if an issue occurs. It should be used when reliability is crucial (for example, in file transfer).</li>
<li><b>User Datagram Protocol</b> (<b>UDP</b>) - packets are sent to the recipient without error-checking or back-and-forth quality control, meaning that when packets are lost, they are gone forever. This makes it less reliable but faster than TCP; therefore, it should be used when transfer speed is crucial (for example, in video streaming, live calls).</li>
</ul>
</td>
</tr>
<tr>
<td>Port</td>
<td>integer [0..65535]; default: <b>1194</b></td>
<td>TCP/UDP port number used for the connection. Make sure it matches the port number specified on the server side.<br><b>NOTE</b>: traffic on the selected port will be automatically allowed in the router's firewall rules.</td>
</tr>
<tr>
<td>LZO</td>
<td>yes | no; default: <b>no</b></td>
<td>Turns LZO data compression on or off.</td>
</tr>
<tr>
<td>Encryption</td>
<td>DES-CBC 64 | RC2-CBC 128 | DES-EDE-CBC 128 | DES-EDE3-CBC 192 | DESX-CBC 192 | BF-CBC 128 | RC2-40-CBC 40 | CAST5-CBC 128 | RC2-40CBC 40 | CAST5-CBC 128 | RC2-64-CBC 64| AES-128-CBC 128 | AES-192-CBC 192 | AES-256-CBC 256 | none; default: <b>BF-CBC 128</b></td>
<td>Algorithm used for packet encryption.</td>
</tr>
<tr>
<td>Authentication</td>
<td>TLS | Static Key | Password | TLS/Password; default: <b>TLS</b></td>
<td>Authentication mode, used to secure data sessions.
<ul>
<li><b>Static key</b> is a secret key used for server–client authentication.</li>
<li><b>TLS</b> authentication mode uses X.509 type certificates:
<ul>
<li>Certificate Authority (CA)</li>
<li>Client certificate</li>
<li>Client key</li>
</ul>All mentioned certificates can be generated using OpenVPN or Open SSL utilities on any type of host machine. One of the most popular utilities used for this purpose is called Easy-RSA.
</li>
<li><b>Password</b> is a simple username/password based authentication where the owner of the OpenVPN server provides the login data.</li>
<li><b>TLS/Password</b> uses both TLS and username/password authentication.</li>
</ul>
</td>
</tr>
<tr>
<td><span style="color: red;">TLS:</span> TLS cipher</td>
<td>All | DHE+RSA | Custom; default: <b>All</b></td>
<td>Packet encryption algorithm cipher.</td>
</tr>
<tr>
<td><span style="color: red;">TLS:</span> Allowed TLS ciphers</td>
<td>All | DHE+RSA | Custom; default: <b>All</b></td>
<td>A list of TLS ciphers accepted for this connection.</td>
</tr>
<tr>
<td>Remote host/IP address</td>
<td>ip; default: <b>none</b></td>
<td>IP address or hostname of an OpenVPN server.</td>
</tr>
<tr>
<td>Resolve retry</td>
<td>integer | infinite; default: <b>infinite</b></td>
<td>In case server hostname resolve fails, this field indicates the amount of time (in seconds) to retry the resolve. Specify <i>infinite</i> to retry indefinitely.</td>
</tr>
<tr>
<td>Keep alive</td>
<td>two integers separated by a space; default: <b>none</b></td>
<td>Defines two time intervals: the first is used to periodically send ICMP requests to the OpenVPN server, the second one defines a time window, which is used to restart the OpenVPN service if no ICMP response is received during the specified time slice. When this value is specfiied on the OpenVPN server, it overrides the 'keep alive' values set on client instances.<br><b>Example</b>: <i>10 120</i></td>
</tr>
<tr>
<td><span style="color: purple;">Static key:</span> Local tunnel endpoint IP</td>
<td>ip; default: <b>none</b></td>
<td>IP address of the local OpenVPN network interface.</td>
</tr>
<tr>
<td><span style="color: purple;">Static key:</span> Remote tunnel endpoint IP</td>
<td>ip; default: <b>none</b></td>
<td>IP address of the remote OpenVPN network (server) interface.</td>
</tr>
<tr>
<td>Remote network IP address</td>
<td>ip; default: <b>none</b></td>
<td>LAN IP address of the remote network (server).</td>
</tr>
<tr>
<td>Remote network IP netmask</td>
<td>netmask; default: <b>none</b></td>
<td>LAN IP subnet mask of the remote network (server).</td>
</tr>
<tr>
<td><span style="color: #0054a6;">Password:</span> User name</td>
<td>string; default: <b>none</b></td>
<td>Username used for authentication to the OpenVPN server.</td>
</tr>
<tr>
<td><span style="color: #0054a6;">Password:</span> Password</td>
<td>string; default: <b>none</b></td>
<td>Password used for authentication to the OpenVPN server.</td>
</tr>
<tr>
<td>Extra options</td>
<td>string; default: <b>none</b></td>
<td>Extra OpenVPN options to be used by the OpenVPN instance.</td>
</tr>
<tr>
<td><span style="color: red;">TLS</span>/<span style="color: #0054a6;">Password:</span> HMAC authentication algorithm</td>
<td>none | SHA1 | SHA256 | SHA384 | SHA512; default: <b>SHA1</b></td>
<td>HMAC authentication algorithm type.</td>
</tr>
<tr>
<td><span style="color: red;">TLS</span>/<span style="color: #0054a6;">Password:</span> Additional HMAC authentication</td>
<td>yes | no; default: <b>no</b></td>
<td>An additional layer of HMAC authentication on top of the TLS control channel to protect against DoS attacks.</td>
</tr>
<tr>
<td><span style="color: red;">TLS</span>/<span style="color: #0054a6;">Password:</span> HMAC authentication key</td>
<td>.key file; default: <b>none</b></td>
<td>Uploads an HMAC authentication key file.</td>
</tr>
<tr>
<td><span style="color: red;">TLS</span>/<span style="color: #0054a6;">Password:</span> HMAC key direction</td>
<td>0 | 1 | none; default: <b>1</b></td>
<td>The value of the key direction parameter should be complementary on either side (client and server) of the connection. If one side uses <i>0</i>, the other side should use <i>1</i>, or both sides should omit the parameter altogether.</td>
</tr>
<tr>
<td><span style="color: red;">TLS</span>/<span style="color: #0054a6;">Password:</span> Certificate authority</td>
<td>.ca file; default: <b>none</b></td>
<td>Certificate authority is an entity that issues digital certificates. A digital certificate certifies the ownership of a public key by the named subject of the certificate.</td>
</tr>
<tr>
<td><span style="color: red;">TLS:</span> Client certificate</td>
<td>.crt file; default: <b>none</b></td>
<td>Client certificate is a type of digital certificate that is used by client systems to make authenticated requests to a remote server. Client certificates play a key role in many mutual authentication designs, providing strong assurances of a requester's identity.</td>
</tr>
<tr>
<td><span style="color: red;">TLS:</span> Client key</td>
<td>.key file; default: <b>none</b></td>
<td>Authenticates the client to the server and establishes precisely who they are.</td>
</tr>
<tr>
<td><span style="color: red;">TLS:</span> Private key decryption password (optional)</td>
<td>string; default: <b>none</b></td>
<td>A password used to decrypt the server's private key. Use only if server's .key file is encrypted with a password.</td>
</tr>
<tr>
<td><span style="color: purple;">Static key:</span> Static pre-shared key</td>
<td>.key file; default: <b>none</b></td>
<td>Uploads a secret key file used for server–client authentication.</td>
</tr>
</table>

<b>Additional notes</b>:
<ul>
<li>Some configuration fields become available only when certain other parameters are selected. The names of the parameters are followed by a prefix that specifies the authentication type under which they become visible. Different color codes are used for different prefixes:
<ul>
<li>Red for <span style="color: red;">Authentication: TLS</span></li>
<li>Purple for <span style="color: purple;">Authentication: Static key</span></li>
<li>Blue for <span style="color: #0054a6;">Authentication: Password</span></li>
</ul>
</li>
<li>After changing any of the parameters, don't forget to click the <b>Save</b> button located at the bottom-right side of the page.</li>
</ul>

===OpenVPN server===
----
An <b>OpenVPN server</b> is an entity that waits for incoming connections from OpenVPN clients. To create a new server instance, go to the <i>Services → VPN → OpenVPN</i> section, select <i>Role: Server</i>, enter a custom name and click the 'Add New' button. An OpenVPN server instance with the given name will appear in the "OpenVPN Configuration" list. Only one OpenVPN server instance is allowed to be added.

A server needs to have a [[Private_and_Public_IP_Addresses#Public_IP_address|public IP address]] in order to be available from the public network (the Internet).

To begin configuration, click the 'Edit' button next to the server instance. Refer to the figure and table below for information on the OpenVPN server's configuration fields:

[[File:{{{file_openvpn_server_config}}}]]

<table class="nd-mantable">
<tr>
<th>Field</th>
<th>Value</th>
<th>Description</th>
</tr>
<tr>
<td>Enable</td>
<td>yes | no; default: <b>no</b></td>
<td>Turns the OpenVPN instance on or off.</td>
</tr>
<tr>
<td>TUN/TAP</td>
<td>TUN (tunnel) | TAP (bridged); default: <b>TUN (tunnel)</b></td>
<td>Virtual network device type.
<ul>
<li><b>TUN</b> - a virtual point-to-point IP link which operates at the network layer (OSI layer 3), used when routing is required.</li>
<li><b>TAP</b> - a virtual Ethernet adapter (switch), operates at the data link layer (OSI layer 2), used when bridging is required.</li>
</ul>
</td>
</tr>
<tr>
<td>Protocol</td>
<td>UDP | TCP; default: <b>UDP</b></td>
<td>Transfer protocol used for the connection.
<ul>
<li><b>Transmission Control Protocol</b> (<b>TCP</b>) - most commonly used protocol in the Internet Protocol (IP) suite. It ensures the recipient will receive packets in the order they were sent by numbering, analysing response messages, checking for errors and resending them if an issue occurs. It should be used when reliability is crucial (for example, file transfer).</li>
<li><b>User Datagram Protocol</b> (<b>UDP</b>) - packets are sent to the recipient without error-checking or back-and-forth quality control, meaning that when packets are lost, they are gone forever. This makes it less reliable but faster than TCP; therefore, it should be used when transfer speed is crucial (for example, video streaming, live calls).</li>
</ul>
</td>
</tr>
<tr>
<td>Port</td>
<td>integer [0..65535]; default: <b>1194</b></td>
<td>TCP/UDP port number used for the connection. Make sure it matches the port number specified on the server side.<br><b>NOTE</b>: traffic on the selected port will be automatically allowed in the router's firewall rules.</td>
</tr>
<tr>
<td>LZO</td>
<td>yes | no; default: <b>no</b></td>
<td>Turns LZO data compression on or off.</td>
</tr>
<tr>
<td>Encryption</td>
<td>DES-CBC 64 | RC2-CBC 128 | DES-EDE-CBC 128 | DES-EDE3-CBC 192 | DESX-CBC 192 | BF-CBC 128 | RC2-40-CBC 40 | CAST5-CBC 128 | RC2-40CBC 40 | CAST5-CBC 128 | RC2-64-CBC 64| AES-128-CBC 128 | AES-192-CBC 192 | AES-256-CBC 256 | none; default: <b>BF-CBC 128</b></td>
<td>Algorithm used for packet encryption.</td>
</tr>
<tr>
<td>Authentication</td>
<td>TLS | Static Key | TLS/Password; default: <b>TLS</b></td>
<td>Authentication mode, used to secure data sessions.
<ul>
<li><b>Static key</b> is a secret key used for server–client authentication.</li>
<li><b>TLS</b> authentication mode uses X.509 type certificates:
<ul>
<li>Certificate Authority (CA)</li>
<li>Client certificate</li>
<li>Client key</li>
</ul>All mentioned certificates can be generated using OpenVPN or Open SSL utilities on any type of host machine. One of the most popular utilities used for this purpose is called Easy-RSA.
</li>
<li><b>TLS/Password</b> uses both TLS and username/password authentication.</li>
</ul>
</td>
</tr>
<tr>
<td><span style="color: purple;">Static key:</span> Local tunnel endpoint IP</td>
<td>ip; default: <b>none</b></td>
<td>IP address of the local OpenVPN network interface.</td>
</tr>
<tr>
<td><span style="color: purple;">Static key:</span> Remote tunnel endpoint IP</td>
<td>ip; default: <b>none</b></td>
<td>IP address of the remote OpenVPN network (client) interface.</td>
</tr>
<tr>
<td><span style="color: purple;">Static key:</span> Remote network IP address</td>
<td>ip; default: <b>none</b></td>
<td>LAN IP address of the remote network (client).</td>
</tr>
<tr>
<td><span style="color: purple;">Static key:</span> Remote network IP netmask</td>
<td>netmask; default: <b>none</b></td>
<td>LAN IP subnet mask of the remote network (client).</td>
</tr>
<tr>
<td><span style="color: red;">TLS</span>/<span style="color: #0054a6;">TLS/Password:</span> TLS cipher</td>
<td>All | DHE+RSA | Custom; default: <b>All</b></td>
<td>Packet encryption algorithm cipher.</td>
</tr>
<tr>
<td><span style="color: red;">TLS/Password:</span> Allowed TLS ciphers</td>
<td>All | DHE+RSA | Custom; default: <b>All</b></td>
<td>A list of TLS ciphers accepted for this connection.</td>
</tr>
<tr>
<td><span style="color: red;">TLS</span>/<span style="color: #0054a6;">TLS/Password:</span> Client to client</td>
<td>yes | no; default: <b>no</b></td>
<td>Allows OpenVPN clients to communicate with each other on the VPN network.</td>
</tr>
<tr>
<td><span style="color: red;">TLS</span>/<span style="color: #0054a6;">TLS/Password:</span> Keep alive</td>
<td>two integers separated by a space; default: <b>none</b></td>
<td>Defines two time intervals: the first is used to periodically send ICMP requests to the OpenVPN server, the second one defines a time window, which is used to restart the OpenVPN service if no ICMP response is received during the specified time slice. When this value is specifiied on the OpenVPN server, it overrides the 'keep alive' values set on client instances.<br><b>Example</b>: <i>10 120</i></td>
</tr>
<tr>
<td><span style="color: red;">TLS</span>/<span style="color: #0054a6;">TLS/Password:</span> Virtual network IP address</td>
<td>ip; default: <b>none</b></td>
<td>IP address of the OpenVPN network.</td>
</tr>
<tr>
<td><span style="color: red;">TLS</span>/<span style="color: #0054a6;">TLS/Password:</span> Virtual network netmask</td>
<td>netmask; default: <b>none</b></td>
<td>Subnet mask of the OpenVPN network.</td>
</tr>
<tr>
<td><span style="color: red;">TLS</span>/<span style="color: #0054a6;">TLS/Password:</span> Push option</td>
<td>OpenVPN options; default: <b>none</b></td>
<td>Push options are a way to "push" routes and other additional OpenVPN options to connecting clients.</td>
</tr>
<tr>
<td><span style="color: red;">TLS</span>/<span style="color: #0054a6;">TLS/Password:</span> Allow duplicate certificates</td>
<td>yes | no; default: <b>no</b></td>
<td>When enabled allows multiple clients to connect using the same certificates.</td>
</tr>
<tr>
<td><span style="color: #0054a6;">TLS/Password:</span> User name</td>
<td>string; default: <b>none</b></td>
<td>Username used for authentication to this OpenVPN server.</td>
</tr>
<tr>
<td><span style="color: #0054a6;">TLS/Password:</span> Password</td>
<td>string; default: <b>none</b></td>
<td>Password used for authentication to this OpenVPN server.</td>
</tr>
<tr>
<td><span style="color: purple;">Static key:</span> Static pre-shared key</td>
<td>.key file; default: <b>none</b></td>
<td>Uploads a secret key file used for server–client authentication.</td>
</tr>
<tr>
<td><span style="color: red;">TLS</span>/<span style="color: #0054a6;">TLS/Password:</span> Certificate authority</td>
<td>.ca file; default: <b>none</b></td>
<td>Certificate authority is an entity that issues digital certificates. A digital certificate certifies the ownership of a public key by the named subject of the certificate.</td>
</tr>
<tr>
<td><span style="color: red;">TLS</span>/<span style="color: #0054a6;">TLS/Password:</span> Server certificate</td>
<td>.crt file; default: <b>none</b></td>
<td>A type of digital certificate that is used to identify the OpenVPN server.</td>
</tr>
<tr>
<td><span style="color: red;">TLS</span>/<span style="color: #0054a6;">TLS/Password:</span> Server key</td>
<td>.key file; default: <b>none</b></td>
<td>Authenticates clients to the server.</td>
</tr>
<tr>
<td><span style="color: red;">TLS</span>/<span style="color: #0054a6;">TLS/Password:</span> Diffie Hellman parameters</td>
<td>.pem file; default: <b>none</b></td>
<td>DH parameters define how OpenSSL performs the Diffie-Hellman (DH) key-exchange.</td>
</tr>
<tr>
<td><span style="color: red;">TLS</span>/<span style="color: #0054a6;">TLS/Password:</span> CRL file (optional)</td>
<td>.pem file | .crl file; default: <b>none</b></td>
<td>A certificate revocation list (CRL) file is a list of certificates that have been revoked by the certificate authority (CA). It indicates which certificates are no longer acccepted by the CA and therefore cannot be authenticated to the server.</td>
</tr>
</table>

<b>Additional notes</b>:
<ul>
<li>Some configuration fields become available only when certain other parameters are selected. The names of the parameters are followed by a prefix that specifies the authentication type under which they become visible. Different color codes are used for different prefixes:
<ul>
<li>Red for <span style="color: red;">Authentication: TLS</span></li>
<li>Purple for <span style="color: purple;">Authentication: Static key</span></li>
<li>Blue for <span style="color: #0054a6;">Authentication: TLS/Password</span></li>
</ul>
</li>
<li>After changing any of the parameters, don't forget to click the <b>Save</b> button located at the bottom-right side of the page.</li>
</ul>

====TLS Clients====
----
<b>TLS Clients</b> is a way to differentiate clients by their Common Names (CN), which are found in the client certificate file. It can be used to assign specific VPN addresses to corresponding clients and bind them to their LAN addresses, making the server aware of which client has which LAN IP address.

The TLS Clients section can be found in the OpenVPN Server configuration window, provided that the OpenVPN server uses TLS or TLS/Password authentication methods. To create a new TLS client, type in the new client‘s name in the text field found bellow the TLS Clients tab and click the 'Add' button. Refer to the figure and table below for information on the TLS Clients' configuration fields:

[[File:{{{file_openvpn_tls_clients_config}}}]]

<table class="nd-mantable">
<tr>
<th>Field</th>
<th>Value</th>
<th>Description</th>
</tr>
<tr>
<td>VPN instance name</td>
<td>string; default: <b>none</b></td>
<td>Indicates which OpenVPN instance the TLS Client will be associated with. When left empty, this field is filled automatically.</td>
</tr>
<tr>
<td>Endpoint name</td>
<td>string; default: <b>none</b></td>
<td>A custom name for the client.</td>
</tr>
<tr>
<td>Common name (CN)</td>
<td>string; default: <b>none</b></td>
<td>Client’s Common Name (CN) found in the client certificate file.</td>
</tr>
<tr>
<td>Virtual local endpoint</td>
<td>ip; default: <b>none</b></td>
<td>Client’s local address in the virtual network.</td>
</tr>
<tr>
<td>Virtual remote endpoint</td>
<td>ip; default: <b>none</b></td>
<td>Client’s remote address in the virtual network.</td>
</tr>
<tr>
<td>Private network</td>
<td>ip; default: <b>none</b></td>
<td>Client’s private network (LAN) IP address.</td>
</tr>
<tr>
<td>Private netmask</td>
<td>ip; default: <b>none</b></td>
<td>Client’s private network (LAN) IP netmask.</td>
</tr>
</table>

==IPsec==

To create a new IPsec instance, go to the <i>Services → VPN → IPsec</i> section, enter a custom name and click "Add". An IPsec instance with the given name will appear in the "IPsec Configuration" list.

To begin configuration, click the 'Edit' button located next to the instance.

===IPsec configuration===
----
The <b>IPsec configuration</b> section is used to configure the main parameters of an IPsec connection. Refer to the figure and table below for information on the configuration fields located in the general settings section.

[[File:{{{file_ipsec_config}}}]]

<table class="nd-mantable">
<tr>
<th>Field</th>
<th>Value</th>
<th>Description</th>
</tr>
<tr>
<td>Enable</td>
<td>yes | no; default: <b>no</b></td>
<td>Turns the IPsec instance on or off.</td>
</tr>
<tr>
<td>Mode</td>
<td>Main | Aggressive; default: <b>Main</b></td>
<td>Internet Security and Key Management Protocol (ISAKMP) phase 1 exchange mode.
<ul>
<li><b>Main</b> - performs three two-way exchanges between the initiator and the receiver (a total of 9 messages).</li>
<li><b>Aggressive</b> - performs fewer exchanges than main mode (a total of 6 messages) by storing most data into the first exchange. In aggressive mode, the information is exchanged before there is a secure channel, making it less secure but faster than main mode.</li>
</ul>
</td>
</tr>
<tr>
<td>My identifier type</td>
<td>FQDN | User FQDN | Address; default: <b>FQDN</b></td>
<td>Defines the type of identity used in user (IPsec instance) authentication.
<ul>
<li><b>FQDN</b> - identity defined by fully qualified domain name. It is the complete domain name for a host (for example, <i>something.somedomain.com</i>). Only supported with IKEv2.</li>
<li><b>User FQDN</b> - identity defined by fully qualified username string (for example, <i>[email protected]</i>). Only supported with IKEv2.</li>
<li><b>Address</b> - identity by IP address.</li>
</ul>
</td>
</tr>
<tr>
<td>My identifier</td>
<td>ip | string; default: <b>none</b></td>
<td>Defines how the user (IPsec instance) will be identified during authentication.</td>
</tr>
<tr>
<td>Dead Peer Detection</td>
<td>yes | no; default: <b>no</b></td>
<td>A function used during Internet Key Exchange (IKE) to detect a "dead" peer. It used to reduce traffic by minimizing the number of messages when the opposite peer in unavailable and as failover mechanism.</td>
</tr>
<tr>
<td>Pre shared key</td>
<td>string; default: <b>none</b></td>
<td>A shared password used for authentication between IPsec peers before a secure channel is established.</td>
</tr>
<tr>
<td>Remote VPN endpoint</td>
<td>host | ip; default: <b>none</b></td>
<td>IP address or hostname of the remote IPsec instance.</td>
</tr>
<tr>
<td>IP address/Subnet mask</td>
<td>ip/netmask; default: <b>none</b></td>
<td>Remote network IP address and subnet mask used to determine which part of the network can be accessed in the VPN network. Netmask range [0..32]. This value must differ from the device’s LAN IP.</td>
</tr>
<tr>
<td>Enable keepalive</td>
<td>yes | no; default: <b>no</b></td>
<td>When enabled, the instance sends ICMP packets to the specified host at the specified frequency. If no response is received, the router will attempt to restart the connection.</td>
</tr>
<tr>
<td>Host</td>
<td>host | ip; default: <b>none</b></td>
<td>Hostname or IP address to which keepalive ICMP packets will be sent to.</td>
</tr>
<tr>
<td>Ping period (sec)</td>
<td>integer [0..9999999]; default: <b>none</b></td>
<td>The frequency at which keepalive ICMP packets will be sent to the specified host or IP address.</td>
</tr>
</table>

<b>Additional notes</b>:
<ul>
<li>Some configuration fields become available only when certain other parameters are selected. The names of the parameters are followed by a prefix that specifies the authentication type under which they become visible. Different color codes are used for different prefixes:
<ul>
<li>Red for <span style="color: red;">Type: Tunnel</span></li>
<li>Purple for <span style="color: purple;">Type: Transport</span></li>
<li>Blue for <span style="color: #0054a6;">Dead Peer Detection: Enabled</span></li>
</ul>
</li>
<li>After changing any of the parameters, don't forget to click the <b>Save</b> button located at the bottom-right side of the page.</li>
</ul>

===Phase settings===
----
IKE (Internet Key Exchange) is a protocol used to set up security associations (SAs) for the IPsec connection. This process is required before the IPsec tunnel can be established. It is done in two phases:

<table border=1; style="border-collapse: collapse;">
<tr>
<th width=400><span style="color: #0054A6;">Phase</span></th>
<th colspan="2"><span style="color: #0054A6;">Mode</span></th>
</tr>
<tr style="vertical-align: top;">
<td><b>Phase 1</b>
<ul>
<li>Establishes a secure channel between peers</li>
<li>Authenticates peers</li>
<li>Negotiates SA policy</li>
<li>Shares secret keys</li>
<li>Establishes secure tunnel for phase 2</li>
</ul>
</td>
<td width=350>Main mode (figure 1)
<ul>
<li>6 packets exchanged</li>
<li>Identity protected during exchange</li>
</ul>
</td>
<td width=350>Aggressive mode (figure 2)
<ul>
<li>3 packets exchanged</li>
<li>Identity information exchanged before a secure channel is established</li>
</ul>
</td>
</tr>
<tr style="vertical-align: top;">
<td><b>Phase 2</b>
<ul>
<li>Sets up matching IPsec SAs</li>
<li>Periodically renegotiates IPsec SAs</li>
</ul>
</td>
<td colspan="2">Quick mode
<ul>
<li>3 packets exchanged</li>
<li>IPsec SA parameters (ESP/AH, SHA/MD5) established</li>
<li>SA lifetime set</li>
</ul>
</td>
</tr>
</table>
<br>
<table>
<tr>
<td><b>Figure 1</b></td>
<td><b>Figure 2</b></td>
</tr>
<tr>
<td width=500>[[File:{{{file_ipsec_main_mode}}}]]</td>
<td width=500>[[File:{{{file_ipsec_aggressive_mode}}}]]</td>
</tr>
</table>
----
[[File:{{{file_ipsec_phase}}}]]

<table class="nd-mantable">
<tr>
<th>Field</th>
<th>Value</th>
<th>Description</th>
</tr>
<tr>
<td>Encryption algorithm</td>
<td>DES | 3DES | AES128 | AES192 | AES256; default: <b>3DES</b></td>
<td>Algorithm used for data encryption.</td>
</tr>
<tr>
<td>Authentication/Hash algorithm</td>
<td>MD5 | SHA1 | SHA256 | SHA384 | SHA512; default: <b>SHA1</b></td>
<td>Algorithm used for exchanging authentication and hash information.</td>
</tr>
<tr>
<td>DH group/PFS group</td>
<td>MODP768 | MODP1024 | MODP1536 | MODP2048 | MODP3072 | MODP4096; default: <b>MODP1536</b></td>
<td>Diffie-Hellman (DH) group used in the key exchange process. Higher group numbers provide more security, but take longer and use more resources to compute the key.</td>
</tr>
<tr>
<td>Lifetime</td>
<td>integer; default: <b>8 hours</b></td>
<td>Defines a time period after which the phase will re-initiate its exchange of information.</td>
</tr>
</table>

==L2TP==

In computer networking, <b>Layer 2 Tunneling Protocol</b> (<b>L2TP</b>) is a tunneling protocol used to support virtual private networks (VPNs). It is more secure than PPTP but, because it encapsulates the transferred data twice, but it is slower and uses more CPU power.

===L2TP client===
----
An <b>L2TP client</b> is an entity that initiates a connection to an L2TP server. To create a new client instance, go to the <i>Services → VPN → L2TP</i> section, select <i>Role: Client</i>, enter a custom name and click the 'Add New' button. An L2TP client instance with the given name will appear in the "L2TP Configuration" list.

To begin configuration, click the 'Edit button located next to the client instance. Refer to the figure and table below for information on the L2TP client's configuration fields:

[[File:{{{file_l2tp_client_config}}}]]

<table class="nd-mantable">
<tr>
<th>Field</th>
<th>Value</th>
<th>Description</th>
</tr>
<tr>
<td>Enable</td>
<td>yes | no; default: <b>no</b></td>
<td>Turns the L2TP instance on or off.</td>
</tr>
<tr>
<td>Server</td>
<td>ip | host; default: <b>none</b></td>
<td>IP address or hostname of an L2TP server.</td>
</tr>
<tr>
<td>Username</td>
<td>string; default: <b>none</b></td>
<td>Username used for authentication to the L2TP server.</td>
</tr>
<tr>
<td>Password</td>
<td>string; default: <b>none</b></td>
<td>Password used for authentication to the L2TP server.</td>
</tr>
<tr>
<td>Default route</td>
<td>yes | no; default: <b>no</b></td>
<td>When turned on, this connection will become the router's default route. This means that all traffic directed to the Internet will go through the L2TP server and the server's IP address will be seen as this device's source IP to other hosts on the Internet.<br><b>NOTE</b>: this can only be used when [[{{{name}}}_WAN#Operation_Modes Failover|Backup WAN]] is turned off.</td>
</tr>
</table>

[[Category:{{{name}}} WebUI]]

===L2TP server===
----
An <b>L2TP server</b> is an entity that waits for incoming connections from L2TP clients. To create a new server instance, go to the <i>Services → VPN → L2TP</i> section, select <i>Role: Server</i>, enter a custom name and click the 'Add New' button. An L2TP server instance with the given name will appear in the "L2TP Configuration" list. Only one L2TP server instance is allowed to be added.

A server needs to have a [[Private_and_Public_IP_Addresses#Public_IP_address|public IP address]] in order to be available from the public network (the Internet).

To begin configuration, click the 'Edit' button located next to the server instance. Refer to the figure and table below for information on the L2TP server's configuration fields:

[[File:{{{file_l2tp_server_config}}}]]

<table class="nd-mantable">
<tr>
<th>Field</th>
<th>Value</th>
<th>Description</th>
</tr>
<tr>
<td>Enable</td>
<td>yes | no; default: <b>no</b></td>
<td>Turns the L2TP instance on or off.</td>
</tr>
<tr>
<td>Local IP</td>
<td>ip; default: <b>192.168.0.1</b></td>
<td>IP address of this L2TP network interface.</td>
</tr>
<tr>
<td>Remote IP range begin</td>
<td>ip; default: <b>192.168.0.20</b></td>
<td>L2TP IP address leases will begin from the address specified in this field.</td>
</tr>
<tr>
<td>Remote IP range end</td>
<td>ip; default: <b>192.168.0.30</b></td>
<td>L2TP IP address leases will end with the address specified in this field.</td>
</tr>
<tr>
<td>User name</td>
<td>string; default: <b>user</b></td>
<td>Username used for authentication to this L2TP server.</td>
</tr>
<tr>
<td>Password</td>
<td>string; default: <b>pass</b></td>
<td>Password used for authentication to this L2TP server.</td>
</tr>
<tr>
<td>L2TP Client's IP</td>
<td>ip; default: <b>none</b></td>
<td>Assigns an IP address to the client that uses the adjacent authentication info. This field is optional and if left empty the client will simply receive an IP address from the IP pool defined above.</td>
</tr>
</table>

[[Category:{{{name}}} WebUI]]

Navigation menu