连接到PPT VPN时无法访问任何网站

时间:2019-01-26 15:33:58

标签: linux centos centos7 pptp

测试服务器:

位于中国的服务器无法访问Gooogle,Facebook,Instagram,Twitter,但您可以尝试使用它测试与stackoverflow的连接

ip: 132.232.70.189
account: yunaqi
password: qishi

我在服务器上所做的操作:

安装pptp

sudo yum -y install pptpd

编辑sysctl.conf

vi /etc/sysctl.conf
net.ipv4.ip_forward=1

编辑pptpd.conf

vi /etc/pptpd.conf
localip 192.168.0.1
remoteip remoteip 192.168.0.234-238,192.168.0.245

编辑密探

vi /etc/ppp/chap-secrets
yuanqi  * qishi *

config iptables

sudo iptables -A INPUT -p gre -j ACCEPT 
sudo iptables -A INPUT -p tcp --dport 1723 -j ACCEPT
sudo iptables -A INPUT -p tcp --dport 47 -j ACCEPT
sudo iptables -t nat -A POSTROUTING -s 192.168.0.1/24 -o eth0 -j MASQUERADE

启动pptp

systemctl enable pptpd.service
systemctl start pptpd.service

仅此而已,我不知道哪一步错了。请帮助我。

0 个答案:

没有答案