From 106325840918fb475accabcca3988ddf63861784 Mon Sep 17 00:00:00 2001 From: hoanghuynh Date: Thu, 27 Feb 2014 16:53:38 +0700 Subject: [PATCH 1/9] Update README.md --- README.md | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 68b1e6b..dfaacca 100644 --- a/README.md +++ b/README.md @@ -6,16 +6,12 @@ This script will let you setup your own VPN server in no more than one minute, e ###Installation Run the script and follow the assistant: -`wget http://git.io/vpn --no-check-certificate -O openvpn-install.sh; chmod +x openvpn-install.sh; ./openvpn-install.sh` +`wget http://git.io/vpn --no-check-certificate -O openvpn-install.sh; chmod +x openvpn-install.sh; sudo ./openvpn-install.sh` Once it ends, you can run it again to add more users. ###I want to run my own VPN but don't have a server for that There are reliable providers where you can get a little VPS for even less than one buck a month. -- [Secure Dragon (Tampa, FL - Denver, CO - Los Angeles, CA - Chicago, IL)](https://securedragon.net/openvz.php) -- [High Speed Web (Los Angeles, CA)](http://www.highspeedweb.net/) -- [IperWeb (Dallas, TX)](http://my.iperweb.com/cart/) -- [HTTP Zoom (Berkshire, UK)](http://httpzoom.com/) - -If you don't care about sharing an IP address with more people, you should check out the awesome [LowEndSpirit](http://lowendspirit.com/) project. They are providing IPv6-only VPS with NATed IPv4 for only 3€/year. \ No newline at end of file +- [Low End Box](http://lowendbox.com/) +- [Digital Ocean (Hourly charged, instant VPS creation and deletion)](https://www.digitalocean.com/) From fcf4820d23eb61048c64afa9bec84d0823d9aef0 Mon Sep 17 00:00:00 2001 From: hoanghuynh Date: Thu, 27 Feb 2014 17:09:26 +0700 Subject: [PATCH 2/9] change git.io location to this folk --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dfaacca..b7eb4d9 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ This script will let you setup your own VPN server in no more than one minute, e ###Installation Run the script and follow the assistant: -`wget http://git.io/vpn --no-check-certificate -O openvpn-install.sh; chmod +x openvpn-install.sh; sudo ./openvpn-install.sh` +`wget http://git.io/ovpn --no-check-certificate -O openvpn-install.sh; chmod +x openvpn-install.sh; sudo ./openvpn-install.sh` Once it ends, you can run it again to add more users. From c430b7181b5aef37420aa73cb51d5ed2ffa066fd Mon Sep 17 00:00:00 2001 From: Hoang Huynh Date: Thu, 27 Feb 2014 17:50:43 +0700 Subject: [PATCH 3/9] clearly state the ~ path for user --- openvpn-install.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index 1afee19..4044eb4 100755 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -13,8 +13,8 @@ fi if [ ! -e /dev/net/tun ]; then - echo "TUN/TAP is not available" - exit + echo "TUN/TAP is not available, please enable it first (contact your provider if you don't know how)" + exit fi @@ -23,7 +23,7 @@ fi # and to avoid getting an IPv6. IP=$(ifconfig | grep 'inet addr:' | grep -v inet6 | grep -vE '127\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}' | cut -d: -f2 | awk '{ print $1}' | head -1) if [ "$IP" = "" ]; then - IP=$(wget -qO- ipv4.icanhazip.com) + IP=$(wget -qO- ipv4.icanhazip.com) fi @@ -217,6 +217,6 @@ else echo "" echo "Finished!" echo "" - echo "Your client config is available at ~/ovpn-$CLIENT.tar.gz" + echo "Your client config is available at `pwd`/ovpn-$CLIENT.tar.gz" echo "If you want to add more clients, you simply need to run this script another time!" fi From c3189eacb4df749e8077328efffc531bc7be5988 Mon Sep 17 00:00:00 2001 From: Hoang Huynh Date: Thu, 27 Feb 2014 18:11:38 +0700 Subject: [PATCH 4/9] add server IP address to conf and key files to prevent duplication file names with other VPNs --- openvpn-install.sh | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index 4044eb4..5c87f16 100755 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -39,7 +39,7 @@ if [ -e /etc/openvpn/server.conf ]; then echo "3) Remove OpenVPN" echo "4) Exit" echo "" - read -p "Select an option [1-4]:" option + read -p "Select an option [1-4]: " option case $option in 1) echo "" @@ -54,14 +54,16 @@ if [ -e /etc/openvpn/server.conf ]; then "$EASY_RSA/pkitool" $CLIENT # Let's generate the client config mkdir ~/ovpn-$CLIENT - cp /usr/share/doc/openvpn/examples/sample-config-files/client.conf ~/ovpn-$CLIENT/$CLIENT.conf - cp /etc/openvpn/easy-rsa/2.0/keys/ca.crt ~/ovpn-$CLIENT - cp /etc/openvpn/easy-rsa/2.0/keys/$CLIENT.crt ~/ovpn-$CLIENT - cp /etc/openvpn/easy-rsa/2.0/keys/$CLIENT.key ~/ovpn-$CLIENT + cp /usr/share/doc/openvpn/examples/sample-config-files/client.conf ~/ovpn-$CLIENT/$CLIENT@$IP.conf + cp /etc/openvpn/easy-rsa/2.0/keys/ca.crt ~/ovpn-$CLIENT/ca@$IP.crt + cp /etc/openvpn/easy-rsa/2.0/keys/$CLIENT.crt ~/ovpn-$CLIENT/$CLIENT@$IP.crt + cp /etc/openvpn/easy-rsa/2.0/keys/$CLIENT.key ~/ovpn-$CLIENT/$CLIENT@$IP.key cd ~/ovpn-$CLIENT - sed -i "s|cert client.crt|cert $CLIENT.crt|" $CLIENT.conf - sed -i "s|key client.key|key $CLIENT.key|" $CLIENT.conf - tar -czf ../ovpn-$CLIENT.tar.gz $CLIENT.conf ca.crt $CLIENT.crt $CLIENT.key + sed -i "s|cert client.crt|cert $CLIENT@$IP.crt|" $CLIENT@$IP.conf + sed -i "s|key client.key|key $CLIENT@$IP.key|" $CLIENT@$IP.conf + # this is the conf file for client's openvpn gui tool + cp $CLIENT@$IP.conf $CLIENT@$IP.ovpn + tar -czf ../ovpn-$CLIENT.tar.gz $CLIENT@$IP.conf $CLIENT@$IP.ovpn ca@$IP.crt $CLIENT@$IP.crt $CLIENT@$IP.key cd ~/ rm -rf ovpn-$CLIENT echo "" @@ -116,7 +118,7 @@ else echo "" echo "Do you want OpenVPN to be available at port 53 too?" echo "This can be useful to connect under restrictive networks" - read -p "Listen at port 53 [y/n]:" -e -i n ALTPORT + read -p "Listen at port 53 [y/n]: " -e -i n ALTPORT echo "" echo "Finally, tell me your name for the client cert" echo "Please, use one word only, no special characters" From 101d1188b1de26b09b252086fe6519c09cb788b1 Mon Sep 17 00:00:00 2001 From: Hoang Huynh Date: Thu, 27 Feb 2014 23:20:53 +0700 Subject: [PATCH 5/9] add ca$IP.crt to client conf file --- openvpn-install.sh | 29 ++++++++++++++++++----------- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index 5c87f16..211af81 100755 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -1,17 +1,18 @@ #!/bin/bash # OpenVPN road warrior installer for Debian-based distros -# This script will only work on Debian-based systems. It isn't bulletproof but -# it will probably work if you simply want to setup a VPN on your Debian/Ubuntu -# VPS. It has been designed to be as unobtrusive and universal as possible. + +# TODO check for Debian-based distros +# Check for root if [ $USER != 'root' ]; then echo "Sorry, you need to run this as root" exit fi +# check for tun/tap if [ ! -e /dev/net/tun ]; then echo "TUN/TAP is not available, please enable it first (contact your provider if you don't know how)" exit @@ -45,7 +46,7 @@ if [ -e /etc/openvpn/server.conf ]; then echo "" echo "Tell me a name for the client cert" echo "Please, use one word only, no special characters" - read -p "Client name: " -e -i client CLIENT + read -p "Client name: " -e CLIENT cd /etc/openvpn/easy-rsa/2.0/ source ./vars # build-key for the client @@ -54,26 +55,28 @@ if [ -e /etc/openvpn/server.conf ]; then "$EASY_RSA/pkitool" $CLIENT # Let's generate the client config mkdir ~/ovpn-$CLIENT + # add server IP to the file names to prevent duplication on client configs cp /usr/share/doc/openvpn/examples/sample-config-files/client.conf ~/ovpn-$CLIENT/$CLIENT@$IP.conf cp /etc/openvpn/easy-rsa/2.0/keys/ca.crt ~/ovpn-$CLIENT/ca@$IP.crt cp /etc/openvpn/easy-rsa/2.0/keys/$CLIENT.crt ~/ovpn-$CLIENT/$CLIENT@$IP.crt cp /etc/openvpn/easy-rsa/2.0/keys/$CLIENT.key ~/ovpn-$CLIENT/$CLIENT@$IP.key cd ~/ovpn-$CLIENT + sed -i "s|ca ca.crt|ca ca@$IP.crt|" $CLIENT@$IP.conf sed -i "s|cert client.crt|cert $CLIENT@$IP.crt|" $CLIENT@$IP.conf sed -i "s|key client.key|key $CLIENT@$IP.key|" $CLIENT@$IP.conf - # this is the conf file for client's openvpn gui tool + # add an .ovpn file which is essentially the .conf file for client's openvpn gui tool cp $CLIENT@$IP.conf $CLIENT@$IP.ovpn tar -czf ../ovpn-$CLIENT.tar.gz $CLIENT@$IP.conf $CLIENT@$IP.ovpn ca@$IP.crt $CLIENT@$IP.crt $CLIENT@$IP.key cd ~/ rm -rf ovpn-$CLIENT echo "" - echo "Client $CLIENT added, certs available at ~/ovpn-$CLIENT.tar.gz" + echo "Client $CLIENT added, certs available at `pwd`/ovpn-$CLIENT.tar.gz" exit ;; 2) echo "" echo "Tell me the existing client name" - read -p "Client name: " -e -i client CLIENT + read -p "Client name: " -e CLIENT cd /etc/openvpn/easy-rsa/2.0/ . /etc/openvpn/easy-rsa/2.0/vars . /etc/openvpn/easy-rsa/2.0/revoke-full $CLIENT @@ -93,7 +96,7 @@ if [ -e /etc/openvpn/server.conf ]; then apt-get remove --purge -y openvpn openvpn-blacklist rm -rf /etc/openvpn rm -rf /usr/share/doc/openvpn - sed -i '/--dport 53 -j REDIRECT --to-port 1194/d' /etc/rc.local + sed -i '/--dport 53 -j REDIRECT --to-port/d' /etc/rc.local sed -i '/iptables -t nat -A POSTROUTING -s 10.8.0.0/d' /etc/rc.local echo "" echo "OpenVPN removed!" @@ -105,6 +108,10 @@ if [ -e /etc/openvpn/server.conf ]; then else echo 'Welcome to this quick OpenVPN "road warrior" installer' echo "" + echo "This script will only work on Debian-based systems. It isn't bulletproof but" + echo "it will probably work if you simply want to setup a VPN on your Debian/Ubuntu" + echo "VPS. It has been designed to be as unobtrusive and universal as possible." + echo "" # OpenVPN setup and first user creation echo "I need to ask you a few questions before starting the setup" echo "You can leave the default options and just press enter if you are ok with them" @@ -122,7 +129,7 @@ else echo "" echo "Finally, tell me your name for the client cert" echo "Please, use one word only, no special characters" - read -p "Client name: " -e -i client CLIENT + read -p "Client name: " -e CLIENT echo "" echo "Okay, that was all I needed. We are ready to setup your OpenVPN server now" read -n1 -r -p "Press any key to continue..." @@ -175,8 +182,8 @@ else sed -i "s|port 1194|port $PORT|" server.conf # Listen at port 53 too if user wants that if [ $ALTPORT = 'y' ]; then - iptables -t nat -A PREROUTING -p udp -d $IP --dport 53 -j REDIRECT --to-port 1194 - sed -i "/# By default this script does nothing./a\iptables -t nat -A PREROUTING -p udp -d $IP --dport 53 -j REDIRECT --to-port 1194" /etc/rc.local + iptables -t nat -A PREROUTING -p udp -d $IP --dport 53 -j REDIRECT --to-port $PORT + sed -i "/# By default this script does nothing./a\iptables -t nat -A PREROUTING -p udp -d $IP --dport 53 -j REDIRECT --to-port $PORT" /etc/rc.local fi # Enable net.ipv4.ip_forward for the system sed -i 's|#net.ipv4.ip_forward=1|net.ipv4.ip_forward=1|' /etc/sysctl.conf From d5342a9e1dec46cfe41c934a003225e6b668ed64 Mon Sep 17 00:00:00 2001 From: Hoang Huynh Date: Thu, 27 Feb 2014 23:34:27 +0700 Subject: [PATCH 6/9] add IP to first client conf and cert filenames --- openvpn-install.sh | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index 211af81..8c279e3 100755 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -177,7 +177,7 @@ else # Set the server configuration sed -i 's|dh dh1024.pem|dh dh2048.pem|' server.conf sed -i 's|;push "redirect-gateway def1 bypass-dhcp"|push "redirect-gateway def1 bypass-dhcp"|' server.conf - sed -i 's|;push "dhcp-option DNS 208.67.222.222"|push "dhcp-option DNS 129.250.35.250"|' server.conf + sed -i 's|;push "dhcp-option DNS 208.67.222.222"|push "dhcp-option DNS 8.8.8.8"|' server.conf sed -i 's|;push "dhcp-option DNS 208.67.220.220"|push "dhcp-option DNS 74.82.42.42"|' server.conf sed -i "s|port 1194|port $PORT|" server.conf # Listen at port 53 too if user wants that @@ -213,14 +213,16 @@ else # IP/port set on the default client.conf so we can add further users # without asking for them sed -i "s|remote my-server-1 1194|remote $IP $PORT|" /usr/share/doc/openvpn/examples/sample-config-files/client.conf - cp /usr/share/doc/openvpn/examples/sample-config-files/client.conf ~/ovpn-$CLIENT/$CLIENT.conf - cp /etc/openvpn/easy-rsa/2.0/keys/ca.crt ~/ovpn-$CLIENT - cp /etc/openvpn/easy-rsa/2.0/keys/$CLIENT.crt ~/ovpn-$CLIENT - cp /etc/openvpn/easy-rsa/2.0/keys/$CLIENT.key ~/ovpn-$CLIENT + cp /usr/share/doc/openvpn/examples/sample-config-files/client.conf ~/ovpn-$CLIENT/$CLIENT@$IP.conf + cp /etc/openvpn/easy-rsa/2.0/keys/ca.crt ~/ovpn-$CLIENT/ca@$IP.crt + cp /etc/openvpn/easy-rsa/2.0/keys/$CLIENT.crt ~/ovpn-$CLIENT/$CLIENT@$IP.crt + cp /etc/openvpn/easy-rsa/2.0/keys/$CLIENT.key ~/ovpn-$CLIENT/$CLIENT@$IP.key cd ~/ovpn-$CLIENT - sed -i "s|cert client.crt|cert $CLIENT.crt|" $CLIENT.conf - sed -i "s|key client.key|key $CLIENT.key|" $CLIENT.conf - tar -czf ../ovpn-$CLIENT.tar.gz $CLIENT.conf ca.crt $CLIENT.crt $CLIENT.key + sed -i "s|ca ca.crt|ca ca@$IP.crt|" $CLIENT@$IP.conf + sed -i "s|cert client.crt|cert $CLIENT@$IP.crt|" $CLIENT@$IP.conf + sed -i "s|key client.key|key $CLIENT@$IP.key|" $CLIENT@$IP.conf + cp $CLIENT@$IP.conf $CLIENT@$IP.ovpn + tar -czf ../ovpn-$CLIENT.tar.gz $CLIENT@$IP.conf $CLIENT@$IP.ovpn ca@$IP.crt $CLIENT@$IP.crt $CLIENT@$IP.key cd ~/ rm -rf ovpn-$CLIENT echo "" From 54341eaa50c96e7aae1b8bbe2b63edc64d866976 Mon Sep 17 00:00:00 2001 From: Hoang Huynh Date: Fri, 28 Feb 2014 01:03:04 +0700 Subject: [PATCH 7/9] typo --- openvpn-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index 8c279e3..c17a043 100755 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -64,7 +64,7 @@ if [ -e /etc/openvpn/server.conf ]; then sed -i "s|ca ca.crt|ca ca@$IP.crt|" $CLIENT@$IP.conf sed -i "s|cert client.crt|cert $CLIENT@$IP.crt|" $CLIENT@$IP.conf sed -i "s|key client.key|key $CLIENT@$IP.key|" $CLIENT@$IP.conf - # add an .ovpn file which is essentially the .conf file for client's openvpn gui tool + # add an .ovpn file which is essentially the .conf file for client-side openvpn GUI tool on Windows cp $CLIENT@$IP.conf $CLIENT@$IP.ovpn tar -czf ../ovpn-$CLIENT.tar.gz $CLIENT@$IP.conf $CLIENT@$IP.ovpn ca@$IP.crt $CLIENT@$IP.crt $CLIENT@$IP.key cd ~/ From 5f39d8c4698f7b6158a1757979f53c84d351cf5f Mon Sep 17 00:00:00 2001 From: Hoang Huynh Date: Thu, 6 Mar 2014 12:42:03 +0700 Subject: [PATCH 8/9] add option for users to allow duplicate certificate/key files add exit status code --- openvpn-install.sh | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index 5c87f16..d11b6e5 100755 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -8,13 +8,13 @@ if [ $USER != 'root' ]; then echo "Sorry, you need to run this as root" - exit + exit 1 fi if [ ! -e /dev/net/tun ]; then echo "TUN/TAP is not available, please enable it first (contact your provider if you don't know how)" - exit + exit 1 fi @@ -41,7 +41,7 @@ if [ -e /etc/openvpn/server.conf ]; then echo "" read -p "Select an option [1-4]: " option case $option in - 1) + 1) echo "" echo "Tell me a name for the client cert" echo "Please, use one word only, no special characters" @@ -68,7 +68,7 @@ if [ -e /etc/openvpn/server.conf ]; then rm -rf ovpn-$CLIENT echo "" echo "Client $CLIENT added, certs available at ~/ovpn-$CLIENT.tar.gz" - exit + exit 0 ;; 2) echo "" @@ -87,9 +87,9 @@ if [ -e /etc/openvpn/server.conf ]; then echo "" echo "Certificate for client $CLIENT revoked" fi - exit + exit 0 ;; - 3) + 3) apt-get remove --purge -y openvpn openvpn-blacklist rm -rf /etc/openvpn rm -rf /usr/share/doc/openvpn @@ -97,9 +97,9 @@ if [ -e /etc/openvpn/server.conf ]; then sed -i '/iptables -t nat -A POSTROUTING -s 10.8.0.0/d' /etc/rc.local echo "" echo "OpenVPN removed!" - exit + exit 0 ;; - 4) exit;; + 4) exit 0;; esac done else @@ -120,6 +120,10 @@ else echo "This can be useful to connect under restrictive networks" read -p "Listen at port 53 [y/n]: " -e -i n ALTPORT echo "" + echo "Do you want to allow multiple clients to connect with the same" + echo "certificate/key files? This is recommended only for trusted clients." + read -p "Duplicate certificate [y/n]: " -e -i n DUPLICATE_CN + echo "" echo "Finally, tell me your name for the client cert" echo "Please, use one word only, no special characters" read -p "Client name: " -e -i client CLIENT @@ -178,6 +182,10 @@ else iptables -t nat -A PREROUTING -p udp -d $IP --dport 53 -j REDIRECT --to-port 1194 sed -i "/# By default this script does nothing./a\iptables -t nat -A PREROUTING -p udp -d $IP --dport 53 -j REDIRECT --to-port 1194" /etc/rc.local fi + # Allow duplicate certificate/key files if user wants that + if [ $DUPLICATE_CN = 'y' ]; then + sed -i 's|;duplicate-cn|duplicate-cn|' server.conf + fi # Enable net.ipv4.ip_forward for the system sed -i 's|#net.ipv4.ip_forward=1|net.ipv4.ip_forward=1|' /etc/sysctl.conf # Avoid an unneeded reboot @@ -221,4 +229,5 @@ else echo "" echo "Your client config is available at `pwd`/ovpn-$CLIENT.tar.gz" echo "If you want to add more clients, you simply need to run this script another time!" + exit 0 fi From a265c407c7a25081f96454b5c20ac168bfe3548e Mon Sep 17 00:00:00 2001 From: Hoang Huynh Date: Tue, 11 Mar 2014 18:20:12 +0700 Subject: [PATCH 9/9] Client name support spaces now. Append @hostname to client config file names to prevent duplication at client's side. --- openvpn-install.sh | 79 ++++++++++++++++++++++++---------------------- 1 file changed, 41 insertions(+), 38 deletions(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index 99f5524..9c156eb 100755 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -1,9 +1,11 @@ #!/bin/bash # OpenVPN road warrior installer for Debian-based distros - -# TODO check for Debian-based distros - +# Check for Debian-based distro +if [ ! -e /etc/debian_version ]; then + echo "Sorry, you need to be on a Debian-based OS to run this" + exit 1 +fi # Check for root if [ $USER != 'root' ]; then @@ -11,14 +13,12 @@ if [ $USER != 'root' ]; then exit 1 fi - # check for tun/tap if [ ! -e /dev/net/tun ]; then echo "TUN/TAP is not available, please enable it first (contact your provider if you don't know how)" exit 1 fi - # Try to get our IP from the system and fallback to the Internet. # I do this to make the script compatible with NATed servers (lowendspirit.com) # and to avoid getting an IPv6. @@ -27,7 +27,10 @@ if [ "$IP" = "" ]; then IP=$(wget -qO- ipv4.icanhazip.com) fi +# Get the machine host name +HOSTNAME=$(hostname) +# If OpenVPN is already installed if [ -e /etc/openvpn/server.conf ]; then while : do @@ -45,30 +48,30 @@ if [ -e /etc/openvpn/server.conf ]; then 1) echo "" echo "Tell me a name for the client cert" - echo "Please, use one word only, no special characters" - read -p "Client name: " -e CLIENT + echo "Please, use words and spaces only, no special characters" + read -p "Client name: " -e -i $(id -un) CLIENT cd /etc/openvpn/easy-rsa/2.0/ source ./vars # build-key for the client export KEY_CN="$CLIENT" export EASY_RSA="${EASY_RSA:-.}" - "$EASY_RSA/pkitool" $CLIENT + "$EASY_RSA/pkitool" "$CLIENT" # Let's generate the client config - mkdir ~/ovpn-$CLIENT + mkdir ~/ovpn-"$CLIENT" # add server IP to the file names to prevent duplication on client configs - cp /usr/share/doc/openvpn/examples/sample-config-files/client.conf ~/ovpn-$CLIENT/$CLIENT@$IP.conf - cp /etc/openvpn/easy-rsa/2.0/keys/ca.crt ~/ovpn-$CLIENT/ca@$IP.crt - cp /etc/openvpn/easy-rsa/2.0/keys/$CLIENT.crt ~/ovpn-$CLIENT/$CLIENT@$IP.crt - cp /etc/openvpn/easy-rsa/2.0/keys/$CLIENT.key ~/ovpn-$CLIENT/$CLIENT@$IP.key - cd ~/ovpn-$CLIENT - sed -i "s|ca ca.crt|ca ca@$IP.crt|" $CLIENT@$IP.conf - sed -i "s|cert client.crt|cert $CLIENT@$IP.crt|" $CLIENT@$IP.conf - sed -i "s|key client.key|key $CLIENT@$IP.key|" $CLIENT@$IP.conf + cp /usr/share/doc/openvpn/examples/sample-config-files/client.conf ~/ovpn-"$CLIENT"/"$CLIENT"@$HOSTNAME.conf + cp /etc/openvpn/easy-rsa/2.0/keys/ca.crt ~/ovpn-"$CLIENT"/ca@$HOSTNAME.crt + cp /etc/openvpn/easy-rsa/2.0/keys/"$CLIENT".crt ~/ovpn-"$CLIENT"/"$CLIENT"@$HOSTNAME.crt + cp /etc/openvpn/easy-rsa/2.0/keys/"$CLIENT".key ~/ovpn-"$CLIENT"/"$CLIENT"@$HOSTNAME.key + cd ~/ovpn-"$CLIENT" + sed -i "s|ca ca.crt|ca ca@$HOSTNAME.crt|" "$CLIENT"@$HOSTNAME.conf + sed -i "s|cert client.crt|cert \"$CLIENT@$HOSTNAME.crt\"|" "$CLIENT"@$HOSTNAME.conf + sed -i "s|key client.key|key \"$CLIENT@$HOSTNAME.key\"|" "$CLIENT"@$HOSTNAME.conf # add an .ovpn file which is essentially the .conf file for client-side openvpn GUI tool on Windows - cp $CLIENT@$IP.conf $CLIENT@$IP.ovpn - tar -czf ../ovpn-$CLIENT.tar.gz $CLIENT@$IP.conf $CLIENT@$IP.ovpn ca@$IP.crt $CLIENT@$IP.crt $CLIENT@$IP.key + cp "$CLIENT"@$HOSTNAME.conf "$CLIENT"@$HOSTNAME.ovpn + tar -czf ../ovpn-"$CLIENT".tar.gz "$CLIENT"@$HOSTNAME.conf "$CLIENT"@$HOSTNAME.ovpn ca@$HOSTNAME.crt "$CLIENT"@$HOSTNAME.crt "$CLIENT"@$HOSTNAME.key cd ~/ - rm -rf ovpn-$CLIENT + rm -rf ovpn-"$CLIENT" echo "" echo "Client $CLIENT added, certs available at `pwd`/ovpn-$CLIENT.tar.gz" exit 0 @@ -79,7 +82,7 @@ if [ -e /etc/openvpn/server.conf ]; then read -p "Client name: " -e CLIENT cd /etc/openvpn/easy-rsa/2.0/ . /etc/openvpn/easy-rsa/2.0/vars - . /etc/openvpn/easy-rsa/2.0/revoke-full $CLIENT + . /etc/openvpn/easy-rsa/2.0/revoke-full "$CLIENT" # If it's the first time revoking a cert, we need to add the crl-verify line if grep -q "crl-verify" "/etc/openvpn/server.conf"; then echo "" @@ -129,11 +132,11 @@ else echo "" echo "Do you want to allow multiple clients to connect with the same" echo "certificate/key files? This is recommended only for trusted clients." - read -p "Duplicate certificate [y/n]: " -e -i n DUPLICATE_CN + read -p "Duplicate certificate [y/n]: " -e -i n DUPLICATECN echo "" echo "Finally, tell me your name for the client cert" - echo "Please, use one word only, no special characters" - read -p "Client name: " -e CLIENT + echo "Please, use words and spaces only, no special characters" + read -p "Client name: " -e -i $(id -un) CLIENT echo "" echo "Okay, that was all I needed. We are ready to setup your OpenVPN server now" read -n1 -r -p "Press any key to continue..." @@ -168,7 +171,7 @@ else # Now the client keys. We need to set KEY_CN or the stupid pkitool will cry export KEY_CN="$CLIENT" export EASY_RSA="${EASY_RSA:-.}" - "$EASY_RSA/pkitool" $CLIENT + "$EASY_RSA/pkitool" "$CLIENT" # DH params . /etc/openvpn/easy-rsa/2.0/build-dh # Let's configure the server @@ -190,7 +193,7 @@ else sed -i "/# By default this script does nothing./a\iptables -t nat -A PREROUTING -p udp -d $IP --dport 53 -j REDIRECT --to-port $PORT" /etc/rc.local fi # Allow duplicate certificate/key files if user wants that - if [ $DUPLICATE_CN = 'y' ]; then + if [ $DUPLICATECN = 'y' ]; then sed -i 's|;duplicate-cn|duplicate-cn|' server.conf fi # Enable net.ipv4.ip_forward for the system @@ -203,7 +206,7 @@ else # And finally, restart OpenVPN /etc/init.d/openvpn restart # Let's generate the client config - mkdir ~/ovpn-$CLIENT + mkdir ~/ovpn-"$CLIENT" # Try to detect a NATed connection and ask about it to potential LowEndSpirit # users EXTERNALIP=$(wget -qO- ipv4.icanhazip.com) @@ -221,18 +224,18 @@ else # IP/port set on the default client.conf so we can add further users # without asking for them sed -i "s|remote my-server-1 1194|remote $IP $PORT|" /usr/share/doc/openvpn/examples/sample-config-files/client.conf - cp /usr/share/doc/openvpn/examples/sample-config-files/client.conf ~/ovpn-$CLIENT/$CLIENT@$IP.conf - cp /etc/openvpn/easy-rsa/2.0/keys/ca.crt ~/ovpn-$CLIENT/ca@$IP.crt - cp /etc/openvpn/easy-rsa/2.0/keys/$CLIENT.crt ~/ovpn-$CLIENT/$CLIENT@$IP.crt - cp /etc/openvpn/easy-rsa/2.0/keys/$CLIENT.key ~/ovpn-$CLIENT/$CLIENT@$IP.key - cd ~/ovpn-$CLIENT - sed -i "s|ca ca.crt|ca ca@$IP.crt|" $CLIENT@$IP.conf - sed -i "s|cert client.crt|cert $CLIENT@$IP.crt|" $CLIENT@$IP.conf - sed -i "s|key client.key|key $CLIENT@$IP.key|" $CLIENT@$IP.conf - cp $CLIENT@$IP.conf $CLIENT@$IP.ovpn - tar -czf ../ovpn-$CLIENT.tar.gz $CLIENT@$IP.conf $CLIENT@$IP.ovpn ca@$IP.crt $CLIENT@$IP.crt $CLIENT@$IP.key + cp /usr/share/doc/openvpn/examples/sample-config-files/client.conf ~/ovpn-"$CLIENT"/"$CLIENT"@$HOSTNAME.conf + cp /etc/openvpn/easy-rsa/2.0/keys/ca.crt ~/ovpn-"$CLIENT"/ca@$HOSTNAME.crt + cp /etc/openvpn/easy-rsa/2.0/keys/"$CLIENT".crt ~/ovpn-"$CLIENT"/"$CLIENT"@$HOSTNAME.crt + cp /etc/openvpn/easy-rsa/2.0/keys/"$CLIENT".key ~/ovpn-"$CLIENT"/"$CLIENT"@$HOSTNAME.key + cd ~/ovpn-"$CLIENT" + sed -i "s|ca ca.crt|ca ca@$HOSTNAME.crt|" "$CLIENT"@$HOSTNAME.conf + sed -i "s|cert client.crt|cert \"$CLIENT@$HOSTNAME.crt\"|" "$CLIENT"@$HOSTNAME.conf + sed -i "s|key client.key|key \"$CLIENT@$HOSTNAME.key\"|" "$CLIENT"@$HOSTNAME.conf + cp "$CLIENT"@$HOSTNAME.conf "$CLIENT"@$HOSTNAME.ovpn + tar -czf ../ovpn-"$CLIENT".tar.gz "$CLIENT"@$HOSTNAME.conf "$CLIENT"@$HOSTNAME.ovpn ca@$HOSTNAME.crt "$CLIENT"@$HOSTNAME.crt "$CLIENT"@$HOSTNAME.key cd ~/ - rm -rf ovpn-$CLIENT + rm -rf ovpn-"$CLIENT" echo "" echo "Finished!" echo ""