graphene-os-server-infrastr.../nftables-web.conf

57 lines
1.2 KiB
Plaintext
Raw Normal View History

2022-06-29 14:53:07 +00: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 10:58:20 +00:00
tcp dport {22, 80, 443} notrack
2022-06-29 14:53:07 +00: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 10:58:20 +00:00
tcp sport {22, 80, 443} notrack
2022-06-29 14:53:07 +00: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 10:58:20 +00:00
tcp dport {22, 80, 443} accept
2022-06-29 14:53:07 +00: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
skuid != {root, systemd-network, chrony, unbound, http} counter goto output-reject
}
chain output-reject {
meta l4proto udp reject
meta l4proto tcp reject with tcp reset
reject
2022-06-29 14:53:07 +00:00
}
}