|
@@ -32,21 +32,21 @@ PROJECT_NAME='freedombone'
|
32
|
32
|
COMPLETION_FILE=/root/${PROJECT_NAME}-completed.txt
|
33
|
33
|
|
34
|
34
|
if [[ $1 == "start" ]]; then
|
35
|
|
- # install avahi
|
36
|
|
- sed -i "s|#host-name=.*|host-name=$(hostname)|g" /etc/avahi/avahi-daemon.conf
|
37
|
|
- sed -i "s|host-name=.*|host-name=$(hostname)|g" /etc/avahi/avahi-daemon.conf
|
38
|
|
- sed -i "s|use-ipv4=.*|use-ipv4=yes|g" /etc/avahi/avahi-daemon.conf
|
39
|
|
- sed -i "s|use-ipv6=.*|use-ipv6=no|g" /etc/avahi/avahi-daemon.conf
|
40
|
|
- sed -i "s|#disallow-other-stacks=.*|disallow-other-stacks=yes|g" /etc/avahi/avahi-daemon.conf
|
41
|
|
- sed -i "s|hosts:.*|hosts: files mdns4_minimal dns mdns4 mdns|g" /etc/nsswitch.conf
|
|
35
|
+ # install avahi
|
|
36
|
+ sed -i "s|#host-name=.*|host-name=$(hostname)|g" /etc/avahi/avahi-daemon.conf
|
|
37
|
+ sed -i "s|host-name=.*|host-name=$(hostname)|g" /etc/avahi/avahi-daemon.conf
|
|
38
|
+ sed -i "s|use-ipv4=.*|use-ipv4=yes|g" /etc/avahi/avahi-daemon.conf
|
|
39
|
+ sed -i "s|use-ipv6=.*|use-ipv6=no|g" /etc/avahi/avahi-daemon.conf
|
|
40
|
+ sed -i "s|#disallow-other-stacks=.*|disallow-other-stacks=yes|g" /etc/avahi/avahi-daemon.conf
|
|
41
|
+ sed -i "s|hosts:.*|hosts: files mdns4_minimal dns mdns4 mdns|g" /etc/nsswitch.conf
|
42
|
42
|
fi
|
43
|
43
|
|
44
|
44
|
# Mesh definition
|
45
|
45
|
WIFI_SSID=
|
46
|
46
|
if ! grep -q "WIFI_SSID:" $COMPLETION_FILE; then
|
47
|
|
- WIFI_SSID='mesh'
|
|
47
|
+ WIFI_SSID='mesh'
|
48
|
48
|
else
|
49
|
|
- WIFI_SSID=$(cat $COMPLETION_FILE | grep "WIFI_SSID:" | awk -F ':' '{print $2}')
|
|
49
|
+ WIFI_SSID=$(cat $COMPLETION_FILE | grep "WIFI_SSID:" | awk -F ':' '{print $2}')
|
50
|
50
|
fi
|
51
|
51
|
sed -i "s|WIFI_SSID:.*|WIFI_SSID:${WIFI_SSID}|g" $COMPLETION_FILE
|
52
|
52
|
|
|
@@ -54,9 +54,9 @@ CELLID='any'
|
54
|
54
|
|
55
|
55
|
CHANNEL=
|
56
|
56
|
if ! grep -q "Wifi channel:" $COMPLETION_FILE; then
|
57
|
|
- CHANNEL=2
|
|
57
|
+ CHANNEL=2
|
58
|
58
|
else
|
59
|
|
- CHANNEL=$(cat $COMPLETION_FILE | grep "Wifi channel:" | awk -F ':' '{print $2}')
|
|
59
|
+ CHANNEL=$(cat $COMPLETION_FILE | grep "Wifi channel:" | awk -F ':' '{print $2}')
|
60
|
60
|
fi
|
61
|
61
|
sed -i "s|Wifi channel:.*|Wifi channel:${CHANNEL}|g" $COMPLETION_FILE
|
62
|
62
|
|
|
@@ -69,151 +69,166 @@ IFACE='wlan0'
|
69
|
69
|
EIFACE=eth0
|
70
|
70
|
|
71
|
71
|
if [[ $IFACE == "wlan0" ]]; then
|
72
|
|
- if grep -q "wlan1" /proc/net/dev; then
|
73
|
|
- IFACE=wlan1
|
74
|
|
- fi
|
|
72
|
+ if grep -q "wlan1" /proc/net/dev; then
|
|
73
|
+ IFACE=wlan1
|
|
74
|
+ fi
|
75
|
75
|
fi
|
76
|
76
|
if [[ $IFACE == "wlan0" ]]; then
|
77
|
|
- if grep -q "wlan2" /proc/net/dev; then
|
78
|
|
- IFACE=wlan2
|
79
|
|
- fi
|
|
77
|
+ if grep -q "wlan2" /proc/net/dev; then
|
|
78
|
+ IFACE=wlan2
|
|
79
|
+ fi
|
80
|
80
|
fi
|
81
|
81
|
if [[ $IFACE == "wlan0" ]]; then
|
82
|
|
- if grep -q "wlan3" /proc/net/dev; then
|
83
|
|
- IFACE=wlan3
|
84
|
|
- fi
|
|
82
|
+ if grep -q "wlan3" /proc/net/dev; then
|
|
83
|
+ IFACE=wlan3
|
|
84
|
+ fi
|
85
|
85
|
fi
|
86
|
86
|
|
87
|
87
|
if [ -e /etc/default/batctl ]; then
|
88
|
|
- . /etc/default/batctl
|
|
88
|
+ . /etc/default/batctl
|
89
|
89
|
fi
|
90
|
90
|
|
91
|
|
-start() {
|
92
|
|
- if [ -z "$IFACE" ] ; then
|
93
|
|
- echo 'error: unable to find wifi interface, not enabling batman-adv mesh'
|
94
|
|
- return
|
95
|
|
- fi
|
96
|
|
- echo "info: enabling batman-adv mesh network $WIFI_SSID on $IFACE"
|
97
|
|
-
|
98
|
|
- systemctl stop network-manager
|
99
|
|
- sleep 5
|
100
|
|
-
|
101
|
|
- # remove an avahi service which isn't used
|
102
|
|
- if [ -f /etc/avahi/services/udisks.service ]; then
|
103
|
|
- sudo rm /etc/avahi/services/udisks.service
|
104
|
|
- fi
|
105
|
|
-
|
106
|
|
- # Might have to re-enable wifi
|
107
|
|
- rfkill unblock $(rfkill list|awk -F: "/phy/ {print $1}") || true
|
108
|
|
-
|
109
|
|
- ifconfig $IFACE down
|
110
|
|
- ifconfig $IFACE mtu 1532
|
111
|
|
- iwconfig $IFACE enc off
|
112
|
|
- iwconfig $IFACE mode ad-hoc essid $WIFI_SSID channel $CHANNEL
|
113
|
|
- sleep 1
|
114
|
|
- iwconfig $IFACE ap $CELLID
|
115
|
|
-
|
116
|
|
- modprobe batman-adv
|
117
|
|
- batctl if add $IFACE
|
118
|
|
- ifconfig $IFACE up
|
119
|
|
- avahi-autoipd --force-bind --daemonize --wait $BRIDGE
|
120
|
|
- avahi-autoipd --force-bind --daemonize --wait $IFACE
|
121
|
|
- ifconfig bat0 up promisc
|
122
|
|
-
|
123
|
|
- #Use persistent HWAddr
|
124
|
|
- ether_new=$(ifconfig eth0 | grep HWaddr | sed -e "s/.*HWaddr //")
|
125
|
|
- if [ ! -f /var/lib/mesh-node/bat0 ]; then
|
126
|
|
- mkdir /var/lib/mesh-node
|
127
|
|
- echo "${ether_new}" > /var/lib/mesh-node/bat0
|
128
|
|
- else
|
129
|
|
- ether=$(cat /var/lib/mesh-node/bat0)
|
130
|
|
- ifconfig bat0 hw ether ${ether}
|
131
|
|
- fi
|
132
|
|
-
|
133
|
|
- if [ "$EIFACE" ] ; then
|
134
|
|
- brctl addbr $BRIDGE
|
135
|
|
- brctl addif $BRIDGE bat0
|
136
|
|
- brctl addif $BRIDGE $EIFACE
|
137
|
|
- ifconfig bat0 0.0.0.0
|
138
|
|
- ifconfig $EIFACE 0.0.0.0
|
139
|
|
- ifconfig $EIFACE up promisc
|
140
|
|
- ifconfig $BRIDGE up
|
141
|
|
- fi
|
142
|
|
-
|
143
|
|
- iptables -A INPUT -p tcp --dport 548 -j ACCEPT
|
144
|
|
- iptables -A INPUT -p udp --dport 548 -j ACCEPT
|
145
|
|
- iptables -A INPUT -p tcp --dport 5353 -j ACCEPT
|
146
|
|
- iptables -A INPUT -p udp --dport 5353 -j ACCEPT
|
147
|
|
- iptables -A INPUT -p tcp --dport 5354 -j ACCEPT
|
148
|
|
- iptables -A INPUT -p udp --dport 5354 -j ACCEPT
|
149
|
|
- iptables -A INPUT -p tcp --dport $ZERONET_PORT -j ACCEPT
|
150
|
|
- iptables -A INPUT -p udp --dport $ZERONET_PORT -j ACCEPT
|
151
|
|
- iptables -A INPUT -p tcp --dport $IPFS_PORT -j ACCEPT
|
152
|
|
-
|
153
|
|
- systemctl restart avahi-daemon
|
|
91
|
+function status {
|
|
92
|
+ batctl o
|
|
93
|
+}
|
|
94
|
+
|
|
95
|
+function verify {
|
|
96
|
+ tempfile="$(mktemp)"
|
|
97
|
+ batctl o > $tempfile
|
|
98
|
+ if grep -q "disabled" $tempfile; then
|
|
99
|
+ echo $'B.A.T.M.A.N. not enabled'
|
|
100
|
+ rm $tempfile
|
|
101
|
+ exit 726835
|
|
102
|
+ fi
|
|
103
|
+ echo $'B.A.T.M.A.N. is running'
|
|
104
|
+ rm $tempfile
|
|
105
|
+}
|
|
106
|
+
|
|
107
|
+function start {
|
|
108
|
+ if [ -z "$IFACE" ] ; then
|
|
109
|
+ echo 'error: unable to find wifi interface, not enabling batman-adv mesh'
|
|
110
|
+ exit 723657
|
|
111
|
+ fi
|
|
112
|
+ echo "info: enabling batman-adv mesh network $WIFI_SSID on $IFACE"
|
|
113
|
+
|
|
114
|
+ systemctl stop network-manager
|
|
115
|
+ sleep 5
|
|
116
|
+
|
|
117
|
+ # remove an avahi service which isn't used
|
|
118
|
+ if [ -f /etc/avahi/services/udisks.service ]; then
|
|
119
|
+ sudo rm /etc/avahi/services/udisks.service
|
|
120
|
+ fi
|
|
121
|
+
|
|
122
|
+ # Might have to re-enable wifi
|
|
123
|
+ rfkill unblock $(rfkill list|awk -F: "/phy/ {print $1}") || true
|
|
124
|
+
|
|
125
|
+ ifconfig $IFACE down
|
|
126
|
+ ifconfig $IFACE mtu 1532
|
|
127
|
+ iwconfig $IFACE enc off
|
|
128
|
+ iwconfig $IFACE mode ad-hoc essid $WIFI_SSID channel $CHANNEL
|
|
129
|
+ sleep 1
|
|
130
|
+ iwconfig $IFACE ap $CELLID
|
|
131
|
+
|
|
132
|
+ modprobe batman-adv
|
|
133
|
+ batctl if add $IFACE
|
|
134
|
+ ifconfig $IFACE up
|
|
135
|
+ avahi-autoipd --force-bind --daemonize --wait $BRIDGE
|
|
136
|
+ avahi-autoipd --force-bind --daemonize --wait $IFACE
|
|
137
|
+ ifconfig bat0 up promisc
|
|
138
|
+
|
|
139
|
+ #Use persistent HWAddr
|
|
140
|
+ ether_new=$(ifconfig eth0 | grep HWaddr | sed -e "s/.*HWaddr //")
|
|
141
|
+ if [ ! -f /var/lib/mesh-node/bat0 ]; then
|
|
142
|
+ mkdir /var/lib/mesh-node
|
|
143
|
+ echo "${ether_new}" > /var/lib/mesh-node/bat0
|
|
144
|
+ else
|
|
145
|
+ ether=$(cat /var/lib/mesh-node/bat0)
|
|
146
|
+ ifconfig bat0 hw ether ${ether}
|
|
147
|
+ fi
|
|
148
|
+
|
|
149
|
+ if [ "$EIFACE" ] ; then
|
|
150
|
+ brctl addbr $BRIDGE
|
|
151
|
+ brctl addif $BRIDGE bat0
|
|
152
|
+ brctl addif $BRIDGE $EIFACE
|
|
153
|
+ ifconfig bat0 0.0.0.0
|
|
154
|
+ ifconfig $EIFACE 0.0.0.0
|
|
155
|
+ ifconfig $EIFACE up promisc
|
|
156
|
+ ifconfig $BRIDGE up
|
|
157
|
+ fi
|
|
158
|
+
|
|
159
|
+ iptables -A INPUT -p tcp --dport 548 -j ACCEPT
|
|
160
|
+ iptables -A INPUT -p udp --dport 548 -j ACCEPT
|
|
161
|
+ iptables -A INPUT -p tcp --dport 5353 -j ACCEPT
|
|
162
|
+ iptables -A INPUT -p udp --dport 5353 -j ACCEPT
|
|
163
|
+ iptables -A INPUT -p tcp --dport 5354 -j ACCEPT
|
|
164
|
+ iptables -A INPUT -p udp --dport 5354 -j ACCEPT
|
|
165
|
+ iptables -A INPUT -p tcp --dport $ZERONET_PORT -j ACCEPT
|
|
166
|
+ iptables -A INPUT -p udp --dport $ZERONET_PORT -j ACCEPT
|
|
167
|
+ iptables -A INPUT -p tcp --dport $IPFS_PORT -j ACCEPT
|
|
168
|
+
|
|
169
|
+ systemctl restart avahi-daemon
|
|
170
|
+
|
|
171
|
+ verify
|
154
|
172
|
}
|
155
|
173
|
|
156
|
174
|
stop() {
|
157
|
|
- if [ -z "$IFACE" ]; then
|
158
|
|
- echo 'error: unable to find wifi interface, not enabling batman-adv mesh'
|
159
|
|
- return
|
160
|
|
- fi
|
161
|
|
- if [ "$EIFACE" ]; then
|
162
|
|
- brctl delif $BRIDGE bat0
|
163
|
|
- brctl delif $BRIDGE $EIFACE
|
164
|
|
- ifconfig $BRIDGE down || true
|
165
|
|
- brctl delbr $BRIDGE
|
166
|
|
- ifconfig $EIFACE down -promisc
|
167
|
|
- fi
|
168
|
|
-
|
169
|
|
- avahi-autoipd -k $BRIDGE
|
170
|
|
- avahi-autoipd -k $IFACE
|
171
|
|
- ifconfig bat0 down -promisc
|
172
|
|
-
|
173
|
|
- batctl if del $IFACE
|
174
|
|
- rmmod batman-adv
|
175
|
|
- ifconfig $IFACE mtu 1500
|
176
|
|
- ifconfig $IFACE down
|
177
|
|
- iwconfig $IFACE mode managed
|
178
|
|
-
|
179
|
|
- iptables -D INPUT -p tcp --dport 548 -j ACCEPT
|
180
|
|
- iptables -D INPUT -p udp --dport 548 -j ACCEPT
|
181
|
|
- iptables -D INPUT -p tcp --dport 5353 -j ACCEPT
|
182
|
|
- iptables -D INPUT -p udp --dport 5353 -j ACCEPT
|
183
|
|
- iptables -D INPUT -p tcp --dport 5354 -j ACCEPT
|
184
|
|
- iptables -D INPUT -p udp --dport 5354 -j ACCEPT
|
185
|
|
- iptables -D INPUT -p tcp --dport $ZERONET_PORT -j ACCEPT
|
186
|
|
- iptables -D INPUT -p udp --dport $ZERONET_PORT -j ACCEPT
|
187
|
|
- iptables -D INPUT -p tcp --dport $IPFS_PORT -j ACCEPT
|
188
|
|
-
|
189
|
|
- systemctl restart network-manager
|
|
175
|
+ if [ -z "$IFACE" ]; then
|
|
176
|
+ echo 'error: unable to find wifi interface, not enabling batman-adv mesh'
|
|
177
|
+ return
|
|
178
|
+ fi
|
|
179
|
+ if [ "$EIFACE" ]; then
|
|
180
|
+ brctl delif $BRIDGE bat0
|
|
181
|
+ brctl delif $BRIDGE $EIFACE
|
|
182
|
+ ifconfig $BRIDGE down || true
|
|
183
|
+ brctl delbr $BRIDGE
|
|
184
|
+ ifconfig $EIFACE down -promisc
|
|
185
|
+ fi
|
|
186
|
+
|
|
187
|
+ avahi-autoipd -k $BRIDGE
|
|
188
|
+ avahi-autoipd -k $IFACE
|
|
189
|
+ ifconfig bat0 down -promisc
|
|
190
|
+
|
|
191
|
+ batctl if del $IFACE
|
|
192
|
+ rmmod batman-adv
|
|
193
|
+ ifconfig $IFACE mtu 1500
|
|
194
|
+ ifconfig $IFACE down
|
|
195
|
+ iwconfig $IFACE mode managed
|
|
196
|
+
|
|
197
|
+ iptables -D INPUT -p tcp --dport 548 -j ACCEPT
|
|
198
|
+ iptables -D INPUT -p udp --dport 548 -j ACCEPT
|
|
199
|
+ iptables -D INPUT -p tcp --dport 5353 -j ACCEPT
|
|
200
|
+ iptables -D INPUT -p udp --dport 5353 -j ACCEPT
|
|
201
|
+ iptables -D INPUT -p tcp --dport 5354 -j ACCEPT
|
|
202
|
+ iptables -D INPUT -p udp --dport 5354 -j ACCEPT
|
|
203
|
+ iptables -D INPUT -p tcp --dport $ZERONET_PORT -j ACCEPT
|
|
204
|
+ iptables -D INPUT -p udp --dport $ZERONET_PORT -j ACCEPT
|
|
205
|
+ iptables -D INPUT -p tcp --dport $IPFS_PORT -j ACCEPT
|
|
206
|
+
|
|
207
|
+ systemctl restart network-manager
|
190
|
208
|
}
|
191
|
209
|
|
192
|
210
|
if ! grep -q "$IFACE" /proc/net/dev; then
|
193
|
|
- echo 'Interface $IFACE was not found'
|
194
|
|
- stop
|
195
|
|
- exit 1
|
|
211
|
+ echo 'Interface $IFACE was not found'
|
|
212
|
+ stop
|
|
213
|
+ exit 1
|
196
|
214
|
fi
|
197
|
215
|
|
198
|
216
|
case "$1" in
|
199
|
|
- start|stop)
|
200
|
|
- $1
|
201
|
|
- ;;
|
202
|
|
- restart)
|
203
|
|
- stop
|
204
|
|
- sleep 10
|
205
|
|
- start
|
206
|
|
- ;;
|
207
|
|
- status)
|
208
|
|
- batctl o
|
209
|
|
- ;;
|
210
|
|
- ping)
|
211
|
|
- batctl ping $2
|
212
|
|
- ;;
|
213
|
|
- ls|list)
|
214
|
|
- avahi-browse -atl
|
215
|
|
- ;;
|
216
|
|
- *)
|
|
217
|
+ start|stop|status)
|
|
218
|
+ $1
|
|
219
|
+ ;;
|
|
220
|
+ restart)
|
|
221
|
+ stop
|
|
222
|
+ sleep 10
|
|
223
|
+ start
|
|
224
|
+ ;;
|
|
225
|
+ ping)
|
|
226
|
+ batctl ping $2
|
|
227
|
+ ;;
|
|
228
|
+ ls|list)
|
|
229
|
+ avahi-browse -atl
|
|
230
|
+ ;;
|
|
231
|
+ *)
|
217
|
232
|
echo "error: invalid parameter $1"
|
218
|
233
|
echo 'usage: $0 {start|stop|restart|status|ping|ls|list}'
|
219
|
234
|
exit 2
|