我使用 ubuntu 12.10 作为 vps。我正在尝试在其上配置 vps 服务器。我可以连接到 vpn,但无法访问互联网。可能是因为我不知道如何编写 iptables。
ifconfig eth0
inet addr:162.251.120.98 Bcast:162.251.120.127 Mask:255.255.255.224
请有人帮我写一条可用的 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