Created
January 4, 2013 18:25
-
-
Save mitnk/4454746 to your computer and use it in GitHub Desktop.
Install PPTP VPN on Amazon EC2 (test)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
yum remove -y pptpd ppp | |
iptables --flush POSTROUTING --table nat | |
iptables --flush FORWARD | |
rm -rf /etc/pptpd.conf | |
rm -rf /etc/ppp | |
wget http://poptop.sourceforge.net/yum/stable/packages/dkms-2.0.17.5-1.noarch.rpm | |
wget http://poptop.sourceforge.net/yum/stable/packages/kernel_ppp_mppe-1.0.2-3dkms.noarch.rpm | |
wget ftp://ftp.muug.mb.ca/mirror/centos/6.3/os/x86_64/Packages/ppp-2.4.5-5.el6.x86_64.rpm | |
wget http://poptop.sourceforge.net/yum/stable/packages/pptpd-1.3.4-2.el6.x86_64.rpm | |
yum -y install make libpcap gcc-c++ logrotate tar cpio perl pam tcp_wrappers | |
rpm -ivh dkms-2.0.17.5-1.noarch.rpm | |
rpm -ivh kernel_ppp_mppe-1.0.2-3dkms.noarch.rpm | |
rpm -qa kernel_ppp_mppe | |
rpm -ivh ppp-2.4.5-5.el6.i686.rpm | |
rpm -ivh pptpd-1.3.4-2.el6.x86_64.rpm | |
mknod /dev/ppp c 108 0 | |
echo 1 > /proc/sys/net/ipv4/ip_forward | |
echo "mknod /dev/ppp c 108 0" >> /etc/rc.local | |
echo "echo 1 > /proc/sys/net/ipv4/ip_forward" >> /etc/rc.local | |
echo "localip 172.16.36.1" >> /etc/pptpd.conf | |
echo "remoteip 172.16.36.2-254" >> /etc/pptpd.conf | |
echo "ms-dns 8.8.8.8" >> /etc/ppp/options.pptpd | |
echo "ms-dns 8.8.4.4" >> /etc/ppp/options.pptpd | |
pass=`openssl rand 6 -base64` | |
if [ "$1" != "" ] | |
then pass=$1 | |
fi | |
echo "vpn pptpd ${pass} *" >> /etc/ppp/chap-secrets | |
iptables -t nat -A POSTROUTING -s 172.16.36.0/24 -j SNAT --to-source `ifconfig | grep 'inet addr:'| grep -v '127.0.0.1' | cut -d: -f2 | awk 'NR==1 { print $1}'` | |
iptables -A FORWARD -p tcp --syn -s 172.16.36.0/24 -j TCPMSS --set-mss 1356 | |
service iptables save | |
chkconfig iptables on | |
chkconfig pptpd on | |
service iptables start | |
service pptpd start | |
echo "VPN service is installed, your VPN username is vpn, VPN password is ${pass}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment