You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
267 B

table inet firewall {
chain global {
# On accepte les connexions déjà établies
ct state established,related accept
# Gestion de l'ICMP :
# On empêche le ping flood
icmp type echo-request limit rate over 50/second drop;
ip protocol icmp accept;
}
}