Sunday, February 3, 2013

在Ubuntu上安装PPTP VPN 服务器和SSH翻墙服务器

安装SSH代理服务器,请参考:小方文章


安装PPTP VPN服务器,请参考:http://www.lc365.net/blog/b/14060/


附:PPTP VPN中的ms-dns也可以使用 OpenVPN的 208.67.222.222 / 208.67.220.220


小方这里还写了一个升级版createUser,可以将上面的小方文章中的SSH 翻墙服务中的createUser进行升级,使用一次,同时建立SSH账号和VPN账号:











#! /bin/bash username=$1 pwd=$2 month=$3 if [ "$month" == "" ]; then month="3" fi check=$(cat /etc/passwd | grep /$username:) if [ $check ]; then echo "User $username is already existed. Exit." exit fi date=`date --date="+$month month" +"%Y-%m-%d"` useradd -s /bin/false -e $date -M $username -p `mkpasswd $pwd` #remove username in pptp user list pptpSed="/$username pptpd/d" sed "$pptpSed" /etc/ppp/chap-secrets > /etc/ppp/chap-secrets.tmp mv /etc/ppp/chap-secrets.tmp /etc/ppp/chap-secrets echo "$username pptpd $pwd *" >> /etc/ppp/chap-secrets echo "Vpn+SSH User created. Expired date for $username is $date"


原文:http://www.xiaofang.me








via 细节的力量 http://xijie.wordpress.com/2013/02/04/%e5%9c%a8ubuntu%e4%b8%8a%e5%ae%89%e8%a3%85pptp-vpn-%e6%9c%8d%e5%8a%a1%e5%99%a8%e5%92%8cssh%e7%bf%bb%e5%a2%99%e6%9c%8d%e5%8a%a1%e5%99%a8/

No comments:

Post a Comment