diff options
author | Niklas Yann Wettengel <niyawe@niyawe.de> | 2020-02-27 17:18:33 +0100 |
---|---|---|
committer | Niklas Yann Wettengel <niyawe@niyawe.de> | 2020-02-27 17:18:33 +0100 |
commit | 02577279463123500f3900d55b23998f8379b669 (patch) | |
tree | 04fd78d9203ec6b634b31de5b536925915fbab0c /roles/install_wireguard_mesh/templates | |
parent | f7f85bab9aa15991ac9dea22b92e60552e9b4a1b (diff) |
up batctl syntax
Diffstat (limited to 'roles/install_wireguard_mesh/templates')
-rw-r--r-- | roles/install_wireguard_mesh/templates/down.sh.j2 | 2 | ||||
-rw-r--r-- | roles/install_wireguard_mesh/templates/up.sh.j2 | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/roles/install_wireguard_mesh/templates/down.sh.j2 b/roles/install_wireguard_mesh/templates/down.sh.j2 index 979523c..7782f0d 100644 --- a/roles/install_wireguard_mesh/templates/down.sh.j2 +++ b/roles/install_wireguard_mesh/templates/down.sh.j2 @@ -1,7 +1,7 @@ #!/bin/bash {% for host in groups['fastd'] %} {% for site in hostvars[host]['sites'] if site.name == item.name and site.wireguard_mesh_number != item.wireguard_mesh_number %} -batctl -m bat{{ item.name }} if del mesh{{ item.name }}{{ site.wireguard_mesh_number }} +batctl bat{{ item.name }} if del mesh{{ item.name }}{{ site.wireguard_mesh_number }} ip link set down dev mesh{{ item.name }}{{ site.wireguard_mesh_number }} ip link del mesh{{ item.name }}{{ site.wireguard_mesh_number }} type ip6gretap {% endfor %} diff --git a/roles/install_wireguard_mesh/templates/up.sh.j2 b/roles/install_wireguard_mesh/templates/up.sh.j2 index 23e24aa..2267f51 100644 --- a/roles/install_wireguard_mesh/templates/up.sh.j2 +++ b/roles/install_wireguard_mesh/templates/up.sh.j2 @@ -5,12 +5,12 @@ ip link add mesh{{ item.name }}{{ site.wireguard_mesh_number }} type ip6gretap r ip link set mtu 1280 dev mesh{{ item.name }}{{ site.wireguard_mesh_number }} ip link set address {{ item.wireguard_mesh_mac_prefix }}{{ site.wireguard_mesh_number }} dev mesh{{ item.name }}{{ site.wireguard_mesh_number }} ip link set up dev mesh{{ item.name }}{{ site.wireguard_mesh_number }} -batctl -m bat{{ item.name }} if add mesh{{ item.name }}{{ site.wireguard_mesh_number }} +batctl bat{{ item.name }} if add mesh{{ item.name }}{{ site.wireguard_mesh_number }} {% endfor %} {% endfor %} -batctl -m bat{{ item.name }} gw server 1000000/1000000 -batctl -m bat{{ item.name }} it 10000 -batctl -m bat{{ item.name }} mm 1 +batctl bat{{ item.name }} gw server 1000000/1000000 +batctl bat{{ item.name }} it 10000 +batctl bat{{ item.name }} mm 1 echo 64 > /sys/class/net/bat{{ item.name }}/mesh/hop_penalty netctl start bat{{ item.name }} systemctl restart dhcpd4.service |