1
0
Fork 0
mirror of https://github.com/mdlayher/homelab.git synced 2024-12-14 11:47:32 +00:00
mdlayher-homelab/nixos/routnerr-2/nftables.nix

335 lines
9.8 KiB
Nix
Raw Normal View History

{ lib, ... }:
let
2020-04-28 13:22:01 +00:00
vars = import ./lib/vars.nix;
2020-01-24 22:42:21 +00:00
# Port definitions.
ports = {
consrv = "2222";
dns = "53";
dhcp4_server = "67";
dhcp4_client = "68";
dhcp6_client = "546";
dhcp6_server = "547";
http = "80";
https = "443";
mdns = "5353";
plex = "32400";
ssh = "22";
unifi_device = "8080";
unifi_stun = "3478";
unifi_web = "8443";
wireguard = "51820";
};
2020-01-24 22:42:21 +00:00
# Produces a CSV list of interface names.
mkCSV = lib.concatMapStrings (ifi: "${ifi.name}, ");
# WAN interfaces.
metered_wans = with vars.interfaces; [ wwan0 ];
unmetered_wans = with vars.interfaces; [ wan0 ];
all_wans = with vars.interfaces; [ wan0 wwan0 ];
2020-01-24 22:42:21 +00:00
# LAN interfaces, segmented into trusted, limited, and untrusted groups.
metered_lans = with vars.interfaces; [ enp2s0 lan0 ];
trusted_lans = with vars.interfaces; [ enp2s0 lan0 lab0 wg0 ];
limited_lans = with vars.interfaces; [ guest0 ];
untrusted_lans = with vars.interfaces; [ iot0 ];
2020-01-24 22:42:21 +00:00
2020-02-05 20:07:05 +00:00
# ICMP filtering.
icmp_rules = ''
ip6 nexthdr icmpv6 icmpv6 type {
echo-request,
destination-unreachable,
packet-too-big,
time-exceeded,
parameter-problem,
nd-neighbor-solicit,
nd-neighbor-advert,
} counter accept
ip protocol icmp icmp type {
echo-request,
destination-unreachable,
time-exceeded,
parameter-problem,
} counter accept
'';
in {
networking.nftables = {
enable = true;
ruleset = ''
table inet filter {
# Incoming connections to router itself.
chain input {
type filter hook input priority 0
policy drop
ct state {established, related} counter accept
ct state invalid counter drop
# Malicious subnets.
ip saddr {
49.64.0.0/11,
218.92.0.0/16,
222.184.0.0/13,
} counter drop comment "malicious subnets"
2020-02-05 20:07:05 +00:00
# ICMPv4/6.
${icmp_rules}
# Allow all WANs to selectively communicate with the router.
iifname {
${mkCSV all_wans}
} jump input_wan
# Always allow router solicitation from any LAN.
ip6 nexthdr icmpv6 icmpv6 type nd-router-solicit counter accept
# Allow localhost and trusted LANs to communicate with router.
iifname {
lo,
2020-01-24 22:42:21 +00:00
${mkCSV trusted_lans}
} counter accept comment "localhost and trusted LANs to router"
2020-01-24 22:42:21 +00:00
# Limit the communication abilities of limited and untrusted LANs.
iifname {
2020-01-24 22:42:21 +00:00
${mkCSV limited_lans}
${mkCSV untrusted_lans}
} jump input_limited_untrusted
counter reject
}
chain input_wan {
# Default route via NDP.
ip6 nexthdr icmpv6 icmpv6 type nd-router-advert counter accept
# router TCP
tcp dport {
2020-01-23 19:47:42 +00:00
${ports.http},
${ports.https},
${ports.ssh},
} counter accept comment "router WAN TCP"
# router UDP
udp dport {
${ports.wireguard},
} counter accept comment "router WAN UDP"
# router DHCPv6 client
ip6 daddr fe80::/64 udp dport ${ports.dhcp6_client} udp sport ${ports.dhcp6_server} counter accept comment "router WAN DHCPv6"
counter reject
}
2020-01-24 22:42:21 +00:00
chain input_limited_untrusted {
# Handle some services early due to need for multicast/broadcast.
udp dport ${ports.dhcp4_server} udp sport ${ports.dhcp4_client} counter accept comment "router untrusted DHCPv4"
udp dport ${ports.mdns} udp sport ${ports.mdns} counter accept comment "router untrusted mDNS"
# Drop traffic trying to cross VLANs or broadcast.
2020-01-24 22:42:21 +00:00
${
lib.concatMapStrings (ifi: ''
iifname ${ifi.name} ip daddr != ${ifi.ipv4} counter drop comment "${ifi.name} traffic leaving IPv4 VLAN"
2020-01-24 22:42:21 +00:00
iifname ${ifi.name} ip6 daddr != {
${ifi.ipv6.lla},
${ifi.ipv6.ula},
} counter drop comment "${ifi.name} traffic leaving IPv6 VLAN"
'') (limited_lans ++ untrusted_lans)
}
# Allow only necessary router-provided services.
tcp dport {
${ports.dns},
} counter accept comment "router untrusted TCP"
udp dport {
${ports.dns},
} counter accept comment "router untrusted UDP"
counter drop
}
chain output {
type filter hook output priority 0
policy accept
counter accept
}
chain forward {
type filter hook forward priority 0
policy drop
# Untrusted/limited LANs to trusted LANs.
iifname {
${mkCSV limited_lans}
${mkCSV untrusted_lans}
} oifname {
${mkCSV trusted_lans}
} jump forward_limited_untrusted_lan_trusted_lan
# We still want to allow limited/untrusted LANs to have working ICMP
# to the internet as a whole, just not to any trusted LANs.
2020-02-05 20:07:05 +00:00
${icmp_rules}
# Forwarding between different interface groups.
# Trusted source LANs.
iifname {
${mkCSV trusted_lans}
} oifname {
${mkCSV unmetered_wans}
} counter accept comment "Allow trusted LANs to unmetered WANs";
# Forward certain trusted LAN traffic to metered WANs.
iifname {
${mkCSV metered_lans}
} oifname {
${mkCSV metered_wans}
} counter accept comment "trusted LAN devices to metered WANs"
iifname {
2020-01-24 22:42:21 +00:00
${mkCSV trusted_lans}
} oifname {
${mkCSV trusted_lans},
${mkCSV limited_lans},
${mkCSV untrusted_lans},
} counter accept comment "Allow trusted LANs to reach all LANs";
# Limited/guest LANs to WAN.
iifname {
2020-01-24 22:42:21 +00:00
${mkCSV limited_lans}
${mkCSV untrusted_lans}
} oifname {
${mkCSV unmetered_wans}
} counter accept comment "Allow limited LANs to unmetered WANs";
# All WANs to trusted LANs.
iifname {
${mkCSV all_wans}
} oifname {
2020-01-24 22:42:21 +00:00
${mkCSV trusted_lans}
} jump forward_wan_trusted_lan
# Unmetered WANs only to limited/untrusted LANs.
iifname {
${mkCSV unmetered_wans}
} oifname {
2020-01-24 22:42:21 +00:00
${mkCSV limited_lans}
${mkCSV untrusted_lans}
} jump forward_wan_limited_untrusted_lan
counter reject
}
chain forward_limited_untrusted_lan_trusted_lan {
# Only allow established connections from trusted LANs.
ct state {established, related} counter accept
ct state invalid counter drop
counter drop
}
chain forward_wan_trusted_lan {
ct state {established, related} counter accept
ct state invalid counter drop
# SSH for internal machines.
ip6 daddr {
${
lib.concatMapStrings (host: "${host.ipv6.gua}, ")
vars.hosts.servers
}
} tcp dport {${ports.ssh}, ${ports.consrv}} counter accept comment "IPv6 SSH"
# Plex running on server.
ip daddr ${vars.server_ipv4} tcp dport ${ports.plex} counter accept comment "server IPv4 Plex"
ip6 daddr ${vars.server_ipv6} tcp dport ${ports.plex} counter accept comment "server IPv6 Plex"
# Remote site access to UniFi controller running on server.
#
# TODO: template these values out.
ip saddr 98.209.181.132 tcp dport {${ports.unifi_device}, ${ports.unifi_web}} counter accept comment "server TCPv4 UniFi"
ip saddr 98.209.181.132 udp dport ${ports.unifi_stun} counter accept comment "server UDPv4 UniFi"
ip6 saddr {
2001:558:6007:72:9ee:4b74:e017:875b/128,
2601:405:8500:f600::/64,
} ip6 daddr ${vars.server_ipv6} tcp dport {${ports.unifi_device}, ${ports.unifi_web}} counter accept comment "server TCPv6 UniFi"
ip6 saddr {
2001:558:6007:72:9ee:4b74:e017:875b/128,
2601:405:8500:f600::/64,
} ip6 daddr ${vars.server_ipv6} udp dport ${ports.unifi_stun} counter accept comment "server UDPv6 UniFi"
counter reject
}
2020-01-24 22:42:21 +00:00
chain forward_wan_limited_untrusted_lan {
ct state {established, related} counter accept
ct state invalid counter drop
counter reject
}
}
table ip nat {
chain prerouting {
type nat hook prerouting priority 0
# NAT IPv4 to all WANs.
iifname {
${mkCSV all_wans}
} jump prerouting_wans
accept
}
chain prerouting_wans {
tcp dport {
${ports.plex},
${ports.unifi_device},
${ports.unifi_web},
} dnat ${vars.server_ipv4} comment "server TCPv4 DNAT"
udp dport {
${ports.unifi_stun},
} dnat ${vars.server_ipv4} comment "server UDPv4 DNAT"
udp dport {
${ports.dns},
} redirect to ${ports.wireguard} comment "router IPv4 WireGuard DNAT"
accept
}
chain postrouting {
type nat hook postrouting priority 0
# Masquerade IPv4 to all WANs.
oifname {
${mkCSV all_wans}
} masquerade
}
}
table ip6 nat {
chain prerouting {
type nat hook prerouting priority 0
# NAT WireGuard alternate port IPv6 from all WANs.
iifname {
${mkCSV all_wans}
} udp dport {
${ports.dns},
} redirect to ${ports.wireguard} comment "router IPv6 WireGuard DNAT"
accept
}
}
'';
};
}