Workaround, welches Netzwerkmodul von FF-Routern bei Meshverlust neu startet.
Skript, welches mit Batman misst, ob es noch Verbindung zu anderen Nodes hat
Cronjob anlegen:
crontab -e
Dort folgendes eingragen, damit Skript ein Mal pro Minute ausgeführt wird:
* * * * * ash -c 'if [ $(batctl o | grep mesh0 | wc -l) -eq 0 ]; then logger "wifi reset"; wifi; fi'
Skript, welches mit Ping misst, ob es noch Verbindung zu anderen Nodes hat
Skript in z.B. /opt/mesh_check.sh einfügen
Skript ausführbar machen:
chmod +x /opt/mesh_check.sh
Cronjob anlegen:
crontab -e
Dort folgendes eingragen, damit Skript ein Mal pro Stunde ausgeführt wird:
0 0 * * * /opt/mesh_check.sh