Salut je souhaite rejeter toutes les tentatives de connexions de certaines IP sur RED. Comme j'y pige pas grd chose à Linux je me suis aidé d'un convertisseur qui m'a sortit les lignes de commandes suivante:
-------------
#!/bin/bash
# Create special FILTRE chain
iptables -t filter -N FILTRE
iptables -t filter -F FILTRE
# Create the logdrop chain to log & drop a packet
iptables -t filter -N FILTRE_LOGDROP
iptables -t filter -F FILTRE_LOGDROP
iptables -t filter -A FILTRE_LOGDROP -j LOG --log-prefix "FILTRE"
iptables -t filter -A FILTRE_LOGDROP -j DROP
# Jump to the special MLD chain at the end of the INPUT chain (commented out)
#iptables -t nat -A INPUT -j FILTRE
# List of ip ranges to ban
iptables -t filter -I INPUT 1 -s 212.40.1.135 -j FILTRE_LOGDROP
iptables -t filter -I INPUT 1 -s 157.86.113.4 -j FILTRE_LOGDROP
---------
La question est: j'en fais quoi de ce truc la pour que ca marche? Je l'enregistre dans un fichier? Je le met dans rc.firewall?
Quelqu'un a une idée?