|
@@ -425,6 +425,11 @@ function monitor {
|
425
|
425
|
exit 723657
|
426
|
426
|
fi
|
427
|
427
|
|
|
428
|
+ clear
|
|
429
|
+ echo ''
|
|
430
|
+ echo $'*** Stopping network ***'
|
|
431
|
+ echo ''
|
|
432
|
+
|
428
|
433
|
stop
|
429
|
434
|
|
430
|
435
|
echo "info: monitoring mesh network $WIFI_SSID on $IFACE"
|
|
@@ -432,8 +437,18 @@ function monitor {
|
432
|
437
|
systemctl stop network-manager
|
433
|
438
|
sleep 5
|
434
|
439
|
|
|
440
|
+ clear
|
|
441
|
+ echo ''
|
|
442
|
+ echo $'*** Setting firewall rate limit ***'
|
|
443
|
+ echo ''
|
|
444
|
+
|
435
|
445
|
global_rate_limit
|
436
|
446
|
|
|
447
|
+ clear
|
|
448
|
+ echo ''
|
|
449
|
+ echo $'*** Enabling wifi adaptor in monitor mode ***'
|
|
450
|
+ echo ''
|
|
451
|
+
|
437
|
452
|
# Might have to re-enable wifi
|
438
|
453
|
rfkill unblock $(rfkill list|awk -F: "/phy/ {print $1}") || true
|
439
|
454
|
|
|
@@ -448,7 +463,14 @@ function monitor {
|
448
|
463
|
modprobe batman-adv
|
449
|
464
|
batctl if add $IFACE
|
450
|
465
|
ifconfig $IFACE up
|
|
466
|
+
|
451
|
467
|
horst -i $IFACE
|
|
468
|
+
|
|
469
|
+ clear
|
|
470
|
+ echo ''
|
|
471
|
+ echo $'*** Restarting the network daemon. This may take a while. ***'
|
|
472
|
+ echo ''
|
|
473
|
+
|
452
|
474
|
start
|
453
|
475
|
}
|
454
|
476
|
|