From 5d0efc3977c8937cc4f81c6f79b77484535e34cd Mon Sep 17 00:00:00 2001 From: 4eu3 Date: Wed, 12 Aug 2015 01:42:37 +0500 Subject: [PATCH 1/3] Added TCP/UDP selector First day on GitHub. --- openvpn-install.sh | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index 5e8ed1b..48a1676 100644 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -1,6 +1,6 @@ #!/bin/bash # OpenVPN road warrior installer for Debian, Ubuntu and CentOS - +# TCP/UDP selector: done :) # This script will work on Debian, Ubuntu, CentOS and probably other distros # of the same families, although no support is offered for them. It isn't # bulletproof but it will probably work if you simply want to setup a VPN on @@ -190,6 +190,11 @@ else echo " 6) Google" read -p "DNS [1-6]: " -e -i 1 DNS echo "" + echo "TCP/UDP selector:" + echo " 1) TCP" + echo " 2) UDP" + read -p "SELECTOR [1-2]: " -e -i 1 SELECTOR + 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 @@ -276,6 +281,16 @@ else sed -i 's|;push "dhcp-option DNS 208.67.220.220"|push "dhcp-option DNS 8.8.4.4"|' server.conf ;; esac + # SELECTOR + case $SELECTOR in + 1) + sed -i 's|proto udp|proto tcp|' server.conf + sed -i 's|proto udp|proto tcp|' /usr/share/doc/openvpn*/*ample*/sample-config-files/client.conf + ;; + 2) + # nothing do + ;; + esac # 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 $PORT From bfc5e26bd19d7aac46e4e2a747d3199d00d2e07f Mon Sep 17 00:00:00 2001 From: 4eu3 Date: Wed, 12 Aug 2015 01:44:48 +0500 Subject: [PATCH 2/3] Added link into git.io --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bb37c7e..7608bf1 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,6 @@ +###Intro +This is fork of [Nyr](https://github.com/Nyr/openvpn-install) with added TCP/UDP selector. + ##openvpn-install OpenVPN [road warrior](http://en.wikipedia.org/wiki/Road_warrior_%28computing%29) installer for Debian, Ubuntu and CentOS. @@ -6,7 +9,8 @@ This script will let you setup your own VPN server in no more than a minute, eve ###Installation Run the script and follow the assistant: -`wget git.io/vpn --no-check-certificate -O openvpn-install.sh; bash openvpn-install.sh` +`wget git.io/v346F --no-check-certificate -O openvpn-install.sh; bash openvpn-install.sh` (my version) +`wget git.io/vpn --no-check-certificate -O openvpn-install.sh; bash openvpn-install.sh` (original) Once it ends, you can run it again to add more users, remove some of them or even completely uninstall OpenVPN. @@ -17,4 +21,4 @@ If you don't care about sharing an IP address with more people, check out the aw ###Donations -If you want to show your appreciation, you can donate via [PayPal](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=VBAYDL34Z7J6L) or [Bitcoin](https://www.coinbase.com/Nyr). Thanks! \ No newline at end of file +If you want to show your appreciation, you can donate via [PayPal](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=VBAYDL34Z7J6L) or [Bitcoin](https://www.coinbase.com/Nyr). Thanks! From 58647be357aeaf8b16d6acd50a91017d30dc1230 Mon Sep 17 00:00:00 2001 From: 4eu3 Date: Wed, 12 Aug 2015 01:46:31 +0500 Subject: [PATCH 3/3] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7608bf1..c4298e1 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,8 @@ This script will let you setup your own VPN server in no more than a minute, eve ###Installation Run the script and follow the assistant: -`wget git.io/v346F --no-check-certificate -O openvpn-install.sh; bash openvpn-install.sh` (my version) +`wget git.io/v346F --no-check-certificate -O openvpn-install.sh; bash openvpn-install.sh` (my version) + `wget git.io/vpn --no-check-certificate -O openvpn-install.sh; bash openvpn-install.sh` (original) Once it ends, you can run it again to add more users, remove some of them or even completely uninstall OpenVPN.