当前位置: 首页 > 国外空间 > 正文

之前有折腾过《CentOS 6、7下IPSEC/L2TP VPN一键安装脚本》,不稳定、不支持IOS,因此换成pptp,并已经添加到《lnmp一键安装包》。这个脚本可以单独使用,直接复制或下载执行即可,不用依赖安装包的其它脚本。

CentOS 6、7下pptp vpn一键安装脚本,安装如下:

  1. wget http://mirrors.linuxeye.com/scripts/vpn_centos.sh
  2. chmod +x ./vpn_centos.sh
  3. ./vpn_centos.sh

脚本内容如下(vpn_centos.sh):

  1. #!/bin/bash
  2. #
  3. # Author:  yeho <lj2007331 AT gmail.com>
  4. # Blog:  //blog.linuxeye.com
  5. #
  6. # Installs a PPTP VPN-only system for CentOS
  7. # Check if user is root
  8. [ $(id -u) != “0” ] && { echo -e “\033[31mError: You must be root to run this script\033[0m”; exit 1; }
  9. export PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
  10. clear
  11. printf “
  12. #######################################################################
  13. #    LNMP/LAMP/LANMP for CentOS/RadHat 5+ Debian 6+ and Ubuntu 12+    #
  14. #            Installs a PPTP VPN-only system for CentOS               #
  15. # For more information please visit //blog.linuxeye.com/31.html  #
  16. #######################################################################
  17. [ ! -e ‘/usr/bin/curl’ ] && yum -y install curl
  18. VPN_IP=`curl ipv4.icanhazip.com`
  19. VPN_USER=“linuxeye”
  20. VPN_PASS=“linuxeye”
  21. VPN_LOCAL=“192.168.0.150”
  22. VPN_REMOTE=“192.168.0.151-200”
  23. while :; do echo
  24.     read -p “Please input username: ” VPN_USER
  25.     [ -n “$VPN_USER” ] && break
  26. done
  27. while :; do echo
  28.     read -p “Please input password: ” VPN_PASS
  29.     [ -n “$VPN_PASS” ] && break
  30. done
  31. clear
  32. if [ -f /etc/redhat-release -a -n “`grep ‘ 7\.’ /etc/redhat-release`” ];then
  33.     #CentOS_REL=7
  34.     if [ ! -e /etc/yum.repos.d/epel.repo ];then
  35.         cat > /etc/yum.repos.d/epel.repo << EOF
  36. [epel]
  37. name=Extra Packages for Enterprise Linux 7 – \$basearch
  38. #baseurl=http://download.fedoraproject.org/pub/epel/7/\$basearch
  39. mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=epel-7&arch=\$basearch
  40. failovermethod=priority
  41. enabled=1
  42. gpgcheck=0
  43. EOF
  44.     fi
  45.     for Package in wget make openssl gcc-c++ ppp pptpd iptables iptables-services
  46.     do
  47.         yum -y install $Package
  48.     done
  49.     echo ‘net.ipv4.ip_forward = 1‘ >> /etc/sysctl.conf
  50. elif [ -f /etc/redhat-release -a -n “`grep ‘ 6\.’ /etc/redhat-release`” ];then
  51.     #CentOS_REL=6
  52.     for Package in wget make openssl gcc-c++ iptables ppp
  53.     do
  54.         yum -y install $Package
  55.     done
  56.     sed -i ‘s@net.ipv4.ip_forward.*@net.ipv4.ip_forward = 1@g’ /etc/sysctl.conf
  57.     rpm -Uvh http://poptop.sourceforge.net/yum/stable/rhel6/pptp-release-current.noarch.rpm
  58.     yum -y install pptpd
  59. else
  60.     echo -e “\033[31mDoes not support this OS, Please contact the author! \033[0m”
  61.     exit 1
  62. fi
  63. echo “1” > /proc/sys/net/ipv4/ip_forward
  64. sysctl -p /etc/sysctl.conf
  65. [ -z “`grep ‘^localip’ /etc/pptpd.conf`” ] && echo “localip $VPN_LOCAL” >> /etc/pptpd.conf # Local IP address of your VPN server
  66. [ -z “`grep ‘^remoteip’ /etc/pptpd.conf`” ] && echo “remoteip $VPN_REMOTE” >> /etc/pptpd.conf # Scope for your home network
  67. if [ -z “`grep ‘^ms-dns’ /etc/ppp/options.pptpd`” ];then
  68.      cat >> /etc/ppp/options.pptpd << EOF
  69. ms-dns 223.5.5.5 # Aliyun DNS Primary
  70. ms-dns 114.114.114.114 # 114 DNS Primary
  71. ms-dns 8.8.8.8 # Google DNS Primary
  72. ms-dns 209.244.0.3 # Level3 Primary
  73. ms-dns 208.67.222.222 # OpenDNS Primary
  74. EOF
  75. fi
  76. echo “$VPN_USER pptpd $VPN_PASS *” >> /etc/ppp/chap-secrets
  77. ETH=`route | grep default | awk ‘{print $NF}’`
  78. [ -z “`grep ‘1723 -j ACCEPT’ /etc/sysconfig/iptables`” ] && iptables -I INPUT 4 -p tcp -m state –state NEW -m tcp –dport 1723 -j ACCEPT
  79. [ -z “`grep ‘gre -j ACCEPT’ /etc/sysconfig/iptables`” ] && iptables -I INPUT 5 -p gre -j ACCEPT
  80. iptables -t nat -A POSTROUTING -o $ETH -j MASQUERADE
  81. iptables -I FORWARD -p tcp –syn -i ppp+ -j TCPMSS –set-mss 1356
  82. service iptables save
  83. sed -i ‘s@^-A INPUT -j REJECT –reject-with icmp-host-prohibited@#-A INPUT -j REJECT –reject-with icmp-host-prohibited@’ /etc/sysconfig/iptables
  84. sed -i ‘s@^-A FORWARD -j REJECT –reject-with icmp-host-prohibited@#-A FORWARD -j REJECT –reject-with icmp-host-prohibited@’ /etc/sysconfig/iptables
  85. service iptables restart
  86. chkconfig iptables on
  87. service pptpd restart
  88. chkconfig pptpd on
  89. clear
  90. echo -e “You can now connect to your VPN via your external IP \033[32m${VPN_IP}\033[0m”
  91. echo -e “Username: \033[32m${VPN_USER}\033[0m”
  92. echo -e “Password: \033[32m${VPN_PASS}\033[0m”

参考:https://github.com/drewsymo/VPN

转自:https://blog.linuxeye.com/412.html

 

CentOS 6,7 32位64位下pptp vpn一键安装脚本:等您坐沙发呢!

发表评论

gravatar

快捷键:Ctrl+Enter