summaryrefslogtreecommitdiffstats
path: root/usr/lib
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2013-06-26 14:00:11 +0200
committermakefu <github@syntax-fehler.de>2013-06-26 14:00:30 +0200
commit9fe9479fcaf843edd262acc28ad4bd71f475a246 (patch)
tree65b25ed35c2fcdede191fa97dd15236c4ef15a72 /usr/lib
parent07740b90c9803ca41e1ef931277a65ebcd4bfcd8 (diff)
02easybox uses plugin_core now
Diffstat (limited to 'usr/lib')
-rwxr-xr-xusr/lib/autowifi/plugins/02easybox19
1 files changed, 9 insertions, 10 deletions
diff --git a/usr/lib/autowifi/plugins/02easybox b/usr/lib/autowifi/plugins/02easybox
index 2126e17c..3d7cb8c1 100755
--- a/usr/lib/autowifi/plugins/02easybox
+++ b/usr/lib/autowifi/plugins/02easybox
@@ -1,21 +1,20 @@
#!/bin/sh
#ESSID MAC CHANNEL ENCRYPTION WPA WPA2
-if ! echo "$1" | egrep -qi "(EasyBox-|Arcor-|Vodafone-)"; then
- exit 1
-else
- MAC=${2?\$2 must be MAC}
- # Take the last 2 Bytes of the MAC-Address (0B:EC), and convert it to decimal.
+cd $(dirname $(readlink -f $0))
+. ../lib/plugin_core
+parse_plugin_args "$@"
- take5=${MAC:12}
- last4=${take5/:/}
+if ! echo "$ESSID" | egrep -i "(EasyBox-|Arcor-|Vodafone-)" >/dev/null; then
+ echo "Essid $ESSID is not Default EasyBox|Arcor|Vodafone"
+ exit 1
+else
# Fill up to 4 places with zeros, if necessary:
- deci=$(printf "%04d" "0x$last4" | sed 's/.*\(....\)/\1/;s/./& /g')
- #echo M4: ${deci[@]}
+ deci=$(printf "%04d" "0x${MAC:8:4}" | sed 's/.*\(....\)/\1/;s/./& /g')
#
# The digits M9 to M12 are just the last digits (9.-12.) of the MAC:
- hexi=$(echo ${MAC:12:5} | sed 's/://;s/./& /g')
+ hexi=$(echo ${MAC:8:4} | sed 's/./& /g')
#echo 'M4 (Hex): ' ${hexi[@]}
# K1 = last byte of (d0 + d1 + h2 + h3)
# K2 = last byte of (h0 + h1 + d2 + d3)