まず第一に、ホイールを再発明しないでください。それがまさにそのdenyhosts
ためです。
DenyHosts is a python program that automatically blocks ssh attacks by
adding entries to /etc/hosts.deny. DenyHosts will also inform Linux
administrators about offending hosts, attacked users and suspicious
logins.
私の知るdenyhosts
限り、ssh
接続のみですが、
fail2ban
ほとんどすべてを処理するものもあります。
Fail2Ban consists of a client, server and configuration files to limit
brute force authentication attempts.
The server program fail2ban-server is responsible for monitoring log
files and issuing ban/unban commands. It gets configured through a
simple protocol by fail2ban-client, which can also read configuration
files and issue corresponding configuration commands to the server.
どちらもリポジトリで利用できます。
sudo apt-get install denyhosts fail2ban
必要に応じて、これをスクリプト化することもできます。何かのようなもの:
#!/usr/bin/env sh
netstat -an |
awk -vmax=100 '/tcp/{split($5,a,":"); if(a[1] > 0 && a[1]!="0.0.0.0"){c[a[1]]++}}
END{for(ip in c){if(c[ip]>max){print ip}}}' |
while read ip; do iptables -I INPUT 1 -s "$ip" -j DROP; done
awk
IPアドレスを抽出し、それらを数えるのみ以上現れるものに印刷されますmax
(ここでは、回を-vmax=100
、それに応じて変更します)。次に、IPは関連するiptables
ルールを実行するwhileループに送られます。
これを24時間年中無休で実行するには、上記のコマンドを毎分程度実行するcronジョブを作成します。この行を追加/etc/crontab
* * * * * root /path/to/script.sh