Centos7 pptp vpn

来自linux中国网wiki
跳到导航 跳到搜索
运行 iptables -t nat -A POSTROUTING -s 192.168.0.0/24 -j MASQUERADE 添加 iptables 转发规则。

运行 iptables -t nat -A POSTROUTING -s 192.168.0.0/255.255.255.0 -j SNAT --to-source XXX.XXX.XXX.XXX 添加 NAT 转发规则,其中 XXX.XXX.XXX.XXX 为您的实例公网 IP 地址。

运行 iptables-save 保存设置。

重点是这一条: 
iptables -t nat -A POSTROUTING -s 192.168.11.0/24 -o eth1 -j SNAT --to-source x.x.x.x 
(192.168.0.0/24为VPN的网段,eth1 为外网网卡,xxxx 为外网ip ) 
/etc/init.d/iptables save


see also

CentOS系统搭建PPTP VPN的方法

如何使用 CentOS 6 实例配置 PPTP VPN 连接