web-dev-qa-db-ja.com

rtorrent:IPtablesが原因の「トラッカータイムアウト」

Rtorrent-running-homeserverをIPtablesで保護しようとしています。 ftp用のrtorrentポート6890および5292への着信接続のみを許可することを目的として(どちらもルーターによって転送されます)、次のルールを作成しました。

# Allows all Connections from localhost (necessary for scgi port 5000 of rtorrent):
iptables -A INPUT -s 127.0.0.1 -p tcp -j ACCEPT 
iptables -A INPUT -s 127.0.0.1 -p udp -j ACCEPT


# Allows all Connections from 192.168.2.* (local network) and 192.168.10.* (local vpn network)
iptables -A INPUT -s 192.168.2.0/24 -p tcp -j ACCEPT
iptables -A INPUT -s 192.168.10.0/24 -p tcp -j ACCEPT


# Allows all input-Connections on port 6890 (rtorrent) and 5292 (ftp)
iptables -A INPUT -p tcp --dport 6890 -j ACCEPT
iptables -A INPUT -p tcp --dport 5292 -j ACCEPT


# Blocks everything else
iptables -A INPUT -p tcp -j DROP

ルールがアクティブな場合、エラー'Tracker: Timeout was reached'が発生します。すべてがなければ、魅力のように走っています。だから、それは私のiptables-rulesのせいになっているようです。

助けてくれる人はいますか?

2
SaulGoodman

あなたはおそらくこのルールが必要です:

iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT

これにより、既存の接続内のすべてのパッケージが許可されます。

また、他のすべてをブロックする最後のルールの代わりに、ポリシーを設定することをお勧めします。

iptables -P INPUT DROP
2
dnt