2019-05-05 10:42:53 +00:00
|
|
|
#!/bin/bash
|
2019-12-17 21:32:59 +00:00
|
|
|
#
|
|
|
|
# About: Install WireGuard automatically
|
|
|
|
# Author: angristan
|
|
|
|
# Thanks : shyamjos, outis151, Leopere, ucawen, Shagon94, shoujii, liberodark
|
|
|
|
# License: MIT
|
2019-05-05 10:42:53 +00:00
|
|
|
|
2019-12-17 21:32:59 +00:00
|
|
|
version="1.0.0"
|
|
|
|
|
|
|
|
echo "Welcome on WireGuard Install Script $version"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK ROOT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
if [[ $(id -u) -ne 0 ]] ; then echo "Please run as root" ; exit 1 ; fi
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST AND VAR
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
distribution=$(cat /etc/*release | grep "PRETTY_NAME" | sed 's/PRETTY_NAME=//g' | sed 's/["]//g' | awk '{print $1}')
|
2019-05-05 11:05:47 +00:00
|
|
|
|
2019-12-18 13:21:51 +00:00
|
|
|
usage ()
|
|
|
|
{
|
|
|
|
echo "usage: -install or -remove"
|
|
|
|
echo "options:"
|
|
|
|
echo "-install: Install WireGuard"
|
|
|
|
echo "-remove: Remove WireGuard"
|
|
|
|
echo "-h: Show help"
|
|
|
|
}
|
|
|
|
|
|
|
|
detect_bad(){
|
2019-05-05 15:47:14 +00:00
|
|
|
if [ "$(systemd-detect-virt)" == "openvz" ]; then
|
|
|
|
echo "OpenVZ is not supported"
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$(systemd-detect-virt)" == "lxc" ]; then
|
|
|
|
echo "LXC is not supported (yet)."
|
2019-05-08 08:38:08 +00:00
|
|
|
echo "WireGuard can technically run in an LXC container,"
|
2019-05-05 15:47:14 +00:00
|
|
|
echo "but the kernel module has to be installed on the host,"
|
|
|
|
echo "the container has to be run with some specific parameters"
|
|
|
|
echo "and only the tools need to be installed in the container."
|
|
|
|
exit
|
|
|
|
fi
|
2019-12-18 13:21:51 +00:00
|
|
|
}
|
2019-05-05 15:47:14 +00:00
|
|
|
|
2019-12-18 13:21:51 +00:00
|
|
|
options(){
|
2019-05-05 11:05:47 +00:00
|
|
|
# Detect public IPv4 address and pre-fill for the user
|
|
|
|
SERVER_PUB_IPV4=$(ip addr | grep 'inet' | grep -v inet6 | grep -vE '127\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}' | grep -oE '[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}' | head -1)
|
|
|
|
read -rp "IPv4 or IPv6 public address: " -e -i "$SERVER_PUB_IPV4" SERVER_PUB_IP
|
|
|
|
|
|
|
|
# Detect public interface and pre-fill for the user
|
|
|
|
SERVER_PUB_NIC="$(ip -4 route ls | grep default | grep -Po '(?<=dev )(\S+)' | head -1)"
|
|
|
|
read -rp "Public interface: " -e -i "$SERVER_PUB_NIC" SERVER_PUB_NIC
|
|
|
|
|
2019-05-05 10:42:53 +00:00
|
|
|
SERVER_WG_NIC="wg0"
|
2019-05-05 11:05:47 +00:00
|
|
|
read -rp "WireGuard interface name: " -e -i "$SERVER_WG_NIC" SERVER_WG_NIC
|
|
|
|
|
2019-05-05 10:42:53 +00:00
|
|
|
SERVER_WG_IPV4="10.66.66.1"
|
2019-05-05 11:05:47 +00:00
|
|
|
read -rp "Server's WireGuard IPv4 " -e -i "$SERVER_WG_IPV4" SERVER_WG_IPV4
|
|
|
|
|
2019-05-05 10:42:53 +00:00
|
|
|
SERVER_WG_IPV6="fd42:42:42::1"
|
2019-05-05 11:05:47 +00:00
|
|
|
read -rp "Server's WireGuard IPv6 " -e -i "$SERVER_WG_IPV6" SERVER_WG_IPV6
|
|
|
|
|
2019-05-05 10:42:53 +00:00
|
|
|
SERVER_PORT=1194
|
2019-05-05 11:05:47 +00:00
|
|
|
read -rp "Server's WireGuard port " -e -i "$SERVER_PORT" SERVER_PORT
|
|
|
|
|
|
|
|
CLIENT_WG_IPV4="10.66.66.2"
|
|
|
|
read -rp "Client's WireGuard IPv4 " -e -i "$CLIENT_WG_IPV4" CLIENT_WG_IPV4
|
|
|
|
|
|
|
|
CLIENT_WG_IPV6="fd42:42:42::2"
|
|
|
|
read -rp "Client's WireGuard IPv6 " -e -i "$CLIENT_WG_IPV6" CLIENT_WG_IPV6
|
|
|
|
|
|
|
|
# Adguard DNS by default
|
|
|
|
CLIENT_DNS_1="176.103.130.130"
|
|
|
|
read -rp "First DNS resolver to use for the client: " -e -i "$CLIENT_DNS_1" CLIENT_DNS_1
|
2019-05-05 10:42:53 +00:00
|
|
|
|
2019-05-05 11:05:47 +00:00
|
|
|
CLIENT_DNS_2="176.103.130.131"
|
|
|
|
read -rp "Second DNS resolver to use for the client: " -e -i "$CLIENT_DNS_2" CLIENT_DNS_2
|
2019-05-05 10:42:53 +00:00
|
|
|
|
2019-06-05 16:19:01 +00:00
|
|
|
# Ask for pre-shared symmetric key
|
2019-06-08 06:40:24 +00:00
|
|
|
IS_PRE_SYMM="y"
|
|
|
|
read -rp "Want to use pre-shared symmetric key? [Y/n]: " -e -i "$IS_PRE_SYMM" IS_PRE_SYMM
|
2019-06-05 16:19:01 +00:00
|
|
|
|
2019-06-05 14:52:44 +00:00
|
|
|
if [[ $SERVER_PUB_IP =~ .*:.* ]]
|
|
|
|
then
|
|
|
|
echo "IPv6 Detected"
|
|
|
|
ENDPOINT="[$SERVER_PUB_IP]:$SERVER_PORT"
|
2019-05-23 22:26:35 +00:00
|
|
|
else
|
2019-06-05 14:52:44 +00:00
|
|
|
echo "IPv4 Detected"
|
|
|
|
ENDPOINT="$SERVER_PUB_IP:$SERVER_PORT"
|
2019-05-23 22:26:35 +00:00
|
|
|
fi
|
2019-12-18 13:21:51 +00:00
|
|
|
}
|
2019-05-23 22:26:35 +00:00
|
|
|
|
2019-12-18 12:11:39 +00:00
|
|
|
remove_wg(){
|
|
|
|
echo "Remove WireGuard Server ($distribution)"
|
|
|
|
|
|
|
|
# Check OS & WireGuard
|
|
|
|
|
|
|
|
if command -v wg-quick > /dev/null 2>&1; then
|
|
|
|
|
|
|
|
if [ "$distribution" = "CentOS" ] || [ "$distribution" = "Red\ Hat" ] || [ "$distribution" = "Oracle" ]; then
|
|
|
|
systemctl stop wg-quick@wg0.service > /dev/null 2>&1
|
|
|
|
systemctl disable wg-quick@wg0.service > /dev/null 2>&1
|
|
|
|
sudo rm /etc/yum.repos.d/wireguard.repo
|
|
|
|
yum remove -y wireguard-dkms wireguard-tools > /dev/null 2>&1
|
|
|
|
rm -rf /etc/wireguard
|
|
|
|
rm /etc/sysctl.d/wg.conf
|
2019-12-18 13:45:49 +00:00
|
|
|
sysctl --system
|
2019-12-18 12:11:39 +00:00
|
|
|
|
|
|
|
elif [ "$distribution" = "Fedora" ]; then
|
|
|
|
systemctl stop wg-quick@wg0.service > /dev/null 2>&1
|
|
|
|
systemctl disable wg-quick@wg0.service > /dev/null 2>&1
|
|
|
|
dnf copr disable jdoss/wireguard > /dev/null 2>&1
|
|
|
|
dnf remove -y wireguard-dkms wireguard-tools iptables > /dev/null 2>&1
|
|
|
|
rm -rf /etc/wireguard
|
|
|
|
rm /etc/sysctl.d/wg.conf
|
2019-12-18 13:45:49 +00:00
|
|
|
sysctl --system
|
2019-12-18 12:11:39 +00:00
|
|
|
|
|
|
|
elif [ "$distribution" = "Ubuntu" ] || [ "$distribution" = "Deepin" ]; then
|
|
|
|
systemctl stop wg-quick@wg0.service > /dev/null 2>&1
|
|
|
|
systemctl disable wg-quick@wg0.service > /dev/null 2>&1
|
|
|
|
apt-get remove -y wireguard --force-yes > /dev/null 2>&1
|
|
|
|
rm -rf /etc/wireguard
|
|
|
|
rm /etc/sysctl.d/wg.conf
|
2019-12-18 13:45:49 +00:00
|
|
|
sysctl --system
|
2019-12-18 12:11:39 +00:00
|
|
|
|
|
|
|
elif [ "$distribution" = "Debian" ] || [ "$distribution" = "Raspbian" ]; then
|
|
|
|
systemctl stop wg-quick@wg0.service > /dev/null 2>&1
|
|
|
|
systemctl disable wg-quick@wg0.service > /dev/null 2>&1
|
|
|
|
apt-get install -y wireguard iptables --force-yes > /dev/null 2>&1
|
|
|
|
rm -rf /etc/wireguard
|
|
|
|
rm /etc/sysctl.d/wg.conf
|
2019-12-18 13:45:49 +00:00
|
|
|
sysctl --system
|
2019-12-18 12:11:39 +00:00
|
|
|
|
|
|
|
elif [ "$distribution" = "Manjaro" ] || [ "$distribution" = "Arch\ Linux" ]; then
|
|
|
|
systemctl stop wg-quick@wg0.service > /dev/null 2>&1
|
|
|
|
systemctl disable wg-quick@wg0.service > /dev/null 2>&1
|
|
|
|
pacman -R wireguard-dkms wireguard-tools --noconfirm > /dev/null 2>&1
|
|
|
|
rm -rf /etc/wireguard
|
|
|
|
rm /etc/sysctl.d/wg.conf
|
2019-12-18 13:45:49 +00:00
|
|
|
sysctl --system
|
2019-12-18 12:11:39 +00:00
|
|
|
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2019-12-17 21:32:59 +00:00
|
|
|
install_wg(){
|
|
|
|
echo "Install WireGuard Server ($distribution)"
|
|
|
|
|
|
|
|
# Check OS & WireGuard
|
|
|
|
|
|
|
|
if ! command -v wg-quick > /dev/null 2>&1; then
|
|
|
|
|
|
|
|
if [ "$distribution" = "CentOS" ] || [ "$distribution" = "Red\ Hat" ] || [ "$distribution" = "Oracle" ]; then
|
|
|
|
curl -Lo /etc/yum.repos.d/wireguard.repo https://copr.fedorainfracloud.org/coprs/jdoss/wireguard/repo/epel-7/jdoss-wireguard-epel-7.repo > /dev/null 2>&1
|
|
|
|
yum install -y epel-release > /dev/null 2>&1
|
|
|
|
yum install -y wireguard-dkms wireguard-tools iptables > /dev/null 2>&1
|
|
|
|
|
|
|
|
elif [ "$distribution" = "Fedora" ]; then
|
|
|
|
dnf copr enable jdoss/wireguard > /dev/null 2>&1
|
|
|
|
dnf install -y wireguard-dkms wireguard-tools iptables > /dev/null 2>&1
|
|
|
|
|
|
|
|
elif [ "$distribution" = "Ubuntu" ] || [ "$distribution" = "Deepin" ]; then
|
|
|
|
add-apt-repository ppa:wireguard/wireguard
|
|
|
|
apt-get update > /dev/null 2>&1
|
|
|
|
apt-get install -y "linux-headers-$(uname -r)" > /dev/null 2>&1
|
|
|
|
apt-get install -y wireguard iptables resolvconf --force-yes > /dev/null 2>&1
|
|
|
|
|
2019-12-17 23:51:39 +00:00
|
|
|
elif [ "$distribution" = "Debian" ] || [ "$distribution" = "Raspbian" ]; then
|
2019-12-17 21:32:59 +00:00
|
|
|
add-apt-repository ppa:wireguard/wireguard
|
|
|
|
apt-get update > /dev/null 2>&1
|
|
|
|
apt-get install -y "linux-headers-$(uname -r)" > /dev/null 2>&1
|
|
|
|
apt-get install -y wireguard iptables resolvconf --force-yes > /dev/null 2>&1
|
|
|
|
|
|
|
|
elif [ "$distribution" = "Manjaro" ] || [ "$distribution" = "Arch\ Linux" ]; then
|
|
|
|
pacman -S linux-headers dkms --noconfirm > /dev/null 2>&1
|
|
|
|
pacman -S wireguard-dkms wireguard-tools iptables openresolv --noconfirm > /dev/null 2>&1
|
|
|
|
|
|
|
|
fi
|
2019-05-12 15:16:38 +00:00
|
|
|
fi
|
2019-12-17 21:32:59 +00:00
|
|
|
}
|
|
|
|
|
2019-12-18 13:21:51 +00:00
|
|
|
configure_wg(){
|
2019-05-23 22:25:25 +00:00
|
|
|
# Make sure the directory exists (this does not seem the be the case on fedora)
|
|
|
|
mkdir /etc/wireguard > /dev/null 2>&1
|
|
|
|
|
2019-05-05 11:05:47 +00:00
|
|
|
# Generate key pair for the server
|
2019-05-05 10:42:53 +00:00
|
|
|
SERVER_PRIV_KEY=$(wg genkey)
|
|
|
|
SERVER_PUB_KEY=$(echo "$SERVER_PRIV_KEY" | wg pubkey)
|
|
|
|
|
2019-12-17 21:34:12 +00:00
|
|
|
# Generate key pair for the client
|
2019-05-05 10:42:53 +00:00
|
|
|
CLIENT_PRIV_KEY=$(wg genkey)
|
|
|
|
CLIENT_PUB_KEY=$(echo "$CLIENT_PRIV_KEY" | wg pubkey)
|
|
|
|
|
|
|
|
# Add server interface
|
|
|
|
echo "[Interface]
|
|
|
|
Address = $SERVER_WG_IPV4/24,$SERVER_WG_IPV6/64
|
|
|
|
ListenPort = $SERVER_PORT
|
|
|
|
PrivateKey = $SERVER_PRIV_KEY
|
2019-07-20 16:08:48 +00:00
|
|
|
PostUp = iptables -A FORWARD -i $SERVER_WG_NIC -j ACCEPT; iptables -t nat -A POSTROUTING -o $SERVER_PUB_NIC -j MASQUERADE; ip6tables -A FORWARD -i $SERVER_WG_NIC -j ACCEPT; ip6tables -t nat -A POSTROUTING -o $SERVER_PUB_NIC -j MASQUERADE
|
|
|
|
PostDown = iptables -D FORWARD -i $SERVER_WG_NIC -j ACCEPT; iptables -t nat -D POSTROUTING -o $SERVER_PUB_NIC -j MASQUERADE; ip6tables -D FORWARD -i $SERVER_WG_NIC -j ACCEPT; ip6tables -t nat -D POSTROUTING -o $SERVER_PUB_NIC -j MASQUERADE" > "/etc/wireguard/$SERVER_WG_NIC.conf"
|
2019-05-05 10:42:53 +00:00
|
|
|
|
|
|
|
# Add the client as a peer to the server
|
|
|
|
echo "[Peer]
|
|
|
|
PublicKey = $CLIENT_PUB_KEY
|
2019-05-05 11:09:07 +00:00
|
|
|
AllowedIPs = $CLIENT_WG_IPV4/32,$CLIENT_WG_IPV6/128" >> "/etc/wireguard/$SERVER_WG_NIC.conf"
|
2019-05-05 10:42:53 +00:00
|
|
|
|
|
|
|
# Create client file with interface
|
|
|
|
echo "[Interface]
|
|
|
|
PrivateKey = $CLIENT_PRIV_KEY
|
2019-05-17 08:57:53 +00:00
|
|
|
Address = $CLIENT_WG_IPV4/24,$CLIENT_WG_IPV6/64
|
2019-05-05 11:09:07 +00:00
|
|
|
DNS = $CLIENT_DNS_1,$CLIENT_DNS_2" > "$HOME/$SERVER_WG_NIC-client.conf"
|
2019-05-05 10:42:53 +00:00
|
|
|
|
|
|
|
# Add the server as a peer to the client
|
2019-12-17 23:10:34 +00:00
|
|
|
echo "
|
|
|
|
[Peer]
|
2019-05-05 10:42:53 +00:00
|
|
|
PublicKey = $SERVER_PUB_KEY
|
2019-05-23 22:26:35 +00:00
|
|
|
Endpoint = $ENDPOINT
|
2019-05-05 11:09:07 +00:00
|
|
|
AllowedIPs = 0.0.0.0/0,::/0" >> "$HOME/$SERVER_WG_NIC-client.conf"
|
2019-05-05 10:42:53 +00:00
|
|
|
|
2019-06-05 16:19:01 +00:00
|
|
|
# Add pre shared symmetric key to respective files
|
2019-06-08 06:40:24 +00:00
|
|
|
case "$IS_PRE_SYMM" in
|
2019-08-08 20:56:53 +00:00
|
|
|
[yY][eE][sS]|[yY])
|
2019-06-04 23:28:47 +00:00
|
|
|
CLIENT_SYMM_PRE_KEY=$( wg genpsk )
|
2019-06-04 23:36:53 +00:00
|
|
|
echo "PresharedKey = $CLIENT_SYMM_PRE_KEY" >> "/etc/wireguard/$SERVER_WG_NIC.conf"
|
2019-06-05 16:19:01 +00:00
|
|
|
echo "PresharedKey = $CLIENT_SYMM_PRE_KEY" >> "$HOME/$SERVER_WG_NIC-client.conf"
|
2019-06-04 23:28:47 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2019-05-23 22:25:48 +00:00
|
|
|
chmod 600 -R /etc/wireguard/
|
|
|
|
|
2019-05-05 10:42:53 +00:00
|
|
|
# Enable routing on the server
|
|
|
|
echo "net.ipv4.ip_forward = 1
|
|
|
|
net.ipv6.conf.all.forwarding = 1" > /etc/sysctl.d/wg.conf
|
|
|
|
|
|
|
|
sysctl --system
|
|
|
|
|
|
|
|
systemctl start "wg-quick@$SERVER_WG_NIC"
|
|
|
|
systemctl enable "wg-quick@$SERVER_WG_NIC"
|
2019-12-18 13:12:42 +00:00
|
|
|
}
|
|
|
|
|
2019-12-18 13:21:51 +00:00
|
|
|
arg_install_wg(){
|
|
|
|
# Install WireGuard
|
|
|
|
detect_bad
|
|
|
|
options
|
|
|
|
install_wg
|
|
|
|
configure_wg
|
2019-12-18 13:12:42 +00:00
|
|
|
}
|
2019-12-18 13:25:48 +00:00
|
|
|
|
2019-12-18 13:27:59 +00:00
|
|
|
arg_remove_wg(){
|
|
|
|
# Remove WireGuard
|
|
|
|
detect_bad
|
|
|
|
remove_wg
|
|
|
|
}
|
|
|
|
|
2019-12-18 13:25:48 +00:00
|
|
|
parse_args ()
|
|
|
|
{
|
|
|
|
while [ $# -ne 0 ]
|
|
|
|
do
|
|
|
|
case "${1}" in
|
|
|
|
-install)
|
|
|
|
shift
|
|
|
|
arg_install_wg >&2
|
|
|
|
;;
|
|
|
|
-remove)
|
|
|
|
shift
|
2019-12-18 13:27:59 +00:00
|
|
|
arg_remove_wg >&2
|
2019-12-18 13:25:48 +00:00
|
|
|
;;
|
|
|
|
-h|--help)
|
|
|
|
usage
|
|
|
|
exit 0
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "Invalid argument : ${1}" >&2
|
|
|
|
usage >&2
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
parse_args "$@"
|