diff options
author | Niklas Yann Wettengel <niyawe@niyawe.de> | 2018-01-25 19:47:41 +0100 |
---|---|---|
committer | Niklas Yann Wettengel <niyawe@niyawe.de> | 2018-01-25 19:47:41 +0100 |
commit | 0da10ba8bc19ab889e9c4922263f36ffc220c435 (patch) | |
tree | 24cbfb05ee87a9511597823d01347943ca2d7cc5 /roles/configure_iptables/templates | |
parent | c5e189efc170d1ba8d9b7ab0e7491ae991f8d733 (diff) |
mullvad_uplink fix
Diffstat (limited to 'roles/configure_iptables/templates')
-rw-r--r-- | roles/configure_iptables/templates/ip6tables.rules | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/roles/configure_iptables/templates/ip6tables.rules b/roles/configure_iptables/templates/ip6tables.rules index 913ac7c..78d76c7 100644 --- a/roles/configure_iptables/templates/ip6tables.rules +++ b/roles/configure_iptables/templates/ip6tables.rules @@ -14,6 +14,9 @@ {% for peer in groups['ffrl_uplink'] %} -A PREROUTING -i bb{{ hostvars[peer]['wireguard_bb_name'] }} ! -s fe80::/64 ! -d fe80::/64 -j MARK --set-xmark 0x1/0xffffffff {% endfor %} +{% for peer in groups['mullvad_uplink'] %} +-A PREROUTING -i bb{{ hostvars[peer]['wireguard_bb_name'] }} ! -s fe80::/64 ! -d fe80::/64 -j MARK --set-xmark 0x1/0xffffffff +{% endfor %} {% endif %} {% if 'mullvad_uplink' in group_names %} {% for peer in groups['fastd'] %} @@ -55,16 +58,23 @@ COMMIT {% if 'fastd' in group_names %} {% for peer in groups['ffrl_uplink'] %} -A INPUT -i bb{{ hostvars[peer]['wireguard_bb_name'] }} -p udp --dport 6696 -j ACCEPT +-A INPUT -p udp --dport {{ hostvars[peer]['wireguard_bb_port'] }} -j ACCEPT +{% endfor %} +{% for peer in groups['mullvad_uplink'] %} +-A INPUT -i bb{{ hostvars[peer]['wireguard_bb_name'] }} -p udp --dport 6696 -j ACCEPT +-A INPUT -p udp --dport {{ hostvars[peer]['wireguard_bb_port'] }} -j ACCEPT {% endfor %} {% endif %} {% if 'mullvad_uplink' in group_names %} {% for peer in groups['fastd'] %} -A INPUT -i bb{{ hostvars[peer]['wireguard_bb_name'] }} -p udp --dport 6696 -j ACCEPT +-A INPUT -p udp --dport {{ hostvars[peer]['wireguard_bb_port'] }} -j ACCEPT {% endfor %} {% endif %} {% if 'ffrl_uplink' in group_names %} {% for peer in groups['fastd'] %} -A INPUT -i bb{{ hostvars[peer]['wireguard_bb_name'] }} -p udp --dport 6696 -j ACCEPT +-A INPUT -p udp --dport {{ hostvars[peer]['wireguard_bb_port'] }} -j ACCEPT {% endfor %} {% endif %} # MOSH |