diff options
author | Lorenzo Santina <lorenzo.santina@edu.unito.it> | 2017-11-06 14:15:43 +0100 |
---|---|---|
committer | Lorenzo Santina <lorenzo.santina@edu.unito.it> | 2017-11-06 14:15:43 +0100 |
commit | 40c744d96a28ad332b92c8cfde8dfc4caa5fc3d9 (patch) | |
tree | 51b1a7490cdb1b07f9cd354d8e41c3e2f78f2518 /modules | |
parent | 0ded26eba98b5d24ca6eb75eeeb1dc012b7abd68 (diff) |
luci-mod-admin-full: wifi.lua: 80211r ft_over_ds
Allow user to chose if use FT over DS protocol or
FT over the Air protocol for Fast BSS Transition
Signed-off-by: Lorenzo Santina <lorenzo.santina@edu.unito.it>
Diffstat (limited to 'modules')
-rw-r--r-- | modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/wifi.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/wifi.lua b/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/wifi.lua index 8528f8624..c64226931 100644 --- a/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/wifi.lua +++ b/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/wifi.lua @@ -801,6 +801,12 @@ if hwtype == "mac80211" or hwtype == "prism2" then reassociation_deadline.datatype = "range(1000,65535)" reassociation_deadline.rmempty = true + ft_protocol = s:taboption("encryption", ListValue, "ft_over_ds", translate("FT protocol")) + ft_protocol:depends({ieee80211r="1"}) + ft_protocol:value("1", translatef("FT over DS")) + ft_protocol:value("0", translatef("FT over the Air")) + ft_protocol.rmempty = true + ft_psk_generate_local = s:taboption("encryption", Flag, "ft_psk_generate_local", translate("Generate PMK locally"), translate("When using a PSK, the PMK can be generated locally without inter AP communications")) |