Jarod Pauchet 97c5a05efa nouveau fichier : siotp/sisr1/TP7/scriptsnft/current_ruleset.nft
nouveau fichier : siotp/sisr1/TP7/scriptsnft/fw_part1.nft
	nouveau fichier : siotp/sisr1/TP7/scriptsnft/fw_part2.nft
	nouveau fichier : siotp/sisr1/TP7/scriptsnft/fw_part3.nft
	nouveau fichier : siotp/sisr1/TP7/scriptsnft/refresh_firewall.sh
2024-04-04 14:25:22 +02:00

19 lines
418 B
Plaintext

define netif = enp0s3
define dmzif = enp0s8
define lanif = enp0s9
table ip ipfilter {
chain routing {
type filter hook forward priority filter; policy accept;
icmp type echo-request iif { "$netif", "$dmzif" } drop
icmp type { echo-reply, echo-request } accept
drop
}
chain system_in {
type filter hook input priority filter; policy accept;
icmp type echo-request iif { "$netif", "$dmzif" } drop
}
}