Determine o ASN
whois -h whois.radb.net 'dig +short stackoverflow.com'
Gerenciar tráfego
for ip in 'whois -h whois.radb.net '!gAS25791' | grep /'
do
iptables -A -s $IP -j DROP
done
Existe alguma ferramenta / aplicativo que eu possa usar para bloquear hosts de todas as formas de conexão do meu computador? Atualmente eu uso /etc/hosts
e coloco o host absoluto assim:
127.0.0.1 unix.stackexchange.com
127.0.0.1 www.unix.stackexchange.com
Mas com a regex, seria mais fácil fazer algo assim
127.0.0.1 .*stackexchange.*
O que bloquearia tudo com stackexchange
na URL.
whois -h whois.radb.net 'dig +short stackoverflow.com'
for ip in 'whois -h whois.radb.net '!gAS25791' | grep /'
do
iptables -A -s $IP -j DROP
done