Skip to content

Latest commit

 

History

History
76 lines (51 loc) · 1.95 KB

README.md

File metadata and controls

76 lines (51 loc) · 1.95 KB

IPsec VPN Server on Docker with SSL Enabled

Docker image to run IPsec VPN server with SSL enabled.

Based on Debian 9 (Stretch) with strongSwan 5.7.2(IPsec VPN software).

Prerequisites

  • Domain Name You must have a domain name to obtain certificate.

  • Certificate Of course a certificate is needed.

    You can got a free one from Let's Encrypt. See also:

Usage

Prepare

First we need 3 files to map in docker container:

  1. RSA private key that encoded in PEM format.

    Your key's content should ends with -----END RSA PRIVATE KEY-----. Otherwise, if your key's content ends with -----END PRIVATE KEY-----, you have to use openssl to convert by command like below:

    openssl rsa -in /path/to/privkey.pem -out /path/to/privkey.key
  2. Cert file with chain and encoded in PEM format.(fullchain.pem)

  3. Auth secret file:

    An example (*NOTE: there is a space between admin and :):

    admin : XAUTH "P@ssw0rd"
    

Starting server

Pull image:

docker pull grayking/ipsec-vpn-ssl

Start server:

docker run \
    -e DOMAIN_NAME=example.com \
    -e VPN_PSK=somerandomstringaspks \
    -v /path/to/example.com.key:/etc/ipsec.d/private/example_com.key   \ # RSA private key and replace `.` to `_` in domain name
    -v /path/to/example.com.crt:/etc/ipsec.d/certs/example_com.crt     \ # Full chain certificate file and replace `.` to `_` in domain name
    -v /path/to/xauth.secrets:/etc/ipsec-xauth.secrets  \
    -p 500:500/udp \
    -p 4500:4500/udp \
    --privileged \
    --name ipsec-vpn-ssl \
    -d \
    grayking/ipsec-vpn-ssl

Restart server:

docker exec ipsec-vpn-ssl ipsec restart

This project is largely inspired by docker-ipsec-vpn-server.