Quellcode durchsuchen

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

Emmanuel Bouthenot vor 10 Jahren
Ursprung
Commit
4e23e65cdd
1 geänderte Dateien mit 3 neuen und 0 gelöschten Zeilen
  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;