iptables: use datacenter==phx2 for vpn-detection

Signed-off-by: Patrick Uiterwijk <patrick@puiterwijk.org>
This commit is contained in:
Patrick Uiterwijk 2019-03-29 00:31:26 +01:00
parent eb45e4ef7c
commit 03f9a74f8d

View file

@ -103,7 +103,7 @@
{% if proxy_tcp_ports is defined %}
{% for port in proxy_tcp_ports %}
{% for proxy in (groups['proxies'] + groups['proxies-internal']) %}
{% if hostvars[proxy]['vpn'] %}
{% if hostvars[proxy]['datacenter'] == "phx2" %}
-A INPUT -p tcp -m tcp --dport {{ port }} --src {{ hostvars[proxy]['ansible_tun0']['ipv4']['address'] }} -j ACCEPT
{% else %}
-A INPUT -p tcp -m tcp --dport {{ port }} --src {{ hostvars[proxy]['ansible_eth0']['ipv4']['address'] }} -j ACCEPT