2023-02-11 03:11:47 -05:00
|
|
|
#!/usr/bin/nft -f
|
|
|
|
|
|
|
|
flush ruleset
|
|
|
|
|
|
|
|
table inet filter {
|
|
|
|
chain prerouting-raw {
|
|
|
|
type filter hook prerouting priority raw
|
|
|
|
|
2024-03-23 11:18:02 -04:00
|
|
|
# drop packets without a reverse path (strict reverse path filtering)
|
|
|
|
fib saddr . iif oif missing counter drop
|
|
|
|
|
2023-02-11 03:11:47 -05:00
|
|
|
iif lo notrack accept
|
2024-03-24 13:27:55 -04:00
|
|
|
|
|
|
|
# drop packets to address not configured on incoming interface (strong host model)
|
|
|
|
fib daddr . iif type != { local, broadcast, multicast } counter drop
|
|
|
|
|
2024-03-24 16:23:54 -04:00
|
|
|
tcp dport { 22, 80, 443, 7275 } notrack accept
|
2023-06-10 22:14:54 -04:00
|
|
|
udp dport 123 notrack accept
|
2024-03-24 16:23:54 -04:00
|
|
|
meta l4proto { icmp, ipv6-icmp } notrack accept
|
2023-02-11 03:11:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
chain output-raw {
|
|
|
|
type filter hook output priority raw
|
|
|
|
|
|
|
|
oif lo notrack accept
|
2024-03-24 16:23:54 -04:00
|
|
|
tcp sport { 22, 80, 443, 7275 } notrack accept
|
2023-06-10 22:14:54 -04:00
|
|
|
udp sport 123 notrack accept
|
2024-03-24 16:23:54 -04:00
|
|
|
meta l4proto { icmp, ipv6-icmp } notrack accept
|
2023-02-11 03:11:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
chain input {
|
|
|
|
type filter hook input priority filter
|
|
|
|
policy drop
|
|
|
|
|
|
|
|
iif lo accept
|
2024-03-24 16:23:54 -04:00
|
|
|
tcp dport { 22, 80, 443, 7275 } accept
|
2024-03-24 15:22:00 -04:00
|
|
|
udp dport 123 accept
|
2024-03-24 16:23:54 -04:00
|
|
|
meta l4proto { icmp, ipv6-icmp } accept
|
2023-02-11 03:11:47 -05:00
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
oif lo goto output-internal
|
2024-03-24 16:23:54 -04:00
|
|
|
skuid != { root, systemd-network, unbound, chrony, http } counter goto output-reject
|
2023-02-11 03:11:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
chain output-internal {
|
2024-03-24 16:23:54 -04:00
|
|
|
skuid unbound meta l4proto { tcp, udp } th sport 53 th dport >= 1024 accept
|
|
|
|
skuid { chrony, http } meta l4proto { tcp, udp } th sport >= 1024 th dport 53 accept
|
2023-02-11 03:11:47 -05:00
|
|
|
|
|
|
|
skuid != root counter goto output-reject
|
|
|
|
accept
|
|
|
|
}
|
|
|
|
|
|
|
|
chain output-reject {
|
|
|
|
meta l4proto udp reject
|
|
|
|
meta l4proto tcp reject with tcp reset
|
|
|
|
reject
|
|
|
|
}
|
|
|
|
}
|