From f5e2c87db9980df666f0f94057876caa1aa553df Mon Sep 17 00:00:00 2001 From: hwdsl2 Date: Fri, 22 Apr 2016 11:54:14 -0500 Subject: [PATCH] Minor improvements and clean up --- vpnsetup.sh | 17 ++++++++--------- vpnsetup_centos.sh | 34 +++++++++++----------------------- vpnupgrade_Libreswan.sh | 15 ++++++++------- vpnupgrade_Libreswan_centos.sh | 26 ++++++++------------------ 4 files changed, 35 insertions(+), 57 deletions(-) diff --git a/vpnsetup.sh b/vpnsetup.sh index 468c9a7..9f57946 100644 --- a/vpnsetup.sh +++ b/vpnsetup.sh @@ -64,7 +64,7 @@ fi # Create and change to working dir mkdir -p /opt/src -cd /opt/src || { echo "Failed to change working dir to /opt/src. Aborting."; exit 1; } +cd /opt/src || exit 1 # Update package index export DEBIAN_FRONTEND=noninteractive @@ -77,18 +77,17 @@ apt-get -y install iproute gawk grep sed net-tools echo echo 'Trying to find Public/Private IP of this server...' echo -echo 'In case the script hangs here for more than a few minutes, press Ctrl-C to interrupt.' -echo 'Then edit it and follow instructions to manually enter server IPs.' +echo 'In case the script hangs here for more than a few minutes,' +echo 'use Ctrl-C to interrupt. Then edit it and manually enter IPs.' echo # In Amazon EC2, these two variables will be retrieved from metadata. -# For all other servers, you may replace them with actual IPs, -# or comment them out to use auto-detection in the next section. +# For all other servers, replace them with actual IPs (or comment out). # If your server only has a public IP, put that IP on both lines. PUBLIC_IP=$(wget --retry-connrefused -t 3 -T 15 -qO- 'http://169.254.169.254/latest/meta-data/public-ipv4') PRIVATE_IP=$(wget --retry-connrefused -t 3 -T 15 -qO- 'http://169.254.169.254/latest/meta-data/local-ipv4') -# Try to determine IPs for non-EC2 servers +# Try to find IPs for non-EC2 servers [ -z "$PUBLIC_IP" ] && PUBLIC_IP=$(dig +short myip.opendns.com @resolver1.opendns.com) [ -z "$PUBLIC_IP" ] && PUBLIC_IP=$(wget -t 3 -T 15 -qO- http://ipv4.icanhazip.com) [ -z "$PUBLIC_IP" ] && PUBLIC_IP=$(wget -t 3 -T 15 -qO- http://ipecho.net/plain) @@ -122,10 +121,10 @@ SWAN_VER=3.17 SWAN_FILE="libreswan-${SWAN_VER}.tar.gz" SWAN_URL="https://download.libreswan.org/$SWAN_FILE" wget -t 3 -T 30 -nv -O "$SWAN_FILE" "$SWAN_URL" -[ "$?" != "0" ] && { echo "Cannot retrieve Libreswan source file. Aborting."; exit 1; } +[ "$?" != "0" ] && { echo "Cannot download Libreswan source. Aborting."; exit 1; } /bin/rm -rf "/opt/src/libreswan-$SWAN_VER" tar xvzf "$SWAN_FILE" && /bin/rm -f "$SWAN_FILE" -cd "libreswan-$SWAN_VER" || { echo "Failed to enter Libreswan source dir. Aborting."; exit 1; } +cd "libreswan-$SWAN_VER" || { echo "Cannot enter Libreswan source dir. Aborting."; exit 1; } # Workaround for Libreswan compile issues cat > Makefile.inc.local </dev/null | grep -qs "$SWAN_VER" -[ "$?" != "0" ] && { echo; echo "Sorry, Libreswan $SWAN_VER failed to build. Aborting."; exit 1; } +[ "$?" != "0" ] && { echo; echo "Libreswan $SWAN_VER failed to build. Aborting."; exit 1; } # Prepare various config files # Create IPsec (Libreswan) config diff --git a/vpnsetup_centos.sh b/vpnsetup_centos.sh index b897189..71fbe7d 100644 --- a/vpnsetup_centos.sh +++ b/vpnsetup_centos.sh @@ -76,7 +76,7 @@ fi # Create and change to working dir mkdir -p /opt/src -cd /opt/src || { echo "Failed to change working dir to /opt/src. Aborting."; exit 1; } +cd /opt/src || exit 1 # Make sure basic commands exist yum -y install wget bind-utils @@ -85,18 +85,17 @@ yum -y install iproute gawk grep sed net-tools echo echo 'Trying to find Public/Private IP of this server...' echo -echo 'In case the script hangs here for more than a few minutes, press Ctrl-C to interrupt.' -echo 'Then edit it and follow instructions to manually enter server IPs.' +echo 'In case the script hangs here for more than a few minutes,' +echo 'use Ctrl-C to interrupt. Then edit it and manually enter IPs.' echo # In Amazon EC2, these two variables will be retrieved from metadata. -# For all other servers, you may replace them with actual IPs, -# or comment them out to use auto-detection in the next section. +# For all other servers, replace them with actual IPs (or comment out). # If your server only has a public IP, put that IP on both lines. PUBLIC_IP=$(wget --retry-connrefused -t 3 -T 15 -qO- 'http://169.254.169.254/latest/meta-data/public-ipv4') PRIVATE_IP=$(wget --retry-connrefused -t 3 -T 15 -qO- 'http://169.254.169.254/latest/meta-data/local-ipv4') -# Try to determine IPs for non-EC2 servers +# Try to find IPs for non-EC2 servers [ -z "$PUBLIC_IP" ] && PUBLIC_IP=$(dig +short myip.opendns.com @resolver1.opendns.com) [ -z "$PUBLIC_IP" ] && PUBLIC_IP=$(wget -t 3 -T 15 -qO- http://ipv4.icanhazip.com) [ -z "$PUBLIC_IP" ] && PUBLIC_IP=$(wget -t 3 -T 15 -qO- http://ipecho.net/plain) @@ -117,18 +116,7 @@ fi # Add the EPEL repository yum -y install epel-release yum list installed epel-release >/dev/null 2>&1 -if [ "$?" != "0" ]; then - if grep -qs "release 6" /etc/redhat-release; then - EPEL_RPM=epel-release-latest-6.noarch.rpm - EPEL_URL=https://dl.fedoraproject.org/pub/epel/$EPEL_RPM - elif grep -qs "release 7" /etc/redhat-release; then - EPEL_RPM=epel-release-latest-7.noarch.rpm - EPEL_URL=https://dl.fedoraproject.org/pub/epel/$EPEL_RPM - fi - wget -t 3 -T 30 -nv -O "$EPEL_RPM" "$EPEL_URL" - [ "$?" != "0" ] && { echo "Cannot retrieve EPEL repo RPM file. Aborting."; exit 1; } - rpm -ivh --force "$EPEL_RPM" && /bin/rm -f "$EPEL_RPM" -fi +[ "$?" != "0" ] && { echo "Cannot add EPEL repository. Aborting."; exit 1; } # Install necessary packages yum -y install nss-devel nspr-devel pkgconfig pam-devel \ @@ -151,9 +139,9 @@ if grep -qs "release 6" /etc/redhat-release; then RPM1=libevent2-2.0.22-1.el6.x86_64.rpm RPM2=libevent2-devel-2.0.22-1.el6.x86_64.rpm wget -t 3 -T 30 -nv -O "$RPM1" "$LE2_URL/$RPM1" - [ "$?" != "0" ] && { echo "Cannot retrieve Libevent2 RPM file(s). Aborting."; exit 1; } + [ "$?" != "0" ] && { echo "Cannot download Libevent2. Aborting."; exit 1; } wget -t 3 -T 30 -nv -O "$RPM2" "$LE2_URL/$RPM2" - [ "$?" != "0" ] && { echo "Cannot retrieve Libevent2 RPM file(s). Aborting."; exit 1; } + [ "$?" != "0" ] && { echo "Cannot download Libevent2. Aborting."; exit 1; } rpm -ivh --force "$RPM1" "$RPM2" && /bin/rm -f "$RPM1" "$RPM2" elif grep -qs "release 7" /etc/redhat-release; then yum -y install libevent-devel @@ -164,10 +152,10 @@ SWAN_VER=3.17 SWAN_FILE="libreswan-${SWAN_VER}.tar.gz" SWAN_URL="https://download.libreswan.org/$SWAN_FILE" wget -t 3 -T 30 -nv -O "$SWAN_FILE" "$SWAN_URL" -[ "$?" != "0" ] && { echo "Cannot retrieve Libreswan source file. Aborting."; exit 1; } +[ "$?" != "0" ] && { echo "Cannot download Libreswan source. Aborting."; exit 1; } /bin/rm -rf "/opt/src/libreswan-$SWAN_VER" tar xvzf "$SWAN_FILE" && /bin/rm -f "$SWAN_FILE" -cd "libreswan-$SWAN_VER" || { echo "Failed to enter Libreswan source dir. Aborting."; exit 1; } +cd "libreswan-$SWAN_VER" || { echo "Cannot enter Libreswan source dir. Aborting."; exit 1; } # Workaround for Libreswan compile issues cat > Makefile.inc.local </dev/null | grep -qs "$SWAN_VER" -[ "$?" != "0" ] && { echo; echo "Sorry, Libreswan $SWAN_VER failed to build. Aborting."; exit 1; } +[ "$?" != "0" ] && { echo; echo "Libreswan $SWAN_VER failed to build. Aborting."; exit 1; } # Prepare various config files # Create IPsec (Libreswan) config diff --git a/vpnupgrade_Libreswan.sh b/vpnupgrade_Libreswan.sh index 630d074..2adc40c 100644 --- a/vpnupgrade_Libreswan.sh +++ b/vpnupgrade_Libreswan.sh @@ -58,13 +58,14 @@ clear echo "Welcome! This script will build and install Libreswan $SWAN_VER on your server." echo "Additional packages required for Libreswan compilation will also be installed." +echo echo "This is intended for use on servers running an older version of Libreswan." echo "Your existing VPN configuration files will NOT be modified." -if [ "$(sed 's/\..*//' /etc/debian_version 2>/dev/null)" = "7" ]; then +if [ "$(sed 's/\..*//' /etc/debian_version)" = "7" ]; then echo - echo "IMPORTANT NOTE for Debian 7 (Wheezy) users:" - echo "A workaround is required for your system. See: https://gist.github.com/hwdsl2/5a769b2c4436cdf02a90" + echo "IMPORTANT: Workaround required for Debian 7 (Wheezy)." + echo "See: https://gist.github.com/hwdsl2/5a769b2c4436cdf02a90" echo "Continue only after you have completed the workaround." fi @@ -85,7 +86,7 @@ esac # Create and change to working dir mkdir -p /opt/src -cd /opt/src || { echo "Failed to change working dir to /opt/src. Aborting."; exit 1; } +cd /opt/src || exit 1 # Update package index and install Wget export DEBIAN_FRONTEND=noninteractive @@ -103,10 +104,10 @@ apt-get -y --no-install-recommends install xmlto SWAN_FILE="libreswan-${SWAN_VER}.tar.gz" SWAN_URL="https://download.libreswan.org/$SWAN_FILE" wget -t 3 -T 30 -nv -O "$SWAN_FILE" "$SWAN_URL" -[ "$?" != "0" ] && { echo "Cannot retrieve Libreswan source file. Aborting."; exit 1; } +[ "$?" != "0" ] && { echo "Cannot download Libreswan source. Aborting."; exit 1; } /bin/rm -rf "/opt/src/libreswan-$SWAN_VER" tar xvzf "$SWAN_FILE" && /bin/rm -f "$SWAN_FILE" -cd "libreswan-$SWAN_VER" || { echo "Failed to enter Libreswan source dir. Aborting."; exit 1; } +cd "libreswan-$SWAN_VER" || { echo "Cannot enter Libreswan source dir. Aborting."; exit 1; } # Workaround for Libreswan compile issues cat > Makefile.inc.local </dev/null | grep -qs "$SWAN_VER" -[ "$?" != "0" ] && { echo; echo "Sorry, Libreswan $SWAN_VER failed to build. Aborting."; exit 1; } +[ "$?" != "0" ] && { echo; echo "Libreswan $SWAN_VER failed to build. Aborting."; exit 1; } echo echo "Libreswan $SWAN_VER was installed successfully! " diff --git a/vpnupgrade_Libreswan_centos.sh b/vpnupgrade_Libreswan_centos.sh index 6244f6a..e69b25b 100644 --- a/vpnupgrade_Libreswan_centos.sh +++ b/vpnupgrade_Libreswan_centos.sh @@ -67,6 +67,7 @@ clear echo "Welcome! This script will build and install Libreswan $SWAN_VER on your server." echo "Additional packages required for Libreswan compilation will also be installed." +echo echo "This is intended for use on servers running an older version of Libreswan." echo "Your existing VPN configuration files will NOT be modified." @@ -87,7 +88,7 @@ esac # Create and change to working dir mkdir -p /opt/src -cd /opt/src || { echo "Failed to change working dir to /opt/src. Aborting."; exit 1; } +cd /opt/src || exit 1 # Install Wget yum -y install wget @@ -95,18 +96,7 @@ yum -y install wget # Add the EPEL repository yum -y install epel-release yum list installed epel-release >/dev/null 2>&1 -if [ "$?" != "0" ]; then - if grep -qs "release 6" /etc/redhat-release; then - EPEL_RPM=epel-release-latest-6.noarch.rpm - EPEL_URL=https://dl.fedoraproject.org/pub/epel/$EPEL_RPM - elif grep -qs "release 7" /etc/redhat-release; then - EPEL_RPM=epel-release-latest-7.noarch.rpm - EPEL_URL=https://dl.fedoraproject.org/pub/epel/$EPEL_RPM - fi - wget -t 3 -T 30 -nv -O "$EPEL_RPM" "$EPEL_URL" - [ "$?" != "0" ] && { echo "Cannot retrieve EPEL repo RPM file. Aborting."; exit 1; } - rpm -ivh --force "$EPEL_RPM" && /bin/rm -f "$EPEL_RPM" -fi +[ "$?" != "0" ] && { echo "Cannot add EPEL repository. Aborting."; exit 1; } # Install necessary packages yum -y install nss-devel nspr-devel pkgconfig pam-devel \ @@ -120,9 +110,9 @@ if grep -qs "release 6" /etc/redhat-release; then RPM1=libevent2-2.0.22-1.el6.x86_64.rpm RPM2=libevent2-devel-2.0.22-1.el6.x86_64.rpm wget -t 3 -T 30 -nv -O "$RPM1" "$LE2_URL/$RPM1" - [ "$?" != "0" ] && { echo "Cannot retrieve Libevent2 RPM file(s). Aborting."; exit 1; } + [ "$?" != "0" ] && { echo "Cannot download Libevent2. Aborting."; exit 1; } wget -t 3 -T 30 -nv -O "$RPM2" "$LE2_URL/$RPM2" - [ "$?" != "0" ] && { echo "Cannot retrieve Libevent2 RPM file(s). Aborting."; exit 1; } + [ "$?" != "0" ] && { echo "Cannot download Libevent2. Aborting."; exit 1; } rpm -ivh --force "$RPM1" "$RPM2" && /bin/rm -f "$RPM1" "$RPM2" elif grep -qs "release 7" /etc/redhat-release; then yum -y install libevent-devel @@ -132,10 +122,10 @@ fi SWAN_FILE="libreswan-${SWAN_VER}.tar.gz" SWAN_URL="https://download.libreswan.org/$SWAN_FILE" wget -t 3 -T 30 -nv -O "$SWAN_FILE" "$SWAN_URL" -[ "$?" != "0" ] && { echo "Cannot retrieve Libreswan source file. Aborting."; exit 1; } +[ "$?" != "0" ] && { echo "Cannot download Libreswan source. Aborting."; exit 1; } /bin/rm -rf "/opt/src/libreswan-$SWAN_VER" tar xvzf "$SWAN_FILE" && /bin/rm -f "$SWAN_FILE" -cd "libreswan-$SWAN_VER" || { echo "Failed to enter Libreswan source dir. Aborting."; exit 1; } +cd "libreswan-$SWAN_VER" || { echo "Cannot enter Libreswan source dir. Aborting."; exit 1; } # Workaround for Libreswan compile issues cat > Makefile.inc.local </dev/null | grep -qs "$SWAN_VER" -[ "$?" != "0" ] && { echo; echo "Sorry, Libreswan $SWAN_VER failed to build. Aborting."; exit 1; } +[ "$?" != "0" ] && { echo; echo "Libreswan $SWAN_VER failed to build. Aborting."; exit 1; } echo echo "Libreswan $SWAN_VER was installed successfully! "