There is a new version of this tutorial available for CentOS 8.

How to Setup IKEv2 VPN Using Strongswan and Let's encrypt on CentOS 7

Strongswan is an open source multiplatform IPSec implementation. It's an IPSec-based VPN solution that focuses on strong authentication mechanisms. Strongswan offers support for both IKEv1 and IKEv2 key exchange protocols, authentication based on X.509 certificates or pre shared keys, and secure IKEv2 EAP user authentication.

In this tutorial, I will show you how to install an IPSec VPN server using Strongswan. We will create an IKEv2 VPN server with the 'EAP-MSCHAPv2' authentication and be using Letsencrypt certificates on CentOS 7 server.

Prerequisites

  • CentOS 7 Server
  • Root privileges

What we will do?

  1. Install Strongswan on CentOS 7
  2. Generate SSL Letsencrypt
  3. Configure Strongswan
  4. Enable NAT Firewall
  5. Enable Port-Forwarding
  6. Testing

Step 1 - Install Strongswan on CentOS 7

In this first step, we will install the strongswan IPsec implement software and all packages needed from the EPEL repository.

Install the EPEL repository and install the strongswan package using yum commands below.

yum -y install epel-release
yum -y install strongswan

Wait for the strongswan package to be installed.

Install Strongswan on CentOS 7

Step 2 - Generate SSL Certificate with Let's encrypt

We will create the IKEv2 VPN server using a domain name 'ikev2.hakase-labs.io' and use certificates generated from letsencrypt.

In this step, we will install the letsencrypt tool 'certbot' and generate certificates for the server domain name 'ikev2.hakase-labs.io'.

Install 'certbot' letsencrypt tool.

yum -y install certbot

After the certbot installation, we need to open the HTTP and HTTPS port of the server using firewall-cmd.

Add the HTTP and HTTPS services to the firewalld service list by running firewall-cmd commands below.

firewall-cmd --add-service=http --permanent
firewall-cmd --add-service=https --permanent
firewall-cmd --reload

Generate SSL Certificate with Let's encrypt

Now we can generate new SSL certificate files using the letsencrypt tool certbot.

Run the certbot command below.

certbot certonly --rsa-key-size 4096 --standalone --agree-tos --no-eff-email --email [email protected] -d ikev2.hakase-labs.io

Letsencrypt certificates for the vpn domain name 'ikev2.hakase-labs.io' has been generated, and are located at the '/etc/letsencrypt/live' directory.

SSL certificate obtained from Let's encrypt

Next, we need to copy the certificate files 'fullchain.pem', 'privkey.pem', and the 'chain.pem' to the '/etc/strongswan/ipsec.d/' directory.

cp /etc/letsencrypt/live/ikev2.hakase-labs.io/fullchain.pem /etc/strongswan/ipsec.d/certs/
cp /etc/letsencrypt/live/ikev2.hakase-labs.io/privkey.pem /etc/strongswan/ipsec.d/private/
cp /etc/letsencrypt/live/ikev2.hakase-labs.io/chain.pem /etc/strongswan/ipsec.d/cacerts/

All letsencrypt certificates for the Strongswan VPN named 'ikev2.hakase-labs.io' have been generated and copied to the '/etc/strongswan/ipsec.d' directory.

tree /etc/strongswan/ipsec.d/

SSL cert files

Step 3 - Configure Strongswan

Go to the '/etc/strongswan' directory and backup the default 'ipsec.conf 'configuration file.

cd /etc/strongswan/
mv ipsec.conf ipsec.conf.asli

Create a new one 'ipsec.conf' using vim editor.

vim ipsec.conf

And paste the following configuration.

#global configuration IPsec
#chron logger
config setup
    charondebug="ike 1, knl 1, cfg 0"
    uniqueids=no

#define new ipsec connection
conn hakase-vpn
    auto=add
    compress=no
    type=tunnel
    keyexchange=ikev2
    ike=aes128-sha1-modp1024,aes128-sha1-modp1536,aes128-sha1-modp2048,aes128-sha256-ecp256,aes128-sha256-modp1024,aes128-sha256-modp1536,aes128-sha256-modp2048,aes256-aes128-sha256-sha1-modp2048-modp4096-modp1024,aes256-sha1-modp1024,aes256-sha256-modp1024,aes256-sha256-modp1536,aes256-sha256-modp2048,aes256-sha256-modp4096,aes256-sha384-ecp384,aes256-sha384-modp1024,aes256-sha384-modp1536,aes256-sha384-modp2048,aes256-sha384-modp4096,aes256gcm16-aes256gcm12-aes128gcm16-aes128gcm12-sha256-sha1-modp2048-modp4096-modp1024,3des-sha1-modp1024!
    esp=aes128-aes256-sha1-sha256-modp2048-modp4096-modp1024,aes128-sha1,aes128-sha1-modp1024,aes128-sha1-modp1536,aes128-sha1-modp2048,aes128-sha256,aes128-sha256-ecp256,aes128-sha256-modp1024,aes128-sha256-modp1536,aes128-sha256-modp2048,aes128gcm12-aes128gcm16-aes256gcm12-aes256gcm16-modp2048-modp4096-modp1024,aes128gcm16,aes128gcm16-ecp256,aes256-sha1,aes256-sha256,aes256-sha256-modp1024,aes256-sha256-modp1536,aes256-sha256-modp2048,aes256-sha256-modp4096,aes256-sha384,aes256-sha384-ecp384,aes256-sha384-modp1024,aes256-sha384-modp1536,aes256-sha384-modp2048,aes256-sha384-modp4096,aes256gcm16,aes256gcm16-ecp384,3des-sha1!
    fragmentation=yes
    forceencaps=yes
    dpdaction=clear
    dpddelay=300s
    rekey=no
    left=%any
    [email protected]
    leftcert=fullchain.pem
    leftsendcert=always
    leftsubnet=0.0.0.0/0
    right=%any
    rightid=%any
    rightauth=eap-mschapv2
    rightsourceip=10.15.1.0/24
    rightdns=1.1.1.1,8.8.8.8
    rightsendcert=never
    eap_identity=%identity

Save and exit.

Configuration details:

  • Create a new IPSec VPN tunnel connection named 'hakase-vpn'.
  • Specify the IKEv2 and ESP cipher suites for authentication.
  • The 'left' server configuration using a domain name 'ikev2.hakase-labs.io' and using the letsencrypt certificate 'fullchain.pem' located at the '/etc/strongswan/ipsec.d/certs' directory.
  • The 'right' clients/remote setup with the EAP authentication method 'eap-mschapv2', assign the virtual IP address range '10.15.1.0/24' to all connected clients, and using public DNS Cloudflare and google.

Next, we need to edit the 'ipsec.secrets' file to define the RSA server private key and EAP user password credentials.

Edit the 'ipsec.secrets' file.

vim ipsec.secrets

Paste the configuration below.

: RSA "privkey.pem"
hakase : EAP "[email protected]"
tensai : EAP "[email protected]"

Save and exit.

Configuration details:

  • Specify the RSA server private key using the letsencrypt certificate 'privkey.pem' located at the '/etc/strongswan/ipsec.d/private' directory.
  • Define the EAP user credentials with format 'user : EAP "password"'.

Strongswan configuration

The strongswan IPSec configuration has been completed. Start the strongswan service and enable it to launch everytime at system boot.

systemctl start strongswan
systemctl enable strongswan

Step 4 - Enable NAT in Firewalld

In this step, we will enable the NAT masquerading and add the IPSec protocols Authentication Header (AH) and Encapsulating Security Payload (ESP) on Firewalld using the 'rich-rule' configuration.

Add 'AH' and 'ESP' for authentication and encryption protocols to the firewalld.

firewall-cmd --zone=public --permanent --add-rich-rule='rule protocol value="esp" accept'
firewall-cmd --zone=public --permanent --add-rich-rule='rule protocol value="ah" accept'

Add the ipsec UDP ports and service.

firewall-cmd --zone=public --permanent --add-port=500/udp
firewall-cmd --zone=public --permanent --add-port=4500/udp
firewall-cmd --zone=public --permanent --add-service="ipsec"

Now enable the NAT mode masquerade and reload the firewalld configuration rules.

firewall-cmd --zone=public --permanent --add-masquerade
firewall-cmd --reload

Firewalld NAT configuration

The NAT mode on firewalld has been enabled, check using the command below.

firewall-cmd --list-all

Following is the result.

Firewall configuration

Step 5 - Enable Port-Forwarding

To enable port-forwarding, we need to edit the 'sysctl.conf' file.

Edit the '/etc/sysctl.conf' file using vim editor.

vim /etc/sysctl.conf

Paste the following configuration there.

net.ipv4.ip_forward = 1
net.ipv4.conf.all.accept_redirects = 0
net.ipv4.conf.all.send_redirects = 0

Save and exit, now reload using the sysctl command below.

sysctl -p

Port-forwarding has been enabled. Now restart the strongswan service.

systemctl restart strongswan

Configure port forwarding in sysctl.conf

Step 6 - Testing Strongswan IPSec VPN

In this case, we will do the test on the MacOS X and android phone.

On MacOS

- Open the 'System Preferences' and click the 'Network' menu.

Click the '+' button to create a new VPN connection.

    • Interface: 'VPN'
    • VPN Type: 'IKEv2'
    • Service Name: 'IKEv2-vpn

Configure VPN on MacOS

- On the 'Server Address' and 'Remote ID', type the VPN domain name 'ikev2.hakase-labs.io'.
- Click 'Authentication Settings'.
- Authentication using a 'Username'.
- Type the username 'tensai' with password '[email protected]'
- Click 'OK' and click 'Apply'.

MacOS VPN authentication settings


New IKEv2 VPN connection has been created on the client. Now click the connect button.

New IKEv2 VPN connection has been created


And the client has been connected to the strongswan VPN server and has an internal/private IP address 10.15.1.1.

On Android

- Download and install the native strongswan android application from Google-Play.
- Add new VPN profile
- Type the server domain name 'ikev2.hakase-labs.io' and use the IKEv2 EAP Username and Password authentication.

Following is the result when we connect to the VPN server.

Configure VPN on Android

The IKEv2 IPSec-based VPN server has been created using Strongswan and Letsencrypt on CentOS 7 server.

Reference

Share this page:

14 Comment(s)

Add comment

Please register in our forum first to comment.

Comments

By: thctlo

Hai, a nice howto, but i suggest you change the copy of : 

cp /etc/letsencrypt/live/ikev2.hakase-labs.io/fullchain.pem /etc/strongswan/ipsec.d/certs/ 

to symlink it. and add a hook to strongswan that when letsencrypt updates the certificate, then restart/reload strongswan. 

 

By: Vadim Kononov

Thanks for a wonderful tutorial! I was able to set up my VPN, and it works perfectly. However, every time I reboot my machine, the VPN gets blocked by the firewall, and once I run "firewall-cmd --reload", then everything works correctly again (I don't have to re-add the firewall rules - only reload it). Do you know why that would be? Have you experienced a similar problem?

By: Sahibzada Fahad

Hi, thank you for wonderful tutorial, can you please guide how we connect mysql database with strongswan ?

By: Arjan

Hello,

Not a stupid question I think and hope :) But can I and how do I use vdvelde-it.nl instead of ikev2.hakase-labs.io?

Thanks in advance,

With kind regards,

Arjan

 

By: till

Th domain ikev2.hakase-labs.io is just used for this example setup and should be replaced with your own domain name. Replace ikev2.hakase-labs.io with your own domain name vdvelde-it.nl wherever it occurs in commands and paths in this tutorial.

By: Pierre Robben

Thanks. You saved my time and my life.

This work fine

By: Eddie

Would be nice to implement strongMan management interface for strongSwan.

https://github.com/strongswan/strongMan

By: marian

As a renewal cron job, I have used this :

cat /etc/crontab

0 2 * * 2  root /usr/bin/letsencrypt renew >> /var/log/letsencrypt-renewal.log && service strongswan restart

 

Great tutorial. Good Job .

By: fransis

hello

i got error on Strongswan( android ) while connect.

this is my log

giving up after 3 retransmitsestablishing IKE_SA failed, peer not respondingunable to terminate IKE_SA: ID 8 not found

 

anybody knows how to solve it?

 

By: Anton

This does not work when connecting from Mobile phone using T-Mobile which only provides ipv6 address

The client succesfully connects but no internet connectivity.

How to fix?

 

By: Marcos

with this tutorial, i can get strongswan up n running for a while now, but encountered an issue now.

the log said "subject certificate invalid" and "no trusted RSA Public key found"

i looked it up on strongswan forum it said the client and the server might not sync time, but checked it should be sync, i think the certificates are expired, is there any reference to update this?

By: Alireza

Thank your for this tutorial,

but how can I run IKEV server just by ip without domain?

 

By: Rizwan Saleem

This Turtorial will no longer work after strongswan releasing the new version how ever i have setup strongswan 8.4 if anybody need help to configure just send me email i would love to help other [email protected]

By: fachvv

This no longer works with the latest strongswan. It doesn't simply support a chain pem file. You have to trust the full chain on the client, which leaves no benefit of using letsencrypt https://wiki.strongswan.org/projects/strongswan/wiki/FAQ#X509-Certificate-chain-files