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,
|
|
|
|
198.98.53.141, # 0.ns2.grapheneos.org
|
|
|
|
}
|
|
|
|
|
|
|
|
define ip6-allowlist-ssh = {
|
|
|
|
::1,
|
|
|
|
2605:6400:10:102e:95bc:89ef:2e7f:49bb, # 0.ns2.grapheneos.org
|
|
|
|
}
|
|
|
|
|
|
|
|
set ip-connlimit-ssh {
|
|
|
|
type ipv4_addr
|
|
|
|
flags dynamic
|
|
|
|
}
|
|
|
|
|
|
|
|
set ip6-connlimit-ssh {
|
|
|
|
type ipv6_addr
|
|
|
|
flags dynamic
|
|
|
|
}
|
|
|
|
|
2024-03-31 22:07:58 -04:00
|
|
|
set ip-connlimit-main {
|
2024-03-28 10:34:59 -04:00
|
|
|
type ipv4_addr
|
|
|
|
flags dynamic
|
|
|
|
}
|
|
|
|
|
2024-03-31 22:07:58 -04:00
|
|
|
set ip6-connlimit-main {
|
2024-03-28 10:34:59 -04:00
|
|
|
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)
|
2024-04-11 09:49:50 -04:00
|
|
|
#
|
|
|
|
# ordered after accepting loopback to permit using external IPs via loopback
|
2024-03-24 13:27:55 -04:00
|
|
|
fib daddr . iif type != { local, broadcast, multicast } counter drop
|
|
|
|
|
2024-03-24 15:22:00 -04:00
|
|
|
# reject SSH packets via anycast IP
|
|
|
|
tcp dport 22 ip daddr 198.251.90.93 reject with tcp reset
|
|
|
|
|
2022-07-21 17:31:16 -04:00
|
|
|
udp dport 53 notrack accept
|
2024-04-11 09:56:30 -04:00
|
|
|
|
|
|
|
# handle new TCP connections beyond rate limit via synproxy to avoid conntrack table exhaustion
|
2024-04-10 15:02:25 -04:00
|
|
|
tcp dport { 22, 53, 80, 443, 853 } tcp flags syn limit rate 1024/second burst 128 packets accept
|
2024-04-10 09:29:56 -04:00
|
|
|
tcp dport { 22, 53, 80, 443, 853 } tcp flags syn counter notrack accept
|
2024-04-11 09:56:30 -04:00
|
|
|
|
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-04-11 11:49:22 -04:00
|
|
|
tcp dport { 22, 53, 80, 443, 853 } goto input-tcp-service
|
|
|
|
iif lo accept
|
2024-03-24 15:22:00 -04:00
|
|
|
udp dport 53 accept
|
2024-03-24 16:23:54 -04:00
|
|
|
meta l4proto { icmp, ipv6-icmp } accept
|
2024-04-11 11:49:22 -04:00
|
|
|
ct state vmap { new : goto graceful-reject, established : accept, related : accept }
|
|
|
|
}
|
|
|
|
|
|
|
|
chain input-tcp-service {
|
2024-04-11 11:59:19 -04:00
|
|
|
iif lo goto input-tcp-service-loopback
|
2024-04-11 10:19:39 -04:00
|
|
|
|
|
|
|
# for synproxy, SYN is untracked and first ACK is invalid which are handled via fallthrough
|
2024-04-11 11:59:19 -04:00
|
|
|
ct state vmap { new : goto input-tcp-service-new, established : goto input-tcp-service-established, related : accept }
|
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-31 22:07:58 -04:00
|
|
|
tcp dport { 53, 80, 443, 853 } ip saddr @ip-connlimit-main counter reject with tcp reset
|
|
|
|
tcp dport { 53, 80, 443, 853 } ip6 saddr and ffff:ffff:ffff:ffff:: @ip6-connlimit-main counter reject with tcp reset
|
2024-04-11 11:49:22 -04:00
|
|
|
synproxy mss 1460 wscale 7 timestamp sack-perm
|
2022-06-29 10:53:07 -04:00
|
|
|
}
|
|
|
|
|
2024-04-11 11:59:19 -04:00
|
|
|
chain input-tcp-service-new {
|
2024-04-10 09:29:56 -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
|
|
|
|
tcp dport { 53, 80, 443, 853 } ip saddr @ip-connlimit-main counter reject with tcp reset
|
|
|
|
tcp dport { 53, 80, 443, 853 } ip6 saddr and ffff:ffff:ffff:ffff:: @ip6-connlimit-main counter reject with tcp reset
|
|
|
|
accept
|
|
|
|
}
|
|
|
|
|
2024-04-11 15:59:07 -04:00
|
|
|
# add connections established without synproxy to connection limit sets with limits enforced
|
2024-04-11 11:59:19 -04:00
|
|
|
chain input-tcp-service-established {
|
2024-04-10 09:29:56 -04:00
|
|
|
ct mark 0x1 accept
|
|
|
|
tcp dport 22 ip saddr != $ip-allowlist-ssh add @ip-connlimit-ssh { ip saddr ct count over 1 } counter reject with tcp reset
|
|
|
|
tcp dport 22 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
|
|
|
|
tcp dport { 53, 80, 443, 853 } add @ip-connlimit-main { ip saddr ct count over 16 } counter reject with tcp reset
|
|
|
|
tcp dport { 53, 80, 443, 853 } add @ip6-connlimit-main { ip6 saddr and ffff:ffff:ffff:ffff:: ct count over 16 } counter reject with tcp reset
|
|
|
|
ct mark set 0x1 accept
|
|
|
|
}
|
|
|
|
|
2024-04-11 15:59:07 -04:00
|
|
|
# add connections established with synproxy to connection limit sets with limits enforced
|
2024-04-11 11:59:19 -04:00
|
|
|
chain input-tcp-service-loopback {
|
2024-04-05 13:36:09 -04:00
|
|
|
tcp flags != syn accept
|
|
|
|
tcp dport 22 ip saddr != $ip-allowlist-ssh add @ip-connlimit-ssh { ip saddr ct count over 1 } counter reject with tcp reset
|
|
|
|
tcp dport 22 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
|
|
|
|
tcp dport { 53, 80, 443, 853 } add @ip-connlimit-main { ip saddr ct count over 16 } counter reject with tcp reset
|
|
|
|
tcp dport { 53, 80, 443, 853 } add @ip6-connlimit-main { ip6 saddr and ffff:ffff:ffff:ffff:: ct count over 16 } counter reject with tcp reset
|
2024-04-10 09:29:56 -04:00
|
|
|
ct mark set 0x1 accept
|
2024-03-28 13:23:13 -04:00
|
|
|
}
|
|
|
|
|
2022-06-29 10:53:07 -04:00
|
|
|
chain forward {
|
|
|
|
type filter hook forward priority filter
|
|
|
|
policy drop
|
|
|
|
}
|
|
|
|
|
2024-04-05 19:14:05 -04:00
|
|
|
chain output-raw {
|
|
|
|
type filter hook output priority raw
|
|
|
|
|
|
|
|
oif lo notrack accept
|
|
|
|
udp sport 53 notrack accept
|
|
|
|
meta l4proto { icmp, ipv6-icmp } notrack accept
|
|
|
|
}
|
|
|
|
|
2022-06-29 10:53:07 -04:00
|
|
|
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, http, powerdns, geoipupdate } 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, geoipupdate } meta l4proto { tcp, udp } th sport >= 1024 th dport 53 accept
|
2024-01-19 13:44:47 -05:00
|
|
|
|
|
|
|
skuid powerdns meta l4proto tcp th sport 54 th dport >= 1024 accept
|
2024-03-30 11:51:33 -04:00
|
|
|
skuid http meta l4proto tcp th sport >= 1024 th dport 54 accept
|
2022-07-25 20:03:09 -04:00
|
|
|
|
2023-11-04 22:50:37 -04:00
|
|
|
skuid powerdns meta l4proto tcp th sport 81 th dport >= 1024 accept
|
2023-02-14 01:19:19 -05: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
|
|
|
}
|
|
|
|
}
|