diff options
author | Niklas Yann Wettengel <niyawe@niyawe.de> | 2020-02-27 17:57:17 +0100 |
---|---|---|
committer | Niklas Yann Wettengel <niyawe@niyawe.de> | 2020-02-27 17:57:17 +0100 |
commit | d412bd90e324a7b8f18aaa47baae944089793b23 (patch) | |
tree | c7118e958cba432f5117e1218bef808edd52d005 /roles/install_fastd | |
parent | 02577279463123500f3900d55b23998f8379b669 (diff) |
fix batctl syntax
Diffstat (limited to 'roles/install_fastd')
-rw-r--r-- | roles/install_fastd/templates/fastd_up.sh.j2 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/roles/install_fastd/templates/fastd_up.sh.j2 b/roles/install_fastd/templates/fastd_up.sh.j2 index 12d73dc..f056445 100644 --- a/roles/install_fastd/templates/fastd_up.sh.j2 +++ b/roles/install_fastd/templates/fastd_up.sh.j2 @@ -1,10 +1,10 @@ #!/bin/bash ip link set address {{ item.fastd_mesh_mac }} dev $1 ip link set up dev $1 -batctl bat{{ item.name }} if add $1 -batctl bat{{ item.name }} gw server 1000000/1000000 -batctl bat{{ item.name }} it 10000 -batctl bat{{ item.name }} mm 1 +batctl meshif bat{{ item.name }} if add $1 +batctl meshif bat{{ item.name }} gw server 1000000/1000000 +batctl meshif bat{{ item.name }} it 10000 +batctl meshif 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 |