É assim que este tutoriall em jsimmons funciona no Ubuntu 12.04:
sudo apt-get install ipset
# enter the countrycode that you dont want to block here (for example de for Germay):
DONTBLOCK=de
# download the zonefiles into /tmp/zones/
cd /tmp
wget http://www.ipdeny.com/ipblocks/data/countries/all-zones.tar.gz
mkdir zones
cd zones
tar -xzvf ../all-zones.tar.gz
# remove the zone you want to keep:
rm /tmp/zones/$DONTBLOCK.zone
FOLDER=/etc/zoneipblock/
mkdir $FOLDER
BLOCKLIST=$FOLDER"non_$DONTBLOCK.zone_blocklist"
cat /tmp/zones/*.zone > $BLOCKLIST
#if you want to block only the biggest blocks, use the short list:
BLOCKLIST_SHORT="$BLOCKLIST"_short
cat $BLOCKLIST |grep /8>$BLOCKLIST_SHORT
cat $BLOCKLIST |grep /9>>$BLOCKLIST_SHORT
cat $BLOCKLIST |grep /10>>$BLOCKLIST_SHORT
cat $BLOCKLIST |grep /11>>$BLOCKLIST_SHORT
cat $BLOCKLIST |grep /12>>$BLOCKLIST_SHORT
IPS=$(cat $BLOCKLIST_SHORT)
exit
#TODO: create the list with the right command
#ipset create feckof ...
ipset --create feckoff bitmap:ip range [fromip-toip|ip/cidr]
for i in $IPS; do
ipset add feckof $i
done
iptables -A INPUT -m set –set feckoff src -j DROP
Isso é que o script, quase concluído, está faltando apenas a instrução de criação para a lista de verificação.
alguém pode adicionar isso em um comentário, por favor?