Skip to content
Snippets Groups Projects
Commit 8e52e31b authored by rubo77's avatar rubo77
Browse files

add ssid-changer for lede

parent 825c22dd
No related branches found
No related tags found
No related merge requests found
......@@ -19,11 +19,11 @@ PACKAGES_ROAMGUIDE_REPO=https://github.com/Freifunk-Nord/roamguide
# the version/commit of the git repository to clone
PACKAGES_FFKI_COMMIT=5ba5aaf73aab4937978ad98150518e0d1f32d611
PACKAGES_EULENFUNK_COMMIT=e3196e8d2ed07849441c38de8a644123354e7243
PACKAGES_SSIDCHANGER_COMMIT=2550af343202746ac6be9ce9b719cb1caa672d82
PACKAGES_SSIDCHANGER_COMMIT=0bc1ee54369733fecdf19b963b5e92cce6a9367d
PACKAGES_ROAMGUIDE_COMMIT=cc8253d6dd62cd6ba4f04506711edd0705dc5532
# the branch to check out
PACKAGES_FFKI_BRANCH=master
PACKAGES_EULENFUNK_BRANCH=v2016.2
PACKAGES_SSIDCHANGER_BRANCH=master
PACKAGES_SSIDCHANGER_BRANCH=lede
PACKAGES_ROAMGUIDE_BRANCH=master
......@@ -230,4 +230,20 @@
},
},
},
ssid_changer = {
switch_timeframe = 1440,-- only once every timeframe (in minutes) the SSID will change to OFFLINE
-- set to 1440 to change once a day
-- set to 1 minute to change every time the router gets offline
first = 5, -- the first few minutes directly after reboot within which an Offline-SSID always may be activated
prefix = 'FF_OFFLINE_', -- use something short to leave space for the nodename (no '~' allowed!)
suffix = 'nodename', -- generate the SSID with either 'nodename', 'mac' or to use only the prefix: 'none'
tq_limit_enabled = 0, -- if false, the offline SSID will only be set if there is no gateway reacheable
-- upper and lower limit to turn the offline_ssid on and off
-- in-between these two values the SSID will never be changed to prevent it from toggeling every minute.
-- TODO: enabled=1 still has to be implemented
tq_limit_max = '55', -- upper limit, above that the online SSID will be used
tq_limit_min = '45' -- lower limit, below that the offline SSID will be used
},
}
......@@ -31,8 +31,8 @@ GLUON_SITE_PACKAGES := \
# roamguide
#
# from ssidchanger-packages:
#GLUON_SITE_PACKAGES += \
# gluon-ssid-changer
GLUON_SITE_PACKAGES += \
gluon-ssid-changer
# from ffhh-packages:
#GLUON_SITE_PACKAGES += \
......
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