]> git.donarmstrong.com Git - dsa-puppet.git/commitdiff
ferm: always allow proto 41
authorPeter Palfrader <peter@palfrader.org>
Sat, 29 May 2010 09:49:29 +0000 (11:49 +0200)
committerPeter Palfrader <peter@palfrader.org>
Sat, 29 May 2010 09:49:29 +0000 (11:49 +0200)
modules/ferm/files/ferm.conf

index b5448b07a718827e7a004c2a89687054734678a9..5f6e159f67145ba6119fb0bd85989921791869bc 100644 (file)
@@ -45,6 +45,11 @@ domain (ip ip6) {
                       mod state state (ESTABLISHED RELATED) ACCEPT;
                       interface lo ACCEPT;
                       proto icmp ACCEPT;
+                      # some of our hosts (e.g. villa and lobos) do ipv6 via tunnels (proto 41)
+                      # this requires we allow proto ipv6 to work in all cases.
+                      # without this, ipv6 connectivity only works once the host itself
+                      # created some ipv6 connectivity to some place.
+                      proto ipv6 ACCEPT;
                       mod state state (INVALID) DROP;
               }
         }
@@ -58,3 +63,4 @@ domain (ip ip6) {
                 jump log_or_drop;
         }
 }
+# vim:set et: