Browse Source

Fix ferm default config (ACCEPT all packets from lo with IPv6)

Emmanuel Bouthenot 10 years ago
parent
commit
4e23e65cdd
1 changed files with 3 additions and 0 deletions
  1. 3 0
      roles/common/templates/ferm/ferm.conf.j2

+ 3 - 0
roles/common/templates/ferm/ferm.conf.j2

@@ -59,6 +59,9 @@ domain ip6 table filter {
         mod state state INVALID DROP;
         mod state state (ESTABLISHED RELATED) ACCEPT;
 
+        # allow local packet
+        interface lo ACCEPT;
+
         # allow ICMP (for neighbor solicitation, like ARP for IPv4)
         proto ipv6-icmp ACCEPT;