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.
24 lines
335 B
24 lines
335 B
#! /sbin/nft -f
|
|
|
|
table inet firewall {
|
|
|
|
# Définition de la zone Adhérents
|
|
|
|
set z_admin {
|
|
type ipv4_addr;
|
|
flags interval
|
|
elements = {
|
|
# Si l'on souhaite ajouter des ranges d'ip c'est ici
|
|
10.7.0.0/24,
|
|
}
|
|
}
|
|
|
|
chain to_admin {
|
|
# On devrait toujours pouvoir contacter un admin :)
|
|
accept;
|
|
}
|
|
|
|
chain from_admin {
|
|
}
|
|
|
|
}
|
|
|