BashでIPを見つけてファイルに書き込む

BashでIPを見つけてファイルに書き込む

IPを見つけてファイルに書き込むためにホスト名のリストを逆照会しようとしています。私の言葉はこれチュートリアルを作成し、ホスト名リストを使用するように拡張します。私は初めてBashスクリプトに触れ、これが私が思いついたものですが、期待どおりに印刷されません。

for name in hostA.com hostB.com hostC.com;
do
    host $name | grep "has address" | sed 's/.*has address //' |
    awk '{print "allow\t\t" $1 ";" }' > ./allowedip.inc
done

ベストアンサー1

使用dig:

for host in hostA.com hostB.com hostC.com
do
    # get ips to host using dig
    ips=($(dig "$host" a +short | grep '^[.0-9]*$'))
    for ip in "${ips[@]}";
    do
        printf 'allow\t\t%s\n' "$ip"
    done
done > allowedip.inc

出力:

$ cat allowedip.inc
allow       64.22.213.2
allow       67.225.218.50
allow       66.45.246.141

1行に1つのホストでファイルを繰り返します。

while IFS= read -r host;
do
    # get ips to host using dig
    ips=($(dig "$host" a +short | grep '^[.0-9]*$'))
    for ip in "${ips[@]}";
    do
        printf 'allow\t\t%s\n' "$ip"
    done
done < many_hosts_file > allowedip.inc

おすすめ記事