Skip to content
Snippets Groups Projects
Commit 0bb1351c authored by MrMM's avatar MrMM
Browse files

First Version of the FFAC ssid-changer

parents
No related branches found
No related tags found
No related merge requests found
Makefile 0 → 100644
include $(TOPDIR)/rules.mk
PKG_NAME:=gluon-ssid-changer
PKG_VERSION:=1
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
include $(INCLUDE_DIR)/package.mk
define Package/gluon-ssid-changer
SECTION:=gluon
CATEGORY:=Gluon
TITLE:=SSID Changer
DEPENDS:=+gluon-core +kmod-batman-adv +batctl
endef
define Build/Prepar
mkdir -p $(PKG_BUILD_DIR)
endef
define Package/gluon-offline-ssid/install
$(CP) ./files/* $(1)/
endef
$(eval $(call BuildPackage,gluon-ssid-changer))
ssid-changer
============
Script to change the SSID when ther is no suffic sufficient connection in the mesh.
It is quite basic, just check the TQ of the Connection and decide if a change of the SSID is necessary.
Add the following lines to the modules file in your gluon directory:
PACKAGES_SSIDCHANGER_REPO=https://github.com/ffac/gluon-ssid-changer.git
PACKAGES_SSIDCHANGER_COMMIT=tbd
With this done you can add the package gluon-ssid-changer to your site.mk
# gluon-ssid-changer
* * * * * /lib/gluon/ssid-changer/ssid-changer.sh
#!/bin/sh
#Is there an active Gateway
GATEWAY_TQ=`batctl gwl | grep "^=>" | cut -d" " -f3 | tr -d "()"`
if [ $GATEWAY_TQ > 50 ];
then
echo "Gateway TQ is $GATEWAY_TQ node is online"
for RADIO in $(iw dev | grep client | cut -d" " -f2); do
CURRENT_SSID=`iw dev $RADIO info | grep ssid | cut -d" " -f2`
# Use Freifunk for now, get it from /lib/gluon/site.conf in futre version
if [ $CURRENT_SSID == 'Freifunk' ]
then
echo "SSID $CURRENT_SSID is correct, noting to do"
else
NUM=`echo $RADIO | tail -c 2`
`uci set wireless.client_radio$NUM.ssid="Freifunk"`
wifi
fi
done
else
echo "Gateway TQ is $GATEWAY_TQ node is considered offline"
NODENAME=`uname -n`
OFFLINE_SSID=`echo "Freifunk_OFFLINE_$NODENAME" | cut -b -30`
for RADIO in $(iw dev | grep client | cut -d" " -f2); do
CURRENT_SSID=`iw dev $RADIO info | grep ssid | cut -d" " -f2`
if [ $CURRENT_SSID == $OFFLINE_SSID ]
then
echo "SSID $CURRENT_SSID is correct, noting to do"
else
NUM=`echo $RADIO | tail -c 2`
`uci set wireless.client_radio$NUM.ssid="$OFFLINE_SSID"`
wifi
fi
done
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment