2016-01-14 18:45:02 +01:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# .---. . .
|
|
|
|
# | | |
|
|
|
|
# |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
|
|
|
|
# | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
|
|
|
|
# ' ' --' --' -' - -' ' ' -' -' -' ' - --'
|
|
|
|
#
|
|
|
|
# Freedom in the Cloud
|
|
|
|
#
|
|
|
|
# Used to enable or disable batman mesh protocol on wlanX
|
|
|
|
#
|
|
|
|
# License
|
|
|
|
# =======
|
|
|
|
#
|
2016-10-31 17:24:49 +01:00
|
|
|
# Copyright (C) 2015-2016 Bob Mottram <bob@freedombone.net>
|
2016-01-14 18:45:02 +01:00
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
2016-02-13 23:09:27 +01:00
|
|
|
# it under the terms of the GNU Affero General Public License as published by
|
2016-01-14 18:45:02 +01:00
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2016-02-13 23:09:27 +01:00
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Affero General Public License for more details.
|
2016-01-14 18:45:02 +01:00
|
|
|
#
|
2016-02-13 23:09:27 +01:00
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2016-01-14 18:45:02 +01:00
|
|
|
|
|
|
|
PROJECT_NAME='freedombone'
|
|
|
|
COMPLETION_FILE=/root/${PROJECT_NAME}-completed.txt
|
2016-10-06 20:09:13 +02:00
|
|
|
HOTSPOT_PASSPHRASE='mesh'
|
|
|
|
|
2016-10-21 11:24:07 +02:00
|
|
|
source /usr/share/${PROJECT_NAME}/utils/${PROJECT_NAME}-utils-wifi
|
2016-01-14 18:45:02 +01:00
|
|
|
|
|
|
|
if [[ $1 == "start" ]]; then
|
2016-07-21 21:44:20 +02:00
|
|
|
# install avahi
|
|
|
|
sed -i "s|#host-name=.*|host-name=$(hostname)|g" /etc/avahi/avahi-daemon.conf
|
|
|
|
sed -i "s|host-name=.*|host-name=$(hostname)|g" /etc/avahi/avahi-daemon.conf
|
|
|
|
sed -i "s|use-ipv4=.*|use-ipv4=yes|g" /etc/avahi/avahi-daemon.conf
|
|
|
|
sed -i "s|use-ipv6=.*|use-ipv6=no|g" /etc/avahi/avahi-daemon.conf
|
|
|
|
sed -i "s|#disallow-other-stacks=.*|disallow-other-stacks=yes|g" /etc/avahi/avahi-daemon.conf
|
|
|
|
sed -i "s|hosts:.*|hosts: files mdns4_minimal dns mdns4 mdns|g" /etc/nsswitch.conf
|
2016-01-14 18:45:02 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Mesh definition
|
2016-08-24 10:20:50 +02:00
|
|
|
WIFI_SSID='mesh'
|
|
|
|
if [ -f $COMPLETION_FILE ]; then
|
|
|
|
if grep -q "WIFI_SSID:" $COMPLETION_FILE; then
|
|
|
|
WIFI_SSID=$(cat $COMPLETION_FILE | grep "WIFI_SSID:" | awk -F ':' '{print $2}')
|
|
|
|
fi
|
|
|
|
sed -i "s|WIFI_SSID:.*|WIFI_SSID:${WIFI_SSID}|g" $COMPLETION_FILE
|
2016-01-14 18:45:02 +01:00
|
|
|
fi
|
|
|
|
CELLID='any'
|
|
|
|
|
2016-08-24 10:20:50 +02:00
|
|
|
CHANNEL=2
|
2017-07-04 13:47:07 +02:00
|
|
|
HOTSPOT_CHANNEL=6
|
2016-08-24 10:20:50 +02:00
|
|
|
if [ -f $COMPLETION_FILE ]; then
|
|
|
|
if grep -q "Wifi channel:" $COMPLETION_FILE; then
|
|
|
|
CHANNEL=$(cat $COMPLETION_FILE | grep "Wifi channel:" | awk -F ':' '{print $2}')
|
|
|
|
fi
|
|
|
|
sed -i "s|Wifi channel:.*|Wifi channel:${CHANNEL}|g" $COMPLETION_FILE
|
2016-01-14 18:45:02 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
ZERONET_PORT=15441
|
|
|
|
IPFS_PORT=4001
|
2016-08-24 09:45:50 +02:00
|
|
|
TOX_PORT=33445
|
2016-08-24 23:45:45 +02:00
|
|
|
TRACKER_PORT=6969
|
2016-08-26 17:38:53 +02:00
|
|
|
LIBREVAULT_PORT=42345
|
2016-08-28 00:40:21 +02:00
|
|
|
TAHOELAFS_PORT=50213
|
2016-01-14 18:45:02 +01:00
|
|
|
|
|
|
|
# Ethernet bridge definition (bridged to bat0)
|
|
|
|
BRIDGE=br-mesh
|
2016-10-06 20:09:13 +02:00
|
|
|
BRIDGE_HOTSPOT=br-hotspot
|
|
|
|
IFACE=
|
|
|
|
IFACE_SECONDARY=
|
2016-01-14 18:45:02 +01:00
|
|
|
EIFACE=eth0
|
2016-10-06 20:09:13 +02:00
|
|
|
WLAN_ADAPTORS=$(count_wlan)
|
2016-01-14 18:45:02 +01:00
|
|
|
|
2016-10-06 20:09:13 +02:00
|
|
|
if [ $WLAN_ADAPTORS -eq 0 ]; then
|
|
|
|
echo $'No wlan adaptors found'
|
|
|
|
exit 0
|
2016-10-02 16:37:35 +02:00
|
|
|
fi
|
2016-10-06 20:09:13 +02:00
|
|
|
|
|
|
|
update_wifi_adaptors
|
|
|
|
|
|
|
|
if [ ! $IFACE ]; then
|
|
|
|
echo $'No wlan adaptor'
|
|
|
|
exit 0
|
2016-10-02 16:37:35 +02:00
|
|
|
fi
|
2016-01-14 18:45:02 +01:00
|
|
|
|
|
|
|
if [ -e /etc/default/batctl ]; then
|
2016-07-21 21:44:20 +02:00
|
|
|
. /etc/default/batctl
|
2016-01-14 18:45:02 +01:00
|
|
|
fi
|
|
|
|
|
2016-08-10 23:16:34 +02:00
|
|
|
function global_rate_limit {
|
|
|
|
if ! grep -q "tcp_challenge_ack_limit" /etc/sysctl.conf; then
|
|
|
|
echo 'net.ipv4.tcp_challenge_ack_limit = 999999999' >> /etc/sysctl.conf
|
|
|
|
else
|
|
|
|
sed -i 's|net.ipv4.tcp_challenge_ack_limit.*|net.ipv4.tcp_challenge_ack_limit = 999999999|g' /etc/sysctl.conf
|
|
|
|
fi
|
2016-09-29 13:50:00 +02:00
|
|
|
sysctl -p -q
|
2016-08-10 23:16:34 +02:00
|
|
|
}
|
|
|
|
|
2016-06-26 10:55:31 +02:00
|
|
|
function status {
|
2016-07-21 21:44:20 +02:00
|
|
|
batctl o
|
2016-06-26 10:55:31 +02:00
|
|
|
}
|
|
|
|
|
2016-06-26 11:34:54 +02:00
|
|
|
function stop {
|
2016-07-21 21:44:20 +02:00
|
|
|
if [ -z "$IFACE" ]; then
|
|
|
|
echo 'error: unable to find wifi interface, not enabling batman-adv mesh'
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
if [ "$EIFACE" ]; then
|
|
|
|
brctl delif $BRIDGE bat0
|
|
|
|
brctl delif $BRIDGE $EIFACE
|
|
|
|
ifconfig $BRIDGE down || true
|
|
|
|
brctl delbr $BRIDGE
|
|
|
|
ifconfig $EIFACE down -promisc
|
|
|
|
fi
|
2016-10-06 20:09:13 +02:00
|
|
|
if [ $IFACE_SECONDARY ]; then
|
2016-10-07 19:26:38 +02:00
|
|
|
systemctl stop hostapd
|
2016-10-06 20:09:13 +02:00
|
|
|
brctl delif $BRIDGE_HOTSPOT bat0
|
|
|
|
ifconfig $BRIDGE_HOTSPOT down || true
|
|
|
|
brctl delbr $BRIDGE_HOTSPOT
|
|
|
|
fi
|
2016-07-21 21:44:20 +02:00
|
|
|
|
|
|
|
avahi-autoipd -k $BRIDGE
|
|
|
|
avahi-autoipd -k $IFACE
|
|
|
|
ifconfig bat0 down -promisc
|
|
|
|
|
|
|
|
batctl if del $IFACE
|
|
|
|
rmmod batman-adv
|
|
|
|
ifconfig $IFACE mtu 1500
|
|
|
|
ifconfig $IFACE down
|
|
|
|
iwconfig $IFACE mode managed
|
|
|
|
|
2016-08-24 23:45:45 +02:00
|
|
|
iptables -D INPUT -p tcp --dport $TRACKER_PORT -j ACCEPT
|
|
|
|
iptables -D INPUT -p udp --dport $TRACKER_PORT -j ACCEPT
|
|
|
|
iptables -D INPUT -p tcp --dport 80 -j ACCEPT
|
|
|
|
iptables -D INPUT -p udp --dport 80 -j ACCEPT
|
2016-07-21 21:44:20 +02:00
|
|
|
iptables -D INPUT -p tcp --dport 548 -j ACCEPT
|
|
|
|
iptables -D INPUT -p udp --dport 548 -j ACCEPT
|
|
|
|
iptables -D INPUT -p tcp --dport 5353 -j ACCEPT
|
|
|
|
iptables -D INPUT -p udp --dport 5353 -j ACCEPT
|
|
|
|
iptables -D INPUT -p tcp --dport 5354 -j ACCEPT
|
|
|
|
iptables -D INPUT -p udp --dport 5354 -j ACCEPT
|
|
|
|
iptables -D INPUT -p tcp --dport $ZERONET_PORT -j ACCEPT
|
|
|
|
iptables -D INPUT -p udp --dport $ZERONET_PORT -j ACCEPT
|
|
|
|
iptables -D INPUT -p tcp --dport $IPFS_PORT -j ACCEPT
|
2016-08-12 22:42:23 +02:00
|
|
|
iptables -D INPUT -p udp --dport $IPFS_PORT -j ACCEPT
|
2016-08-24 09:45:50 +02:00
|
|
|
iptables -D INPUT -p tcp --dport $TOX_PORT -j ACCEPT
|
|
|
|
iptables -D INPUT -p udp --dport $TOX_PORT -j ACCEPT
|
2016-08-26 17:38:53 +02:00
|
|
|
iptables -D INPUT -p tcp --dport $LIBREVAULT_PORT -j ACCEPT
|
|
|
|
iptables -D INPUT -p udp --dport $LIBREVAULT_PORT -j ACCEPT
|
2016-08-28 00:40:21 +02:00
|
|
|
iptables -D INPUT -p tcp --dport $TAHOELAFS_PORT -j ACCEPT
|
2016-07-21 21:44:20 +02:00
|
|
|
|
|
|
|
systemctl restart network-manager
|
2016-06-26 11:34:54 +02:00
|
|
|
}
|
|
|
|
|
2016-06-26 10:55:31 +02:00
|
|
|
function verify {
|
2016-07-21 21:44:20 +02:00
|
|
|
tempfile="$(mktemp)"
|
|
|
|
batctl o > $tempfile
|
|
|
|
if grep -q "disabled" $tempfile; then
|
|
|
|
echo $'B.A.T.M.A.N. not enabled'
|
|
|
|
rm $tempfile
|
|
|
|
stop
|
|
|
|
exit 726835
|
|
|
|
fi
|
|
|
|
echo $'B.A.T.M.A.N. is running'
|
|
|
|
rm $tempfile
|
|
|
|
}
|
|
|
|
|
|
|
|
function assign_peer_address {
|
|
|
|
for i in {1..6}; do
|
|
|
|
number=$RANDOM
|
|
|
|
let "number %= 255"
|
|
|
|
octet=$(echo "obase=16;$number" | bc)
|
|
|
|
if [ ${#octet} -lt 2 ]; then
|
|
|
|
octet="0${octet}"
|
|
|
|
fi
|
|
|
|
if [ $i -gt 1 ]; then
|
|
|
|
echo -n ":"
|
|
|
|
fi
|
|
|
|
echo -n "${octet}"
|
|
|
|
done
|
|
|
|
echo ''
|
2016-06-26 10:55:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function start {
|
2016-07-21 21:44:20 +02:00
|
|
|
if [ -z "$IFACE" ] ; then
|
|
|
|
echo 'error: unable to find wifi interface, not enabling batman-adv mesh'
|
|
|
|
exit 723657
|
|
|
|
fi
|
|
|
|
echo "info: enabling batman-adv mesh network $WIFI_SSID on $IFACE"
|
|
|
|
|
|
|
|
systemctl stop network-manager
|
|
|
|
sleep 5
|
|
|
|
|
|
|
|
# remove an avahi service which isn't used
|
|
|
|
if [ -f /etc/avahi/services/udisks.service ]; then
|
|
|
|
sudo rm /etc/avahi/services/udisks.service
|
|
|
|
fi
|
|
|
|
|
2016-08-10 23:16:34 +02:00
|
|
|
global_rate_limit
|
|
|
|
|
2016-07-21 21:44:20 +02:00
|
|
|
# Might have to re-enable wifi
|
|
|
|
rfkill unblock $(rfkill list|awk -F: "/phy/ {print $1}") || true
|
|
|
|
|
|
|
|
ifconfig $IFACE down
|
|
|
|
ifconfig $IFACE mtu 1532
|
|
|
|
ifconfig $IFACE hw ether $(assign_peer_address)
|
|
|
|
iwconfig $IFACE enc off
|
|
|
|
iwconfig $IFACE mode ad-hoc essid $WIFI_SSID channel $CHANNEL
|
|
|
|
sleep 1
|
|
|
|
iwconfig $IFACE ap $CELLID
|
|
|
|
|
|
|
|
modprobe batman-adv
|
|
|
|
batctl if add $IFACE
|
|
|
|
ifconfig $IFACE up
|
|
|
|
avahi-autoipd --force-bind --daemonize --wait $IFACE
|
|
|
|
ifconfig bat0 up promisc
|
|
|
|
|
|
|
|
#Use persistent HWAddr
|
|
|
|
ether_new=$(ifconfig eth0 | grep HWaddr | sed -e "s/.*HWaddr //")
|
|
|
|
if [ ! -f /var/lib/mesh-node/bat0 ]; then
|
|
|
|
mkdir /var/lib/mesh-node
|
|
|
|
echo "${ether_new}" > /var/lib/mesh-node/bat0
|
|
|
|
else
|
|
|
|
ether=$(cat /var/lib/mesh-node/bat0)
|
|
|
|
ifconfig bat0 hw ether ${ether}
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$EIFACE" ] ; then
|
|
|
|
brctl addbr $BRIDGE
|
|
|
|
brctl addif $BRIDGE bat0
|
|
|
|
brctl addif $BRIDGE $EIFACE
|
|
|
|
ifconfig bat0 0.0.0.0
|
|
|
|
ifconfig $EIFACE 0.0.0.0
|
|
|
|
ifconfig $EIFACE up promisc
|
|
|
|
ifconfig $BRIDGE up
|
2016-10-06 20:09:13 +02:00
|
|
|
avahi-autoipd --force-bind --daemonize --wait $BRIDGE
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ $IFACE_SECONDARY ]; then
|
|
|
|
if [[ $IFACE != $IFACE_SECONDARY ]]; then
|
|
|
|
if [ -d /etc/hostapd ]; then
|
|
|
|
# bridge between mesh and wifi hotspot for mobile
|
|
|
|
HOTSPOT_NAME=$"${WIFI_SSID}-hotspot"
|
|
|
|
ifconfig $IFACE_SECONDARY down
|
2016-10-06 23:42:29 +02:00
|
|
|
ifconfig $IFACE_SECONDARY mtu 1500
|
|
|
|
ifconfig $IFACE_SECONDARY hw ether $(assign_peer_address)
|
|
|
|
iwconfig $IFACE_SECONDARY enc open
|
2017-07-04 13:47:07 +02:00
|
|
|
iwconfig $IFACE_SECONDARY mode managed essid $HOTSPOT_NAME channel ${HOTSPOT_CHANNEL}
|
2016-10-06 20:09:13 +02:00
|
|
|
iwconfig $IFACE_SECONDARY ap $CELLID
|
|
|
|
|
|
|
|
brctl addbr $BRIDGE_HOTSPOT
|
|
|
|
brctl addif $BRIDGE_HOTSPOT bat0
|
|
|
|
brctl addif $BRIDGE_HOTSPOT $IFACE_SECONDARY
|
|
|
|
ifconfig bat0 0.0.0.0
|
|
|
|
ifconfig $IFACE_SECONDARY 0.0.0.0
|
|
|
|
|
|
|
|
sed -i 's|#DAEMON_CONF=.*|DAEMON_CONF="/etc/hostapd/hostapd.conf"|g' /etc/default/hostapd
|
|
|
|
|
2016-10-07 19:26:38 +02:00
|
|
|
echo "interface=${IFACE_SECONDARY}" > /etc/hostapd/hostapd.conf
|
2016-10-06 20:09:13 +02:00
|
|
|
echo "bridge=${BRIDGE_HOTSPOT}" >> /etc/hostapd/hostapd.conf
|
|
|
|
echo 'driver=nl80211' >> /etc/hostapd/hostapd.conf
|
|
|
|
echo "country_code=UK" >> /etc/hostapd/hostapd.conf
|
|
|
|
echo "ssid=$HOTSPOT_NAME" >> /etc/hostapd/hostapd.conf
|
|
|
|
echo 'hw_mode=g' >> /etc/hostapd/hostapd.conf
|
2017-07-04 13:47:07 +02:00
|
|
|
echo "channel=${HOTSPOT_CHANNEL}" >> /etc/hostapd/hostapd.conf
|
2016-10-06 20:09:13 +02:00
|
|
|
echo 'wpa=2' >> /etc/hostapd/hostapd.conf
|
|
|
|
echo "wpa_passphrase=$HOTSPOT_PASSPHRASE" >> /etc/hostapd/hostapd.conf
|
|
|
|
echo 'wpa_key_mgmt=WPA-PSK' >> /etc/hostapd/hostapd.conf
|
|
|
|
echo 'wpa_pairwise=TKIP' >> /etc/hostapd/hostapd.conf
|
|
|
|
echo 'rsn_pairwise=CCMP' >> /etc/hostapd/hostapd.conf
|
|
|
|
echo 'auth_algs=1' >> /etc/hostapd/hostapd.conf
|
|
|
|
echo 'macaddr_acl=0' >> /etc/hostapd/hostapd.conf
|
|
|
|
|
|
|
|
ifconfig $BRIDGE_HOTSPOT up
|
|
|
|
avahi-autoipd --force-bind --daemonize --wait $BRIDGE_HOTSPOT
|
2016-10-06 21:45:54 +02:00
|
|
|
ifconfig $IFACE_SECONDARY up promisc
|
2016-10-07 19:26:38 +02:00
|
|
|
#ifconfig $IFACE_SECONDARY auto-dhcp start
|
|
|
|
systemctl start hostapd
|
2016-10-06 20:09:13 +02:00
|
|
|
fi
|
|
|
|
fi
|
2016-07-21 21:44:20 +02:00
|
|
|
fi
|
|
|
|
|
2016-08-10 21:01:37 +02:00
|
|
|
iptables -A INPUT -p icmp --icmp-type echo-request -j ACCEPT
|
|
|
|
iptables -A OUTPUT -p icmp --icmp-type echo-reply -j ACCEPT
|
2016-08-24 23:45:45 +02:00
|
|
|
iptables -A INPUT -p tcp --dport $TRACKER_PORT -j ACCEPT
|
|
|
|
iptables -A INPUT -p udp --dport $TRACKER_PORT -j ACCEPT
|
|
|
|
iptables -A INPUT -p tcp --dport 80 -j ACCEPT
|
|
|
|
iptables -A INPUT -p udp --dport 80 -j ACCEPT
|
2016-07-21 21:44:20 +02:00
|
|
|
iptables -A INPUT -p tcp --dport 548 -j ACCEPT
|
|
|
|
iptables -A INPUT -p udp --dport 548 -j ACCEPT
|
|
|
|
iptables -A INPUT -p tcp --dport 5353 -j ACCEPT
|
|
|
|
iptables -A INPUT -p udp --dport 5353 -j ACCEPT
|
|
|
|
iptables -A INPUT -p tcp --dport 5354 -j ACCEPT
|
|
|
|
iptables -A INPUT -p udp --dport 5354 -j ACCEPT
|
|
|
|
iptables -A INPUT -p tcp --dport $ZERONET_PORT -j ACCEPT
|
|
|
|
iptables -A INPUT -p udp --dport $ZERONET_PORT -j ACCEPT
|
|
|
|
iptables -A INPUT -p tcp --dport $IPFS_PORT -j ACCEPT
|
2016-08-24 09:45:50 +02:00
|
|
|
iptables -A INPUT -p tcp --dport $TOX_PORT -j ACCEPT
|
|
|
|
iptables -A INPUT -p udp --dport $TOX_PORT -j ACCEPT
|
2016-08-26 17:38:53 +02:00
|
|
|
iptables -A INPUT -p tcp --dport $LIBREVAULT_PORT -j ACCEPT
|
|
|
|
iptables -A INPUT -p udp --dport $LIBREVAULT_PORT -j ACCEPT
|
2016-08-28 00:40:21 +02:00
|
|
|
iptables -A INPUT -p tcp --dport $TAHOELAFS_PORT -j ACCEPT
|
2016-07-21 21:44:20 +02:00
|
|
|
|
|
|
|
systemctl restart avahi-daemon
|
|
|
|
|
|
|
|
verify
|
2016-01-14 18:45:02 +01:00
|
|
|
}
|
|
|
|
|
2016-09-10 15:58:51 +02:00
|
|
|
function monitor {
|
|
|
|
if [ -z "$IFACE" ] ; then
|
|
|
|
echo 'error: unable to find wifi interface, not enabling batman-adv mesh'
|
|
|
|
exit 723657
|
|
|
|
fi
|
|
|
|
|
|
|
|
stop
|
|
|
|
|
|
|
|
echo "info: monitoring mesh network $WIFI_SSID on $IFACE"
|
|
|
|
|
|
|
|
systemctl stop network-manager
|
|
|
|
sleep 5
|
|
|
|
|
|
|
|
global_rate_limit
|
|
|
|
|
|
|
|
# Might have to re-enable wifi
|
|
|
|
rfkill unblock $(rfkill list|awk -F: "/phy/ {print $1}") || true
|
|
|
|
|
|
|
|
ifconfig $IFACE down
|
|
|
|
ifconfig $IFACE mtu 1532
|
|
|
|
ifconfig $IFACE hw ether $(assign_peer_address)
|
|
|
|
iwconfig $IFACE enc off
|
|
|
|
iwconfig $IFACE mode monitor channel $CHANNEL
|
|
|
|
sleep 1
|
|
|
|
iwconfig $IFACE ap $CELLID
|
|
|
|
|
|
|
|
modprobe batman-adv
|
|
|
|
batctl if add $IFACE
|
|
|
|
ifconfig $IFACE up
|
|
|
|
horst -i $IFACE
|
2016-09-10 16:20:14 +02:00
|
|
|
start
|
2016-09-10 15:58:51 +02:00
|
|
|
}
|
|
|
|
|
2016-01-14 18:45:02 +01:00
|
|
|
if ! grep -q "$IFACE" /proc/net/dev; then
|
2016-07-21 21:44:20 +02:00
|
|
|
echo 'Interface $IFACE was not found'
|
|
|
|
stop
|
|
|
|
exit 1
|
2016-01-14 18:45:02 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
case "$1" in
|
2016-09-10 15:58:51 +02:00
|
|
|
start|stop|status|monitor)
|
2016-07-21 21:44:20 +02:00
|
|
|
$1
|
|
|
|
;;
|
|
|
|
restart)
|
|
|
|
stop
|
|
|
|
sleep 10
|
|
|
|
start
|
|
|
|
;;
|
|
|
|
ping)
|
|
|
|
batctl ping $2
|
|
|
|
;;
|
2016-09-10 14:09:33 +02:00
|
|
|
data)
|
|
|
|
watch -n1 "batctl s | grep mgmt | grep bytes"
|
|
|
|
;;
|
2016-07-21 21:44:20 +02:00
|
|
|
ls|list)
|
|
|
|
avahi-browse -atl
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "error: invalid parameter $1"
|
|
|
|
echo 'usage: $0 {start|stop|restart|status|ping|ls|list}'
|
|
|
|
exit 2
|
|
|
|
;;
|
2016-01-14 18:45:02 +01:00
|
|
|
esac
|
|
|
|
exit 0
|