2023-02-11 03:11:47 -05: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,
|
|
|
|
51.222.159.116, # 0.grapheneos.network
|
|
|
|
}
|
|
|
|
|
|
|
|
define ip6-allowlist-ssh = {
|
|
|
|
::1,
|
|
|
|
2607:5300:205:200::2584, # 0.grapheneos.network
|
|
|
|
}
|
|
|
|
|
|
|
|
set ip-connlimit-ssh {
|
|
|
|
type ipv4_addr
|
|
|
|
flags dynamic
|
|
|
|
}
|
|
|
|
|
|
|
|
set ip6-connlimit-ssh {
|
|
|
|
type ipv6_addr
|
|
|
|
flags dynamic
|
|
|
|
}
|
|
|
|
|
2024-04-09 20:29:11 -04:00
|
|
|
set ip-connlimit-main {
|
2024-03-30 20:40:11 -04:00
|
|
|
type ipv4_addr
|
|
|
|
flags dynamic
|
|
|
|
}
|
|
|
|
|
2024-04-09 20:29:11 -04:00
|
|
|
set ip6-connlimit-main {
|
2024-03-30 20:40:11 -04:00
|
|
|
type ipv6_addr
|
|
|
|
flags dynamic
|
|
|
|
}
|
|
|
|
|
2023-02-11 03:11:47 -05: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
|
|
|
|
|
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)
|
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-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, 80, 443, 7275 } tcp flags syn limit rate 1024/second burst 128 packets accept
|
2024-04-10 12:54:58 -04:00
|
|
|
tcp dport { 22, 80, 443, 7275 } tcp flags syn counter notrack accept
|
2024-04-11 09:56:30 -04:00
|
|
|
|
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 input {
|
|
|
|
type filter hook input priority filter
|
|
|
|
policy drop
|
|
|
|
|
2024-03-28 14:32:44 -04:00
|
|
|
iif lo goto input-loopback
|
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
|
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-10 09:29:56 -04:00
|
|
|
ct state vmap { new : goto input-new, established : goto input-established, related : accept }
|
2023-02-11 03:11:47 -05: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-04-10 12:54:58 -04:00
|
|
|
tcp dport { 80, 443, 7275 } ip saddr @ip-connlimit-main counter reject with tcp reset
|
|
|
|
tcp dport { 80, 443, 7275 } ip6 saddr and ffff:ffff:ffff:ffff:: @ip6-connlimit-main counter reject with tcp reset
|
|
|
|
tcp dport { 22, 80, 443, 7275 } synproxy mss 1460 wscale 7 timestamp sack-perm
|
2023-02-11 03:11:47 -05:00
|
|
|
}
|
|
|
|
|
2024-04-10 09:29:56 -04:00
|
|
|
chain input-new {
|
2024-04-10 12:54:58 -04:00
|
|
|
tcp dport != { 22, 80, 443, 7275 } goto graceful-reject
|
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
|
2024-04-10 12:54:58 -04:00
|
|
|
tcp dport { 80, 443, 7275 } ip saddr @ip-connlimit-main counter reject with tcp reset
|
|
|
|
tcp dport { 80, 443, 7275 } ip6 saddr and ffff:ffff:ffff:ffff:: @ip6-connlimit-main counter reject with tcp reset
|
2024-04-10 09:29:56 -04:00
|
|
|
accept
|
|
|
|
}
|
|
|
|
|
|
|
|
chain input-established {
|
|
|
|
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
|
2024-04-10 12:54:58 -04:00
|
|
|
tcp dport { 80, 443, 7275 } add @ip-connlimit-main { ip saddr ct count over 32 } counter reject with tcp reset
|
|
|
|
tcp dport { 80, 443, 7275 } add @ip6-connlimit-main { ip6 saddr and ffff:ffff:ffff:ffff:: ct count over 32 } counter reject with tcp reset
|
2024-04-10 09:29:56 -04:00
|
|
|
ct mark set 0x1 accept
|
|
|
|
}
|
|
|
|
|
2024-03-28 14:32:44 -04:00
|
|
|
chain input-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
|
2024-04-10 12:54:58 -04:00
|
|
|
tcp dport { 80, 443, 7275 } add @ip-connlimit-main { ip saddr ct count over 32 } counter reject with tcp reset
|
|
|
|
tcp dport { 80, 443, 7275 } add @ip6-connlimit-main { ip6 saddr and ffff:ffff:ffff:ffff:: ct count over 32 } 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
|
|
|
}
|
|
|
|
|
2023-02-11 03:11:47 -05: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 123 notrack accept
|
|
|
|
meta l4proto { icmp, ipv6-icmp } notrack accept
|
|
|
|
}
|
|
|
|
|
2023-02-11 03:11:47 -05: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 } counter goto graceful-reject
|
2023-02-11 03:11:47 -05: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, http } meta l4proto { tcp, udp } th sport >= 1024 th dport 53 accept
|
2023-02-11 03:11:47 -05:00
|
|
|
|
2024-03-27 12:31:09 -04:00
|
|
|
skuid != root counter goto graceful-reject
|
2023-02-11 03:11:47 -05:00
|
|
|
accept
|
|
|
|
}
|
|
|
|
|
2024-03-27 12:31:09 -04:00
|
|
|
chain graceful-reject {
|
2023-02-11 03:11:47 -05:00
|
|
|
meta l4proto udp reject
|
|
|
|
meta l4proto tcp reject with tcp reset
|
|
|
|
reject
|
|
|
|
}
|
|
|
|
}
|