1. 程式人生 > >ubuntu搭建基於pptpd的vpn服務遇到619 800等問題

ubuntu搭建基於pptpd的vpn服務遇到619 800等問題

ubuntu搭建vpn伺服器的文章非常多,但是開啟ufw往往連結失敗。
解決方案如下:
我們需要王before ufw scripts新增iptables命令,新增命令有如下兩種方式:
1:
iptables -I INPUT -p 47 -m state –state ESTABLISHED -j ACCEPT
iptables -I OUTPUT -p 47 -m state –state NEW,ESTABLISHED -j ACCEPT
iptables -I INPUT -p tcp –sport 1723 -m state –state ESTABLISHED -j ACCEPT
iptables -I OUTPUT -p tcp –dport 1723 -m state –state NEW,ESTABLISHED -j ACCEPT

2:

iptables -A INPUT -p 47 -j ACCEPT
iptables -A OUTPUT -p 47 -j ACCEPT
iptables -A INPUT -p TCP -s 0.0.0.0/0 –source-port 1723 -j ACCEPT
iptables -A OUTPUT -p TCP -d 0.0.0.0/0 –destination-port 1723 -j ACCEPT