projects
/
mirror
/
dsa-puppet.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9c4c3f3
)
ferm: always allow proto 41
author
Peter Palfrader
<peter@palfrader.org>
Sat, 29 May 2010 09:49:29 +0000
(11:49 +0200)
committer
Peter Palfrader
<peter@palfrader.org>
Sat, 29 May 2010 09:49:29 +0000
(11:49 +0200)
modules/ferm/files/ferm.conf
patch
|
blob
|
history
diff --git
a/modules/ferm/files/ferm.conf
b/modules/ferm/files/ferm.conf
index
b5448b0
..
5f6e159
100644
(file)
--- a/
modules/ferm/files/ferm.conf
+++ b/
modules/ferm/files/ferm.conf
@@
-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: