setup-ipsec-vpn/README.md

354 lines
16 KiB
Markdown
Raw Normal View History

2022-05-22 04:59:03 +02:00
[English](README.md) | [中文](README-zh.md)
2017-03-20 04:10:49 +01:00
# IPsec VPN Server Auto Setup Scripts
2016-04-17 09:20:02 +02:00
2022-04-25 07:00:16 +02:00
[![Build Status](https://github.com/hwdsl2/setup-ipsec-vpn/actions/workflows/main.yml/badge.svg)](https://github.com/hwdsl2/setup-ipsec-vpn/actions/workflows/main.yml) [![GitHub Stars](docs/images/badges/github-stars.svg)](https://github.com/hwdsl2/setup-ipsec-vpn/stargazers) [![Docker Stars](docs/images/badges/docker-stars.svg)](https://github.com/hwdsl2/docker-ipsec-vpn-server) [![Docker Pulls](docs/images/badges/docker-pulls.svg)](https://github.com/hwdsl2/docker-ipsec-vpn-server)
2015-08-18 23:14:42 +02:00
2022-05-14 06:35:13 +02:00
Set up your own IPsec VPN server in just a few minutes, with IPsec/L2TP, Cisco IPsec and IKEv2.
2015-08-18 23:14:42 +02:00
2016-08-30 18:35:52 +02:00
An IPsec VPN encrypts your network traffic, so that nobody between you and the VPN server can eavesdrop on your data as it travels via the Internet. This is especially useful when using unsecured networks, e.g. at coffee shops, airports or hotel rooms.
2021-06-05 00:27:21 +02:00
We will use [Libreswan](https://libreswan.org/) as the IPsec server, and [xl2tpd](https://github.com/xelerance/xl2tpd) as the L2TP provider.
2016-01-08 10:17:50 +01:00
2017-01-08 06:32:58 +01:00
## Quick start
2022-03-21 07:20:55 +01:00
First, prepare your Linux server\* with a fresh install of Ubuntu, Debian or CentOS.
2017-01-08 06:32:58 +01:00
Use this one-liner to set up an IPsec VPN server:
2020-12-27 07:16:49 +01:00
```bash
2022-05-21 02:07:55 +02:00
wget https://get.vpnsetup.net -O vpn.sh && sudo sh vpn.sh
2020-12-27 07:16:49 +01:00
```
2017-01-08 06:32:58 +01:00
2022-03-27 04:56:12 +02:00
Your VPN login details will be randomly generated, and displayed when finished.
2017-01-08 06:32:58 +01:00
2022-06-08 06:53:30 +02:00
**Optional:** Install [WireGuard](https://github.com/hwdsl2/wireguard-install) and/or [OpenVPN](https://github.com/hwdsl2/openvpn-install) on the same server.
2022-05-20 08:16:17 +02:00
2021-07-21 08:56:11 +02:00
<details>
<summary>
2022-06-04 16:10:40 +02:00
Alternative one-liner.
2022-02-13 06:20:31 +01:00
</summary>
2022-05-28 22:06:10 +02:00
You may also use `curl` to download:
2022-02-13 06:20:31 +01:00
```bash
curl -fsSL https://get.vpnsetup.net -o vpn.sh && sudo sh vpn.sh
2022-02-13 06:20:31 +01:00
```
2022-06-03 15:29:09 +02:00
Alternative setup URLs:
2022-05-15 06:59:01 +02:00
```bash
2022-06-03 15:29:09 +02:00
https://github.com/hwdsl2/setup-ipsec-vpn/raw/master/vpnsetup.sh
https://gitlab.com/hwdsl2/setup-ipsec-vpn/-/raw/master/vpnsetup.sh
2022-05-15 06:59:01 +02:00
```
2022-05-15 16:50:49 +02:00
2022-05-17 09:53:07 +02:00
If you are unable to download, open [vpnsetup.sh](vpnsetup.sh), then click the `Raw` button on the right. Press `Ctrl/Cmd+A` to select all, `Ctrl/Cmd+C` to copy, then paste into your favorite editor.
2022-04-12 05:40:08 +02:00
</details>
2022-02-13 06:20:31 +01:00
<details>
<summary>
2022-05-19 01:06:43 +02:00
See the VPN script in action (terminal recording).
</summary>
**Note:** This recording is for demo purposes only. VPN credentials in this recording are **NOT** valid.
<p align="center"><img src="docs/images/script-demo.svg"></p>
</details>
2021-07-21 08:56:11 +02:00
2022-03-27 04:56:12 +02:00
A pre-built [Docker image](https://github.com/hwdsl2/docker-ipsec-vpn-server) is also available. For other options and client setup, read the sections below.
2017-01-08 06:32:58 +01:00
2022-05-14 06:35:13 +02:00
\* A cloud server, virtual private server (VPS) or dedicated server.
2017-01-08 06:32:58 +01:00
2016-04-22 04:35:57 +02:00
## Features
2016-01-09 20:21:30 +01:00
2016-05-26 21:31:38 +02:00
- Fully automated IPsec VPN server setup, no user input needed
2022-05-14 07:39:18 +02:00
- Supports IKEv2 with strong and fast ciphers (e.g. AES-GCM)
2022-05-15 05:25:46 +02:00
- Generates VPN profiles to auto-configure iOS, macOS and Android devices
2022-05-14 07:39:18 +02:00
- Supports Windows, macOS, iOS, Android and Linux as VPN clients
- Includes helper scripts to manage VPN users and certificates
2016-01-08 05:33:42 +01:00
## Requirements
2015-08-18 23:14:42 +02:00
2022-05-14 06:35:13 +02:00
A cloud server, virtual private server (VPS) or dedicated server, freshly installed with:
2016-01-08 05:33:42 +01:00
- Ubuntu 22.04, 20.04 or 18.04
- Debian 11 or 10
2022-07-30 10:00:14 +02:00
- CentOS 7 or CentOS Stream 9/8
- Rocky Linux or AlmaLinux 9/8
2022-07-30 16:32:03 +02:00
- Oracle Linux 9, 8 or 7
2021-07-29 06:33:29 +02:00
- Amazon Linux 2
2022-09-16 02:41:36 +02:00
<details>
<summary>
Other supported Linux distributions.
</summary>
- Raspberry Pi OS (Raspbian) 11 or 10
- Kali Linux 2022
2022-06-20 05:42:47 +02:00
- Alpine Linux 3.16 or 3.15
2022-09-16 02:41:36 +02:00
- Red Hat Enterprise Linux (RHEL) 9, 8 or 7
</details>
2016-01-08 05:33:42 +01:00
2022-03-26 23:56:28 +01:00
This also includes Linux VMs in public clouds, such as [DigitalOcean](https://blog.ls20.com/digitalocean), [Vultr](https://blog.ls20.com/vultr), [Linode](https://blog.ls20.com/linode), [OVH](https://www.ovhcloud.com/en/vps/) and [Microsoft Azure](https://azure.microsoft.com). Public cloud users can also deploy using [user data](https://blog.ls20.com/ipsec-l2tp-vpn-auto-setup-for-ubuntu-12-04-on-amazon-ec2/#vpnsetup).
2016-01-08 05:33:42 +01:00
2022-03-19 00:30:48 +01:00
[![Deploy to DigitalOcean](docs/images/do-install-button.png)](http://dovpn.carlfriess.com) &nbsp;[![Deploy to Linode](docs/images/linode-deploy-button.png)](https://cloud.linode.com/stackscripts/37239) &nbsp;[![Deploy to Azure](docs/images/azure-deploy-button.png)](azure/README.md)
2016-08-11 05:15:11 +02:00
2021-06-05 00:27:21 +02:00
[**&raquo; I want to run my own VPN but don't have a server for that**](https://blog.ls20.com/ipsec-l2tp-vpn-auto-setup-for-ubuntu-12-04-on-amazon-ec2/#gettingavps)
2016-01-09 20:21:30 +01:00
2022-08-05 19:02:29 +02:00
For servers with an external firewall (e.g. [EC2](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-security-groups.html)/[GCE](https://cloud.google.com/vpc/docs/firewalls)), open UDP ports 500 and 4500 for the VPN.
2022-08-05 19:02:29 +02:00
A pre-built [Docker image](https://github.com/hwdsl2/docker-ipsec-vpn-server) is also available. Advanced users can install on a [Raspberry Pi](https://www.raspberrypi.org). [[1]](https://elasticbyte.net/posts/setting-up-a-native-cisco-ipsec-vpn-server-using-a-raspberry-pi/) [[2]](https://www.stewright.me/2018/07/create-a-raspberry-pi-vpn-server-using-l2tpipsec/)
2016-04-16 00:47:52 +02:00
:warning: **DO NOT** run these scripts on your PC or Mac! They should only be used on a server!
2015-08-18 23:14:42 +02:00
## Installation
2022-03-03 06:30:49 +01:00
First, update your server with `sudo apt-get update && sudo apt-get dist-upgrade` (Ubuntu/Debian) or `sudo yum update` and reboot. This is optional, but recommended.
2016-06-29 21:35:28 +02:00
To install the VPN, please choose one of the following options:
**Option 1:** Have the script generate random VPN credentials for you (will be displayed when finished).
2021-03-29 07:09:15 +02:00
```bash
2022-05-21 02:07:55 +02:00
wget https://get.vpnsetup.net -O vpn.sh && sudo sh vpn.sh
2021-03-29 07:09:15 +02:00
```
2021-03-27 20:51:18 +01:00
**Option 2:** Edit the script and provide your own VPN credentials.
2016-05-14 07:35:33 +02:00
```bash
2022-05-21 02:07:55 +02:00
wget https://get.vpnsetup.net -O vpn.sh
2021-02-05 04:43:03 +01:00
nano -w vpn.sh
2016-06-11 22:38:30 +02:00
[Replace with your own values: YOUR_IPSEC_PSK, YOUR_USERNAME and YOUR_PASSWORD]
2021-02-05 04:43:03 +01:00
sudo sh vpn.sh
```
2018-12-19 07:14:52 +01:00
**Note:** A secure IPsec PSK should consist of at least 20 random characters.
**Option 3:** Define your VPN credentials as environment variables.
2016-06-29 21:35:28 +02:00
```bash
# All values MUST be placed inside 'single quotes'
2017-11-01 07:01:49 +01:00
# DO NOT use these special characters within values: \ " '
2022-05-21 02:07:55 +02:00
wget https://get.vpnsetup.net -O vpn.sh
2020-12-27 07:16:49 +01:00
sudo VPN_IPSEC_PSK='your_ipsec_pre_shared_key' \
2016-06-29 21:35:28 +02:00
VPN_USER='your_vpn_username' \
VPN_PASSWORD='your_vpn_password' \
2021-02-05 04:43:03 +01:00
sh vpn.sh
2016-06-29 21:35:28 +02:00
```
2020-12-26 07:23:34 +01:00
2022-06-08 06:53:30 +02:00
After setup, you may optionally install [WireGuard](https://github.com/hwdsl2/wireguard-install) and/or [OpenVPN](https://github.com/hwdsl2/openvpn-install) on the same server.
2022-05-21 07:07:56 +02:00
2022-03-03 06:30:49 +01:00
<details>
<summary>
Click here if you are unable to download.
</summary>
You may also use `curl` to download. For example:
```bash
curl -fL https://get.vpnsetup.net -o vpn.sh
sudo sh vpn.sh
```
Alternative setup URLs:
```bash
https://github.com/hwdsl2/setup-ipsec-vpn/raw/master/vpnsetup.sh
https://gitlab.com/hwdsl2/setup-ipsec-vpn/-/raw/master/vpnsetup.sh
```
If you are unable to download, open [vpnsetup.sh](vpnsetup.sh), then click the `Raw` button on the right. Press `Ctrl/Cmd+A` to select all, `Ctrl/Cmd+C` to copy, then paste into your favorite editor.
</details>
#### Optional: Customize IKEv2 options during VPN setup.
When installing the VPN, you can optionally customize IKEv2 options.
<details>
<summary>
Option 1: Customize IKEv2 options using environment variables.
2022-03-03 06:30:49 +01:00
</summary>
2022-07-09 01:22:49 +02:00
When installing the VPN, you can optionally specify a DNS name for the IKEv2 server address. The DNS name must be a fully qualified domain name (FQDN). Example:
2022-03-03 06:30:49 +01:00
```bash
sudo VPN_DNS_NAME='vpn.example.com' sh vpn.sh
```
2022-03-05 21:38:44 +01:00
Similarly, you may specify a name for the first IKEv2 client. The default is `vpnclient` if not specified.
2022-03-03 06:30:49 +01:00
```bash
sudo VPN_CLIENT_NAME='your_client_name' sh vpn.sh
```
2022-03-05 21:38:44 +01:00
By default, clients are set to use [Google Public DNS](https://developers.google.com/speed/public-dns/) when the VPN is active. You may specify custom DNS server(s) for all VPN modes. Example:
2022-03-03 06:30:49 +01:00
```bash
sudo VPN_DNS_SRV1=1.1.1.1 VPN_DNS_SRV2=1.0.0.1 sh vpn.sh
```
2022-03-23 03:24:31 +01:00
By default, no password is required when importing IKEv2 client configuration. You can choose to protect client config files using a random password.
2022-03-03 06:30:49 +01:00
```bash
sudo VPN_PROTECT_CONFIG=yes sh vpn.sh
```
</details>
2022-02-13 06:20:31 +01:00
<details>
<summary>
Option 2: Skip IKEv2 during VPN setup, then set up IKEv2 using custom options.
2022-05-18 08:59:40 +02:00
</summary>
When installing the VPN, you can skip IKEv2 and only install the IPsec/L2TP and IPsec/XAuth ("Cisco IPsec") modes:
2022-05-18 08:59:40 +02:00
```bash
sudo VPN_SKIP_IKEV2=yes sh vpn.sh
2022-05-18 08:59:40 +02:00
```
(Optional) If you want to specify custom DNS server(s), refer to option 1 above.
After that, run the IKEv2 [helper script](docs/ikev2-howto.md#set-up-ikev2-using-helper-script) to set up IKEv2 interactively using custom options:
2022-05-18 08:59:40 +02:00
```bash
sudo ikev2.sh
2022-05-18 08:59:40 +02:00
```
**Note:** The `VPN_SKIP_IKEV2` variable has no effect if IKEv2 is already set up on the server. In that case, to customize IKEv2 options, you can first [remove IKEv2](docs/ikev2-howto.md#remove-ikev2), then set it up again using `sudo ikev2.sh`.
2022-05-18 08:59:40 +02:00
</details>
2020-12-26 07:23:34 +01:00
2016-09-26 08:08:02 +02:00
## Next steps
2016-05-12 06:39:23 +02:00
2022-06-07 06:51:31 +02:00
*Read this in other languages: [English](README.md#next-steps), [中文](README-zh.md#下一步).*
2016-06-08 22:56:17 +02:00
Get your computer or device to use the VPN. Please refer to:
2016-05-12 06:39:23 +02:00
2022-06-26 23:27:42 +02:00
**[Configure IKEv2 VPN Clients (recommended)](docs/ikev2-howto.md)**
2021-07-29 06:33:29 +02:00
2022-06-26 23:27:42 +02:00
**[Configure IPsec/L2TP VPN Clients](docs/clients.md)**
2016-05-16 20:56:48 +02:00
2022-06-26 23:27:42 +02:00
**[Configure IPsec/XAuth ("Cisco IPsec") VPN Clients](docs/clients-xauth.md)**
2017-10-03 04:55:21 +02:00
2022-07-14 05:58:37 +02:00
**[Download PDF versions of VPN docs (supporters)](https://ko-fi.com/post/PDF-versions-of-Setup-IPsec-VPN-docs-for-easy-shar-E1E4DO69I)**
2022-07-09 01:21:51 +02:00
2016-05-12 06:39:23 +02:00
Enjoy your very own VPN! :sparkles::tada::rocket::sparkles:
2022-07-09 01:21:51 +02:00
> Like this project? You can show your support or appreciation.
2022-07-06 08:00:40 +02:00
>
> <a href="https://ko-fi.com/hwdsl2" target="_blank"><img height="36" width="187" src="docs/images/kofi2.png" border="0" alt="Buy Me a Coffee at ko-fi.com" /></a> &nbsp;<a href="https://coindrop.to/hwdsl2" target="_blank"><img src="docs/images/embed-button.png" height="36" width="145" border="0" alt="Coindrop.to me" /></a>
2022-06-14 06:34:16 +02:00
## Important notes
2016-10-23 21:32:07 +02:00
2021-11-01 05:20:42 +01:00
**Windows users**: For IPsec/L2TP mode, a [one-time registry change](docs/clients.md#windows-error-809) is required if the VPN server or client is behind NAT (e.g. home router).
2016-06-08 03:10:57 +02:00
2022-03-26 23:56:28 +01:00
The same VPN account can be used by your multiple devices. However, due to an IPsec/L2TP limitation, if you wish to connect multiple devices from behind the same NAT (e.g. home router), you must use [IKEv2](docs/ikev2-howto.md) or [IPsec/XAuth](docs/clients-xauth.md) mode. To view or update VPN user accounts, see [Manage VPN users](docs/manage-users.md).
2016-06-26 21:51:21 +02:00
2021-06-05 00:27:21 +02:00
For servers with an external firewall (e.g. [EC2](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-security-groups.html)/[GCE](https://cloud.google.com/vpc/docs/firewalls)), open UDP ports 500 and 4500 for the VPN. Aliyun users, see [#433](https://github.com/hwdsl2/setup-ipsec-vpn/issues/433).
2022-01-23 07:28:58 +01:00
Clients are set to use [Google Public DNS](https://developers.google.com/speed/public-dns/) when the VPN is active. If another DNS provider is preferred, see [Advanced usage](docs/advanced-usage.md).
2016-02-06 20:30:30 +01:00
2022-05-11 02:37:45 +02:00
Using kernel support could improve IPsec/L2TP performance. It is available on [all supported OS](#requirements). Ubuntu users should install the `linux-modules-extra-$(uname -r)` package and run `service xl2tpd restart`.
2021-03-01 17:12:46 +01:00
2016-05-09 08:39:17 +02:00
The scripts will backup existing config files before making changes, with `.old-date-time` suffix.
2016-06-29 21:35:28 +02:00
## Upgrade Libreswan
2016-01-16 17:51:47 +01:00
2022-01-23 07:28:58 +01:00
Use this one-liner to update [Libreswan](https://libreswan.org) ([changelog](https://github.com/libreswan/libreswan/blob/main/CHANGES) | [announce](https://lists.libreswan.org/mailman/listinfo/swan-announce)) on your VPN server.
2020-12-27 07:16:49 +01:00
2016-09-19 00:22:15 +02:00
```bash
2022-05-21 02:07:55 +02:00
wget https://get.vpnsetup.net/upg -O vpnup.sh && sudo sh vpnup.sh
2020-12-27 07:16:49 +01:00
```
2016-01-16 17:51:47 +01:00
2022-05-01 05:50:09 +02:00
<details>
<summary>
2022-06-04 16:10:40 +02:00
Alternative one-liner.
2022-05-01 05:50:09 +02:00
</summary>
2022-05-28 22:06:10 +02:00
You may also use `curl` to download:
2022-05-01 05:50:09 +02:00
```bash
2022-05-05 06:45:09 +02:00
curl -fsSL https://get.vpnsetup.net/upg -o vpnup.sh && sudo sh vpnup.sh
2022-05-01 05:50:09 +02:00
```
2022-05-05 06:45:09 +02:00
2022-06-03 15:29:09 +02:00
Alternative update URLs:
2022-05-15 06:59:01 +02:00
```bash
2022-06-03 15:29:09 +02:00
https://github.com/hwdsl2/setup-ipsec-vpn/raw/master/extras/vpnupgrade.sh
https://gitlab.com/hwdsl2/setup-ipsec-vpn/-/raw/master/extras/vpnupgrade.sh
2022-05-15 06:59:01 +02:00
```
2022-05-15 16:50:49 +02:00
2022-05-17 09:53:07 +02:00
If you are unable to download, open [vpnupgrade.sh](extras/vpnupgrade.sh), then click the `Raw` button on the right. Press `Ctrl/Cmd+A` to select all, `Ctrl/Cmd+C` to copy, then paste into your favorite editor.
2022-05-01 05:50:09 +02:00
</details>
2022-05-26 07:00:02 +02:00
The latest supported Libreswan version is `4.7`. Check installed version: `ipsec --version`.
2022-01-23 07:28:58 +01:00
2021-10-10 06:44:25 +02:00
**Note:** `xl2tpd` can be updated using your system's package manager, such as `apt-get` on Ubuntu/Debian.
2021-06-06 19:04:19 +02:00
## Manage VPN users
2022-03-15 04:13:10 +01:00
See [Manage VPN users](docs/manage-users.md).
2022-06-12 08:09:14 +02:00
- [Manage VPN users using helper scripts](docs/manage-users.md#manage-vpn-users-using-helper-scripts)
- [View VPN users](docs/manage-users.md#view-vpn-users)
- [View or update the IPsec PSK](docs/manage-users.md#view-or-update-the-ipsec-psk)
- [Manually manage VPN users](docs/manage-users.md#manually-manage-vpn-users)
2021-06-06 19:04:19 +02:00
## Advanced usage
2022-03-15 04:13:10 +01:00
See [Advanced usage](docs/advanced-usage.md).
2022-06-12 08:09:14 +02:00
- [Use alternative DNS servers](docs/advanced-usage.md#use-alternative-dns-servers)
- [DNS name and server IP changes](docs/advanced-usage.md#dns-name-and-server-ip-changes)
- [IKEv2-only VPN](docs/advanced-usage.md#ikev2-only-vpn)
- [Internal VPN IPs and traffic](docs/advanced-usage.md#internal-vpn-ips-and-traffic)
- [Customize VPN subnets](docs/advanced-usage.md#customize-vpn-subnets)
- [Port forwarding to VPN clients](docs/advanced-usage.md#port-forwarding-to-vpn-clients)
- [Split tunneling](docs/advanced-usage.md#split-tunneling)
- [Access VPN server's subnet](docs/advanced-usage.md#access-vpn-servers-subnet)
- [Modify IPTables rules](docs/advanced-usage.md#modify-iptables-rules)
- [Deploy Google BBR congestion control](docs/advanced-usage.md#deploy-google-bbr-congestion-control)
2022-05-15 07:55:40 +02:00
## Uninstall the VPN
2021-06-06 22:27:56 +02:00
2022-05-15 16:50:49 +02:00
To uninstall IPsec VPN, run the [helper script](extras/vpnuninstall.sh):
2022-05-21 02:07:55 +02:00
**Warning:** This helper script will remove IPsec VPN from your server. All VPN configuration will be **permanently deleted**, and Libreswan and xl2tpd will be removed. This **cannot be undone**!
2022-05-15 07:55:40 +02:00
```bash
2022-05-21 02:07:55 +02:00
wget https://get.vpnsetup.net/unst -O vpnunst.sh && sudo bash vpnunst.sh
2022-05-15 07:55:40 +02:00
```
2022-06-03 15:29:09 +02:00
<details>
<summary>
Alternative commands.
</summary>
You may also use `curl` to download:
```bash
curl -fsSL https://get.vpnsetup.net/unst -o vpnunst.sh && sudo bash vpnunst.sh
```
Alternative script URLs:
```bash
https://github.com/hwdsl2/setup-ipsec-vpn/raw/master/extras/vpnuninstall.sh
https://gitlab.com/hwdsl2/setup-ipsec-vpn/-/raw/master/extras/vpnuninstall.sh
```
</details>
2022-05-15 07:55:40 +02:00
For more information, see [Uninstall the VPN](docs/uninstall.md).
2021-09-29 06:13:45 +02:00
2022-02-13 06:20:31 +01:00
## Feedback & Questions
2022-04-27 06:49:01 +02:00
- Have a suggestion for this project? Open an [Enhancement request](https://github.com/hwdsl2/setup-ipsec-vpn/issues/new/choose). [Pull requests](https://github.com/hwdsl2/setup-ipsec-vpn/pulls) are also welcome.
2022-02-13 17:38:49 +01:00
- If you found a reproducible bug, open a bug report for the [IPsec VPN](https://github.com/libreswan/libreswan/issues?q=is%3Aissue) or for the [VPN scripts](https://github.com/hwdsl2/setup-ipsec-vpn/issues/new/choose).
2022-02-13 06:20:31 +01:00
- Got a question? Please first search [existing issues](https://github.com/hwdsl2/setup-ipsec-vpn/issues?q=is%3Aissue) and comments [in this Gist](https://gist.github.com/hwdsl2/9030462#comments) and [on my blog](https://blog.ls20.com/ipsec-l2tp-vpn-auto-setup-for-ubuntu-12-04-on-amazon-ec2/#disqus_thread).
- Ask VPN related questions on the [Libreswan](https://lists.libreswan.org/mailman/listinfo/swan) or [strongSwan](https://lists.strongswan.org/mailman/listinfo/users) mailing list, or read these wikis: [[1]](https://libreswan.org/wiki/Main_Page) [[2]](https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/7/html/security_guide/sec-securing_virtual_private_networks) [[3]](https://wiki.strongswan.org/projects/strongswan/wiki/UserDocumentation) [[4]](https://wiki.gentoo.org/wiki/IPsec_L2TP_VPN_server) [[5]](https://wiki.archlinux.org/index.php/Openswan_L2TP/IPsec_VPN_client_setup).
2016-04-24 01:47:03 +02:00
## License
2015-08-18 23:14:42 +02:00
2022-01-02 07:09:03 +01:00
Copyright (C) 2014-2022 [Lin Song](https://github.com/hwdsl2) [![View my profile on LinkedIn](https://static.licdn.com/scds/common/u/img/webpromo/btn_viewmy_160x25.png)](https://www.linkedin.com/in/linsongui)
2021-06-05 00:27:21 +02:00
Based on [the work of Thomas Sarlandie](https://github.com/sarfata/voodooprivacy) (Copyright 2012)
2015-08-18 23:14:42 +02:00
2021-06-05 00:27:21 +02:00
[![Creative Commons License](https://i.creativecommons.org/l/by-sa/3.0/88x31.png)](http://creativecommons.org/licenses/by-sa/3.0/)
This work is licensed under the [Creative Commons Attribution-ShareAlike 3.0 Unported License](http://creativecommons.org/licenses/by-sa/3.0/)
2015-08-18 23:14:42 +02:00
Attribution required: please include my name in any derivative and let me know how you have improved it!