web-dev-qa-db-ja.com

実行中のdocker container:iptables:その名前でチェーン/ターゲット/一致なし

コンテナを実行しようとしていますが、次の問題が発生します:

Error response from daemon: Cannot start container b005715c40ea7d5821b15c44f5b7f902d4b39da7c83468f3e5d7c042e5fe3fbd: iptables failed: iptables --wait -t filter -A DOCKER ! -i docker0 -o docker0 -p tcp -d 172.17.0.43 --dport 80 -j ACCEPT: iptables: No chain/target/match by that name.
 (exit status 1)

私が使用するコマンドは次のとおりです。

docker run -d -p 10080:80 -v /srv/http/website/data:/srv/http/www/data -v /srv/http/website/logs:/srv/http/www/logs myimage

サーバーのポート80を十分に開いていませんか? Dockerインターフェイスで見逃したものはありますか?このようなスクリプトでiptablesを使用します。

#!/bin/sh

# reset :
iptables -t filter -F
iptables -t filter -X

# Block all :
iptables -t filter -P INPUT DROP
iptables -t filter -P FORWARD DROP
iptables -t filter -P OUTPUT DROP

# Authorize already established connections :
iptables -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
iptables -A OUTPUT -m state --state RELATED,ESTABLISHED -j ACCEPT

# Authorize backloop :
iptables -t filter -A INPUT -i lo -j ACCEPT
iptables -t filter -A OUTPUT -o lo -j ACCEPT

# Authorize ssh :
iptables -t filter -A INPUT -p tcp --dport 22 -j ACCEPT
iptables -t filter -A OUTPUT -p tcp --dport 22 -j ACCEPT

# Authorize HTTP :
iptables -t filter -A INPUT -p tcp --dport 80 -j ACCEPT
iptables -t filter -A OUTPUT -p tcp --dport 80 -j ACCEPT

# Authorize HTTPS :
iptables -t filter -A INPUT -p tcp --dport 443 -j ACCEPT
iptables -t filter -A OUTPUT -p tcp --dport 443 -j ACCEPT

# Authorize DNS :
iptables -t filter -A INPUT -p tcp --dport 53 -j ACCEPT
iptables -t filter -A OUTPUT -p udp --dport 53 -j ACCEPT
iptables -t filter -A INPUT -p udp --dport 53 -j ACCEPT
iptables -t filter -A OUTPUT -p tcp --dport 53 -j ACCEPT

# Ping :
iptables -t filter -A INPUT -p icmp -j ACCEPT
iptables -t filter -A OUTPUT -p icmp -j ACCEPT

# Authorize FTP :
iptables -t filter -A INPUT -p tcp --dport 20 -j ACCEPT
iptables -t filter -A OUTPUT -p tcp --dport 20 -j ACCEPT
iptables -t filter -A INPUT -p tcp --dport 21 -j ACCEPT
iptables -t filter -A OUTPUT -p tcp --dport 21 -j ACCEPT

# # Authorize NTP :
# iptables -t filter -A INPUT -p udp --dport 123 -j ACCEPT
# iptables -t filter -A OUTPUT -p udp --dport 123 -j ACCEPT

# Authorize IRC :
iptables -t filter -A INPUT -p tcp --dport 6667 -j ACCEPT
iptables -t filter -A OUTPUT -p tcp --dport 6667 -j ACCEPT

# Authorize port 10000 (for Node.JS server) :
iptables -t filter -A INPUT -p tcp --dport 10000 -j ACCEPT
iptables -t filter -A OUTPUT -p tcp --dport 10000 -j ACCEPT

# Authorize port 631 (Cups server) :
iptables -t filter -A INPUT -p tcp --dport 631 -j ACCEPT
iptables -t filter -A OUTPUT -p tcp --dport 631 -j ACCEPT

# Authorize port 9418 (git) :
iptables -t filter -A INPUT -p tcp --dport 9418 -j ACCEPT
iptables -t filter -A OUTPUT -p tcp --dport 9418 -j ACCEPT

どうすれば修正できますか?

22
vmonteco

私は問題がこの行内にあると信じています:

iptables -tフィルター-F

iptables -t filter -X

確かにすべてのチェーンをクリアします。考えられる解決策の1つは、dockerデーモンafter iptablesセットアップスクリプトを起動することです。それ以外の場合は、関心のあるチェーンを明示的に削除する必要があります。

24
Yoanis Gil

Docker-composeセットアップで同じ問題に直面しました。

1。すべてのチェーンをクリアします:

Sudo iptables -t filter -F
Sudo iptables -t filter -X

2。次にDockerサービスを再起動します:

systemctl restart docker
25

RHEL 7で同じ問題に直面しました。iptableルールをフラッシュする必要なく、Dockerサービスの再起動が機能しました。

$ Sudo systemctl restart docker
2
Junaid

Irc.freenode.net#dockerでは、Raspberry PiでArch Linux ARMを使用していると述べています。

Systemdサービスの一部としてこのスクリプトを実行していない場合は、それに移行するか、既存のiptablesサービスを利用し、適切なタイミングでテーブルを保存/復元する機能を使用することを強くお勧めします。独自のサービスに移行する場合は、ユニットに注文されていることを確認してくださいBefore=docker.service

1
WarheadsSE