Quellcode durchsuchen

Fixing mesh hotspot

Bob Mottram vor 7 Jahren
Ursprung
Commit
10e4cb3887
2 geänderte Dateien mit 47 neuen und 21 gelöschten Zeilen
  1. 1
    1
      src/freedombone-image-customise
  2. 46
    20
      src/freedombone-mesh-batman

+ 1
- 1
src/freedombone-image-customise Datei anzeigen

@@ -686,7 +686,7 @@ initialise_mesh() {
686 686
     chroot "$rootdir" apt-get -yq install tor
687 687
 
688 688
     # dhcp daemon for hotspot on secondary wifi adapter
689
-    chroot "$rootdir" apt-get -yq install isc-dhcp-server
689
+    chroot "$rootdir" apt-get -yq install dnsmasq
690 690
 
691 691
     configure_firewall
692 692
     install_avahi

+ 46
- 20
src/freedombone-mesh-batman Datei anzeigen

@@ -101,7 +101,7 @@ function get_ipv4_wlan {
101 101
 }
102 102
 
103 103
 function mesh_hotspot_ip_address {
104
-    echo $(ip -o -f inet addr show dev "$BRIDGE" | awk '{print $4}' | awk 'END {print}' | awk -F '/' '{print $1}')
104
+    echo $(ip -o -f inet addr show dev "${BRIDGE}" | awk '{print $4}' | awk 'END {print}' | awk -F '/' '{print $1}')
105 105
 }
106 106
 
107 107
 function global_rate_limit {
@@ -122,6 +122,10 @@ function stop {
122 122
         echo 'error: unable to find wifi interface, not enabling batman-adv mesh'
123 123
         return
124 124
     fi
125
+
126
+    systemctl stop dnsmasq
127
+    systemctl disable dnsmasq
128
+
125 129
     if [ "$EIFACE" ]; then
126 130
         brctl delif $BRIDGE bat0
127 131
         ifconfig $BRIDGE down || true
@@ -302,6 +306,8 @@ function mesh_create_app_downloads_page {
302 306
 }
303 307
 
304 308
 function start {
309
+    update_wifi_adaptors
310
+
305 311
     if [ -z "$IFACE" ] ; then
306 312
         echo 'error: unable to find wifi interface, not enabling batman-adv mesh'
307 313
         exit 723657
@@ -311,6 +317,9 @@ function start {
311 317
     systemctl stop network-manager
312 318
     sleep 5
313 319
 
320
+    systemctl stop dnsmasq
321
+    systemctl disable dnsmasq
322
+
314 323
     # remove an avahi service which isn't used
315 324
     if [ -f /etc/avahi/services/udisks.service ]; then
316 325
         sudo rm /etc/avahi/services/udisks.service
@@ -364,25 +373,42 @@ function start {
364 373
     if [ $secondary_wifi_available ]; then
365 374
         sed -i 's|#DAEMON_CONF=.*|DAEMON_CONF="/etc/hostapd/hostapd.conf"|g' /etc/default/hostapd
366 375
 
367
-        echo "interface=${IFACE_SECONDARY}" > /etc/hostapd/hostapd.conf
368
-        echo "bridge=${BRIDGE}" >> /etc/hostapd/hostapd.conf
369
-        echo 'driver=nl80211' >> /etc/hostapd/hostapd.conf
370
-        echo "country_code=UK" >> /etc/hostapd/hostapd.conf
371
-        echo "ssid=${WIFI_SSID}-$(mesh_hotspot_ip_address)" >> /etc/hostapd/hostapd.conf
372
-        echo 'hw_mode=g' >> /etc/hostapd/hostapd.conf
373
-        echo "channel=${HOTSPOT_CHANNEL}" >> /etc/hostapd/hostapd.conf
374
-        echo 'wpa=2' >> /etc/hostapd/hostapd.conf
375
-        echo "wpa_passphrase=$HOTSPOT_PASSPHRASE" >> /etc/hostapd/hostapd.conf
376
-        echo 'wpa_key_mgmt=WPA-PSK' >> /etc/hostapd/hostapd.conf
377
-        echo 'wpa_pairwise=TKIP' >> /etc/hostapd/hostapd.conf
378
-        echo 'rsn_pairwise=CCMP' >> /etc/hostapd/hostapd.conf
379
-        echo 'auth_algs=1' >> /etc/hostapd/hostapd.conf
380
-        echo 'macaddr_acl=0' >> /etc/hostapd/hostapd.conf
381
-
382
-        systemctl enable hostapd
383
-        systemctl restart hostapd
384
-        mesh_create_app_downloads_page
385
-    else
376
+        mesh_hotspot_address=$(mesh_hotspot_ip_address)
377
+        if [[ "$mesh_hotspot_address" == *'.'* ]]; then
378
+            echo "interface=${IFACE_SECONDARY}" > /etc/hostapd/hostapd.conf
379
+            echo "bridge=${BRIDGE}" >> /etc/hostapd/hostapd.conf
380
+            echo 'driver=nl80211' >> /etc/hostapd/hostapd.conf
381
+            echo "country_code=UK" >> /etc/hostapd/hostapd.conf
382
+            echo "ssid=${WIFI_SSID}-$(mesh_hotspot_address)" >> /etc/hostapd/hostapd.conf
383
+            echo 'hw_mode=g' >> /etc/hostapd/hostapd.conf
384
+            echo "channel=${HOTSPOT_CHANNEL}" >> /etc/hostapd/hostapd.conf
385
+            echo 'wpa=2' >> /etc/hostapd/hostapd.conf
386
+            echo "wpa_passphrase=$HOTSPOT_PASSPHRASE" >> /etc/hostapd/hostapd.conf
387
+            echo 'wpa_key_mgmt=WPA-PSK' >> /etc/hostapd/hostapd.conf
388
+            echo 'wpa_pairwise=TKIP' >> /etc/hostapd/hostapd.conf
389
+            echo 'rsn_pairwise=CCMP' >> /etc/hostapd/hostapd.conf
390
+            echo 'auth_algs=1' >> /etc/hostapd/hostapd.conf
391
+            echo 'macaddr_acl=0' >> /etc/hostapd/hostapd.conf
392
+
393
+            sed -i "s|#interface=.*|interface=${IFACE_SECONDARY}|g" /etc/dnsmasq.conf
394
+            sed -i "s|interface=.*|interface=${IFACE_SECONDARY}|g" /etc/dnsmasq.conf
395
+            sed -i "s|listen-address=.*|listen-address=127.0.0.1,$mesh_hotspot_address|g" /etc/dnsmasq.conf
396
+            systemctl enable dnsmasq
397
+            systemctl restart dnsmasq
398
+
399
+            systemctl enable hostapd
400
+            systemctl restart hostapd
401
+            mesh_create_app_downloads_page
402
+        else
403
+            secondary_wifi_available=
404
+            echo $'WARNING: No IP address could be obtained for the hotspot'
405
+        fi
406
+    fi
407
+
408
+    if [ ! $secondary_wifi_available ]; then
409
+        systemctl stop hostapd
410
+        systemctl disable hostapd
411
+
386 412
         # Recreate the cryptpad symlink
387 413
         if [ -f /etc/nginx/sites-available/cryptpad ]; then
388 414
             if [ -L /etc/nginx/sites-enabled/cryptpad ]; then