浏览代码

Fixing mesh hotspot

Bob Mottram 7 年前
父节点
当前提交
10e4cb3887
共有 2 个文件被更改,包括 47 次插入21 次删除
  1. 1
    1
      src/freedombone-image-customise
  2. 46
    20
      src/freedombone-mesh-batman

+ 1
- 1
src/freedombone-image-customise 查看文件

686
     chroot "$rootdir" apt-get -yq install tor
686
     chroot "$rootdir" apt-get -yq install tor
687
 
687
 
688
     # dhcp daemon for hotspot on secondary wifi adapter
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
     configure_firewall
691
     configure_firewall
692
     install_avahi
692
     install_avahi

+ 46
- 20
src/freedombone-mesh-batman 查看文件

101
 }
101
 }
102
 
102
 
103
 function mesh_hotspot_ip_address {
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
 function global_rate_limit {
107
 function global_rate_limit {
122
         echo 'error: unable to find wifi interface, not enabling batman-adv mesh'
122
         echo 'error: unable to find wifi interface, not enabling batman-adv mesh'
123
         return
123
         return
124
     fi
124
     fi
125
+
126
+    systemctl stop dnsmasq
127
+    systemctl disable dnsmasq
128
+
125
     if [ "$EIFACE" ]; then
129
     if [ "$EIFACE" ]; then
126
         brctl delif $BRIDGE bat0
130
         brctl delif $BRIDGE bat0
127
         ifconfig $BRIDGE down || true
131
         ifconfig $BRIDGE down || true
302
 }
306
 }
303
 
307
 
304
 function start {
308
 function start {
309
+    update_wifi_adaptors
310
+
305
     if [ -z "$IFACE" ] ; then
311
     if [ -z "$IFACE" ] ; then
306
         echo 'error: unable to find wifi interface, not enabling batman-adv mesh'
312
         echo 'error: unable to find wifi interface, not enabling batman-adv mesh'
307
         exit 723657
313
         exit 723657
311
     systemctl stop network-manager
317
     systemctl stop network-manager
312
     sleep 5
318
     sleep 5
313
 
319
 
320
+    systemctl stop dnsmasq
321
+    systemctl disable dnsmasq
322
+
314
     # remove an avahi service which isn't used
323
     # remove an avahi service which isn't used
315
     if [ -f /etc/avahi/services/udisks.service ]; then
324
     if [ -f /etc/avahi/services/udisks.service ]; then
316
         sudo rm /etc/avahi/services/udisks.service
325
         sudo rm /etc/avahi/services/udisks.service
364
     if [ $secondary_wifi_available ]; then
373
     if [ $secondary_wifi_available ]; then
365
         sed -i 's|#DAEMON_CONF=.*|DAEMON_CONF="/etc/hostapd/hostapd.conf"|g' /etc/default/hostapd
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
         # Recreate the cryptpad symlink
412
         # Recreate the cryptpad symlink
387
         if [ -f /etc/nginx/sites-available/cryptpad ]; then
413
         if [ -f /etc/nginx/sites-available/cryptpad ]; then
388
             if [ -L /etc/nginx/sites-enabled/cryptpad ]; then
414
             if [ -L /etc/nginx/sites-enabled/cryptpad ]; then