2023-10-26 21:34:06 +01:00
|
|
|
#!/usr/sbin/nft -f
|
|
|
|
|
|
|
|
flush ruleset
|
|
|
|
|
|
|
|
table inet filter {
|
|
|
|
chain input {
|
|
|
|
type filter hook input priority 0
|
|
|
|
policy drop
|
|
|
|
|
|
|
|
ct state {established, related} counter accept
|
|
|
|
|
|
|
|
iif lo accept
|
|
|
|
|
2023-11-05 21:48:25 +00:00
|
|
|
# Allow ICMP (pings)
|
|
|
|
ip protocol icmp accept
|
|
|
|
meta l4proto icmpv6 accept
|
|
|
|
|
2023-10-26 21:34:06 +01:00
|
|
|
tcp dport {http, https, {{ ssh_port }}, 8443, 8448} accept
|
2023-11-03 18:06:36 +00:00
|
|
|
|
2024-02-01 19:41:47 +00:00
|
|
|
# Allow Tailscale
|
|
|
|
udp dport {{ tailscale_port }} accept;
|
2023-10-26 21:34:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
chain POSTROUTING {
|
|
|
|
type nat hook postrouting priority srcnat
|
|
|
|
policy accept
|
|
|
|
|
|
|
|
# NAT - because the proxmox machines may not have routes back
|
2024-03-28 23:30:24 +00:00
|
|
|
ip saddr {{ tailscale_cidr }} counter masquerade
|
2023-10-26 21:34:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
chain FORWARD {
|
|
|
|
type filter hook forward priority mangle
|
|
|
|
policy drop
|
|
|
|
|
2024-07-14 21:40:52 +01:00
|
|
|
# Allow monitoring of Tailscale network
|
|
|
|
ip saddr {{ pve_hosts.forrest.ip }}/32 ip daddr {{ tailscale_cidr }} accept
|
2024-02-01 19:41:47 +00:00
|
|
|
|
2024-03-28 23:30:24 +00:00
|
|
|
# Allow Tailscale exit node
|
|
|
|
ip saddr {{ tailscale_cidr }} ip daddr 192.168.0.0/16 drop
|
|
|
|
ip saddr {{ tailscale_cidr }} accept
|
|
|
|
ip daddr {{ tailscale_cidr }} ct state related,established accept
|
2023-10-26 21:34:06 +01:00
|
|
|
}
|
|
|
|
}
|