modules/admin-full: change workflow of wifi config page; display only one network (choosen in wifi overview) and add a hook for section remapping
on uci commit
This commit is contained in:
parent
66fe827403
commit
2a1f1a1d7b
1 changed files with 305 additions and 285 deletions
|
@ -14,6 +14,7 @@ $Id$
|
||||||
|
|
||||||
local wa = require "luci.tools.webadmin"
|
local wa = require "luci.tools.webadmin"
|
||||||
local nw = require "luci.model.network"
|
local nw = require "luci.model.network"
|
||||||
|
local ww = require "luci.model.wireless"
|
||||||
local fs = require "nixio.fs"
|
local fs = require "nixio.fs"
|
||||||
|
|
||||||
arg[1] = arg[1] or ""
|
arg[1] = arg[1] or ""
|
||||||
|
@ -21,7 +22,22 @@ arg[2] = arg[2] or ""
|
||||||
|
|
||||||
m = Map("wireless", translate("networks"), translate("a_w_networks1"))
|
m = Map("wireless", translate("networks"), translate("a_w_networks1"))
|
||||||
m:chain("network")
|
m:chain("network")
|
||||||
|
|
||||||
|
local ifsection
|
||||||
|
|
||||||
|
function m.on_commit(map)
|
||||||
|
nw.init(map.uci)
|
||||||
|
ww.init(map.uci)
|
||||||
|
|
||||||
|
local wnet = ww:get_network(arg[2])
|
||||||
|
if ifsection and wnet then
|
||||||
|
ifsection.section = wnet.sid
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
nw.init(m.uci)
|
nw.init(m.uci)
|
||||||
|
ww.init(m.uci)
|
||||||
|
|
||||||
|
|
||||||
local iw = nil
|
local iw = nil
|
||||||
local tx_powers = nil
|
local tx_powers = nil
|
||||||
|
@ -201,332 +217,336 @@ end
|
||||||
|
|
||||||
----------------------- Interface -----------------------
|
----------------------- Interface -----------------------
|
||||||
|
|
||||||
s = m:section(NamedSection, arg[2], "wifi-iface", translate("interfaces"))
|
local wnet = ww:get_network(arg[2])
|
||||||
s.addremove = false
|
|
||||||
s.anonymous = true
|
|
||||||
s.defaults.device = arg[1]
|
|
||||||
|
|
||||||
s:tab("general", translate("a_w_general", "General Setup"))
|
if wnet then
|
||||||
s:tab("encryption", translate("a_w_security", "Wireless Security"))
|
s = m:section(NamedSection, wnet.sid, "wifi-iface", ww:get_i18n(wnet))
|
||||||
s:tab("macfilter", translate("a_w_macfilter", "MAC-Filter"))
|
ifsection = s
|
||||||
s:tab("advanced", translate("a_w_advanced", "Advanced Settings"))
|
s.addremove = false
|
||||||
|
s.anonymous = true
|
||||||
|
s.defaults.device = arg[1]
|
||||||
|
|
||||||
s:taboption("general", Value, "ssid", translate("wifi_essid"))
|
s:tab("general", translate("a_w_general", "General Setup"))
|
||||||
|
s:tab("encryption", translate("a_w_security", "Wireless Security"))
|
||||||
|
s:tab("macfilter", translate("a_w_macfilter", "MAC-Filter"))
|
||||||
|
s:tab("advanced", translate("a_w_advanced", "Advanced Settings"))
|
||||||
|
|
||||||
mode = s:taboption("general", ListValue, "mode", translate("mode"))
|
s:taboption("general", Value, "ssid", translate("wifi_essid"))
|
||||||
mode.override_values = true
|
|
||||||
mode:value("ap", translate("a_w_ap"))
|
|
||||||
mode:value("sta", translate("a_w_client"))
|
|
||||||
mode:value("adhoc", translate("a_w_adhoc"))
|
|
||||||
|
|
||||||
bssid = s:taboption("general", Value, "bssid", translate("wifi_bssid"))
|
mode = s:taboption("general", ListValue, "mode", translate("mode"))
|
||||||
|
mode.override_values = true
|
||||||
|
mode:value("ap", translate("a_w_ap"))
|
||||||
|
mode:value("sta", translate("a_w_client"))
|
||||||
|
mode:value("adhoc", translate("a_w_adhoc"))
|
||||||
|
|
||||||
network = s:taboption("general", Value, "network", translate("network"), translate("a_w_network1"))
|
bssid = s:taboption("general", Value, "bssid", translate("wifi_bssid"))
|
||||||
network.rmempty = true
|
|
||||||
network.template = "cbi/network_netlist"
|
|
||||||
network.widget = "radio"
|
|
||||||
|
|
||||||
function network.write(self, section, value)
|
network = s:taboption("general", Value, "network", translate("network"), translate("a_w_network1"))
|
||||||
local i = nw:get_interface(section)
|
network.rmempty = true
|
||||||
if i then
|
network.template = "cbi/network_netlist"
|
||||||
if value == '-' then
|
network.widget = "radio"
|
||||||
value = m:formvalue(self:cbid(section) .. ".newnet")
|
|
||||||
if value and #value > 0 then
|
function network.write(self, section, value)
|
||||||
local n = nw:add_network(value, {type="bridge", proto="none"})
|
local i = nw:get_interface(section)
|
||||||
if n then n:add_interface(i) end
|
if i then
|
||||||
|
if value == '-' then
|
||||||
|
value = m:formvalue(self:cbid(section) .. ".newnet")
|
||||||
|
if value and #value > 0 then
|
||||||
|
local n = nw:add_network(value, {type="bridge", proto="none"})
|
||||||
|
if n then n:add_interface(i) end
|
||||||
|
else
|
||||||
|
local n = i:get_network()
|
||||||
|
if n then n:del_interface(i) end
|
||||||
|
end
|
||||||
else
|
else
|
||||||
local n = i:get_network()
|
local n = nw:get_network(value)
|
||||||
if n then n:del_interface(i) end
|
if n then
|
||||||
end
|
n:type("bridge")
|
||||||
else
|
n:add_interface(i)
|
||||||
local n = nw:get_network(value)
|
end
|
||||||
if n then
|
|
||||||
n:type("bridge")
|
|
||||||
n:add_interface(i)
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
|
||||||
|
|
||||||
-------------------- MAC80211 Interface ----------------------
|
-------------------- MAC80211 Interface ----------------------
|
||||||
|
|
||||||
if hwtype == "mac80211" then
|
if hwtype == "mac80211" then
|
||||||
if fs.access("/usr/sbin/iw") then
|
if fs.access("/usr/sbin/iw") then
|
||||||
mode:value("mesh", "802.11s")
|
mode:value("mesh", "802.11s")
|
||||||
end
|
|
||||||
|
|
||||||
mode:value("ahdemo", translate("a_w_ahdemo"))
|
|
||||||
mode:value("monitor", translate("a_w_monitor"))
|
|
||||||
bssid:depends({mode="adhoc"})
|
|
||||||
|
|
||||||
s:taboption("advanced", Value, "frag", translate("wifi_frag"))
|
|
||||||
s:taboption("advanced", Value, "rts", translate("wifi_rts"))
|
|
||||||
end
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
-------------------- Madwifi Interface ----------------------
|
|
||||||
|
|
||||||
if hwtype == "atheros" then
|
|
||||||
mode:value("ahdemo", translate("a_w_ahdemo"))
|
|
||||||
mode:value("monitor", translate("a_w_monitor"))
|
|
||||||
mode:value("ap-wds", "%s (%s)" % {translate("a_w_ap"), translate("a_w_wds")})
|
|
||||||
mode:value("sta-wds", "%s (%s)" % {translate("a_w_client"), translate("a_w_wds")})
|
|
||||||
|
|
||||||
function mode.write(self, section, value)
|
|
||||||
if value == "ap-wds" then
|
|
||||||
ListValue.write(self, section, "ap")
|
|
||||||
m.uci:set("wireless", section, "wds", 1)
|
|
||||||
elseif value == "sta-wds" then
|
|
||||||
ListValue.write(self, section, "sta")
|
|
||||||
m.uci:set("wireless", section, "wds", 1)
|
|
||||||
else
|
|
||||||
ListValue.write(self, section, value)
|
|
||||||
m.uci:delete("wireless", section, "wds")
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
mode:value("ahdemo", translate("a_w_ahdemo"))
|
||||||
|
mode:value("monitor", translate("a_w_monitor"))
|
||||||
|
bssid:depends({mode="adhoc"})
|
||||||
|
|
||||||
|
s:taboption("advanced", Value, "frag", translate("wifi_frag"))
|
||||||
|
s:taboption("advanced", Value, "rts", translate("wifi_rts"))
|
||||||
end
|
end
|
||||||
|
|
||||||
function mode.cfgvalue(self, section)
|
|
||||||
local mode = ListValue.cfgvalue(self, section)
|
|
||||||
local wds = m.uci:get("wireless", section, "wds") == "1"
|
|
||||||
|
|
||||||
if mode == "ap" and wds then
|
|
||||||
return "ap-wds"
|
-------------------- Madwifi Interface ----------------------
|
||||||
elseif mode == "sta" and wds then
|
|
||||||
return "sta-wds"
|
if hwtype == "atheros" then
|
||||||
else
|
mode:value("ahdemo", translate("a_w_ahdemo"))
|
||||||
return mode
|
mode:value("monitor", translate("a_w_monitor"))
|
||||||
|
mode:value("ap-wds", "%s (%s)" % {translate("a_w_ap"), translate("a_w_wds")})
|
||||||
|
mode:value("sta-wds", "%s (%s)" % {translate("a_w_client"), translate("a_w_wds")})
|
||||||
|
|
||||||
|
function mode.write(self, section, value)
|
||||||
|
if value == "ap-wds" then
|
||||||
|
ListValue.write(self, section, "ap")
|
||||||
|
m.uci:set("wireless", section, "wds", 1)
|
||||||
|
elseif value == "sta-wds" then
|
||||||
|
ListValue.write(self, section, "sta")
|
||||||
|
m.uci:set("wireless", section, "wds", 1)
|
||||||
|
else
|
||||||
|
ListValue.write(self, section, value)
|
||||||
|
m.uci:delete("wireless", section, "wds")
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function mode.cfgvalue(self, section)
|
||||||
|
local mode = ListValue.cfgvalue(self, section)
|
||||||
|
local wds = m.uci:get("wireless", section, "wds") == "1"
|
||||||
|
|
||||||
|
if mode == "ap" and wds then
|
||||||
|
return "ap-wds"
|
||||||
|
elseif mode == "sta" and wds then
|
||||||
|
return "sta-wds"
|
||||||
|
else
|
||||||
|
return mode
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
bssid:depends({mode="adhoc"})
|
||||||
|
bssid:depends({mode="ahdemo"})
|
||||||
|
|
||||||
|
wdssep = s:taboption("advanced", Flag, "wdssep", translate("wifi_wdssep"))
|
||||||
|
wdssep:depends({mode="ap-wds"})
|
||||||
|
|
||||||
|
s:taboption("advanced", Flag, "doth", "802.11h")
|
||||||
|
hidden = s:taboption("general", Flag, "hidden", translate("wifi_hidden"))
|
||||||
|
hidden:depends({mode="ap"})
|
||||||
|
hidden:depends({mode="adhoc"})
|
||||||
|
hidden:depends({mode="ap-wds"})
|
||||||
|
hidden:depends({mode="sta-wds"})
|
||||||
|
isolate = s:taboption("advanced", Flag, "isolate", translate("wifi_isolate"),
|
||||||
|
translate("wifi_isolate_desc"))
|
||||||
|
isolate:depends({mode="ap"})
|
||||||
|
s:taboption("advanced", Flag, "bgscan", translate("wifi_bgscan"))
|
||||||
|
|
||||||
|
mp = s:taboption("macfilter", ListValue, "macpolicy", translate("wifi_macpolicy"))
|
||||||
|
mp:value("", translate("disable"))
|
||||||
|
mp:value("deny", translate("wifi_whitelist"))
|
||||||
|
mp:value("allow", translate("wifi_blacklist"))
|
||||||
|
ml = s:taboption("macfilter", DynamicList, "maclist", translate("wifi_maclist"))
|
||||||
|
ml:depends({macpolicy="allow"})
|
||||||
|
ml:depends({macpolicy="deny"})
|
||||||
|
|
||||||
|
s:taboption("advanced", Value, "rate", translate("wifi_rate"))
|
||||||
|
s:taboption("advanced", Value, "mcast_rate", translate("wifi_mcast_rate"))
|
||||||
|
s:taboption("advanced", Value, "frag", translate("wifi_frag"))
|
||||||
|
s:taboption("advanced", Value, "rts", translate("wifi_rts"))
|
||||||
|
s:taboption("advanced", Value, "minrate", translate("wifi_minrate"))
|
||||||
|
s:taboption("advanced", Value, "maxrate", translate("wifi_maxrate"))
|
||||||
|
s:taboption("advanced", Flag, "compression", translate("wifi_compression"))
|
||||||
|
|
||||||
|
s:taboption("advanced", Flag, "bursting", translate("wifi_bursting"))
|
||||||
|
s:taboption("advanced", Flag, "turbo", translate("wifi_turbo"))
|
||||||
|
s:taboption("advanced", Flag, "ff", translate("wifi_ff"))
|
||||||
|
|
||||||
|
s:taboption("advanced", Flag, "wmm", translate("wifi_wmm"))
|
||||||
|
s:taboption("advanced", Flag, "xr", translate("wifi_xr"))
|
||||||
|
s:taboption("advanced", Flag, "ar", translate("wifi_ar"))
|
||||||
|
|
||||||
|
local swm = s:taboption("advanced", Flag, "sw_merge", translate("wifi_nosbeacon"))
|
||||||
|
swm:depends({mode="adhoc"})
|
||||||
|
|
||||||
|
local nos = s:taboption("advanced", Flag, "nosbeacon", translate("wifi_nosbeacon"))
|
||||||
|
nos:depends({mode="sta"})
|
||||||
|
nos:depends({mode="sta-wds"})
|
||||||
|
|
||||||
|
local probereq = s:taboption("advanced", Flag, "probereq", translate("wifi_noprobereq"))
|
||||||
|
probereq.enabled = "0"
|
||||||
|
probereq.disabled = "1"
|
||||||
end
|
end
|
||||||
|
|
||||||
bssid:depends({mode="adhoc"})
|
|
||||||
bssid:depends({mode="ahdemo"})
|
|
||||||
|
|
||||||
wdssep = s:taboption("advanced", Flag, "wdssep", translate("wifi_wdssep"))
|
-------------------- Broadcom Interface ----------------------
|
||||||
wdssep:depends({mode="ap-wds"})
|
|
||||||
|
|
||||||
s:taboption("advanced", Flag, "doth", "802.11h")
|
if hwtype == "broadcom" then
|
||||||
hidden = s:taboption("general", Flag, "hidden", translate("wifi_hidden"))
|
mode:value("wds", translate("a_w_wds"))
|
||||||
hidden:depends({mode="ap"})
|
mode:value("monitor", translate("a_w_monitor"))
|
||||||
hidden:depends({mode="adhoc"})
|
|
||||||
hidden:depends({mode="ap-wds"})
|
|
||||||
hidden:depends({mode="sta-wds"})
|
|
||||||
isolate = s:taboption("advanced", Flag, "isolate", translate("wifi_isolate"),
|
|
||||||
translate("wifi_isolate_desc"))
|
|
||||||
isolate:depends({mode="ap"})
|
|
||||||
s:taboption("advanced", Flag, "bgscan", translate("wifi_bgscan"))
|
|
||||||
|
|
||||||
mp = s:taboption("macfilter", ListValue, "macpolicy", translate("wifi_macpolicy"))
|
hidden = s:taboption("general", Flag, "hidden", translate("wifi_hidden"))
|
||||||
mp:value("", translate("disable"))
|
hidden:depends({mode="ap"})
|
||||||
mp:value("deny", translate("wifi_whitelist"))
|
hidden:depends({mode="adhoc"})
|
||||||
mp:value("allow", translate("wifi_blacklist"))
|
hidden:depends({mode="wds"})
|
||||||
ml = s:taboption("macfilter", DynamicList, "maclist", translate("wifi_maclist"))
|
|
||||||
ml:depends({macpolicy="allow"})
|
|
||||||
ml:depends({macpolicy="deny"})
|
|
||||||
|
|
||||||
s:taboption("advanced", Value, "rate", translate("wifi_rate"))
|
isolate = s:taboption("advanced", Flag, "isolate", translate("wifi_isolate"),
|
||||||
s:taboption("advanced", Value, "mcast_rate", translate("wifi_mcast_rate"))
|
translate("wifi_isolate_desc"))
|
||||||
s:taboption("advanced", Value, "frag", translate("wifi_frag"))
|
isolate:depends({mode="ap"})
|
||||||
s:taboption("advanced", Value, "rts", translate("wifi_rts"))
|
|
||||||
s:taboption("advanced", Value, "minrate", translate("wifi_minrate"))
|
|
||||||
s:taboption("advanced", Value, "maxrate", translate("wifi_maxrate"))
|
|
||||||
s:taboption("advanced", Flag, "compression", translate("wifi_compression"))
|
|
||||||
|
|
||||||
s:taboption("advanced", Flag, "bursting", translate("wifi_bursting"))
|
s:taboption("advanced", Flag, "doth", "802.11h")
|
||||||
s:taboption("advanced", Flag, "turbo", translate("wifi_turbo"))
|
s:taboption("advanced", Flag, "wmm", translate("wifi_wmm"))
|
||||||
s:taboption("advanced", Flag, "ff", translate("wifi_ff"))
|
|
||||||
|
|
||||||
s:taboption("advanced", Flag, "wmm", translate("wifi_wmm"))
|
bssid:depends({mode="wds"})
|
||||||
s:taboption("advanced", Flag, "xr", translate("wifi_xr"))
|
bssid:depends({mode="adhoc"})
|
||||||
s:taboption("advanced", Flag, "ar", translate("wifi_ar"))
|
end
|
||||||
|
|
||||||
local swm = s:taboption("advanced", Flag, "sw_merge", translate("wifi_nosbeacon"))
|
|
||||||
swm:depends({mode="adhoc"})
|
|
||||||
|
|
||||||
local nos = s:taboption("advanced", Flag, "nosbeacon", translate("wifi_nosbeacon"))
|
|
||||||
nos:depends({mode="sta"})
|
|
||||||
nos:depends({mode="sta-wds"})
|
|
||||||
|
|
||||||
local probereq = s:taboption("advanced", Flag, "probereq", translate("wifi_noprobereq"))
|
|
||||||
probereq.enabled = "0"
|
|
||||||
probereq.disabled = "1"
|
|
||||||
end
|
|
||||||
|
|
||||||
|
|
||||||
-------------------- Broadcom Interface ----------------------
|
----------------------- HostAP Interface ---------------------
|
||||||
|
|
||||||
if hwtype == "broadcom" then
|
if hwtype == "prism2" then
|
||||||
mode:value("wds", translate("a_w_wds"))
|
mode:value("wds", translate("a_w_wds"))
|
||||||
mode:value("monitor", translate("a_w_monitor"))
|
mode:value("monitor", translate("a_w_monitor"))
|
||||||
|
|
||||||
hidden = s:taboption("general", Flag, "hidden", translate("wifi_hidden"))
|
hidden = s:taboption("general", Flag, "hidden", translate("wifi_hidden"))
|
||||||
hidden:depends({mode="ap"})
|
hidden:depends({mode="ap"})
|
||||||
hidden:depends({mode="adhoc"})
|
hidden:depends({mode="adhoc"})
|
||||||
hidden:depends({mode="wds"})
|
hidden:depends({mode="wds"})
|
||||||
|
|
||||||
isolate = s:taboption("advanced", Flag, "isolate", translate("wifi_isolate"),
|
bssid:depends({mode="sta"})
|
||||||
translate("wifi_isolate_desc"))
|
|
||||||
isolate:depends({mode="ap"})
|
|
||||||
|
|
||||||
s:taboption("advanced", Flag, "doth", "802.11h")
|
mp = s:taboption("macfilter", ListValue, "macpolicy", translate("wifi_macpolicy"))
|
||||||
s:taboption("advanced", Flag, "wmm", translate("wifi_wmm"))
|
mp:value("", translate("disable"))
|
||||||
|
mp:value("deny", translate("wifi_whitelist"))
|
||||||
|
mp:value("allow", translate("wifi_blacklist"))
|
||||||
|
ml = s:taboption("macfilter", DynamicList, "maclist", translate("wifi_maclist"))
|
||||||
|
ml:depends({macpolicy="allow"})
|
||||||
|
ml:depends({macpolicy="deny"})
|
||||||
|
|
||||||
bssid:depends({mode="wds"})
|
s:taboption("advanced", Value, "rate", translate("wifi_rate"))
|
||||||
bssid:depends({mode="adhoc"})
|
s:taboption("advanced", Value, "frag", translate("wifi_frag"))
|
||||||
end
|
s:taboption("advanced", Value, "rts", translate("wifi_rts"))
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
----------------------- HostAP Interface ---------------------
|
------------------- WiFI-Encryption -------------------
|
||||||
|
|
||||||
if hwtype == "prism2" then
|
encr = s:taboption("encryption", ListValue, "encryption", translate("encryption"))
|
||||||
mode:value("wds", translate("a_w_wds"))
|
encr.override_values = true
|
||||||
mode:value("monitor", translate("a_w_monitor"))
|
encr:depends({mode="ap"})
|
||||||
|
encr:depends({mode="sta"})
|
||||||
|
encr:depends({mode="adhoc"})
|
||||||
|
encr:depends({mode="ahdemo"})
|
||||||
|
encr:depends({mode="ap-wds"})
|
||||||
|
encr:depends({mode="sta-wds"})
|
||||||
|
encr:depends({mode="mesh"})
|
||||||
|
|
||||||
hidden = s:taboption("general", Flag, "hidden", translate("wifi_hidden"))
|
encr:value("none", "No Encryption")
|
||||||
hidden:depends({mode="ap"})
|
encr:value("wep", "WEP")
|
||||||
hidden:depends({mode="adhoc"})
|
|
||||||
hidden:depends({mode="wds"})
|
|
||||||
|
|
||||||
bssid:depends({mode="sta"})
|
if hwtype == "atheros" or hwtype == "mac80211" or hwtype == "prism2" then
|
||||||
|
local supplicant = fs.access("/usr/sbin/wpa_supplicant")
|
||||||
|
local hostapd = fs.access("/usr/sbin/hostapd")
|
||||||
|
|
||||||
mp = s:taboption("macfilter", ListValue, "macpolicy", translate("wifi_macpolicy"))
|
if hostapd and supplicant then
|
||||||
mp:value("", translate("disable"))
|
encr:value("psk", "WPA-PSK")
|
||||||
mp:value("deny", translate("wifi_whitelist"))
|
encr:value("psk2", "WPA2-PSK")
|
||||||
mp:value("allow", translate("wifi_blacklist"))
|
encr:value("psk-mixed", "WPA-PSK/WPA2-PSK Mixed Mode")
|
||||||
ml = s:taboption("macfilter", DynamicList, "maclist", translate("wifi_maclist"))
|
encr:value("wpa", "WPA-EAP", {mode="ap"}, {mode="sta"}, {mode="ap-wds"}, {mode="sta-wds"})
|
||||||
ml:depends({macpolicy="allow"})
|
encr:value("wpa2", "WPA2-EAP", {mode="ap"}, {mode="sta"})
|
||||||
ml:depends({macpolicy="deny"})
|
elseif hostapd and not supplicant then
|
||||||
|
encr:value("psk", "WPA-PSK", {mode="ap"}, {mode="ap-wds"}, {mode="adhoc"}, {mode="ahdemo"})
|
||||||
s:taboption("advanced", Value, "rate", translate("wifi_rate"))
|
encr:value("psk2", "WPA2-PSK", {mode="ap"}, {mode="ap-wds"}, {mode="adhoc"}, {mode="ahdemo"})
|
||||||
s:taboption("advanced", Value, "frag", translate("wifi_frag"))
|
encr:value("psk-mixed", "WPA-PSK/WPA2-PSK Mixed Mode", {mode="ap"}, {mode="ap-wds"}, {mode="adhoc"}, {mode="ahdemo"})
|
||||||
s:taboption("advanced", Value, "rts", translate("wifi_rts"))
|
encr:value("wpa", "WPA-EAP", {mode="ap"}, {mode="ap-wds"})
|
||||||
end
|
encr:value("wpa2", "WPA2-EAP", {mode="ap"}, {mode="ap-wds"})
|
||||||
|
encr.description = translate("wifi_wpareq")
|
||||||
|
elseif not hostapd and supplicant then
|
||||||
------------------- WiFI-Encryption -------------------
|
encr:value("psk", "WPA-PSK", {mode="sta"}, {mode="sta-wds"})
|
||||||
|
encr:value("psk2", "WPA2-PSK", {mode="sta"}, {mode="sta-wds"})
|
||||||
encr = s:taboption("encryption", ListValue, "encryption", translate("encryption"))
|
encr:value("psk-mixed", "WPA-PSK/WPA2-PSK Mixed Mode", {mode="sta"}, {mode="sta-wds"})
|
||||||
encr.override_values = true
|
encr:value("wpa", "WPA-EAP", {mode="sta"}, {mode="sta-wds"})
|
||||||
encr:depends({mode="ap"})
|
encr:value("wpa2", "WPA2-EAP", {mode="sta"}, {mode="sta-wds"})
|
||||||
encr:depends({mode="sta"})
|
encr.description = translate("wifi_wpareq")
|
||||||
encr:depends({mode="adhoc"})
|
else
|
||||||
encr:depends({mode="ahdemo"})
|
encr.description = translate("wifi_wpareq")
|
||||||
encr:depends({mode="ap-wds"})
|
end
|
||||||
encr:depends({mode="sta-wds"})
|
elseif hwtype == "broadcom" then
|
||||||
encr:depends({mode="mesh"})
|
|
||||||
|
|
||||||
encr:value("none", "No Encryption")
|
|
||||||
encr:value("wep", "WEP")
|
|
||||||
|
|
||||||
if hwtype == "atheros" or hwtype == "mac80211" or hwtype == "prism2" then
|
|
||||||
local supplicant = fs.access("/usr/sbin/wpa_supplicant")
|
|
||||||
local hostapd = fs.access("/usr/sbin/hostapd")
|
|
||||||
|
|
||||||
if hostapd and supplicant then
|
|
||||||
encr:value("psk", "WPA-PSK")
|
encr:value("psk", "WPA-PSK")
|
||||||
encr:value("psk2", "WPA2-PSK")
|
encr:value("psk2", "WPA2-PSK")
|
||||||
encr:value("psk-mixed", "WPA-PSK/WPA2-PSK Mixed Mode")
|
encr:value("psk+psk2", "WPA-PSK/WPA2-PSK Mixed Mode")
|
||||||
encr:value("wpa", "WPA-EAP", {mode="ap"}, {mode="sta"}, {mode="ap-wds"}, {mode="sta-wds"})
|
end
|
||||||
encr:value("wpa2", "WPA2-EAP", {mode="ap"}, {mode="sta"})
|
|
||||||
elseif hostapd and not supplicant then
|
encr:depends("mode", "ap")
|
||||||
encr:value("psk", "WPA-PSK", {mode="ap"}, {mode="ap-wds"}, {mode="adhoc"}, {mode="ahdemo"})
|
encr:depends("mode", "sta")
|
||||||
encr:value("psk2", "WPA2-PSK", {mode="ap"}, {mode="ap-wds"}, {mode="adhoc"}, {mode="ahdemo"})
|
encr:depends("mode", "ap-wds")
|
||||||
encr:value("psk-mixed", "WPA-PSK/WPA2-PSK Mixed Mode", {mode="ap"}, {mode="ap-wds"}, {mode="adhoc"}, {mode="ahdemo"})
|
encr:depends("mode", "sta-wds")
|
||||||
encr:value("wpa", "WPA-EAP", {mode="ap"}, {mode="ap-wds"})
|
encr:depends("mode", "wds")
|
||||||
encr:value("wpa2", "WPA2-EAP", {mode="ap"}, {mode="ap-wds"})
|
|
||||||
encr.description = translate("wifi_wpareq")
|
server = s:taboption("encryption", Value, "server", translate("a_w_radiussrv"))
|
||||||
elseif not hostapd and supplicant then
|
server:depends({mode="ap", encryption="wpa"})
|
||||||
encr:value("psk", "WPA-PSK", {mode="sta"}, {mode="sta-wds"})
|
server:depends({mode="ap", encryption="wpa2"})
|
||||||
encr:value("psk2", "WPA2-PSK", {mode="sta"}, {mode="sta-wds"})
|
server.rmempty = true
|
||||||
encr:value("psk-mixed", "WPA-PSK/WPA2-PSK Mixed Mode", {mode="sta"}, {mode="sta-wds"})
|
|
||||||
encr:value("wpa", "WPA-EAP", {mode="sta"}, {mode="sta-wds"})
|
port = s:taboption("encryption", Value, "port", translate("a_w_radiusport"))
|
||||||
encr:value("wpa2", "WPA2-EAP", {mode="sta"}, {mode="sta-wds"})
|
port:depends({mode="ap", encryption="wpa"})
|
||||||
encr.description = translate("wifi_wpareq")
|
port:depends({mode="ap", encryption="wpa2"})
|
||||||
else
|
port.rmempty = true
|
||||||
encr.description = translate("wifi_wpareq")
|
|
||||||
|
key = s:taboption("encryption", Value, "key", translate("key"))
|
||||||
|
key:depends("encryption", "wep")
|
||||||
|
key:depends("encryption", "psk")
|
||||||
|
key:depends("encryption", "psk2")
|
||||||
|
key:depends("encryption", "psk+psk2")
|
||||||
|
key:depends("encryption", "psk-mixed")
|
||||||
|
key:depends({mode="ap", encryption="wpa"})
|
||||||
|
key:depends({mode="ap", encryption="wpa2"})
|
||||||
|
key.rmempty = true
|
||||||
|
key.password = true
|
||||||
|
|
||||||
|
if hwtype == "atheros" or hwtype == "mac80211" or hwtype == "prism2" then
|
||||||
|
nasid = s:taboption("encryption", Value, "nasid", translate("a_w_nasid"))
|
||||||
|
nasid:depends({mode="ap", encryption="wpa"})
|
||||||
|
nasid:depends({mode="ap", encryption="wpa2"})
|
||||||
|
nasid.rmempty = true
|
||||||
|
|
||||||
|
eaptype = s:taboption("encryption", ListValue, "eap_type", translate("a_w_eaptype"))
|
||||||
|
eaptype:value("TLS")
|
||||||
|
eaptype:value("TTLS")
|
||||||
|
eaptype:value("PEAP")
|
||||||
|
eaptype:depends({mode="sta", encryption="wpa"})
|
||||||
|
eaptype:depends({mode="sta", encryption="wpa2"})
|
||||||
|
|
||||||
|
cacert = s:taboption("encryption", FileUpload, "ca_cert", translate("a_w_cacert"))
|
||||||
|
cacert:depends({mode="sta", encryption="wpa"})
|
||||||
|
cacert:depends({mode="sta", encryption="wpa2"})
|
||||||
|
|
||||||
|
privkey = s:taboption("encryption", FileUpload, "priv_key", translate("a_w_tlsprivkey"))
|
||||||
|
privkey:depends({mode="sta", eap_type="TLS", encryption="wpa2"})
|
||||||
|
privkey:depends({mode="sta", eap_type="TLS", encryption="wpa"})
|
||||||
|
|
||||||
|
privkeypwd = s:taboption("encryption", Value, "priv_key_pwd", translate("a_w_tlsprivkeypwd"))
|
||||||
|
privkeypwd:depends({mode="sta", eap_type="TLS", encryption="wpa2"})
|
||||||
|
privkeypwd:depends({mode="sta", eap_type="TLS", encryption="wpa"})
|
||||||
|
|
||||||
|
|
||||||
|
auth = s:taboption("encryption", Value, "auth", translate("a_w_peapauth"))
|
||||||
|
auth:value("PAP")
|
||||||
|
auth:value("CHAP")
|
||||||
|
auth:value("MSCHAP")
|
||||||
|
auth:value("MSCHAPV2")
|
||||||
|
auth:depends({mode="sta", eap_type="PEAP", encryption="wpa2"})
|
||||||
|
auth:depends({mode="sta", eap_type="PEAP", encryption="wpa"})
|
||||||
|
auth:depends({mode="sta", eap_type="TTLS", encryption="wpa2"})
|
||||||
|
auth:depends({mode="sta", eap_type="TTLS", encryption="wpa"})
|
||||||
|
|
||||||
|
|
||||||
|
identity = s:taboption("encryption", Value, "identity", translate("a_w_peapidentity"))
|
||||||
|
identity:depends({mode="sta", eap_type="PEAP", encryption="wpa2"})
|
||||||
|
identity:depends({mode="sta", eap_type="PEAP", encryption="wpa"})
|
||||||
|
identity:depends({mode="sta", eap_type="TTLS", encryption="wpa2"})
|
||||||
|
identity:depends({mode="sta", eap_type="TTLS", encryption="wpa"})
|
||||||
|
|
||||||
|
password = s:taboption("encryption", Value, "password", translate("a_w_peappassword"))
|
||||||
|
password:depends({mode="sta", eap_type="PEAP", encryption="wpa2"})
|
||||||
|
password:depends({mode="sta", eap_type="PEAP", encryption="wpa"})
|
||||||
|
password:depends({mode="sta", eap_type="TTLS", encryption="wpa2"})
|
||||||
|
password:depends({mode="sta", eap_type="TTLS", encryption="wpa"})
|
||||||
end
|
end
|
||||||
elseif hwtype == "broadcom" then
|
|
||||||
encr:value("psk", "WPA-PSK")
|
|
||||||
encr:value("psk2", "WPA2-PSK")
|
|
||||||
encr:value("psk+psk2", "WPA-PSK/WPA2-PSK Mixed Mode")
|
|
||||||
end
|
end
|
||||||
|
|
||||||
encr:depends("mode", "ap")
|
|
||||||
encr:depends("mode", "sta")
|
|
||||||
encr:depends("mode", "ap-wds")
|
|
||||||
encr:depends("mode", "sta-wds")
|
|
||||||
encr:depends("mode", "wds")
|
|
||||||
|
|
||||||
server = s:taboption("encryption", Value, "server", translate("a_w_radiussrv"))
|
|
||||||
server:depends({mode="ap", encryption="wpa"})
|
|
||||||
server:depends({mode="ap", encryption="wpa2"})
|
|
||||||
server.rmempty = true
|
|
||||||
|
|
||||||
port = s:taboption("encryption", Value, "port", translate("a_w_radiusport"))
|
|
||||||
port:depends({mode="ap", encryption="wpa"})
|
|
||||||
port:depends({mode="ap", encryption="wpa2"})
|
|
||||||
port.rmempty = true
|
|
||||||
|
|
||||||
key = s:taboption("encryption", Value, "key", translate("key"))
|
|
||||||
key:depends("encryption", "wep")
|
|
||||||
key:depends("encryption", "psk")
|
|
||||||
key:depends("encryption", "psk2")
|
|
||||||
key:depends("encryption", "psk+psk2")
|
|
||||||
key:depends("encryption", "psk-mixed")
|
|
||||||
key:depends({mode="ap", encryption="wpa"})
|
|
||||||
key:depends({mode="ap", encryption="wpa2"})
|
|
||||||
key.rmempty = true
|
|
||||||
key.password = true
|
|
||||||
|
|
||||||
if hwtype == "atheros" or hwtype == "mac80211" or hwtype == "prism2" then
|
|
||||||
nasid = s:taboption("encryption", Value, "nasid", translate("a_w_nasid"))
|
|
||||||
nasid:depends({mode="ap", encryption="wpa"})
|
|
||||||
nasid:depends({mode="ap", encryption="wpa2"})
|
|
||||||
nasid.rmempty = true
|
|
||||||
|
|
||||||
eaptype = s:taboption("encryption", ListValue, "eap_type", translate("a_w_eaptype"))
|
|
||||||
eaptype:value("TLS")
|
|
||||||
eaptype:value("TTLS")
|
|
||||||
eaptype:value("PEAP")
|
|
||||||
eaptype:depends({mode="sta", encryption="wpa"})
|
|
||||||
eaptype:depends({mode="sta", encryption="wpa2"})
|
|
||||||
|
|
||||||
cacert = s:taboption("encryption", FileUpload, "ca_cert", translate("a_w_cacert"))
|
|
||||||
cacert:depends({mode="sta", encryption="wpa"})
|
|
||||||
cacert:depends({mode="sta", encryption="wpa2"})
|
|
||||||
|
|
||||||
privkey = s:taboption("encryption", FileUpload, "priv_key", translate("a_w_tlsprivkey"))
|
|
||||||
privkey:depends({mode="sta", eap_type="TLS", encryption="wpa2"})
|
|
||||||
privkey:depends({mode="sta", eap_type="TLS", encryption="wpa"})
|
|
||||||
|
|
||||||
privkeypwd = s:taboption("encryption", Value, "priv_key_pwd", translate("a_w_tlsprivkeypwd"))
|
|
||||||
privkeypwd:depends({mode="sta", eap_type="TLS", encryption="wpa2"})
|
|
||||||
privkeypwd:depends({mode="sta", eap_type="TLS", encryption="wpa"})
|
|
||||||
|
|
||||||
|
|
||||||
auth = s:taboption("encryption", Value, "auth", translate("a_w_peapauth"))
|
|
||||||
auth:value("PAP")
|
|
||||||
auth:value("CHAP")
|
|
||||||
auth:value("MSCHAP")
|
|
||||||
auth:value("MSCHAPV2")
|
|
||||||
auth:depends({mode="sta", eap_type="PEAP", encryption="wpa2"})
|
|
||||||
auth:depends({mode="sta", eap_type="PEAP", encryption="wpa"})
|
|
||||||
auth:depends({mode="sta", eap_type="TTLS", encryption="wpa2"})
|
|
||||||
auth:depends({mode="sta", eap_type="TTLS", encryption="wpa"})
|
|
||||||
|
|
||||||
|
|
||||||
identity = s:taboption("encryption", Value, "identity", translate("a_w_peapidentity"))
|
|
||||||
identity:depends({mode="sta", eap_type="PEAP", encryption="wpa2"})
|
|
||||||
identity:depends({mode="sta", eap_type="PEAP", encryption="wpa"})
|
|
||||||
identity:depends({mode="sta", eap_type="TTLS", encryption="wpa2"})
|
|
||||||
identity:depends({mode="sta", eap_type="TTLS", encryption="wpa"})
|
|
||||||
|
|
||||||
password = s:taboption("encryption", Value, "password", translate("a_w_peappassword"))
|
|
||||||
password:depends({mode="sta", eap_type="PEAP", encryption="wpa2"})
|
|
||||||
password:depends({mode="sta", eap_type="PEAP", encryption="wpa"})
|
|
||||||
password:depends({mode="sta", eap_type="TTLS", encryption="wpa2"})
|
|
||||||
password:depends({mode="sta", eap_type="TTLS", encryption="wpa"})
|
|
||||||
end
|
|
||||||
|
|
||||||
|
|
||||||
return m
|
return m
|
||||||
|
|
Loading…
Reference in a new issue