By default, clients are set to use Google Public DNS when the VPN is active. If another DNS provider is preferred, you may replace 8.8.8.8
and 8.8.4.4
in these files: /etc/ppp/options.xl2tpd
, /etc/ipsec.conf
and /etc/ipsec.d/ikev2.conf
(if exists). Then run service ipsec restart
and service xl2tpd restart
.
Below is a list of some popular public DNS providers for your reference.
Provider | Primary DNS | Secondary DNS | Notes |
---|---|---|---|
Google Public DNS | 8.8.8.8 | 8.8.4.4 | Default in this project |
Cloudflare | 1.1.1.1 | 1.0.0.1 | See also: Cloudflare for families |
Quad9 | 9.9.9.9 | 149.112.112.112 | Blocks malicious domains |
OpenDNS | 208.67.222.222 | 208.67.220.220 | Blocks phishing domains, configurable. |
CleanBrowsing | 185.228.168.9 | 185.228.169.9 | Domain filters available |
NextDNS | Varies | Varies | Ad blocking, free tier available. Learn more. |
Control D | Varies | Varies | Ad blocking, configurable. Learn more. |
Advanced users can define VPN_DNS_SRV1
and optionally VPN_DNS_SRV2
when running the VPN setup script. For more details, see Customize VPN options.
It is possible to set different DNS server(s) for specific IKEv2 client(s). For this use case, please refer to #1562.
If your use case requires redirecting DNS traffic to another server using IPTables rules, see #1565.
In certain circumstances, you may want VPN clients to use the specified DNS server(s) only for resolving internal domain name(s), and use their locally configured DNS servers to resolve all other domain names. This can be configured using the modecfgdomains
option, e.g. modecfgdomains="internal.example.com, home"
. Add this option to section conn ikev2-cp
in /etc/ipsec.d/ikev2.conf
for IKEv2, and to section conn xauth-psk
in /etc/ipsec.conf
for IPsec/XAuth (“Cisco IPsec”). Then run service ipsec restart
. IPsec/L2TP mode does not support this option.
For IPsec/L2TP and IPsec/XAuth (“Cisco IPsec”) modes, you may use a DNS name (e.g. vpn.example.com
) instead of an IP address to connect to the VPN server, without additional configuration. In addition, the VPN should generally continue to work after server IP changes, such as after restoring a snapshot to a new server with a different IP, although a reboot may be required.
For IKEv2 mode, if you want the VPN to continue to work after server IP changes, read this section. Alternatively, you may specify a DNS name for the IKEv2 server address when setting up IKEv2. The DNS name must be a fully qualified domain name (FQDN). Example:
sudo VPN_DNS_NAME='vpn.example.com' ikev2.sh --auto
Alternatively, you may customize IKEv2 options by running the helper script without the --auto
parameter.
Using Libreswan 4.2 or newer, advanced users can enable IKEv2-only mode on the VPN server. With IKEv2-only mode enabled, VPN clients can only connect to the VPN server using IKEv2. All IKEv1 connections (including IPsec/L2TP and IPsec/XAuth (“Cisco IPsec”) modes) will be dropped.
To enable IKEv2-only mode, first install the VPN server and set up IKEv2 using instructions in the README. Then run the helper script and follow the prompts.
wget https://get.vpnsetup.net/ikev2only -O ikev2only.sh
sudo bash ikev2only.sh
To disable IKEv2-only mode, run the helper script again and select the appropriate option.
When connecting using IPsec/L2TP mode, the VPN server has internal IP 192.168.42.1
within the VPN subnet 192.168.42.0/24
. Clients are assigned internal IPs from 192.168.42.10
to 192.168.42.250
. To check which IP is assigned to a client, view the connection status on the VPN client.
When connecting using IPsec/XAuth (“Cisco IPsec”) or IKEv2 mode, the VPN server does NOT have an internal IP within the VPN subnet 192.168.43.0/24
. Clients are assigned internal IPs from 192.168.43.10
to 192.168.43.250
.
You may use these internal VPN IPs for communication. However, note that the IPs assigned to VPN clients are dynamic, and firewalls on client devices may block such traffic.
Advanced users may optionally assign static IPs to VPN clients. Expand for details.
Client-to-client traffic is allowed by default. If you want to disallow client-to-client traffic, run the following commands on the VPN server. Add them to /etc/rc.local
to persist after reboot.
iptables -I FORWARD 2 -i ppp+ -o ppp+ -s 192.168.42.0/24 -d 192.168.42.0/24 -j DROP
iptables -I FORWARD 3 -s 192.168.43.0/24 -d 192.168.43.0/24 -j DROP
iptables -I FORWARD 4 -i ppp+ -d 192.168.43.0/24 -j DROP
iptables -I FORWARD 5 -s 192.168.43.0/24 -o ppp+ -j DROP
On servers with multiple public IP addresses, advanced users can specify a public IP for the VPN server using variable VPN_PUBLIC_IP
. For example, if the server has IPs 192.0.2.1
and 192.0.2.2
, and you want the VPN server to use 192.0.2.2
:
sudo VPN_PUBLIC_IP=192.0.2.2 sh vpn.sh
Note that this variable has no effect for IKEv2 mode, if IKEv2 is already set up on the server. In this case, you may remove IKEv2 and set it up again using custom options. Refer to Set up IKEv2 using helper script.
Additional configuration may be required if you want VPN clients to use the specified public IP as their “outgoing IP” when the VPN connection is active, and the specified IP is NOT the main IP (or default route) on the server. In this case, you may need to change IPTables rules on the server. To persist after reboot, you can add these commands to /etc/rc.local
.
Continuing with the example above, if you want the “outgoing IP” to be 192.0.2.2
:
# Get default network interface name
netif=$(ip -4 route list 0/0 | grep -m 1 -Po '(?<=dev )(\S+)')
# Remove MASQUERADE rules
iptables -t nat -D POSTROUTING -s 192.168.43.0/24 -o "$netif" -m policy --dir out --pol none -j MASQUERADE
iptables -t nat -D POSTROUTING -s 192.168.42.0/24 -o "$netif" -j MASQUERADE
# Add SNAT rules
iptables -t nat -I POSTROUTING -s 192.168.43.0/24 -o "$netif" -m policy --dir out --pol none -j SNAT --to 192.0.2.2
iptables -t nat -I POSTROUTING -s 192.168.42.0/24 -o "$netif" -j SNAT --to 192.0.2.2
Note: The method above only applies if the VPN server’s default network interface maps to multiple public IPs. This method may not work if the server has multiple network interfaces, each with a different public IP.
To check the “outgoing IP” for a connected VPN client, you may open a browser on the client and look up the IP address on Google.
By default, IPsec/L2TP VPN clients will use internal VPN subnet 192.168.42.0/24
, while IPsec/XAuth (“Cisco IPsec”) and IKEv2 VPN clients will use internal VPN subnet 192.168.43.0/24
. For more details, see Internal VPN IPs and traffic.
For most use cases, it is NOT necessary and NOT recommended to customize these subnets. If your use case requires it, however, you may specify custom subnet(s) when installing the VPN.
Important: You may only specify custom subnets during initial VPN install. If the IPsec VPN is already installed, you must first uninstall the VPN, then specify custom subnets and re-install. Otherwise, the VPN may stop working.
# Example: Specify custom VPN subnet for IPsec/L2TP mode
# Note: All three variables must be specified.
sudo VPN_L2TP_NET=10.1.0.0/16 \
VPN_L2TP_LOCAL=10.1.0.1 \
VPN_L2TP_POOL=10.1.0.10-10.1.254.254 \
sh vpn.sh
# Example: Specify custom VPN subnet for IPsec/XAuth and IKEv2 modes
# Note: Both variables must be specified.
sudo VPN_XAUTH_NET=10.2.0.0/16 \
VPN_XAUTH_POOL=10.2.0.10-10.2.254.254 \
sh vpn.sh
In the examples above, VPN_L2TP_LOCAL
is the VPN server’s internal IP for IPsec/L2TP mode. VPN_L2TP_POOL
and VPN_XAUTH_POOL
are the pools of auto-assigned IP addresses for VPN clients.
In certain circumstances, you may want to forward port(s) on the VPN server to a connected VPN client. This can be done by adding IPTables rules on the VPN server.
Warning: Port forwarding will expose port(s) on the VPN client to the entire Internet, which could be a security risk! This is NOT recommended, unless your use case requires it.
Note: The internal VPN IPs assigned to VPN clients are dynamic, and firewalls on client devices may block forwarded traffic. To assign static IPs to VPN clients, see Internal VPN IPs and traffic. To check which IP is assigned to a client, view the connection status on the VPN client.
Example 1: Forward TCP port 443 on the VPN server to the IPsec/L2TP client at 192.168.42.10
.
# Get default network interface name
netif=$(ip -4 route list 0/0 | grep -m 1 -Po '(?<=dev )(\S+)')
iptables -I FORWARD 2 -i "$netif" -o ppp+ -p tcp --dport 443 -j ACCEPT
iptables -t nat -A PREROUTING -i "$netif" -p tcp --dport 443 -j DNAT --to 192.168.42.10
Example 2: Forward UDP port 123 on the VPN server to the IKEv2 (or IPsec/XAuth) client at 192.168.43.10
.
# Get default network interface name
netif=$(ip -4 route list 0/0 | grep -m 1 -Po '(?<=dev )(\S+)')
iptables -I FORWARD 2 -i "$netif" -d 192.168.43.0/24 -p udp --dport 123 -j ACCEPT
iptables -t nat -A PREROUTING -i "$netif" ! -s 192.168.43.0/24 -p udp --dport 123 -j DNAT --to 192.168.43.10
If you want the rules to persist after reboot, you may add these commands to /etc/rc.local
. To remove the added IPTables rules, run the commands again, but replace -I FORWARD 2
with -D FORWARD
, and replace -A PREROUTING
with -D PREROUTING
.
With split tunneling, VPN clients will only send traffic for specific destination subnet(s) through the VPN tunnel. Other traffic will NOT go through the VPN tunnel. This allows you to gain secure access to a network through your VPN, without routing all your client’s traffic through the VPN. Split tunneling has some limitations, and is not supported by all VPN clients.
Advanced users can optionally enable split tunneling for the IPsec/XAuth (“Cisco IPsec”) and/or IKEv2 modes. Expand for details. IPsec/L2TP mode does not support this feature (except on Windows, see below).
Alternatively, Windows users can enable split tunneling by manually adding routes:
10.123.123.0/24
. Open an elevated command prompt and run one of the following commands: route add -p 10.123.123.0 mask 255.255.255.0 192.168.43.1
For IPsec/L2TP mode:
route add -p 10.123.123.0 mask 255.255.255.0 192.168.42.1
After connecting to the VPN, VPN clients can generally access services running on other devices that are within the same local subnet as the VPN server, without additional configuration. For example, if the VPN server’s local subnet is 192.168.0.0/24
, and an Nginx server is running on IP 192.168.0.2
, VPN clients can use IP 192.168.0.2
to access the Nginx server.
Please note, additional configuration is required if the VPN server has multiple network interfaces (e.g. eth0
and eth1
), and you want VPN clients to access the local subnet behind the network interface that is NOT for Internet access. In this scenario, you must run the following commands to add IPTables rules. To persist after reboot, you may add these commands to /etc/rc.local
.
# Replace eth1 with the name of the network interface
# on the VPN server that you want VPN clients to access
netif=eth1
iptables -I FORWARD 2 -i "$netif" -o ppp+ -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
iptables -I FORWARD 2 -i ppp+ -o "$netif" -j ACCEPT
iptables -I FORWARD 2 -i "$netif" -d 192.168.43.0/24 -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
iptables -I FORWARD 2 -s 192.168.43.0/24 -o "$netif" -j ACCEPT
iptables -t nat -I POSTROUTING -s 192.168.43.0/24 -o "$netif" -m policy --dir out --pol none -j MASQUERADE
iptables -t nat -I POSTROUTING -s 192.168.42.0/24 -o "$netif" -j MASQUERADE
In certain circumstances, you may need to access services on VPN clients from other devices that are on the same local subnet as the VPN server. This can be done using the following steps.
Assume that the VPN server IP is 10.1.0.2
, and the IP of the device from which you want to access VPN clients is 10.1.0.3
.
# Get default network interface name
netif=$(ip -4 route list 0/0 | grep -m 1 -Po '(?<=dev )(\S+)')
iptables -I FORWARD 2 -i "$netif" -o ppp+ -s 10.1.0.3 -j ACCEPT
iptables -I FORWARD 2 -i "$netif" -d 192.168.43.0/24 -s 10.1.0.3 -j ACCEPT
# Replace eth0 with the network interface name of the device's local subnet
route add -net 192.168.42.0 netmask 255.255.255.0 gw 10.1.0.2 dev eth0
route add -net 192.168.43.0 netmask 255.255.255.0 gw 10.1.0.2 dev eth0
Learn more about internal VPN IPs in Internal VPN IPs and traffic.
If you want to modify IPTables rules after install, edit /etc/iptables.rules
and/or /etc/iptables/rules.v4
(Ubuntu/Debian), or /etc/sysconfig/iptables
(CentOS/RHEL). Then reboot your server.
Note: If your server runs CentOS Linux (or similar), and firewalld was active during VPN setup, nftables may be configured. In this case, edit /etc/sysconfig/nftables.conf
instead of /etc/sysconfig/iptables
.
After the VPN server is set up, the performance can be improved by deploying the Google BBR congestion control algorithm.
This is usually done by modifying the configuration file /etc/sysctl.conf
. However, some Linux distributions may additionally require updates to the Linux kernel.
For detailed deployment methods, please refer to this document.
Copyright (C) 2021-2025 Lin Song
This work is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License
Attribution required: please include my name in any derivative and let me know how you have improved it!