diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-07-13 20:03:13 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-07-13 20:03:13 +0200 |
commit | 7ea74f239827728fbad0d120f3acf22857348ead (patch) | |
tree | 2c4550be5cd836017fb9a864f7955a27ad522ae0 | |
parent | 178257040866eae55d86be22643908ca60eb351f (diff) | |
parent | e25acda3d091dc07f512b0fd10e1d6b0d11cfc8e (diff) | |
download | infrastructure-7ea74f239827728fbad0d120f3acf22857348ead.tar.gz infrastructure-7ea74f239827728fbad0d120f3acf22857348ead.zip |
Merge branch 'feature/simpleiptables'
-rw-r--r-- | ansible/roles/network/templates/rules.v4.j2 | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/ansible/roles/network/templates/rules.v4.j2 b/ansible/roles/network/templates/rules.v4.j2 index 2685b51..a446139 100644 --- a/ansible/roles/network/templates/rules.v4.j2 +++ b/ansible/roles/network/templates/rules.v4.j2 @@ -3,21 +3,21 @@ :FORWARD DROP [0:0] :OUTPUT ACCEPT [0:0] -# Cluster +# Administration -A INPUT -p tcp --dport 22 -j ACCEPT --A INPUT -s 192.168.1.254 -j ACCEPT # router + +# Cluster +-A INPUT -s 192.168.1.254 -j ACCEPT +-A INPUT -s 82.253.205.190 -j ACCEPT {% for selected_host in groups['cluster_nodes'] %} -A INPUT -s {{ hostvars[selected_host]['public_ip'] }} -j ACCEPT -A INPUT -s {{ hostvars[selected_host]['private_ip'] }} -j ACCEPT {% endfor %} -# Rennes --A INPUT -s 82.253.205.190 -j ACCEPT - +# Local -A INPUT -i docker0 -j ACCEPT -A INPUT -s 127.0.0.1/8 -j ACCEPT -A INPUT -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT - COMMIT *nat @@ -25,15 +25,12 @@ COMMIT :INPUT ACCEPT [0:0] :OUTPUT ACCEPT [0:0] :POSTROUTING ACCEPT [0:0] - COMMIT - *mangle :PREROUTING ACCEPT [0:0] :INPUT ACCEPT [0:0] :FORWARD ACCEPT [0:0] :OUTPUT ACCEPT [0:0] :POSTROUTING ACCEPT [0:0] - COMMIT |