Quantcast
Channel: BuddyPress实验室
Viewing all articles
Browse latest Browse all 34

阿里云 ubuntu12.04系统安装pptp的VPN不能上网解决方法

$
0
0

在网上查了一堆,怎么也上不去,安装步骤和其他系统差不多,关键在于第5部的防火墙设置。

具体安装步骤如下:

1、安装pptp

apt-get install pptpd

2、修改系统数据转发。

sysctl -p /etc/sysctl.conf

取消,net.ipv4.ip_forward=1的前面的分号,如果没有就加一下吧,随便都行,这个是开启数据转发。

然后:sysctl -p /etc/sysctl.conf 让系统加载下。

3、vi /etc/ppp/pptpd-options

将里面的dns改下:去掉 ms-dns 的分号,我这里使用的阿里云的dns

ms-dns 223.5.5.5

ms-dns 223.6.6.6

4、vi /etc/ppp/chap-secrets

添加帐号密码:

规则:帐号 pptpd 密码 *(代表所有的IP都可以访问)

jincon pptpd hefeiccjincon *

5、防火墙设置:阿里云有eth0 内网,eth1 外网,我的要访问外网的。

iptables -t nat -A POSTROUTING -o eth1 -j MASQUERADE

6、service pptpd restart


Viewing all articles
Browse latest Browse all 34

Trending Articles