2013-05-14 16:04:19 +04:00
|
|
|
|
#!/bin/bash
|
2018-04-21 21:41:16 +03:00
|
|
|
|
#
|
|
|
|
|
# https://github.com/Nyr/openvpn-install
|
|
|
|
|
#
|
|
|
|
|
# Copyright (c) 2013 Nyr. Released under the MIT License.
|
2013-05-14 16:04:19 +04:00
|
|
|
|
|
|
|
|
|
|
2019-09-26 20:13:33 +03:00
|
|
|
|
if grep -qs "14.04" /etc/os-release; then
|
2019-09-21 15:39:58 +03:00
|
|
|
|
echo "Ubuntu 14.04 is too old and not supported"
|
|
|
|
|
exit
|
|
|
|
|
fi
|
|
|
|
|
|
2019-09-26 20:13:33 +03:00
|
|
|
|
if grep -qs "jessie" /etc/os-release; then
|
2019-09-21 15:39:58 +03:00
|
|
|
|
echo "Debian 8 is too old and not supported"
|
|
|
|
|
exit
|
|
|
|
|
fi
|
|
|
|
|
|
2019-09-26 20:13:33 +03:00
|
|
|
|
if grep -qs "CentOS release 6" /etc/redhat-release; then
|
2019-09-21 15:39:58 +03:00
|
|
|
|
echo "CentOS 6 is too old and not supported"
|
|
|
|
|
exit
|
|
|
|
|
fi
|
|
|
|
|
|
2019-09-26 20:13:33 +03:00
|
|
|
|
if grep -qs "Ubuntu 16.04" /etc/os-release; then
|
2019-06-12 22:28:55 +03:00
|
|
|
|
echo 'Ubuntu 16.04 is no longer supported in the current version of openvpn-install
|
|
|
|
|
Use an older version if Ubuntu 16.04 support is needed: https://git.io/vpn1604'
|
|
|
|
|
exit
|
|
|
|
|
fi
|
|
|
|
|
|
2016-05-10 15:12:32 +03:00
|
|
|
|
# Detect Debian users running the script with "sh" instead of bash
|
2018-04-26 16:10:18 +03:00
|
|
|
|
if readlink /proc/$$/exe | grep -q "dash"; then
|
2016-05-10 15:12:32 +03:00
|
|
|
|
echo "This script needs to be run with bash, not sh"
|
2018-05-10 18:24:43 +03:00
|
|
|
|
exit
|
2013-05-14 16:04:19 +04:00
|
|
|
|
fi
|
|
|
|
|
|
2016-05-10 15:12:32 +03:00
|
|
|
|
if [[ "$EUID" -ne 0 ]]; then
|
|
|
|
|
echo "Sorry, you need to run this as root"
|
2018-05-10 18:24:43 +03:00
|
|
|
|
exit
|
2016-05-10 15:12:32 +03:00
|
|
|
|
fi
|
2013-05-14 16:04:19 +04:00
|
|
|
|
|
2014-09-19 01:34:22 +04:00
|
|
|
|
if [[ ! -e /dev/net/tun ]]; then
|
2017-03-31 14:52:08 +03:00
|
|
|
|
echo "The TUN device is not available
|
|
|
|
|
You need to enable TUN before running this script"
|
2018-05-10 18:24:43 +03:00
|
|
|
|
exit
|
2014-03-13 00:06:57 +04:00
|
|
|
|
fi
|
|
|
|
|
|
2019-10-16 23:09:25 +03:00
|
|
|
|
if ! iptables -t nat -nL &>/dev/null; then
|
|
|
|
|
echo "Unable to initialize the iptables/netfilter NAT table, setup can't continue.
|
2019-12-23 22:19:57 +03:00
|
|
|
|
Make sure that your system has iptables/netfilter available.
|
|
|
|
|
If using OpenVZ, ask your provider to enable full netfilter support."
|
2019-10-16 23:09:25 +03:00
|
|
|
|
exit
|
|
|
|
|
fi
|
|
|
|
|
|
2015-02-11 21:51:19 +03:00
|
|
|
|
if [[ -e /etc/debian_version ]]; then
|
2019-09-26 20:13:33 +03:00
|
|
|
|
os="debian"
|
|
|
|
|
group_name="nogroup"
|
2015-02-11 21:51:19 +03:00
|
|
|
|
elif [[ -e /etc/centos-release || -e /etc/redhat-release ]]; then
|
2019-09-26 20:13:33 +03:00
|
|
|
|
os="centos"
|
|
|
|
|
group_name="nobody"
|
2015-02-11 21:51:19 +03:00
|
|
|
|
else
|
2017-03-31 14:52:08 +03:00
|
|
|
|
echo "Looks like you aren't running this installer on Debian, Ubuntu or CentOS"
|
2018-05-10 18:24:43 +03:00
|
|
|
|
exit
|
2013-05-14 16:04:19 +04:00
|
|
|
|
fi
|
|
|
|
|
|
2019-09-26 20:13:33 +03:00
|
|
|
|
new_client () {
|
2015-09-12 22:48:08 +03:00
|
|
|
|
# Generates the custom client.ovpn
|
2019-09-26 20:13:33 +03:00
|
|
|
|
{
|
|
|
|
|
cat /etc/openvpn/server/client-common.txt
|
|
|
|
|
echo "<ca>"
|
|
|
|
|
cat /etc/openvpn/server/easy-rsa/pki/ca.crt
|
|
|
|
|
echo "</ca>"
|
|
|
|
|
echo "<cert>"
|
|
|
|
|
sed -ne '/BEGIN CERTIFICATE/,$ p' /etc/openvpn/server/easy-rsa/pki/issued/"$1".crt
|
|
|
|
|
echo "</cert>"
|
|
|
|
|
echo "<key>"
|
|
|
|
|
cat /etc/openvpn/server/easy-rsa/pki/private/"$1".key
|
|
|
|
|
echo "</key>"
|
|
|
|
|
echo "<tls-crypt>"
|
|
|
|
|
sed -ne '/BEGIN OpenVPN Static key/,$ p' /etc/openvpn/server/tc.key
|
|
|
|
|
echo "</tls-crypt>"
|
|
|
|
|
} > ~/"$1".ovpn
|
2014-10-23 02:19:08 +04:00
|
|
|
|
}
|
|
|
|
|
|
2019-06-12 22:28:55 +03:00
|
|
|
|
if [[ -e /etc/openvpn/server/server.conf ]]; then
|
2013-05-14 16:04:19 +04:00
|
|
|
|
while :
|
|
|
|
|
do
|
|
|
|
|
clear
|
2018-04-21 21:41:16 +03:00
|
|
|
|
echo "Looks like OpenVPN is already installed."
|
|
|
|
|
echo
|
2015-07-22 09:02:59 +03:00
|
|
|
|
echo "What do you want to do?"
|
2017-01-31 20:19:19 +03:00
|
|
|
|
echo " 1) Add a new user"
|
|
|
|
|
echo " 2) Revoke an existing user"
|
2015-07-22 09:02:59 +03:00
|
|
|
|
echo " 3) Remove OpenVPN"
|
|
|
|
|
echo " 4) Exit"
|
2019-09-26 20:13:33 +03:00
|
|
|
|
read -p "Select an option: " option
|
|
|
|
|
until [[ "$option" =~ ^[1-4]$ ]]; do
|
|
|
|
|
echo "$option: invalid selection."
|
|
|
|
|
read -p "Select an option: " option
|
|
|
|
|
done
|
|
|
|
|
case "$option" in
|
2013-05-14 16:04:19 +04:00
|
|
|
|
1)
|
2018-04-21 21:41:16 +03:00
|
|
|
|
echo
|
|
|
|
|
echo "Tell me a name for the client certificate."
|
2019-09-26 20:13:33 +03:00
|
|
|
|
read -p "Client name: " unsanitized_client
|
|
|
|
|
client=$(sed 's/[^0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_-]/_/g' <<< "$unsanitized_client")
|
|
|
|
|
while [[ -z "$client" || -e /etc/openvpn/server/easy-rsa/pki/issued/"$client".crt ]]; do
|
|
|
|
|
echo "$client: invalid client name."
|
|
|
|
|
read -p "Client name: " unsanitized_client
|
|
|
|
|
client=$(sed 's/[^0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_-]/_/g' <<< "$unsanitized_client")
|
|
|
|
|
done
|
2019-06-12 22:28:55 +03:00
|
|
|
|
cd /etc/openvpn/server/easy-rsa/
|
2019-09-26 20:13:33 +03:00
|
|
|
|
EASYRSA_CERT_EXPIRE=3650 ./easyrsa build-client-full "$client" nopass
|
2015-09-12 22:48:08 +03:00
|
|
|
|
# Generates the custom client.ovpn
|
2019-09-26 20:13:33 +03:00
|
|
|
|
new_client "$client"
|
2018-04-21 21:41:16 +03:00
|
|
|
|
echo
|
2019-09-26 20:13:33 +03:00
|
|
|
|
echo "Client $client added, configuration is available at:" ~/"$client.ovpn"
|
2013-05-14 16:04:19 +04:00
|
|
|
|
exit
|
|
|
|
|
;;
|
2013-05-14 19:41:53 +04:00
|
|
|
|
2)
|
2018-04-04 18:28:09 +03:00
|
|
|
|
# This option could be documented a bit better and maybe even be simplified
|
2015-07-22 09:02:59 +03:00
|
|
|
|
# ...but what can I say, I want some sleep too
|
2019-09-26 20:13:33 +03:00
|
|
|
|
number_of_clients=$(tail -n +2 /etc/openvpn/server/easy-rsa/pki/index.txt | grep -c "^V")
|
|
|
|
|
if [[ "$number_of_clients" = 0 ]]; then
|
2018-04-21 21:41:16 +03:00
|
|
|
|
echo
|
2015-07-22 09:02:59 +03:00
|
|
|
|
echo "You have no existing clients!"
|
2018-05-10 18:24:43 +03:00
|
|
|
|
exit
|
2015-07-22 09:02:59 +03:00
|
|
|
|
fi
|
2018-04-21 21:41:16 +03:00
|
|
|
|
echo
|
|
|
|
|
echo "Select the existing client certificate you want to revoke:"
|
2019-06-12 22:28:55 +03:00
|
|
|
|
tail -n +2 /etc/openvpn/server/easy-rsa/pki/index.txt | grep "^V" | cut -d '=' -f 2 | nl -s ') '
|
2019-09-26 20:13:33 +03:00
|
|
|
|
read -p "Select one client: " client_number
|
|
|
|
|
until [[ "$client_number" =~ ^[0-9]+$ && "$client_number" -le "$number_of_clients" ]]; do
|
|
|
|
|
echo "$client_number: invalid selection."
|
|
|
|
|
read -p "Select one client: " client_number
|
|
|
|
|
done
|
|
|
|
|
client=$(tail -n +2 /etc/openvpn/server/easy-rsa/pki/index.txt | grep "^V" | cut -d '=' -f 2 | sed -n "$client_number"p)
|
2018-04-21 21:41:16 +03:00
|
|
|
|
echo
|
2019-09-26 20:13:33 +03:00
|
|
|
|
read -p "Do you really want to revoke access for client $client? [y/N]: " revoke
|
|
|
|
|
until [[ "$revoke" =~ ^[yYnN]*$ ]]; do
|
|
|
|
|
echo "$revoke: invalid selection."
|
|
|
|
|
read -p "Do you really want to revoke access for client $client? [y/N]: " revoke
|
|
|
|
|
done
|
|
|
|
|
if [[ "$revoke" =~ ^[yY]$ ]]; then
|
2019-06-12 22:28:55 +03:00
|
|
|
|
cd /etc/openvpn/server/easy-rsa/
|
2019-09-26 20:13:33 +03:00
|
|
|
|
./easyrsa --batch revoke "$client"
|
2018-05-10 18:24:43 +03:00
|
|
|
|
EASYRSA_CRL_DAYS=3650 ./easyrsa gen-crl
|
2019-09-26 20:13:33 +03:00
|
|
|
|
rm -f pki/reqs/"$client".req
|
|
|
|
|
rm -f pki/private/"$client".key
|
|
|
|
|
rm -f pki/issued/"$client".crt
|
2019-06-12 22:28:55 +03:00
|
|
|
|
rm -f /etc/openvpn/server/crl.pem
|
|
|
|
|
cp /etc/openvpn/server/easy-rsa/pki/crl.pem /etc/openvpn/server/crl.pem
|
2018-05-10 18:24:43 +03:00
|
|
|
|
# CRL is read with each client connection, when OpenVPN is dropped to nobody
|
2019-09-26 20:13:33 +03:00
|
|
|
|
chown nobody:"$group_name" /etc/openvpn/server/crl.pem
|
2018-05-10 18:24:43 +03:00
|
|
|
|
echo
|
2019-09-26 20:13:33 +03:00
|
|
|
|
echo "Certificate for client $client revoked!"
|
2018-05-10 18:24:43 +03:00
|
|
|
|
else
|
|
|
|
|
echo
|
2019-09-26 20:13:33 +03:00
|
|
|
|
echo "Certificate revocation for client $client aborted!"
|
2018-05-10 18:24:43 +03:00
|
|
|
|
fi
|
2013-05-14 19:41:53 +04:00
|
|
|
|
exit
|
|
|
|
|
;;
|
|
|
|
|
3)
|
2018-04-21 21:41:16 +03:00
|
|
|
|
echo
|
2019-09-26 20:13:33 +03:00
|
|
|
|
read -p "Do you really want to remove OpenVPN? [y/N]: " remove
|
|
|
|
|
until [[ "$remove" =~ ^[yYnN]*$ ]]; do
|
|
|
|
|
echo "$remove: invalid selection."
|
|
|
|
|
read -p "Do you really want to remove OpenVPN? [y/N]: " remove
|
|
|
|
|
done
|
|
|
|
|
if [[ "$remove" =~ ^[yY]$ ]]; then
|
|
|
|
|
port=$(grep '^port ' /etc/openvpn/server/server.conf | cut -d " " -f 2)
|
|
|
|
|
protocol=$(grep '^proto ' /etc/openvpn/server/server.conf | cut -d " " -f 2)
|
2015-09-12 22:48:08 +03:00
|
|
|
|
if pgrep firewalld; then
|
2019-09-26 20:13:33 +03:00
|
|
|
|
ip=$(firewall-cmd --direct --get-rules ipv4 nat POSTROUTING | grep '\-s 10.8.0.0/24 '"'"'!'"'"' -d 10.8.0.0/24 -j SNAT --to ' | cut -d " " -f 10)
|
2015-09-12 22:48:08 +03:00
|
|
|
|
# Using both permanent and not permanent rules to avoid a firewalld reload.
|
2019-09-26 20:13:33 +03:00
|
|
|
|
firewall-cmd --remove-port="$port"/"$protocol"
|
2015-09-12 22:48:08 +03:00
|
|
|
|
firewall-cmd --zone=trusted --remove-source=10.8.0.0/24
|
2019-09-26 20:13:33 +03:00
|
|
|
|
firewall-cmd --permanent --remove-port="$port"/"$protocol"
|
2015-09-12 22:48:08 +03:00
|
|
|
|
firewall-cmd --permanent --zone=trusted --remove-source=10.8.0.0/24
|
2019-09-26 20:13:33 +03:00
|
|
|
|
firewall-cmd --direct --remove-rule ipv4 nat POSTROUTING 0 -s 10.8.0.0/24 ! -d 10.8.0.0/24 -j SNAT --to "$ip"
|
|
|
|
|
firewall-cmd --permanent --direct --remove-rule ipv4 nat POSTROUTING 0 -s 10.8.0.0/24 ! -d 10.8.0.0/24 -j SNAT --to "$ip"
|
2017-03-23 20:11:35 +03:00
|
|
|
|
else
|
2019-06-07 17:17:14 +03:00
|
|
|
|
systemctl disable --now openvpn-iptables.service
|
|
|
|
|
rm -f /etc/systemd/system/openvpn-iptables.service
|
2015-09-12 22:48:08 +03:00
|
|
|
|
fi
|
2019-09-26 20:13:33 +03:00
|
|
|
|
if sestatus 2>/dev/null | grep "Current mode" | grep -q "enforcing" && [[ "$port" != 1194 ]]; then
|
|
|
|
|
semanage port -d -t openvpn_port_t -p "$protocol" "$port"
|
2016-02-13 21:09:16 +03:00
|
|
|
|
fi
|
2019-06-12 22:28:55 +03:00
|
|
|
|
systemctl disable --now openvpn-server@server.service
|
|
|
|
|
rm -rf /etc/openvpn/server
|
2019-09-06 03:44:17 +03:00
|
|
|
|
rm -f /etc/systemd/system/openvpn-server@server.service.d/disable-limitnproc.conf
|
2019-06-12 22:28:55 +03:00
|
|
|
|
rm -f /etc/sysctl.d/30-openvpn-forward.conf
|
2019-09-26 20:13:33 +03:00
|
|
|
|
if [[ "$os" = "debian" ]]; then
|
2017-06-20 20:19:10 +03:00
|
|
|
|
apt-get remove --purge -y openvpn
|
2015-02-11 21:51:19 +03:00
|
|
|
|
else
|
|
|
|
|
yum remove openvpn -y
|
|
|
|
|
fi
|
2018-04-21 21:41:16 +03:00
|
|
|
|
echo
|
2015-01-21 05:03:14 +03:00
|
|
|
|
echo "OpenVPN removed!"
|
2015-01-25 22:45:07 +03:00
|
|
|
|
else
|
2018-04-21 21:41:16 +03:00
|
|
|
|
echo
|
2015-01-25 22:45:07 +03:00
|
|
|
|
echo "Removal aborted!"
|
2015-01-21 05:03:14 +03:00
|
|
|
|
fi
|
2013-05-14 16:04:19 +04:00
|
|
|
|
exit
|
|
|
|
|
;;
|
2013-05-14 19:41:53 +04:00
|
|
|
|
4) exit;;
|
2013-05-14 16:04:19 +04:00
|
|
|
|
esac
|
|
|
|
|
done
|
|
|
|
|
else
|
2014-11-04 23:57:36 +03:00
|
|
|
|
clear
|
2019-09-26 20:13:33 +03:00
|
|
|
|
echo "Welcome to this OpenVPN "road warrior" installer!"
|
2018-04-21 21:41:16 +03:00
|
|
|
|
echo
|
2019-09-26 20:13:33 +03:00
|
|
|
|
echo "I need to ask you a few questions before starting setup."
|
|
|
|
|
echo "You can use the default options and just press enter if you are ok with them."
|
|
|
|
|
# If system has a single IPv4, it is selected automatically. Else, ask the user
|
|
|
|
|
if [[ $(ip addr | grep inet | grep -v inet6 | grep -vEc '127\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}') -eq 1 ]]; then
|
|
|
|
|
ip=$(ip addr | grep inet | grep -v inet6 | grep -vE '127\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}' | cut -d '/' -f 1 | grep -oE '[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}')
|
|
|
|
|
else
|
|
|
|
|
number_of_ips=$(ip addr | grep inet | grep -v inet6 | grep -vEc '127\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}')
|
|
|
|
|
echo
|
|
|
|
|
echo "What IPv4 address should the OpenVPN server bind to?"
|
|
|
|
|
ip addr | grep inet | grep -v inet6 | grep -vE '127\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}' | cut -d '/' -f 1 | grep -oE '[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}' | nl -s ') '
|
|
|
|
|
read -p "IPv4 address [1]: " ip_number
|
|
|
|
|
until [[ -z "$ip_number" || "$ip_number" =~ ^[0-9]+$ && "$ip_number" -le "$number_of_ips" ]]; do
|
|
|
|
|
echo "$ip_number: invalid selection."
|
|
|
|
|
read -p "IPv4 address [1]: " ip_number
|
|
|
|
|
done
|
|
|
|
|
[[ -z "$ip_number" ]] && ip_number="1"
|
|
|
|
|
ip=$(ip addr | grep inet | grep -v inet6 | grep -vE '127\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}' | cut -d '/' -f 1 | grep -oE '[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}' | sed -n "$ip_number"p)
|
|
|
|
|
fi
|
2018-04-21 22:06:41 +03:00
|
|
|
|
# If $IP is a private IP address, the server must be behind NAT
|
2019-09-26 20:13:33 +03:00
|
|
|
|
if echo "$ip" | grep -qE '^(10\.|172\.1[6789]\.|172\.2[0-9]\.|172\.3[01]\.|192\.168)'; then
|
2018-04-21 21:41:16 +03:00
|
|
|
|
echo
|
2018-04-21 22:06:41 +03:00
|
|
|
|
echo "This server is behind NAT. What is the public IPv4 address or hostname?"
|
2019-09-26 20:13:33 +03:00
|
|
|
|
get_public_ip=$(wget -4qO- "http://whatismyip.akamai.com/" || curl -4Ls "http://whatismyip.akamai.com/")
|
|
|
|
|
read -p "Public IPv4 address / hostname [$get_public_ip]: " public_ip
|
|
|
|
|
[ -z "$public_ip" ] && public_ip="$get_public_ip"
|
2018-04-21 21:41:16 +03:00
|
|
|
|
fi
|
|
|
|
|
echo
|
2017-01-04 05:41:47 +03:00
|
|
|
|
echo "Which protocol do you want for OpenVPN connections?"
|
|
|
|
|
echo " 1) UDP (recommended)"
|
|
|
|
|
echo " 2) TCP"
|
2019-09-26 20:13:33 +03:00
|
|
|
|
read -p "Protocol [1]: " protocol
|
|
|
|
|
until [[ -z "$protocol" || "$protocol" =~ ^[12]$ ]]; do
|
|
|
|
|
echo "$protocol: invalid selection."
|
|
|
|
|
read -p "Protocol [1]: " protocol
|
|
|
|
|
done
|
|
|
|
|
case "$protocol" in
|
|
|
|
|
1|"")
|
|
|
|
|
protocol=udp
|
2017-01-20 17:12:54 +03:00
|
|
|
|
;;
|
|
|
|
|
2)
|
2019-09-26 20:13:33 +03:00
|
|
|
|
protocol=tcp
|
2017-01-20 17:12:54 +03:00
|
|
|
|
;;
|
|
|
|
|
esac
|
2018-04-21 21:41:16 +03:00
|
|
|
|
echo
|
2017-01-04 05:41:47 +03:00
|
|
|
|
echo "What port do you want OpenVPN listening to?"
|
2019-09-26 20:13:33 +03:00
|
|
|
|
read -p "Port [1194]: " port
|
|
|
|
|
until [[ -z "$port" || "$port" =~ ^[0-9]+$ && "$port" -le 65535 ]]; do
|
|
|
|
|
echo "$port: invalid selection."
|
|
|
|
|
read -p "Port [1194]: " port
|
|
|
|
|
done
|
|
|
|
|
[[ -z "$port" ]] && port="1194"
|
2018-04-21 21:41:16 +03:00
|
|
|
|
echo
|
2017-01-04 05:41:47 +03:00
|
|
|
|
echo "Which DNS do you want to use with the VPN?"
|
2014-11-04 23:57:36 +03:00
|
|
|
|
echo " 1) Current system resolvers"
|
2018-04-04 18:28:09 +03:00
|
|
|
|
echo " 2) 1.1.1.1"
|
|
|
|
|
echo " 3) Google"
|
|
|
|
|
echo " 4) OpenDNS"
|
|
|
|
|
echo " 5) Verisign"
|
2019-09-26 20:13:33 +03:00
|
|
|
|
read -p "DNS [1]: " dns
|
|
|
|
|
until [[ -z "$dns" || "$dns" =~ ^[1-5]$ ]]; do
|
|
|
|
|
echo "$dns: invalid selection."
|
|
|
|
|
read -p "DNS [1]: " dns
|
|
|
|
|
done
|
2018-04-21 21:41:16 +03:00
|
|
|
|
echo
|
2019-09-26 20:13:33 +03:00
|
|
|
|
echo "Finally, tell me a name for the client certificate."
|
|
|
|
|
read -p "Client name [client]: " unsanitized_client
|
|
|
|
|
# Allow a limited set of characters to avoid conflicts
|
|
|
|
|
client=$(sed 's/[^0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_-]/_/g' <<< "$unsanitized_client")
|
|
|
|
|
[[ -z "$client" ]] && client="client"
|
2018-04-21 21:41:16 +03:00
|
|
|
|
echo
|
|
|
|
|
echo "Okay, that was all I needed. We are ready to set up your OpenVPN server now."
|
2013-05-14 16:04:19 +04:00
|
|
|
|
read -n1 -r -p "Press any key to continue..."
|
2019-09-06 03:44:17 +03:00
|
|
|
|
# If running inside a container, disable LimitNPROC to prevent conflicts
|
|
|
|
|
if systemd-detect-virt -cq; then
|
|
|
|
|
mkdir /etc/systemd/system/openvpn-server@server.service.d/ 2>/dev/null
|
2019-09-26 20:13:33 +03:00
|
|
|
|
echo "[Service]
|
|
|
|
|
LimitNPROC=infinity" > /etc/systemd/system/openvpn-server@server.service.d/disable-limitnproc.conf
|
2019-09-06 03:44:17 +03:00
|
|
|
|
fi
|
2019-09-26 20:13:33 +03:00
|
|
|
|
if [[ "$os" = "debian" ]]; then
|
2015-02-11 21:51:19 +03:00
|
|
|
|
apt-get update
|
2015-11-25 01:04:56 +03:00
|
|
|
|
apt-get install openvpn iptables openssl ca-certificates -y
|
2015-02-11 21:51:19 +03:00
|
|
|
|
else
|
|
|
|
|
# Else, the distro is CentOS
|
|
|
|
|
yum install epel-release -y
|
2020-03-18 21:38:35 +03:00
|
|
|
|
yum install openvpn iptables openssl ca-certificates tar -y
|
2013-08-04 16:11:38 +04:00
|
|
|
|
fi
|
2015-07-22 09:02:59 +03:00
|
|
|
|
# Get easy-rsa
|
2019-09-26 20:13:33 +03:00
|
|
|
|
easy_rsa_url='https://github.com/OpenVPN/easy-rsa/releases/download/v3.0.5/EasyRSA-nix-3.0.5.tgz'
|
|
|
|
|
wget -O ~/easyrsa.tgz "$easy_rsa_url" 2>/dev/null || curl -Lo ~/easyrsa.tgz "$easy_rsa_url"
|
2018-04-19 22:25:18 +03:00
|
|
|
|
tar xzf ~/easyrsa.tgz -C ~/
|
2019-06-12 22:28:55 +03:00
|
|
|
|
mv ~/EasyRSA-3.0.5/ /etc/openvpn/server/
|
|
|
|
|
mv /etc/openvpn/server/EasyRSA-3.0.5/ /etc/openvpn/server/easy-rsa/
|
|
|
|
|
chown -R root:root /etc/openvpn/server/easy-rsa/
|
2018-04-26 16:10:18 +03:00
|
|
|
|
rm -f ~/easyrsa.tgz
|
2019-06-12 22:28:55 +03:00
|
|
|
|
cd /etc/openvpn/server/easy-rsa/
|
2018-10-20 15:52:24 +03:00
|
|
|
|
# Create the PKI, set up the CA and the server and client certificates
|
2015-09-12 22:48:08 +03:00
|
|
|
|
./easyrsa init-pki
|
|
|
|
|
./easyrsa --batch build-ca nopass
|
2018-09-25 16:20:15 +03:00
|
|
|
|
EASYRSA_CERT_EXPIRE=3650 ./easyrsa build-server-full server nopass
|
2019-09-26 20:13:33 +03:00
|
|
|
|
EASYRSA_CERT_EXPIRE=3650 ./easyrsa build-client-full "$client" nopass
|
2017-08-29 18:55:14 +03:00
|
|
|
|
EASYRSA_CRL_DAYS=3650 ./easyrsa gen-crl
|
2015-09-12 22:48:08 +03:00
|
|
|
|
# Move the stuff we need
|
2019-06-12 22:28:55 +03:00
|
|
|
|
cp pki/ca.crt pki/private/ca.key pki/issued/server.crt pki/private/server.key pki/crl.pem /etc/openvpn/server
|
2016-05-15 21:50:37 +03:00
|
|
|
|
# CRL is read with each client connection, when OpenVPN is dropped to nobody
|
2019-09-26 20:13:33 +03:00
|
|
|
|
chown nobody:"$group_name" /etc/openvpn/server/crl.pem
|
|
|
|
|
# Generate key for tls-crypt
|
|
|
|
|
openvpn --genkey --secret /etc/openvpn/server/tc.key
|
2018-10-20 15:52:24 +03:00
|
|
|
|
# Create the DH parameters file using the predefined ffdhe2048 group
|
|
|
|
|
echo '-----BEGIN DH PARAMETERS-----
|
|
|
|
|
MIIBCAKCAQEA//////////+t+FRYortKmq/cViAnPTzx2LnFg84tNpWp4TZBFGQz
|
|
|
|
|
+8yTnc4kmz75fS/jY2MMddj2gbICrsRhetPfHtXV/WVhJDP1H18GbtCFY2VVPe0a
|
|
|
|
|
87VXE15/V8k1mE8McODmi3fipona8+/och3xWKE2rec1MKzKT0g6eXq8CrGCsyT7
|
|
|
|
|
YdEIqUuyyOP7uWrat2DX9GgdT0Kj3jlN9K5W7edjcrsZCwenyO4KbXCeAvzhzffi
|
|
|
|
|
7MA0BM0oNC9hkXL+nOmFg/+OTxIy7vKBg8P+OxtMb61zO7X8vC7CIAXFjvGDfRaD
|
|
|
|
|
ssbzSibBsu/6iGtCOGEoXJf//////////wIBAg==
|
2019-06-12 22:28:55 +03:00
|
|
|
|
-----END DH PARAMETERS-----' > /etc/openvpn/server/dh.pem
|
2015-09-12 22:48:08 +03:00
|
|
|
|
# Generate server.conf
|
2019-09-26 20:13:33 +03:00
|
|
|
|
echo "local $ip
|
|
|
|
|
port $port
|
|
|
|
|
proto $protocol
|
2017-01-20 17:12:54 +03:00
|
|
|
|
dev tun
|
2015-09-12 22:48:08 +03:00
|
|
|
|
ca ca.crt
|
|
|
|
|
cert server.crt
|
|
|
|
|
key server.key
|
|
|
|
|
dh dh.pem
|
2017-06-04 14:16:57 +03:00
|
|
|
|
auth SHA512
|
2019-09-26 20:13:33 +03:00
|
|
|
|
tls-crypt tc.key
|
2015-09-12 22:48:08 +03:00
|
|
|
|
topology subnet
|
|
|
|
|
server 10.8.0.0 255.255.255.0
|
2019-06-12 22:28:55 +03:00
|
|
|
|
ifconfig-pool-persist ipp.txt" > /etc/openvpn/server/server.conf
|
|
|
|
|
echo 'push "redirect-gateway def1 bypass-dhcp"' >> /etc/openvpn/server/server.conf
|
2014-11-04 23:57:36 +03:00
|
|
|
|
# DNS
|
2019-09-26 20:13:33 +03:00
|
|
|
|
case "$dns" in
|
|
|
|
|
1|"")
|
2018-01-21 20:21:53 +03:00
|
|
|
|
# Locate the proper resolv.conf
|
|
|
|
|
# Needed for systems running systemd-resolved
|
|
|
|
|
if grep -q "127.0.0.53" "/etc/resolv.conf"; then
|
2019-09-26 20:13:33 +03:00
|
|
|
|
resolv_conf="/run/systemd/resolve/resolv.conf"
|
2018-01-21 20:21:53 +03:00
|
|
|
|
else
|
2019-09-26 20:13:33 +03:00
|
|
|
|
resolv_conf="/etc/resolv.conf"
|
2018-01-21 20:21:53 +03:00
|
|
|
|
fi
|
2014-11-04 23:57:36 +03:00
|
|
|
|
# Obtain the resolvers from resolv.conf and use them for OpenVPN
|
2019-09-26 20:13:33 +03:00
|
|
|
|
grep -v '#' "$resolv_conf" | grep nameserver | grep -E -o '[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}' | while read line; do
|
2019-06-12 22:28:55 +03:00
|
|
|
|
echo "push \"dhcp-option DNS $line\"" >> /etc/openvpn/server/server.conf
|
2014-11-04 23:57:36 +03:00
|
|
|
|
done
|
|
|
|
|
;;
|
2018-04-04 18:28:09 +03:00
|
|
|
|
2)
|
2019-06-12 22:28:55 +03:00
|
|
|
|
echo 'push "dhcp-option DNS 1.1.1.1"' >> /etc/openvpn/server/server.conf
|
|
|
|
|
echo 'push "dhcp-option DNS 1.0.0.1"' >> /etc/openvpn/server/server.conf
|
2018-04-04 18:28:09 +03:00
|
|
|
|
;;
|
|
|
|
|
3)
|
2019-06-12 22:28:55 +03:00
|
|
|
|
echo 'push "dhcp-option DNS 8.8.8.8"' >> /etc/openvpn/server/server.conf
|
|
|
|
|
echo 'push "dhcp-option DNS 8.8.4.4"' >> /etc/openvpn/server/server.conf
|
2016-02-15 00:26:10 +03:00
|
|
|
|
;;
|
2018-04-04 18:28:09 +03:00
|
|
|
|
4)
|
2019-06-12 22:28:55 +03:00
|
|
|
|
echo 'push "dhcp-option DNS 208.67.222.222"' >> /etc/openvpn/server/server.conf
|
|
|
|
|
echo 'push "dhcp-option DNS 208.67.220.220"' >> /etc/openvpn/server/server.conf
|
2014-11-04 23:57:36 +03:00
|
|
|
|
;;
|
2018-04-04 18:28:09 +03:00
|
|
|
|
5)
|
2019-06-12 22:28:55 +03:00
|
|
|
|
echo 'push "dhcp-option DNS 64.6.64.6"' >> /etc/openvpn/server/server.conf
|
|
|
|
|
echo 'push "dhcp-option DNS 64.6.65.6"' >> /etc/openvpn/server/server.conf
|
2016-04-07 17:57:47 +03:00
|
|
|
|
;;
|
2014-11-04 23:57:36 +03:00
|
|
|
|
esac
|
2015-09-12 22:48:08 +03:00
|
|
|
|
echo "keepalive 10 120
|
2016-12-11 19:03:25 +03:00
|
|
|
|
cipher AES-256-CBC
|
2016-05-15 21:50:37 +03:00
|
|
|
|
user nobody
|
2019-09-26 20:13:33 +03:00
|
|
|
|
group $group_name
|
2015-09-12 22:48:08 +03:00
|
|
|
|
persist-key
|
|
|
|
|
persist-tun
|
|
|
|
|
status openvpn-status.log
|
|
|
|
|
verb 3
|
2019-06-12 22:28:55 +03:00
|
|
|
|
crl-verify crl.pem" >> /etc/openvpn/server/server.conf
|
2019-09-26 20:13:33 +03:00
|
|
|
|
if [[ "$protocol" = "udp" ]]; then
|
|
|
|
|
echo "explicit-exit-notify" >> /etc/openvpn/server/server.conf
|
|
|
|
|
fi
|
2013-05-14 16:04:19 +04:00
|
|
|
|
# Enable net.ipv4.ip_forward for the system
|
2018-06-08 17:07:49 +03:00
|
|
|
|
echo 'net.ipv4.ip_forward=1' > /etc/sysctl.d/30-openvpn-forward.conf
|
|
|
|
|
# Enable without waiting for a reboot or service restart
|
2013-05-14 16:04:19 +04:00
|
|
|
|
echo 1 > /proc/sys/net/ipv4/ip_forward
|
2015-09-12 22:48:08 +03:00
|
|
|
|
if pgrep firewalld; then
|
2017-03-23 20:11:35 +03:00
|
|
|
|
# Using both permanent and not permanent rules to avoid a firewalld
|
|
|
|
|
# reload.
|
2015-09-12 22:48:08 +03:00
|
|
|
|
# We don't use --add-service=openvpn because that would only work with
|
2017-03-23 20:11:35 +03:00
|
|
|
|
# the default port and protocol.
|
2019-09-26 20:13:33 +03:00
|
|
|
|
firewall-cmd --add-port="$port"/"$protocol"
|
2015-09-12 22:48:08 +03:00
|
|
|
|
firewall-cmd --zone=trusted --add-source=10.8.0.0/24
|
2019-09-26 20:13:33 +03:00
|
|
|
|
firewall-cmd --permanent --add-port="$port"/"$protocol"
|
2015-09-12 22:48:08 +03:00
|
|
|
|
firewall-cmd --permanent --zone=trusted --add-source=10.8.0.0/24
|
2017-03-23 20:11:35 +03:00
|
|
|
|
# Set NAT for the VPN subnet
|
2019-09-26 20:13:33 +03:00
|
|
|
|
firewall-cmd --direct --add-rule ipv4 nat POSTROUTING 0 -s 10.8.0.0/24 ! -d 10.8.0.0/24 -j SNAT --to "$ip"
|
|
|
|
|
firewall-cmd --permanent --direct --add-rule ipv4 nat POSTROUTING 0 -s 10.8.0.0/24 ! -d 10.8.0.0/24 -j SNAT --to "$ip"
|
2017-03-23 20:11:35 +03:00
|
|
|
|
else
|
2019-06-07 17:17:14 +03:00
|
|
|
|
# Create a service to set up persistent iptables rules
|
|
|
|
|
echo "[Unit]
|
|
|
|
|
Before=network.target
|
|
|
|
|
[Service]
|
|
|
|
|
Type=oneshot
|
2019-09-26 20:13:33 +03:00
|
|
|
|
ExecStart=/sbin/iptables -t nat -A POSTROUTING -s 10.8.0.0/24 ! -d 10.8.0.0/24 -j SNAT --to $ip
|
|
|
|
|
ExecStart=/sbin/iptables -I INPUT -p $protocol --dport $port -j ACCEPT
|
2019-06-07 17:17:14 +03:00
|
|
|
|
ExecStart=/sbin/iptables -I FORWARD -s 10.8.0.0/24 -j ACCEPT
|
|
|
|
|
ExecStart=/sbin/iptables -I FORWARD -m state --state RELATED,ESTABLISHED -j ACCEPT
|
2019-09-26 20:13:33 +03:00
|
|
|
|
ExecStop=/sbin/iptables -t nat -D POSTROUTING -s 10.8.0.0/24 ! -d 10.8.0.0/24 -j SNAT --to $ip
|
|
|
|
|
ExecStop=/sbin/iptables -D INPUT -p $protocol --dport $port -j ACCEPT
|
2019-06-07 17:17:14 +03:00
|
|
|
|
ExecStop=/sbin/iptables -D FORWARD -s 10.8.0.0/24 -j ACCEPT
|
|
|
|
|
ExecStop=/sbin/iptables -D FORWARD -m state --state RELATED,ESTABLISHED -j ACCEPT
|
|
|
|
|
RemainAfterExit=yes
|
|
|
|
|
[Install]
|
|
|
|
|
WantedBy=multi-user.target" > /etc/systemd/system/openvpn-iptables.service
|
|
|
|
|
systemctl enable --now openvpn-iptables.service
|
2014-11-04 23:57:36 +03:00
|
|
|
|
fi
|
2018-04-26 16:10:18 +03:00
|
|
|
|
# If SELinux is enabled and a custom port was selected, we need this
|
2019-09-26 20:13:33 +03:00
|
|
|
|
if sestatus 2>/dev/null | grep "Current mode" | grep -q "enforcing" && [[ "$port" != 1194 ]]; then
|
2018-04-26 16:10:18 +03:00
|
|
|
|
# Install semanage if not already present
|
|
|
|
|
if ! hash semanage 2>/dev/null; then
|
2019-06-13 04:15:18 +03:00
|
|
|
|
if grep -qs "CentOS Linux release 7" "/etc/centos-release"; then
|
|
|
|
|
yum install policycoreutils-python -y
|
|
|
|
|
else
|
|
|
|
|
yum install policycoreutils-python-utils -y
|
|
|
|
|
fi
|
2016-02-13 01:46:53 +03:00
|
|
|
|
fi
|
2019-09-26 20:13:33 +03:00
|
|
|
|
semanage port -a -t openvpn_port_t -p "$protocol" "$port"
|
2016-02-13 01:46:53 +03:00
|
|
|
|
fi
|
2018-05-03 12:03:15 +03:00
|
|
|
|
# If the server is behind a NAT, use the correct IP address
|
2019-09-26 20:13:33 +03:00
|
|
|
|
if [[ "$public_ip" != "" ]]; then
|
|
|
|
|
ip="$public_ip"
|
2013-07-07 23:28:08 +04:00
|
|
|
|
fi
|
2015-09-12 22:48:08 +03:00
|
|
|
|
# client-common.txt is created so we have a template to add further users later
|
|
|
|
|
echo "client
|
2017-01-20 17:12:54 +03:00
|
|
|
|
dev tun
|
2019-09-26 20:13:33 +03:00
|
|
|
|
proto $protocol
|
|
|
|
|
remote $ip $port
|
2015-09-12 22:48:08 +03:00
|
|
|
|
resolv-retry infinite
|
|
|
|
|
nobind
|
|
|
|
|
persist-key
|
|
|
|
|
persist-tun
|
|
|
|
|
remote-cert-tls server
|
2017-06-04 14:16:57 +03:00
|
|
|
|
auth SHA512
|
2016-12-11 19:03:25 +03:00
|
|
|
|
cipher AES-256-CBC
|
2019-09-26 20:13:33 +03:00
|
|
|
|
ignore-unknown-option block-outside-dns
|
|
|
|
|
block-outside-dns
|
2019-06-12 22:28:55 +03:00
|
|
|
|
verb 3" > /etc/openvpn/server/client-common.txt
|
2019-09-26 20:13:33 +03:00
|
|
|
|
# Enable and start the OpenVPN service
|
|
|
|
|
systemctl enable --now openvpn-server@server.service
|
2015-09-12 22:48:08 +03:00
|
|
|
|
# Generates the custom client.ovpn
|
2019-09-26 20:13:33 +03:00
|
|
|
|
new_client "$client"
|
2018-04-21 21:41:16 +03:00
|
|
|
|
echo
|
2013-05-14 16:04:19 +04:00
|
|
|
|
echo "Finished!"
|
2018-04-21 21:41:16 +03:00
|
|
|
|
echo
|
2019-09-26 20:13:33 +03:00
|
|
|
|
echo "Your client configuration is available at:" ~/"$client.ovpn"
|
|
|
|
|
echo "If you want to add more clients, just run this script again!"
|
2018-05-03 12:03:15 +03:00
|
|
|
|
fi
|