firewall/sisr1/tp07/files_firewall/current_ruleset_v1.nft

14 lines
350 B
Plaintext

table ip ipfilter {
chain routing {
type filter hook forward priority filter; policy accept;
icmp type echo-request iif { "enp0s3", "enp0s8" } 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 { "enp0s3", "enp0s8" } drop
}
}