Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Gluon SSID Changer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
firmware
Gluon SSID Changer
Commits
bfdbe820
Commit
bfdbe820
authored
9 years ago
by
MrMM
Browse files
Options
Downloads
Patches
Plain Diff
Set the online and offline SSID at the top of the script
parent
7878a502
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
files/lib/gluon/ssid-changer/ssid-changer.sh
+18
-9
18 additions, 9 deletions
files/lib/gluon/ssid-changer/ssid-changer.sh
with
18 additions
and
9 deletions
files/lib/gluon/ssid-changer/ssid-changer.sh
+
18
−
9
View file @
bfdbe820
#!/bin/sh
# At first some Definitions:
ONLINE_SSID
=
'Freifunk'
OFFLINE_PREFIX
=
'FF_OFFLINE_'
# Use something short to leave space for the nodename
#Is there an active Gateway
GATEWAY_TQ
=
`
batctl gwl |
grep
"^=>"
|
cut
-d
" "
-f3
|
tr
-d
"()"
`
if
[
$GATEWAY_TQ
>
50
]
;
if
[
$GATEWAY_TQ
-gt
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 future version
if
[
$CURRENT_SSID
==
'Freifunk'
]
CURRENT_SSID
=
`
iw dev
$RADIO
info |
grep
ssid |
cut
-d
" "
-f2
`
# Is there a better way to fetch the SSID wich is active?
if
[
$CURRENT_SSID
==
$ONLINE_SSID
]
then
echo
"SSID
$CURRENT_SSID
is correct, noting to do"
else
echo
"SSID is
$CURRENT_SSID
, change to
$ONLINE_SSID
"
NUM
=
`
echo
$RADIO
|
tail
-c
2
`
`
uci
set
wireless.client_radio
$NUM
.ssid
=
"Freifunk"
`
`
uci
set
wireless.client_radio
$NUM
.ssid
=
$ONLINE_SSID
`
wifi
fi
done
...
...
@@ -22,15 +27,20 @@ then
else
echo
"Gateway TQ is
$GATEWAY_TQ
node is considered offline"
NODENAME
=
`
uname
-n
`
#There is a limit auf 32 charakters for the ssid + 'FF_OFFLINE_' leves us 21 maximum SSID length
if
[
${#
NODENAME
}
>
20
]
;
then
OFFLINE_SSID
=
`
echo
"FF_OFFLINE_
${
STRING
:0:9
}
...
${
STRING
:
(-9)
}
"
`
# use the first and last part of the nodename for nodes with long prefix
if
[
${#
NODENAME
}
>
30-
${#
OFFLINE_PREFIX
}
]
;
then
#32 would be possible as well
HALF
=
$((
(
28
-
${#
OFFLINE_PREFIX
}
)
/
2
))
SKIP
=
$((
${#
NODENAME
}
-
$HALF
))
OFFLINE_SSID
=
$OFFLINE_PREFIX
${
NODENAME
:0:
$HALF
}
...
${
NODENAME
:
$SKIP
:
${#
NODENAME
}}
# use the first and last part of the nodename for nodes with long name
else
OFFLINE_SSID
=
`
$OFFLINE_PREFIX$NODENAME
`
fi
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
echo
"SSID is
$CURRENT_SSID
, change to
$OFFLINE_SSID
"
NUM
=
`
echo
$RADIO
|
tail
-c
2
`
`
uci
set
wireless.client_radio
$NUM
.ssid
=
"
$OFFLINE_SSID
"
`
wifi
...
...
@@ -38,4 +48,3 @@ else
done
fi
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment