graphene-os-server-infrastr.../nftables-dns.conf
2022-06-30 07:02:34 -04:00

60 lines
1.3 KiB
Plaintext

#!/usr/bin/nft -f
flush ruleset
table inet filter {
chain prerouting-raw {
type filter hook prerouting priority raw
iif lo notrack
udp dport 53 notrack
tcp dport {22, 53} notrack
ip protocol icmp notrack
meta l4proto ipv6-icmp notrack
}
chain output-raw {
type filter hook output priority raw
oif lo notrack
udp sport 53 notrack
tcp sport {22, 53} notrack
ip protocol icmp notrack
meta l4proto ipv6-icmp notrack
}
chain input {
type filter hook input priority filter
policy drop
iif lo accept
udp dport 53 accept
tcp dport {22, 53} accept
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, powerdns} counter goto output-reject
}
chain output-reject {
meta l4proto udp reject
meta l4proto tcp reject with tcp reset
reject
}
}