move INVALID handler after ICMP handler due to ip6tables bug
authorStephen Gran <steve@lobefin.net>
Sat, 20 Feb 2010 20:38:36 +0000 (20:38 +0000)
committerStephen Gran <steve@lobefin.net>
Sat, 20 Feb 2010 20:38:58 +0000 (20:38 +0000)
Signed-off-by: Stephen Gran <steve@lobefin.net>
modules/ferm/files/ferm.conf

index 5596020..166d517 100644 (file)
@@ -10,8 +10,8 @@ domain (ip ip6) {
                policy DROP;
                mod state state (ESTABLISHED RELATED) ACCEPT;
                interface lo ACCEPT;
-               mod state state (INVALID) DROP;
                proto icmp ACCEPT;
+               proto (tcp udp) mod state state (INVALID) DROP;
        }
 }