2021-08-14 08:23:14 +03:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Script to update Libreswan on Ubuntu, Debian, CentOS/RHEL, Rocky Linux,
|
2021-09-11 23:00:29 +03:00
|
|
|
# AlmaLinux, Amazon Linux 2 and Alpine Linux
|
2021-08-14 08:23:14 +03:00
|
|
|
#
|
|
|
|
# The latest version of this script is available at:
|
|
|
|
# https://github.com/hwdsl2/setup-ipsec-vpn
|
|
|
|
#
|
|
|
|
# Copyright (C) 2021 Lin Song <linsongui@gmail.com>
|
|
|
|
#
|
|
|
|
# This work is licensed under the Creative Commons Attribution-ShareAlike 3.0
|
|
|
|
# Unported License: http://creativecommons.org/licenses/by-sa/3.0/
|
|
|
|
#
|
|
|
|
# Attribution required: please include my name in any derivative and let me
|
|
|
|
# know how you have improved it!
|
|
|
|
|
|
|
|
# Specify which Libreswan version to install. See: https://libreswan.org
|
2021-08-22 19:49:35 +03:00
|
|
|
SWAN_VER=4.5
|
2021-08-14 08:23:14 +03:00
|
|
|
|
|
|
|
### DO NOT edit below this line ###
|
|
|
|
|
|
|
|
export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
|
|
|
|
|
|
|
|
exiterr() { echo "Error: $1" >&2; exit 1; }
|
|
|
|
|
|
|
|
check_root() {
|
|
|
|
if [ "$(id -u)" != 0 ]; then
|
|
|
|
exiterr "Script must be run as root. Try 'sudo sh $0'"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
check_vz() {
|
|
|
|
if [ -f /proc/user_beancounters ]; then
|
|
|
|
exiterr "OpenVZ VPS is not supported."
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
check_os() {
|
|
|
|
os_type=centos
|
|
|
|
rh_file="/etc/redhat-release"
|
|
|
|
if grep -qs "Red Hat" "$rh_file"; then
|
|
|
|
os_type=rhel
|
|
|
|
fi
|
|
|
|
if grep -qs "release 7" "$rh_file"; then
|
|
|
|
os_ver=7
|
|
|
|
elif grep -qs "release 8" "$rh_file"; then
|
|
|
|
os_ver=8
|
|
|
|
grep -qi stream "$rh_file" && os_ver=8s
|
|
|
|
grep -qi rocky "$rh_file" && os_type=rocky
|
|
|
|
grep -qi alma "$rh_file" && os_type=alma
|
|
|
|
elif grep -qs "Amazon Linux release 2" /etc/system-release; then
|
|
|
|
os_type=amzn
|
|
|
|
os_ver=2
|
|
|
|
else
|
|
|
|
os_type=$(lsb_release -si 2>/dev/null)
|
|
|
|
[ -z "$os_type" ] && [ -f /etc/os-release ] && os_type=$(. /etc/os-release && printf '%s' "$ID")
|
|
|
|
case $os_type in
|
|
|
|
[Uu]buntu)
|
|
|
|
os_type=ubuntu
|
|
|
|
;;
|
|
|
|
[Dd]ebian)
|
|
|
|
os_type=debian
|
|
|
|
;;
|
|
|
|
[Rr]aspbian)
|
|
|
|
os_type=raspbian
|
|
|
|
;;
|
2021-09-11 23:00:29 +03:00
|
|
|
[Aa]lpine)
|
|
|
|
os_type=alpine
|
|
|
|
;;
|
2021-08-14 08:23:14 +03:00
|
|
|
*)
|
2021-09-11 23:00:29 +03:00
|
|
|
echo "Error: This script only supports one of the following OS:" >&2
|
|
|
|
echo " Ubuntu, Debian, CentOS/RHEL, Rocky Linux, AlmaLinux," >&2
|
2021-09-12 06:26:55 +03:00
|
|
|
echo " Amazon Linux 2 or Alpine Linux" >&2
|
2021-09-11 23:00:29 +03:00
|
|
|
exit 1
|
2021-08-14 08:23:14 +03:00
|
|
|
;;
|
|
|
|
esac
|
2021-09-11 23:00:29 +03:00
|
|
|
if [ "$os_type" = "alpine" ]; then
|
|
|
|
os_ver=$(. /etc/os-release && printf '%s' "$VERSION_ID" | cut -d '.' -f 1,2)
|
|
|
|
if [ "$os_ver" != "3.14" ]; then
|
|
|
|
exiterr "This script only supports Alpine Linux 3.14."
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
os_ver=$(sed 's/\..*//' /etc/debian_version | tr -dc 'A-Za-z0-9')
|
|
|
|
if [ "$os_ver" = "8" ] || [ "$os_ver" = "jessiesid" ]; then
|
|
|
|
exiterr "Debian 8 or Ubuntu < 16.04 is not supported."
|
|
|
|
fi
|
2021-08-14 08:23:14 +03:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2021-08-22 19:49:35 +03:00
|
|
|
check_libreswan() {
|
2021-09-11 23:00:29 +03:00
|
|
|
if [ "$os_type" != "alpine" ]; then
|
|
|
|
case $SWAN_VER in
|
|
|
|
3.32|4.[1-5])
|
|
|
|
true
|
|
|
|
;;
|
|
|
|
*)
|
2021-08-14 08:23:14 +03:00
|
|
|
cat 1>&2 <<EOF
|
|
|
|
Error: Libreswan version '$SWAN_VER' is not supported.
|
|
|
|
This script can install one of these versions:
|
2021-08-22 19:49:35 +03:00
|
|
|
3.32, 4.1-4.4 or 4.5
|
2021-08-14 08:23:14 +03:00
|
|
|
EOF
|
2021-09-11 23:00:29 +03:00
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
else
|
|
|
|
case $SWAN_VER in
|
|
|
|
4.5)
|
|
|
|
true
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
cat 1>&2 <<EOF
|
|
|
|
Error: Libreswan version '$SWAN_VER' is not supported.
|
|
|
|
This script can install Libreswan 4.5.
|
|
|
|
EOF
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
2021-08-14 08:23:14 +03:00
|
|
|
|
2021-08-15 08:46:25 +03:00
|
|
|
if [ "$SWAN_VER" = "3.32" ] && [ "$os_ver" = "11" ]; then
|
|
|
|
exiterr "Libreswan 3.32 is not supported on Debian 11."
|
|
|
|
fi
|
|
|
|
|
2021-08-14 08:23:14 +03:00
|
|
|
ipsec_ver=$(/usr/local/sbin/ipsec --version 2>/dev/null)
|
|
|
|
if ! printf '%s' "$ipsec_ver" | grep -q "Libreswan"; then
|
|
|
|
cat 1>&2 <<'EOF'
|
|
|
|
Error: This script requires Libreswan already installed.
|
|
|
|
See: https://github.com/hwdsl2/setup-ipsec-vpn
|
|
|
|
EOF
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2021-09-11 23:00:29 +03:00
|
|
|
install_pkgs() {
|
2021-08-14 08:23:14 +03:00
|
|
|
if ! command -v wget >/dev/null 2>&1; then
|
|
|
|
if [ "$os_type" = "ubuntu" ] || [ "$os_type" = "debian" ] || [ "$os_type" = "raspbian" ]; then
|
|
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
|
|
(
|
|
|
|
set -x
|
|
|
|
apt-get -yqq update
|
|
|
|
) || exiterr "'apt-get update' failed."
|
|
|
|
(
|
|
|
|
set -x
|
|
|
|
apt-get -yqq install wget >/dev/null
|
|
|
|
) || exiterr "'apt-get install wget' failed."
|
2021-09-11 23:00:29 +03:00
|
|
|
elif [ "$os_type" != "alpine" ]; then
|
2021-08-14 08:23:14 +03:00
|
|
|
(
|
|
|
|
set -x
|
|
|
|
yum -y -q install wget >/dev/null
|
|
|
|
) || exiterr "'yum install wget' failed."
|
|
|
|
fi
|
|
|
|
fi
|
2021-09-11 23:00:29 +03:00
|
|
|
if [ "$os_type" = "alpine" ]; then
|
|
|
|
(
|
|
|
|
set -x
|
2021-09-14 08:49:13 +03:00
|
|
|
apk add -U -q bash coreutils grep sed wget
|
2021-09-11 23:00:29 +03:00
|
|
|
) || exiterr "'apk add' failed."
|
|
|
|
fi
|
2021-08-14 08:23:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
get_setup_url() {
|
|
|
|
base_url="https://github.com/hwdsl2/setup-ipsec-vpn/raw/master/extras"
|
|
|
|
sh_file="vpnupgrade_ubuntu.sh"
|
|
|
|
if [ "$os_type" = "centos" ] || [ "$os_type" = "rhel" ] || [ "$os_type" = "rocky" ] || [ "$os_type" = "alma" ]; then
|
|
|
|
sh_file="vpnupgrade_centos.sh"
|
|
|
|
elif [ "$os_type" = "amzn" ]; then
|
|
|
|
sh_file="vpnupgrade_amzn.sh"
|
2021-09-11 23:00:29 +03:00
|
|
|
elif [ "$os_type" = "alpine" ]; then
|
|
|
|
sh_file="vpnupgrade_alpine.sh"
|
2021-08-14 08:23:14 +03:00
|
|
|
fi
|
|
|
|
setup_url="$base_url/$sh_file"
|
|
|
|
}
|
|
|
|
|
|
|
|
run_setup() {
|
|
|
|
status=0
|
2021-08-29 00:07:52 +03:00
|
|
|
if tmpdir=$(mktemp --tmpdir -d vpn.XXXXX 2>/dev/null); then
|
|
|
|
if ( set -x; wget -t 3 -T 30 -q -O "$tmpdir/vpnup.sh" "$setup_url" \
|
|
|
|
|| curl -fsL "$setup_url" -o "$tmpdir/vpnup.sh" 2>/dev/null ); then
|
|
|
|
VPN_UPDATE_SWAN_VER="$SWAN_VER" /bin/bash "$tmpdir/vpnup.sh" || status=1
|
2021-08-14 08:23:14 +03:00
|
|
|
else
|
|
|
|
status=1
|
|
|
|
echo "Error: Could not download update script." >&2
|
|
|
|
fi
|
2021-08-29 00:07:52 +03:00
|
|
|
/bin/rm -f "$tmpdir/vpnup.sh"
|
|
|
|
/bin/rmdir "$tmpdir"
|
2021-08-14 08:23:14 +03:00
|
|
|
else
|
|
|
|
exiterr "Could not create temporary directory."
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
vpnupgrade() {
|
|
|
|
check_root
|
|
|
|
check_vz
|
|
|
|
check_os
|
2021-08-22 19:49:35 +03:00
|
|
|
check_libreswan
|
2021-09-11 23:00:29 +03:00
|
|
|
install_pkgs
|
2021-08-14 08:23:14 +03:00
|
|
|
get_setup_url
|
|
|
|
run_setup
|
|
|
|
}
|
|
|
|
|
|
|
|
## Defer setup until we have the complete script
|
|
|
|
vpnupgrade "$@"
|
|
|
|
|
|
|
|
exit "$status"
|