From 64d871c0d9cc870b3a9aad81a34df465c8ffc211 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 11 Mar 2011 13:34:17 +0000 Subject: [PATCH] * Enable FTP connection tracking in the firewall. svn path=/nixos/trunk/; revision=26275 --- modules/services/networking/firewall.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/services/networking/firewall.nix b/modules/services/networking/firewall.nix index 287a2e472cd..a8dd253d70b 100644 --- a/modules/services/networking/firewall.nix +++ b/modules/services/networking/firewall.nix @@ -115,6 +115,8 @@ in environment.systemPackages = [ pkgs.iptables ]; + boot.kernelModules = [ "nf_conntrack_ftp" ]; + jobs.firewall = { startOn = "started network-interfaces";