Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> LINUX 安裝VPN 出現800錯誤

LINUX 安裝VPN 出現800錯誤

日期:2017/2/7 14:33:26      編輯:Linux教程
 

我的這邊的情況的錯誤原因是:iptables規則未開放1723端口

解決辦法:

chkconfig iptables off
service iptables stop


==============
iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
iptables -A INPUT -i eth0 -p tcp --dport 1723 -j ACCEPT
iptables -A INPUT -i eth0 -p gre -j ACCEPT
iptables -A FORWARD -i ppp+ -o eth0 -j ACCEPT
iptables -A FORWARD -i eth0 -o ppp+ -j ACCEPT
iptables -A OUTPUT -p tcp --dport 1723 -j ACCEPT
iptables -A OUTPUT -p gre -j ACCEPT
=============

service iptables save
service iptables start


再次嘗試連接VPN,800錯誤消失。

Copyright © Windows教程網 All Rights Reserved