summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/simple-firewall.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/modules/simple-firewall.nix b/modules/simple-firewall.nix
index 2585a5d..f2b4405 100644
--- a/modules/simple-firewall.nix
+++ b/modules/simple-firewall.nix
@@ -24,6 +24,7 @@ in
config = lib.mkIf cfg.enable {
networking.firewall.enable = lib.mkForce false;
+ boot.blacklistedKernelModules = ["ip_tables"];
networking.nftables.enable = true;
networking.nftables.ruleset =
@@ -51,13 +52,13 @@ in
ct state {established, related} accept
- ip protocol icmp limit rate 4/second counter accept
- ip6 nexthdr ipv6-icmp limit rate 4/second counter accept
+ ip protocol icmp limit rate 4/second counter name icmp-allowed accept
+ ip6 nexthdr ipv6-icmp limit rate 4/second counter name icmp6-allowed accept
- tcp dport @allowed_tcp_ports counter accept
- udp dport @allowed_udp_ports counter accept
+ tcp dport @allowed_tcp_ports counter name tcp-allowed accept
+ udp dport @allowed_udp_ports counter name udp-allowed accept
- counter drop
+ counter name dropped drop
}
chain output {