setup-ipsec-vpn/README.md

280 lines
14 KiB
Markdown
Raw Normal View History

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-01-16 06:43:15 +01:00
Set up your own IPsec VPN server in just a few minutes, with IPsec/L2TP, Cisco IPsec and IKEv2. All you need to do is provide your own VPN credentials, and let the scripts handle the rest.
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
2016-08-30 18:35:52 +02:00
*Read this in other languages: [English](README.md), [简体中文](README-zh.md).*
2016-05-29 21:38:31 +02:00
#### Table of Contents
2016-05-12 06:39:23 +02:00
2017-01-08 06:32:58 +01:00
- [Quick start](#quick-start)
2016-05-12 06:39:23 +02:00
- [Features](#features)
- [Requirements](#requirements)
- [Installation](#installation)
2016-09-26 08:08:02 +02:00
- [Next steps](#next-steps)
- [Important notes](#important-notes)
2016-06-29 21:35:28 +02:00
- [Upgrade Libreswan](#upgrade-libreswan)
2021-06-06 19:04:19 +02:00
- [Manage VPN users](#manage-vpn-users)
- [Advanced usage](#advanced-usage)
2016-06-25 03:42:57 +02:00
- [Uninstallation](#uninstallation)
2022-02-13 06:20:31 +01:00
- [Feedback & Questions](#feedback--questions)
2016-05-12 06:39:23 +02:00
- [License](#license)
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
wget https://get.vpnsetup.net -qO 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
2021-07-21 08:56:11 +02:00
<details>
<summary>
2022-04-12 05:40:08 +02:00
Alternative one-liners.
2022-02-13 06:20:31 +01:00
</summary>
2022-04-12 05:40:08 +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-04-12 05:40:08 +02:00
Alternative setup URL:
```bash
curl -fsSL https://gitlab.com/hwdsl2/setup-ipsec-vpn/-/raw/master/vpnsetup.sh -o vpn.sh && sudo sh vpn.sh
```
</details>
2022-02-13 06:20:31 +01:00
<details>
<summary>
2022-02-13 17:38:49 +01:00
See the VPN script in action (terminal recording).
2021-07-21 08:56:11 +02:00
</summary>
2021-08-10 10:43:00 +02:00
**Note:** This recording is for demo purposes only. VPN credentials in this recording are **NOT** valid.
2021-07-21 08:56:11 +02:00
<p align="center"><img src="docs/images/script-demo.svg"></p>
</details>
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-03-21 07:20:55 +01:00
\* A cloud server, virtual private server (VPS) or dedicated server. OpenVZ VPS is not supported.
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
2021-06-04 21:48:19 +02:00
- **New:** The faster IPsec/XAuth ("Cisco IPsec") and IKEv2 modes are supported
2021-06-05 00:27:21 +02:00
- **New:** A pre-built [Docker image](https://github.com/hwdsl2/docker-ipsec-vpn-server) of the VPN server is now available
2016-05-26 21:31:38 +02:00
- Fully automated IPsec VPN server setup, no user input needed
2016-02-10 22:16:41 +01:00
- Encapsulates all VPN traffic in UDP - does not need ESP protocol
2016-01-09 20:21:30 +01:00
- Can be directly used as "user-data" for a new Amazon EC2 instance
2016-10-30 01:30:35 +02:00
- Includes `sysctl.conf` optimizations for improved performance
2016-01-08 05:33:42 +01:00
## Requirements
2015-08-18 23:14:42 +02:00
2022-03-21 07:20:55 +01:00
A cloud server, virtual private server (VPS) or dedicated server, freshly installed with one of the following OS:
2016-01-08 05:33:42 +01:00
- Ubuntu 22.04, 20.04 or 18.04
2022-02-13 17:38:49 +01:00
- Debian 11[\*](#debian-10-note), 10[\*](#debian-10-note) or 9
2022-03-21 05:10:40 +01:00
- CentOS 7 or CentOS Stream 8[\*\*](#centos-8-note)
2022-03-25 03:13:09 +01:00
- Rocky Linux or AlmaLinux 8
2022-03-21 05:10:40 +01:00
- Oracle Linux 8 or 7
2021-07-29 06:33:29 +02:00
- Red Hat Enterprise Linux (RHEL) 8 or 7
- Amazon Linux 2
2022-01-02 09:20:53 +01:00
- Alpine Linux 3.15 or 3.14
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
2021-08-15 18:38:27 +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/)
<a name="debian-10-note"></a>
2022-01-18 07:07:35 +01:00
\* Debian 11/10 users should [use the standard Linux kernel](docs/clients.md#debian-10-kernel).
<a name="centos-8-note"></a>
2022-03-21 05:10:40 +01:00
\*\* CentOS Linux 8 [is no longer supported](https://www.centos.org/centos-linux-eol/).
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
wget https://get.vpnsetup.net -qO 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
wget https://get.vpnsetup.net -nv -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: \ " '
wget https://get.vpnsetup.net -nv -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-03-03 06:30:49 +01:00
<details>
<summary>
2022-03-05 21:38:44 +01:00
Advanced users can optionally customize IKEv2 options.
2022-03-03 06:30:49 +01:00
</summary>
2022-03-05 21:38:44 +01:00
Advanced users 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>
Click here if you are unable to download using wget.
</summary>
2022-02-13 17:38:49 +01:00
You may also use `curl` to download. For example:
2022-02-13 06:20:31 +01:00
```bash
curl -fsSL https://get.vpnsetup.net -o vpn.sh
2022-02-13 06:20:31 +01:00
sudo sh vpn.sh
```
2022-04-12 05:40:08 +02:00
Alternative setup URL:
```bash
curl -fsSL https://gitlab.com/hwdsl2/setup-ipsec-vpn/-/raw/master/vpnsetup.sh -o vpn.sh
sudo sh vpn.sh
```
2022-03-03 05:52:14 +01:00
Alternatively, open [vpnsetup.sh](vpnsetup.sh) and 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-02-13 06:20:31 +01: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
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
2021-07-29 06:33:29 +02:00
[**Guide: How to Set Up and Use IKEv2 VPN**](docs/ikev2-howto.md)
2021-06-05 00:27:21 +02:00
[**Configure IPsec/L2TP VPN Clients**](docs/clients.md)
2016-05-16 20:56:48 +02:00
2021-06-05 00:27:21 +02:00
[**Configure IPsec/XAuth ("Cisco IPsec") VPN Clients**](docs/clients-xauth.md)
2017-10-03 04:55:21 +02:00
2021-06-05 00:27:21 +02:00
If you get an error when trying to connect, see [Troubleshooting](docs/clients.md#troubleshooting).
2016-09-30 18:53:33 +02:00
2016-05-12 06:39:23 +02:00
Enjoy your very own VPN! :sparkles::tada::rocket::sparkles:
2016-09-26 08:08:02 +02:00
## Important notes
2015-08-18 23:14:42 +02:00
2022-04-12 01:25:04 +02:00
*Read this in other languages: [English](README.md#important-notes), [简体中文](README-zh.md#重要提示).*
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
2021-03-01 17:12:46 +01: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)` (or `linux-image-extra`) package and run `service xl2tpd restart`.
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
wget https://get.vpnsetup.net/upg -qO vpnup.sh && sudo sh vpnup.sh
2020-12-27 07:16:49 +01:00
```
2016-01-16 17:51:47 +01:00
2022-01-23 07:28:58 +01:00
The latest supported Libreswan version is `4.6`. Check installed version: `ipsec --version`.
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).
2021-06-06 22:27:56 +02:00
- [Manage VPN users using helper scripts](docs/manage-users.md#manage-vpn-users-using-helper-scripts)
2022-03-15 04:13:10 +01:00
- [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)
2021-06-06 22:27:56 +02:00
- [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).
2021-06-06 22:27:56 +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)
2022-01-02 19:57:55 +01:00
- [IKEv2-only VPN](docs/advanced-usage.md#ikev2-only-vpn)
2021-06-06 22:27:56 +02:00
- [Internal VPN IPs and traffic](docs/advanced-usage.md#internal-vpn-ips-and-traffic)
- [Port forwarding to VPN clients](docs/advanced-usage.md#port-forwarding-to-vpn-clients)
2021-06-06 22:27:56 +02:00
- [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)
2022-03-15 04:13:10 +01:00
- [Deploy Google BBR congestion control](docs/advanced-usage.md#deploy-google-bbr-congestion-control)
2021-06-06 22:27:56 +02:00
2016-06-25 03:42:57 +02:00
## Uninstallation
2022-03-15 04:13:10 +01:00
See [Uninstall the VPN](docs/uninstall.md).
2021-09-29 06:13:45 +02:00
- [Uninstall using helper script](docs/uninstall.md#uninstall-using-helper-script)
- [Manually uninstall the VPN](docs/uninstall.md#manually-uninstall-the-vpn)
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!