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
19 lines
418 B
Plaintext
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
|
|
}
|
|
}
|