1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

BINDで歓迎されないクエリをIPTABLESでブロックする

Posted at

###BINDで歓迎されないクエリをIPTABLESでブロックする

BINDのログの中に、以下のような不正なクエリを見つけました。

client x.x.x.x query (cache) 'example.com/A/IN' denied

このようなエントリーが大量に頻繁に記録されています。
ログファイルのサイズが大きくなり、リソースの無駄遣いにもなります。
そこで、このクエリをブロックする必要がありますが、どうすればよいのでしょうか?
iptablesでソースIPをブロックすればよいのでしょうか。しかしながらソースIPが複数なのでこの手法は使えません。

ようやく見つけた方法は、iptablesにstringモジュールを付けてブロックする方法です。

以下のように。

DOMAIN=example.com
HEX=$(perl -e 'print map {chr(length($_)).$_} split /./, "'$DOMAIN'"'. | xxd -p)
echo $HEX
076578616d706c6503636f6d
iptables -I INPUT -m string --algo bm --hex-string '|076578616d706c6503636f6d|' -j DROP

man(英語版)によると、stringモジュールは2.6.14以上のカーネルバージョンから利用できるようです。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?