Browse Source

Improve ferm configuration to make possible to add firewall rules per user

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

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

@@ -40,6 +40,16 @@ table filter {
         # connection tracking
         #mod state state INVALID DROP;
         mod state state (ESTABLISHED RELATED) ACCEPT;
+{% if firewall_private is defined %}
+{% for fwconf in firewall_private %}
+{% if fwconf.users is defined %}
+
+        # Private networks configuration
+        mod owner uid-owner ({{ fwconf.users | join(' ') }}) outerface {{ fwconf.interface }} ACCEPT;
+        outerface {{ fwconf.interface }} DROP;
+{% endif %}
+{% endfor %}
+{% endif %}
     }
 
     chain FORWARD {