web-dev-qa-db-ja.com

スクリプトでシステムにiptablesが設定されているかどうかを確認する

私はbashでスクリプトを書いていますが、iptablesが設定されているかどうかを確認する必要があります...私はこれを持っています:

if [ `iptables-save | grep '^\-' | wc -l` > 0 ]
then
    echo "Iptables already set, skipping..........!"
else
    Here the iptables get set

しかし、それは期待どおりに機能していません....

問題:

やった iptables-saveそしてそれはこれを作成しました:

$iptables-save
# Generated by iptables-save v1.6.0 on Tue Oct 16 02:48:41 2018
*filter
:INPUT ACCEPT [2:266]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [2:116]
COMMIT
# Completed on Tue Oct 16 02:48:41 2018

したがって、テストを実行すると、すでに設定されていることがわかります。次のようになります。

(root@notemDEB78)-(03:12:20)-(/home/something78/Bash_Programming_2018)
$s.sh
Iptables already set....skipping!!!!!
(root@notemDEB78)-(03:12:25)-(/home/something78/Bash_Programming_2018)
$iptables -L
Chain INPUT (policy ACCEPT)
target     prot opt source               destination         

Chain FORWARD (policy ACCEPT)
target     prot opt source               destination         

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination 

(root@notemDEB78)-(03:16:41)-(/home/something78/Bash_Programming_2018)
$iptables-save | grep '^\-' | wc -l
0

質問:

  • 明らかにそうではないのに、iptablesが設定されていることが常に検出されるのはなぜですか
  • iptablesが設定されているかどうかを確認するためのより良い/実用的な方法がありますか....私のシステムはDebian 9

    bash -version GNU bash、バージョン4.4.12(1)-リリース(x86_64-pc-linux-gnu)Copyright(C)2016 Free Software Foundation、Inc。License GPLv3 +:GNU GPLバージョン3以降 http://gnu.org/licenses/gpl.html

重複の可能性について:

この質問は、iptablesがbashのスクリプトに設定されているかどうかを確認するためのより良い方法があるかどうかも尋ねています。

編集:

セットとは、iptablesが次のように設定されていることを意味します。

if [[ `iptables-save | grep '^\-' | wc -l` > 0 ]]
    then
        echo "Iptables already set....skipping!!!!!"
    else
        if [ "$PORT" = "" ]
        then
            echo "Port not set for iptables exiting"
            echo -n "Setting port now, insert portnumber: "
            read port
            PORT=$port
        fi
        if [ ! -f /etc/iptables.test.rules ]
        then
            touch /etc/iptables.test.rules
        else
            cat /dev/null > /etc/iptables.test.rules
        fi

        cat << EOT >> /etc/iptables.test.rules
        *filter

        # Allows all loopback (lo0) traffic and drop all traffic to 127/8 that doesn't use lo0
        -A INPUT -i lo -j ACCEPT
        -A INPUT ! -i lo -d 127.0.0.0/8 -j REJECT

        # Accepts all established inOAUTH_TOKEN=d6637f7ccf109a0171a2f55d21b6ca43ff053616bound connections
        -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT

        # Allows all outbound traffic
        # You could modify this to only allow certain traffic
        -A OUTPUT -j ACCEPT

        # Allows HTTP and HTTPS connections from anywhere (the normal ports for websites)
        -A INPUT -p tcp --dport 80 -j ACCEPT
        -A INPUT -p tcp --dport 443 -j ACCEPT

        # Allows SSH connections
        # The --dport number is the same as in /etc/ssh/sshd_config
        -A INPUT -p tcp -m state --state NEW --dport $PORT -j ACCEPT

        # Now you should read up on iptables rules and consider whether ssh access
        # for everyone is really desired. Most likely you will only allow access from certain IPs.

        # Allow ping
        #  note that blocking other types of icmp packets is considered a bad idea by some
        #  remove -m icmp --icmp-type 8 from this line to allow all kinds of icmp:
        #  https://security.stackexchange.com/questions/22711
        -A INPUT -p icmp -m icmp --icmp-type 8 -j ACCEPT

        # log iptables denied calls (access via dmesg command)
        -A INPUT -m limit --limit 5/min -j LOG --log-prefix "iptables denied: " --log-level 7

        # Reject all other inbound - default deny unless explicitly allowed policy:
        -A INPUT -j REJECT
        -A FORWARD -j REJECT

        COMMIT
EOT
        sed "s/^[ \t]*//" -i /etc/iptables.test.rules ## remove tabs and spaces
        /sbin/iptables-restore < /etc/iptables.test.rules || echo "iptables-restore failed"; exit 127
        /sbin/iptables-save > /etc/iptables.up.rules || echo "iptables-save failed"; exit 127
        printf "#!/bin/bash\n/sbin/iptables-restore < /etc/iptables.up.rules" > /etc/network/if-pre-up.d/iptables ## create a script to run iptables on startup
        chmod +x /etc/network/if-pre-up.d/iptables || echo "cmod +x failed"; exit 127
    fi
1

考えられる単純化の1つは、grep自体の戻り値を条件として使用することです。grepは、一致する場合にのみコード0(「成功」の場合)で終了します。 any一致を探しているので、行を数える必要はありません。

また、-はgrep正規表現のメタ文字ではないため、\でエスケープする必要はありません。

grep a -q引数を渡すことができるため、一致する行は出力されません(一致する行があるかどうかに応じて、適切な終了コードで終了するだけです)。

if /sbin/iptables-save | grep -q '^-'; then
    echo "Iptables already set....skipping!!!!!"
else
    # set up iptables here
fi

iptables-saveの出力をチェックして、ルールが設定されているかどうかを確認することは問題ないと思います。これほど信頼性が高い、またはより単純な別の方法は考えられません。

2
filbranden

iptablesコマンドには、-Cオプションを使用して特定のルールの存在を確認する独自の方法があります。

-C, --check chain rule-specification

選択したチェーンに仕様に一致するルールが存在するか確認してください。このコマンドは、-Dと同じロジックを使用して一致するエントリを検索しますが、既存のiptables構成を変更せず、その終了コードを使用して成功または失敗を示します。

例:

if ! iptables -C INPUT ! -i lo -d 127.0.0.0/8 -j REJECT; then
     iptables -A INPUT ! -i lo -d 127.0.0.0/8 -j REJECT
fi

現在のスクリプトはテーブルにルールがあるかどうかをチェックしますが、信頼できるスクリプトを作成する場合は、他のプログラムもiptablesと対話できるため、すべてのルールを1つずつチェックする必要があります。

1
jimmij