Blocco Cina con ipset
Non è possibile aggiungere manualmente alcune migliaia di indirizzi IP ai tuoi iptables e anche farlo automaticamente è una cattiva idea perché può causare un sacco di carico della CPU (o almeno così ho letto). Invece possiamo usare ipset che è progettato per questo genere di cose. ipset gestisce grandi elenchi di indirizzi IP; basta creare un elenco e quindi dire a iptables di usare quell'elenco in una regola.
Nota; Presumo che tutto quanto segue sia fatto come root. Regola di conseguenza se il tuo sistema è basato su sudo.
apt-get install ipset
Successivamente, ho scritto un piccolo script di Bash per fare tutto il lavoro, che dovresti essere in grado di capire dai commenti in esso. Crea un file:
nano /etc/block-china.sh
Ecco cosa vuoi incollare:
# Create the ipset list
ipset -N china hash:net
# remove any old list that might exist from previous runs of this script
rm cn.zone
# Pull the latest IP set for China
wget -P . http://www.ipdeny.com/ipblocks/data/countries/cn.zone
# Add each IP address from the downloaded list into the ipset 'china'
for i in $(cat /etc/cn.zone ); do ipset -A china $i; done
# Restore iptables
/sbin/iptables-restore < /etc/iptables.firewall.rules
Salva il file. Renderlo eseguibile:
chmod +x /etc/block-china.sh
Questo non ha ancora fatto nulla, ma lo farà tra un minuto quando eseguiremo la sceneggiatura. Innanzitutto, dobbiamo aggiungere una regola in iptables che faccia riferimento a questo nuovo elenco ipset definito dallo script sopra:
nano /etc/iptables.firewall.rules
Aggiungi la seguente riga:
-A INPUT -p tcp -m set --match-set china src -j DROP
Salva il file. Per essere chiari, il mio completo iptables.firewall.rules ora assomiglia a questo:
*filter
# Allow all loopback (lo0) traffic and drop all traffic to 127/8 that doesn't use lo0
-A INPUT -i lo -j ACCEPT
-A INPUT -d 127.0.0.0/8 -j REJECT
# Accept all established inbound connections
-A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
# Block anything from China
# These rules are pulled from ipset's china list
# The source file is at /etc/cn.zone (which in turn is generated by a shell script at /etc/block-china.sh )
-A INPUT -p tcp -m set --match-set china src -j DROP
# Allow all outbound traffic - you can modify this to only allow certain traffic
-A OUTPUT -j ACCEPT
# Allow HTTP and HTTPS connections from anywhere (the normal ports for websites and SSL).
-A INPUT -p tcp --dport 80 -j ACCEPT
-A INPUT -p tcp --dport 443 -j ACCEPT
# Allow SSH connections
#
# The -dport number should be the same port number you set in sshd_config
#
-A INPUT -p tcp -m state --state NEW --dport 22 -j ACCEPT
# Allow ping
-A INPUT -p icmp -j ACCEPT
# Log iptables denied calls
-A INPUT -m limit --limit 5/min -j LOG --log-prefix "iptables denied: " --log-level 7
# Drop all other inbound - default deny unless explicitly allowed policy
-A INPUT -j DROP
-A FORWARD -j DROP
COMMIT
In questo momento, nulla è cambiato con il server perché non sono state applicate nuove regole; per fare ciò, eseguire lo script block-china.sh:
/etc/block-china.sh
Questo dovrebbe mostrare un po 'di output in quanto estrae un nuovo elenco di IP basati su cinese e quindi, dopo alcuni secondi, verrà completato e tornerà al prompt dei comandi.
Per verificare se ha funzionato, eseguire:
iptables -L
Ora dovresti vedere una nuova regola che blocca la Cina - l'output dovrebbe assomigliare a questo:
Chain INPUT (policy ACCEPT)
target prot opt source destination
ACCEPT all -- anywhere anywhere
REJECT all -- anywhere loopback/8 reject-with icmp-port-unreachable
ACCEPT all -- anywhere anywhere state RELATED,ESTABLISHED
DROP tcp -- anywhere anywhere match-set china src
ACCEPT tcp -- anywhere anywhere tcp dpt:http
ACCEPT tcp -- anywhere anywhere tcp dpt:https
ACCEPT tcp -- anywhere anywhere state NEW tcp dpt:ssh
ACCEPT icmp -- anywhere anywhere
LOG all -- anywhere anywhere limit: avg 5/min burst 5 LOG level debug prefix "iptables denied: "
DROP all -- anywhere anywhere
Chain FORWARD (policy ACCEPT)
target prot opt source destination
DROP all -- anywhere anywhere
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
ACCEPT all -- anywhere anywhere
Quasi fatto! Funziona e continuerà a funzionare sui riavvii. Tuttavia, gli indirizzi IP cambiano e tale elenco diventerà obsoleto nel tempo. Se vuoi estrarre e applicare un elenco aggiornato di IP puoi semplicemente eseguire nuovamente lo script block-china.sh.
Possiamo anche impostare la macchina per farlo automaticamente tramite un processo cron:
crontab -e
Aggiungi una linea come questa:
* 5 * * * /etc/block-china.sh
Questo funzionerà /etc/block-china.sh ogni giorno alle 5:00. L'utente che esegue lo script dovrà essere root o avere i privilegi di root.
fonte