setup-ipsec-vpn/README.md

438 lines
22 KiB
Markdown
Raw Permalink 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
2023-08-20 07:23:37 +02:00
**[» :book: Book: Build Your Own VPN Server: A Step by Step Guide](https://books2read.com/vpnguide?store=amazon)**
2022-12-17 08:08:33 +01:00
2017-01-08 06:32:58 +01:00
## Quick start
2022-09-25 21:33:51 +02:00
First, prepare your Linux server\* with an 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-10-20 08:02:29 +02:00
See the 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>
<details>
<summary>
Click here if you are unable to download.
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>
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
- Supports Windows, macOS, iOS, Android, Chrome OS and Linux as VPN clients
2022-05-14 07:39:18 +02:00
- 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-09-25 21:33:51 +02:00
A cloud server, virtual private server (VPS) or dedicated server, with an install of:
2016-01-08 05:33:42 +01:00
2024-04-27 18:37:46 +02:00
- Ubuntu 24.04, 22.04 or 20.04
2023-06-12 07:41:36 +02:00
- Debian 12, 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>
2023-07-01 23:56:24 +02:00
- Raspberry Pi OS (Raspbian)
2023-02-12 23:18:41 +01:00
- Kali Linux
2023-07-01 23:56:24 +02:00
- Alpine Linux
- Red Hat Enterprise Linux (RHEL)
2022-09-16 02:41:36 +02:00
</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
2023-08-19 17:16:39 +02:00
Quick deploy to:
2023-07-29 08:41:34 +02: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 AWS](docs/images/aws-deploy-button.png)](aws/README.md) &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.
2023-11-07 05:19:07 +01: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.com). [[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-10-10 15:54:52 +02:00
You may optionally install [WireGuard](https://github.com/hwdsl2/wireguard-install) and/or [OpenVPN](https://github.com/hwdsl2/openvpn-install) on the same server. If your server runs CentOS Stream, Rocky Linux or AlmaLinux, first install OpenVPN/WireGuard, then install the IPsec VPN.
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>
2024-05-04 05:25:07 +02:00
<details>
<summary>
I want to install the older Libreswan version 4.
</summary>
It is generally recommended to use the latest [Libreswan](https://libreswan.org/) version 5, which is the default version in this project. However, if you want to install the older Libreswan version 4:
```bash
wget https://get.vpnsetup.net -O vpn.sh
sudo VPN_SWAN_VER=4.15 sh vpn.sh
```
**Note:** If Libreswan version 5 is already installed, you may need to first [Uninstall the VPN](docs/uninstall.md) before installing Libreswan version 4. Alternatively, download the [update script](#upgrade-libreswan), edit it to specify `SWAN_VER=4.15`, then run the script.
</details>
2023-11-25 08:24:07 +01:00
## Customize VPN options
### Use alternative DNS servers
By default, clients are set to use [Google Public DNS](https://developers.google.com/speed/public-dns/) when the VPN is active. When installing the VPN, you may optionally specify custom DNS server(s) for all VPN modes. Example:
```bash
sudo VPN_DNS_SRV1=1.1.1.1 VPN_DNS_SRV2=1.0.0.1 sh vpn.sh
```
Use `VPN_DNS_SRV1` to specify the primary DNS server, and `VPN_DNS_SRV2` to specify the secondary DNS server (optional).
Below is a list of some popular public DNS providers for your reference.
| Provider | Primary DNS | Secondary DNS | Notes |
| -------- | ----------- | ------------- | ----- |
| [Google Public DNS](https://developers.google.com/speed/public-dns) | 8.8.8.8 | 8.8.4.4 | Default in this project |
| [Cloudflare](https://1.1.1.1/dns/) | 1.1.1.1 | 1.0.0.1 | See also: [Cloudflare for families](https://1.1.1.1/family/) |
| [Quad9](https://www.quad9.net) | 9.9.9.9 | 149.112.112.112 | Blocks malicious domains |
| [OpenDNS](https://www.opendns.com/home-internet-security/) | 208.67.222.222 | 208.67.220.220 | Blocks phishing domains, configurable. |
| [CleanBrowsing](https://cleanbrowsing.org/filters/) | 185.228.168.9 | 185.228.169.9 | [Domain filters](https://cleanbrowsing.org/filters/) available |
| [NextDNS](https://nextdns.io/?from=bg25bwmp) | Varies | Varies | Ad blocking, free tier available. [Learn more](https://nextdns.io/?from=bg25bwmp). |
| [Control D](https://controld.com/free-dns) | Varies | Varies | Ad blocking, configurable. [Learn more](https://controld.com/free-dns). |
If you need to change DNS servers after VPN setup, see [Advanced usage](docs/advanced-usage.md).
**Note:** If IKEv2 is already set up on the server, the variables above have no effect for IKEv2 mode. In that case, to customize IKEv2 options such as DNS servers, you can first [remove IKEv2](docs/ikev2-howto.md#remove-ikev2), then set it up again using `sudo ikev2.sh`.
### Customize IKEv2 options
2023-11-07 05:19:07 +01:00
When installing the VPN, advanced users can optionally customize IKEv2 options.
2023-11-25 08:24:07 +01:00
<details open>
<summary>
2023-11-25 08:24:07 +01:00
Option 1: Skip IKEv2 during VPN setup, then set up IKEv2 using custom options.
2022-03-03 06:30:49 +01:00
</summary>
2023-11-25 08:24:07 +01:00
When installing the VPN, you can skip IKEv2 and only install the IPsec/L2TP and IPsec/XAuth ("Cisco IPsec") modes:
2022-03-03 06:30:49 +01:00
```bash
2023-11-25 08:24:07 +01:00
sudo VPN_SKIP_IKEV2=yes sh vpn.sh
2022-03-03 06:30:49 +01:00
```
2023-11-25 08:24:07 +01:00
(Optional) If you want to specify custom DNS server(s) for VPN clients, define `VPN_DNS_SRV1` and optionally `VPN_DNS_SRV2`. See [Use alternative DNS servers](#use-alternative-dns-servers) for details.
2022-03-03 06:30:49 +01:00
2023-11-25 08:24:07 +01:00
After that, run the IKEv2 helper script to set up IKEv2 interactively using custom options:
2022-03-03 06:30:49 +01:00
```bash
2023-11-25 08:24:07 +01:00
sudo ikev2.sh
2022-03-03 06:30:49 +01:00
```
2023-11-25 08:24:07 +01:00
You can customize the following options: VPN server's DNS name, name and validity period of the first client, DNS server for VPN clients and whether to password protect client config files.
2022-03-03 06:30:49 +01:00
2023-11-25 08:24:07 +01: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-03-03 06:30:49 +01:00
</details>
2022-02-13 06:20:31 +01:00
<details>
<summary>
2023-11-25 08:24:07 +01:00
Option 2: Customize IKEv2 options using environment variables.
2022-05-18 08:59:40 +02:00
</summary>
2023-11-25 08:24:07 +01: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-05-18 08:59:40 +02:00
```bash
2023-11-25 08:24:07 +01:00
sudo VPN_DNS_NAME='vpn.example.com' sh vpn.sh
2022-05-18 08:59:40 +02:00
```
2023-11-25 08:24:07 +01:00
Similarly, you may specify a name for the first IKEv2 client. The default is `vpnclient` if not specified.
2023-11-25 08:24:07 +01:00
```bash
sudo VPN_CLIENT_NAME='your_client_name' sh vpn.sh
```
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-05-18 08:59:40 +02:00
```bash
2023-11-25 08:24:07 +01:00
sudo VPN_DNS_SRV1=1.1.1.1 VPN_DNS_SRV2=1.0.0.1 sh vpn.sh
2022-05-18 08:59:40 +02:00
```
2023-11-25 08:24:07 +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.
```bash
sudo VPN_PROTECT_CONFIG=yes sh vpn.sh
```
2022-05-18 08:59:40 +02:00
</details>
2022-10-14 07:36:09 +02:00
<details>
<summary>
For reference: List of IKEv1 and IKEv2 parameters.
</summary>
| IKEv1 parameter\* | Default value | Customize (env variable)\*\* |
| --------------------------- | --------------------- | ---------------------------------------- |
| Server address (DNS name) | - | No, but you can connect using a DNS name |
| Server address (public IP) | Auto detect | VPN_PUBLIC_IP |
| IPsec pre-shared key | Auto generate | VPN_IPSEC_PSK |
| VPN username | vpnuser | VPN_USER |
| VPN password | Auto generate | VPN_PASSWORD |
| DNS servers for clients | Google Public DNS | VPN_DNS_SRV1, VPN_DNS_SRV2 |
2022-10-15 06:35:22 +02:00
| Skip IKEv2 setup | no | VPN_SKIP_IKEV2=yes |
2022-10-14 07:36:09 +02:00
\* These IKEv1 parameters are for IPsec/L2TP and IPsec/XAuth ("Cisco IPsec") modes.
\*\* Define these as environment variables when running vpn(setup).sh.
2022-10-15 06:35:22 +02:00
| IKEv2 parameter\* | Default value | Customize (env variable)\*\* | Customize (interactive)\*\*\* |
| --------------------------- | --------------------- | ---------------------------- | ----------------------------- |
2023-01-05 01:58:29 +01:00
| Server address (DNS name) | - | VPN_DNS_NAME | ✅ |
| Server address (public IP) | Auto detect | VPN_PUBLIC_IP | ✅ |
| Name of first client | vpnclient | VPN_CLIENT_NAME | ✅ |
| DNS servers for clients | Google Public DNS | VPN_DNS_SRV1, VPN_DNS_SRV2 | ✅ |
| Protect client config files | no | VPN_PROTECT_CONFIG=yes | ✅ |
| Enable/Disable MOBIKE | Enable if supported | ❌ | ✅ |
| Client cert validity | 10 years (120 months) | VPN_CLIENT_VALIDITY\*\*\*\* | ✅ |
| CA & server cert validity | 10 years (120 months) | ❌ | ❌ |
| CA certificate name | IKEv2 VPN CA | ❌ | ❌ |
| Certificate key size | 3072 bits | ❌ | ❌ |
2022-10-14 07:36:09 +02:00
\* These IKEv2 parameters are for IKEv2 mode.
\*\* Define these as environment variables when running vpn(setup).sh, or when setting up IKEv2 in auto mode (`sudo ikev2.sh --auto`).
2022-10-16 07:50:54 +02:00
\*\*\* Can be customized during interactive IKEv2 setup (`sudo ikev2.sh`). Refer to option 2 above.
\*\*\*\* Use `VPN_CLIENT_VALIDITY` to specify the client cert validity period in months. Must be an integer between 1 and 120.
2022-10-14 07:36:09 +02:00
In addition to these parameters, advanced users can also [customize VPN subnets](docs/advanced-usage.md#customize-vpn-subnets) during VPN setup.
</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
2023-08-11 06:27:34 +02:00
**Read [:book: VPN book](https://ko-fi.com/post/Support-this-project-and-get-access-to-supporter-o-O5O7FVF8J) to access [extra content](https://ko-fi.com/post/Support-this-project-and-get-access-to-supporter-o-O5O7FVF8J).**
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-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-10-20 08:02:29 +02:00
Click here if you are unable to download.
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>
2024-05-03 04:56:08 +02:00
The latest supported Libreswan version is `5.0`. 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)
- [Specify VPN server's public IP](docs/advanced-usage.md#specify-vpn-servers-public-ip)
2022-06-12 08:09:14 +02:00
- [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)
2022-11-06 07:33:12 +01:00
- [Access VPN clients from server's subnet](docs/advanced-usage.md#access-vpn-clients-from-servers-subnet)
2022-06-12 08:09:14 +02:00
- [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-10-15 06:35:22 +02:00
wget https://get.vpnsetup.net/unst -O unst.sh && sudo bash unst.sh
2022-05-15 07:55:40 +02:00
```
2022-06-03 15:29:09 +02:00
<details>
<summary>
2022-10-20 08:02:29 +02:00
Click here if you are unable to download.
2022-06-03 15:29:09 +02:00
</summary>
You may also use `curl` to download:
```bash
2022-10-15 06:35:22 +02:00
curl -fsSL https://get.vpnsetup.net/unst -o unst.sh && sudo bash unst.sh
2022-06-03 15:29:09 +02:00
```
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
2024-02-03 22:31:58 +01:00
Copyright (C) 2014-2024 [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!