blob: 872e681df91f0ead414f8d161ecb8b555f97b84e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
ip link set address {{ item.fastd_mesh_mac }} dev $1
ip link set up dev $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
batctl meshif bat{{ item.name }} hop_penalty 64
netctl start bat{{ item.name }}
systemctl restart dhcpd4.service
systemctl restart named.service
|