2022-06-29 10:53:07 -04:00
|
|
|
#!/usr/bin/nft -f
|
|
|
|
|
|
|
|
flush ruleset
|
|
|
|
|
|
|
|
table inet filter {
|
2024-03-27 03:08:21 -04:00
|
|
|
define ip-allowlist-ssh = {
|
|
|
|
127.0.0.1,
|
|
|
|
}
|
|
|
|
|
|
|
|
define ip6-allowlist-ssh = {
|
|
|
|
::1,
|
|
|
|
}
|
|
|
|
|
|
|
|
set ip-connlimit-ssh {
|
|
|
|
type ipv4_addr
|
|
|
|
flags dynamic
|
|
|
|
}
|
|
|
|
|
|
|
|
set ip6-connlimit-ssh {
|
|
|
|
type ipv6_addr
|
|
|
|
flags dynamic
|
|
|
|
}
|
|
|
|
|
2022-06-29 10:53:07 -04:00
|
|
|
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
|
|
|
|
|
2022-07-21 17:31:16 -04: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-27 03:08:21 -04:00
|
|
|
tcp dport { 25, 80, 443, 465, 993 } notrack accept
|
|
|
|
tcp dport 22 tcp flags syn notrack accept
|
2024-03-24 16:23:54 -04:00
|
|
|
meta l4proto { icmp, ipv6-icmp } notrack accept
|
2022-06-29 10:53:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
chain output-raw {
|
|
|
|
type filter hook output priority raw
|
|
|
|
|
2022-07-21 17:31:16 -04:00
|
|
|
oif lo notrack accept
|
2024-03-27 03:08:21 -04:00
|
|
|
tcp sport { 25, 80, 443, 465, 993 } notrack accept
|
2024-03-24 16:23:54 -04:00
|
|
|
meta l4proto { icmp, ipv6-icmp } notrack accept
|
2022-06-29 10:53:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
chain input {
|
|
|
|
type filter hook input priority filter
|
|
|
|
policy drop
|
|
|
|
|
2024-03-28 14:32:44 -04:00
|
|
|
iif lo goto input-loopback
|
2024-03-27 03:08:21 -04:00
|
|
|
tcp dport { 25, 80, 443, 465, 993 } accept
|
2024-03-24 16:23:54 -04:00
|
|
|
meta l4proto { icmp, ipv6-icmp } accept
|
2024-03-27 03:08:21 -04:00
|
|
|
ct state vmap { established : accept, related : accept, new : goto graceful-reject }
|
2022-06-29 10:53:07 -04:00
|
|
|
|
2024-03-28 23:28:34 -04:00
|
|
|
tcp dport 22 ip saddr @ip-connlimit-ssh counter reject with tcp reset
|
|
|
|
tcp dport 22 ip6 saddr and ffff:ffff:ffff:ffff:ffff:: @ip6-connlimit-ssh counter reject with tcp reset
|
2024-03-27 03:08:21 -04:00
|
|
|
tcp dport 22 synproxy mss 1460 wscale 7 timestamp sack-perm
|
2022-06-29 10:53:07 -04:00
|
|
|
}
|
|
|
|
|
2024-03-28 14:32:44 -04:00
|
|
|
chain input-loopback {
|
2024-03-28 23:28:34 -04:00
|
|
|
tcp dport 22 tcp flags syn ip saddr != $ip-allowlist-ssh add @ip-connlimit-ssh { ip saddr ct count over 1 } counter reject with tcp reset
|
|
|
|
tcp dport 22 tcp flags syn ip6 saddr != $ip6-allowlist-ssh add @ip6-connlimit-ssh { ip6 saddr and ffff:ffff:ffff:ffff:ffff:: ct count over 1 } counter reject with tcp reset
|
2024-03-28 13:23:13 -04:00
|
|
|
accept
|
|
|
|
}
|
|
|
|
|
2022-06-29 10:53:07 -04:00
|
|
|
chain forward {
|
|
|
|
type filter hook forward priority filter
|
|
|
|
policy drop
|
|
|
|
}
|
|
|
|
|
|
|
|
chain output {
|
|
|
|
type filter hook output priority filter
|
|
|
|
|
2024-03-28 14:32:44 -04:00
|
|
|
oif lo goto output-loopback
|
2024-03-27 12:31:09 -04:00
|
|
|
skuid != { root, systemd-network, unbound, chrony, postfix, dovecot, dovenull, http } counter goto graceful-reject
|
2022-06-29 20:18:51 -04:00
|
|
|
}
|
|
|
|
|
2024-03-28 14:32:44 -04:00
|
|
|
chain output-loopback {
|
2024-03-24 16:23:54 -04:00
|
|
|
skuid unbound meta l4proto { tcp, udp } th sport 53 th dport >= 1024 accept
|
|
|
|
skuid { chrony, postfix, opendkim, opendmarc, policyd-spf } meta l4proto { tcp, udp } th sport >= 1024 th dport 53 accept
|
2022-07-25 20:03:09 -04:00
|
|
|
|
2024-03-27 12:31:09 -04:00
|
|
|
skuid != root counter goto graceful-reject
|
2022-07-25 20:03:09 -04:00
|
|
|
accept
|
|
|
|
}
|
|
|
|
|
2024-03-27 12:31:09 -04:00
|
|
|
chain graceful-reject {
|
2022-06-29 20:18:51 -04:00
|
|
|
meta l4proto udp reject
|
|
|
|
meta l4proto tcp reject with tcp reset
|
|
|
|
reject
|
2022-06-29 10:53:07 -04:00
|
|
|
}
|
|
|
|
}
|