forked from Deuxfleurs/infrastructure
WIP: Ansible config updated, everything passed alright
This commit is contained in:
parent
7852eef5a6
commit
7277927ea3
2 changed files with 3 additions and 3 deletions
|
@ -7,10 +7,10 @@
|
|||
-A INPUT -p icmp -j ACCEPT
|
||||
|
||||
# Administration
|
||||
-A INPUT -p tcp --dport {{ hostvars[selected_host]['ssh_port'] }} -j ACCEPT
|
||||
-A INPUT -p tcp --dport {{ ssh_port }} -j ACCEPT
|
||||
|
||||
# Diplonat needs everything open to communicate with IGD with the router
|
||||
-A INPUT -s {{ hostvars[selected_host]['gatewayv4'] }} -j ACCEPT
|
||||
-A INPUT -s {{ gatewayv4 }} -j ACCEPT
|
||||
|
||||
# Cluster
|
||||
{% for selected_host in groups['cluster_nodes'] %}
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
-A INPUT -p ipv6-icmp -j ACCEPT
|
||||
|
||||
# Administration
|
||||
-A INPUT -p tcp --dport {{ hostvars[selected_host]['ssh_port'] }} -j ACCEPT
|
||||
-A INPUT -p tcp --dport {{ ssh_port }} -j ACCEPT
|
||||
|
||||
# Cluster
|
||||
{% for selected_host in groups['cluster_nodes'] %}
|
||||
|
|
Loading…
Reference in a new issue