IPsec site to site configuration between Teltonika and Fortinet devices

From Teltonika Networks Wiki
Revision as of 15:50, 19 June 2024 by Dziugas.Syminas (talk | contribs) (Created page with " <p style="color:red">The information in this page is updated in accordance with [https://wiki.teltonika-networks.com/view/FW_%26_SDK_Downloads'''00.07.07.2'''] firmware versi...")

(diff) ← Older revision | Approved revision (diff) | Latest revision (diff) | Newer revision → (diff)

The information in this page is updated in accordance with 00.07.07.2 firmware version.

Introduction

Normally we configure IPsec for LAN-to-LAN communication, also known as split-tunnel VPN, when only specific hosts or subnets should be reachable via a VPN tunnel. However, we may also take a different approach and configure a VPN tunnel using the full tunnel method. This means that any non-directly connected network (i.e. lan interface) will be reachable only via IPsec tunnel and not via the typical default route.

Configuration overview and prerequisites

Before we begin, let's look at the configuration we are attempting to achieve and the prerequisites that make it possible.

Prerequisites:

  • One RUT/RUTX series router or TRB gateway with RUTOS firmware;
  • One Fortinet series router;
  • An end device (PC, Laptop) for configuration;

If you're having trouble finding this page or some of the parameters described here on your device's WebUI, you should turn on "Advanced WebUI" mode. You can do that by clicking the "Advanced" button, located at the top of the WebUI.

Networking rutos manual webui basic advanced mode 75.gif

Topology

RUTRUT will act as a hub. A hub is a server, to which our spoke will be connected (IPsec responder). It will be our "default gateway" for the spoke device. RUT has a LAN subnet of 192.168.1.0/24 and a WAN with Public IP, which should be reachable by the spoke.

FortinetFortinet will act as a spoke. A spoke is a client, that will be connected to the hub (IPsec initiator). It will be connected to a hub for basic internet access. Fortinet has a LAN subnet of 192.168.5.0/24 and a WAN with private IP.

TopologijaIPsecPublicRutSingleLAN.png

Fortinet configuration

Start by configuring the Fortinet device. Login to the WebUI, navigate to VPN → IPsec Tunnels → Create new → IPsec Tunnel → Template Custom. Configure everything as follows.

Note: Not specified fields can be left as is or changed according to your needs.

Network configuration


Make the following changes:

  1. Remote Gateway – Static IP Address;
  2. IP Address – RUT public IP;
  3. Interface – wan1;
Fortinet IPsec network public ip.png

Authentication configuration


Make the following changes:

  1. Method – Pre-shared Key;
  2. Pre-shared Key – your desired password;
  3. Version – 2;
Fortigate IPsec Authentication Configuration.png

Phase 1 Proposal configuration


Note: This is only an example of a secure configuration. Other algorithms or even combinations of them could be used. However, we strongly recommend refraining from using older encryption and hashing algorithms unless support for certain legacy systems is required.

Make the following changes:

  1. Encryption – AES256;
  2. Authentication - SHA512;
  3. Diffie-Hellman Group – 16;
  4. Key Lifetime (seconds) – 86400;
Fortigate IPsec Phase1 Proposal Configuration.png

Phase 2 Selectors configuration


Note: This is only an example of a secure configuration. Other algorithms or even combinations of them could be used. However, we strongly recommend refraining from using older encryption and hashing algorithms unless support for certain legacy systems is required.

Make the following changes: Click on Advanced settings;

  1. Encryption – AES256;
  2. Authentication - SHA512;
  3. Diffie-Hellman Group – 16;
  4. Key Lifetime – Seconds;
  5. Seconds – 86400;
Fortigate IPsec Phase2 Proposal Configuration.png

Firewall configuration

After setting up our IPsec instance, we will need to configure our firewall accordingly. Navigate to Policy & Objects → Firewall Policy → and click on a Create new button.. Configure everything as follows.


In this example, we are allowing all types of traffic through the tunnel, but you can restrict certain traffic by specifying the services that are allowed via the tunnel.

Make the following changes:

  1. Incoming interface - lan;
  2. Outgoing interface - IPsec tunnel interface name (In this case it is Teltonika);
  3. Source - 192.168.5.0/255.255.255.0;
  4. Destination - 192.168.1.0/255.255.255.0;
  5. Service - ALL;
Fortinet IPsec Firewall Forti to RUT.png

Then create a second firewall rule. Make the following changes:

  1. Incoming interface - IPsec tunnel interface name (In this case it is Teltonika);
  2. Outgoing interface - lan;
  3. Source - 192.168.1.0/255.255.255.0;
  4. Destination - 192.168.5.0/255.255.255.0;
  5. Service - ALL;
Fortinet IPsec Firewall RUT to Forti.png

Static Routes configuration

After setting up our IPsec instance and firewall, we will need to configure our static route accordingly. Navigate to Network → Static routes → and click on a Create new button.. For that we will need to create two static routes, one for blackhole and one for accessing our RUT device, configure everything as follows.


Make the following changes:

Fortinet IPsec Add route tunnel.png
  1. Destination - 192.168.1.0/255.255.255.0;
  2. Interface - Tunnel interface name (In this case it is Teltonika);

Then create a new static route for blackhole. Make the following changes:

Fortinet IPsec Add route to blackhole.png
  1. Destination - 192.168.1.0/255.255.255.0;
  2. Interface - Blackhole;
  3. Administrative distance - 254;

RUT configuration

Start by configuring the RUT device. Login to the WebUI, navigate to Services → VPN → IPsec and add a new IPsec instance. Configure everything as follows. Note: Not specified fields can be left as is or changed according to your needs.

Instance configuration


Make the following changes:

  1. Enable instance;
  2. Authentication method - Pre-shared key;
  3. Pre-shared key - the same password you have set on Fortinet when configuring the Fortinet IPsec instance;
  4. Local identifier – RUT LAN IP;
  5. Remote identifier – %any;
Rut IPsec configuration instance site to site.png

Connection general section configuration


Make the following changes:

  1. Mode - Start;
  2. Type - Tunnel;
  3. Local subnet – 192.168.1.0/24;
  4. Remote subnet – 192.168.5.0/24;
  5. Key exchange - IKEv2;
Rut IPsec configuration connection general site to site.png

Proposal configuration


Note: This is only an example of a secure configuration. Other algorithms or even combinations of them could be used. However, we strongly recommend refraining from using older encryption and hashing algorithms unless support for certain legacy systems is required.

Make the following changes:

Networking webui manual IPsec configuration proposal phase1 settings v1.png
  1. Encryption - AES256;
  2. Authentication - SHA512;
  3. DH group - MODP4096;
  4. IKE lifetime - 86400s.

Networking webui manual IPsec configuration proposal phase2 settings v1.png
  1. Encryption - AES256;
  2. Authentication - SHA512;
  3. PFS group - MODP4096;
  4. Lifetime – 86400s;


Testing the configuration


If you have followed all the above steps, your configuration should be finished. But as with any other configuration, it is always wise to test the setup in order to make sure that it works properly.

Using the ipsec status or we can use ipsec statusall command for a more verbose output. With these commands we can see that the IPsec tunnel is successfully established on RUT router. The command output on a RUT device:

Networking ssh manual IPsec configuration IPsec statusall test v1.png

Also, we should be able to ping Fortigate device, we can check it out by executing this command via command line on RUT device: ping 192.168.5.99:

Networking ssh manual IPsec configuration test ping v1.png

To check if IPsec tunnel is working properly from Fortinet, we can try pinging our RUT device by using this command in command line interface on Fortinetexec ping 192.168.1.1, if you are not able to ping RUT device, try changing the source interface from which we try pinging, by executing this command exec ping-options source 192.168.5.99:

Fortinet IPsec test ping.png

We can also check if IPsec tunnel is working properly from Fortinet WebUI, navigate to VPN → IPSec Tunnels and there you will see if the tunnel is working:

Fortinet IPsec WebUI tunnel status.png

See also

IPsec on Teltonika Networks devices

External links

OpenWrt Ipsec basics

Fortinet Ipsec configuration