2022-06-29 10:53:07 -04:00
|
|
|
#!/usr/bin/nft -f
|
|
|
|
|
|
|
|
flush ruleset
|
|
|
|
|
|
|
|
table inet filter {
|
|
|
|
chain prerouting-raw {
|
|
|
|
type filter hook prerouting priority raw
|
|
|
|
|
|
|
|
iif lo notrack
|
2022-06-30 06:58:20 -04:00
|
|
|
tcp dport {22, 80, 443} notrack
|
2022-06-29 10:53:07 -04:00
|
|
|
ip protocol icmp notrack
|
|
|
|
meta l4proto ipv6-icmp notrack
|
|
|
|
}
|
|
|
|
|
|
|
|
chain output-raw {
|
|
|
|
type filter hook output priority raw
|
|
|
|
|
|
|
|
oif lo notrack
|
2022-06-30 06:58:20 -04:00
|
|
|
tcp sport {22, 80, 443} notrack
|
2022-06-29 10:53:07 -04:00
|
|
|
ip protocol icmp notrack
|
|
|
|
meta l4proto ipv6-icmp notrack
|
|
|
|
}
|
|
|
|
|
|
|
|
chain input {
|
|
|
|
type filter hook input priority filter
|
|
|
|
policy drop
|
|
|
|
|
|
|
|
iif lo accept
|
2022-06-30 06:58:20 -04:00
|
|
|
tcp dport {22, 80, 443} accept
|
2022-06-29 10:53:07 -04:00
|
|
|
ip protocol icmp accept
|
|
|
|
meta l4proto ipv6-icmp accept
|
|
|
|
|
|
|
|
ct state vmap { invalid : drop, established : accept, related : accept }
|
|
|
|
|
|
|
|
meta l4proto udp reject
|
|
|
|
meta l4proto tcp reject with tcp reset
|
|
|
|
reject
|
|
|
|
}
|
|
|
|
|
|
|
|
chain forward {
|
|
|
|
type filter hook forward priority filter
|
|
|
|
policy drop
|
|
|
|
}
|
|
|
|
|
|
|
|
chain output {
|
|
|
|
type filter hook output priority filter
|
|
|
|
|
2022-06-29 20:18:51 -04:00
|
|
|
skuid != {root, systemd-network, chrony, unbound, http, flarum} counter goto output-reject
|
|
|
|
}
|
|
|
|
|
|
|
|
chain output-reject {
|
|
|
|
meta l4proto udp reject
|
|
|
|
meta l4proto tcp reject with tcp reset
|
|
|
|
reject
|
2022-06-29 10:53:07 -04:00
|
|
|
}
|
|
|
|
}
|