7

着信および発信 ssh 接続を許可し、特定のポートへの発信接続を許可し、最後に一致しないものをすべてドロップする iptable ルールを作成しようとしています。

これらは私が思いついたルールです。SSH ルールは機能しますが、ボックスにトンネリングすると、許可したにもかかわらず http (ポート 80) にアクセスできないようです。誰でも間違いを見つけることができますか?

#!/bin/bash
#clear iptables
iptables -F
iptables -X

#set default policy to drop
iptables -P INPUT DROP
iptables -P OUTPUT DROP
iptables -P FORWARD DROP

#accept everything no matter port on localhost
iptables -A INPUT -i lo -j ACCEPT

#allow established connections
iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -A OUTPUT -m state --state ESTABLISHED,RELATED -j ACCEPT

#allow input on port 22, (established connections auto accepted)
iptables -A INPUT -p tcp --dport 22 -j ACCEPT

#allow traffic going to specific outbound ports
iptables -A OUTPUT -p tcp --dport 80 -j ACCEPT
iptables -A OUTPUT -p tcp --dport 443 -j ACCEPT
iptables -A OUTPUT -p tcp --dport 6667 -j ACCEPT
iptables -A OUTPUT -p tcp --dport 6697 -j ACCEPT
#...

#drop anything that doesnt match the rules above
iptables -A INPUT -j DROP
iptables -A OUTPUT -j DROP

御時間ありがとうございます。

4

2 に答える 2

7

DNS ポートを追加すると、ホスト名を解決できない場合があります。

TCP および UDP ポート 53 の OUTPUT を許可すると役立つはずです。

于 2013-11-04T20:46:47.933 に答える
0

次のようなルールを使用して、入出力用にポート 80 を開く必要があります。

iptables -A INPUT -i eth0 -p tcp --dport 80 -m state --state NEW,ESTABLISHED -j ACCEPT
iptables -A OUTPUT -o eth0 -p tcp --sport 80 -m state --state ESTABLISHED -j ACCEPT
于 2014-11-08T01:34:43.000 に答える