modules/admin-full: convert cbi maps to new network model
This commit is contained in:
parent
ba84656d6e
commit
185eacba4b
3 changed files with 397 additions and 394 deletions
|
@ -34,6 +34,11 @@ m:chain("wireless")
|
|||
nw.init(m.uci)
|
||||
fw.init(m.uci)
|
||||
|
||||
--function m.on_commit(map)
|
||||
-- nw.init(map.uci)
|
||||
-- fw.init(map.uci)
|
||||
--end
|
||||
|
||||
s = m:section(NamedSection, arg[1], "interface", translate("Common Configuration"))
|
||||
s.addremove = false
|
||||
|
||||
|
@ -107,7 +112,15 @@ function ifname_single.write(self, s, val)
|
|||
for _, i in ipairs(n:get_interfaces()) do
|
||||
n:del_interface(i)
|
||||
end
|
||||
n:add_interface(val)
|
||||
|
||||
for i in val:gmatch("%S+") do
|
||||
n:add_interface(i)
|
||||
|
||||
-- if this is not a bridge, only assign first interface
|
||||
if self.option == "ifname_single" then
|
||||
break
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -14,7 +14,6 @@ $Id$
|
|||
|
||||
local wa = require "luci.tools.webadmin"
|
||||
local nw = require "luci.model.network"
|
||||
local ww = require "luci.model.wireless"
|
||||
local fs = require "nixio.fs"
|
||||
|
||||
arg[1] = arg[1] or ""
|
||||
|
@ -31,19 +30,15 @@ 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])
|
||||
local wnet = nw:get_wifinet(arg[2])
|
||||
if ifsection and wnet then
|
||||
ifsection.section = wnet.sid
|
||||
end
|
||||
end
|
||||
|
||||
nw.init(m.uci)
|
||||
ww.init(m.uci)
|
||||
|
||||
local wnet = ww:get_network(arg[2])
|
||||
local wnet = nw:get_wifinet(arg[2])
|
||||
|
||||
-- redirect to overview page if network does not exist anymore (e.g. after a revert)
|
||||
if not wnet then
|
||||
|
@ -51,7 +46,7 @@ if not wnet then
|
|||
return
|
||||
end
|
||||
|
||||
m.title = ww:get_i18n(wnet)
|
||||
m.title = wnet:get_i18n()
|
||||
|
||||
|
||||
local iw = luci.sys.wifi.getiwinfo(arg[1])
|
||||
|
@ -276,394 +271,391 @@ end
|
|||
|
||||
----------------------- Interface -----------------------
|
||||
|
||||
local wnet = ww:get_network(arg[2])
|
||||
s = m:section(NamedSection, wnet.sid, "wifi-iface", translate("Interface Configuration"))
|
||||
ifsection = s
|
||||
s.addremove = false
|
||||
s.anonymous = true
|
||||
s.defaults.device = arg[1]
|
||||
|
||||
if wnet then
|
||||
s = m:section(NamedSection, wnet.sid, "wifi-iface", translate("Interface Configuration"))
|
||||
ifsection = s
|
||||
s.addremove = false
|
||||
s.anonymous = true
|
||||
s.defaults.device = arg[1]
|
||||
s:tab("general", translate("General Setup"))
|
||||
s:tab("encryption", translate("Wireless Security"))
|
||||
s:tab("macfilter", translate("MAC-Filter"))
|
||||
s:tab("advanced", translate("Advanced Settings"))
|
||||
|
||||
s:tab("general", translate("General Setup"))
|
||||
s:tab("encryption", translate("Wireless Security"))
|
||||
s:tab("macfilter", translate("MAC-Filter"))
|
||||
s:tab("advanced", translate("Advanced Settings"))
|
||||
s:taboption("general", Value, "ssid", translate("<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"))
|
||||
|
||||
s:taboption("general", Value, "ssid", translate("<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"))
|
||||
mode = s:taboption("general", ListValue, "mode", translate("Mode"))
|
||||
mode.override_values = true
|
||||
mode:value("ap", translate("Access Point"))
|
||||
mode:value("sta", translate("Client"))
|
||||
mode:value("adhoc", translate("Ad-Hoc"))
|
||||
|
||||
mode = s:taboption("general", ListValue, "mode", translate("Mode"))
|
||||
mode.override_values = true
|
||||
mode:value("ap", translate("Access Point"))
|
||||
mode:value("sta", translate("Client"))
|
||||
mode:value("adhoc", translate("Ad-Hoc"))
|
||||
bssid = s:taboption("general", Value, "bssid", translate("<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"))
|
||||
|
||||
bssid = s:taboption("general", Value, "bssid", translate("<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>"))
|
||||
network = s:taboption("general", Value, "network", translate("Network"),
|
||||
translate("Choose the network you want to attach to this wireless interface. " ..
|
||||
"Select <em>unspecified</em> to not attach any network or fill out the " ..
|
||||
"<em>create</em> field to define a new network."))
|
||||
|
||||
network = s:taboption("general", Value, "network", translate("Network"),
|
||||
translate("Choose the network you want to attach to this wireless interface. " ..
|
||||
"Select <em>unspecified</em> to not attach any network or fill out the " ..
|
||||
"<em>create</em> field to define a new network."))
|
||||
network.rmempty = true
|
||||
network.template = "cbi/network_netlist"
|
||||
network.widget = "radio"
|
||||
|
||||
network.rmempty = true
|
||||
network.template = "cbi/network_netlist"
|
||||
network.widget = "radio"
|
||||
|
||||
function network.write(self, section, value)
|
||||
local i = nw:get_interface(section)
|
||||
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, {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
|
||||
function network.write(self, section, value)
|
||||
local i = nw:get_interface(section)
|
||||
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, {proto="none"})
|
||||
if n then n:add_interface(i) end
|
||||
else
|
||||
local n = nw:get_network(value)
|
||||
if n then
|
||||
n:type("bridge")
|
||||
n:add_interface(i)
|
||||
end
|
||||
local n = i:get_network()
|
||||
if n then n:del_interface(i) end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
-------------------- MAC80211 Interface ----------------------
|
||||
|
||||
if hwtype == "mac80211" then
|
||||
if fs.access("/usr/sbin/iw") then
|
||||
mode:value("mesh", "802.11s")
|
||||
end
|
||||
|
||||
mode:value("ahdemo", translate("Pseudo Ad-Hoc (ahdemo)"))
|
||||
mode:value("monitor", translate("Monitor"))
|
||||
bssid:depends({mode="adhoc"})
|
||||
|
||||
s:taboption("advanced", Value, "frag", translate("Fragmentation Threshold"))
|
||||
s:taboption("advanced", Value, "rts", translate("RTS/CTS Threshold"))
|
||||
|
||||
mode:value("ap-wds", "%s (%s)" % {translate("Access Point"), translate("WDS")})
|
||||
mode:value("sta-wds", "%s (%s)" % {translate("Client"), translate("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
|
||||
|
||||
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
|
||||
|
||||
hidden = s:taboption("general", Flag, "hidden", translate("Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"))
|
||||
hidden:depends({mode="ap"})
|
||||
hidden:depends({mode="ap-wds"})
|
||||
end
|
||||
|
||||
|
||||
|
||||
-------------------- Madwifi Interface ----------------------
|
||||
|
||||
if hwtype == "atheros" then
|
||||
mode:value("ahdemo", translate("Pseudo Ad-Hoc (ahdemo)"))
|
||||
mode:value("monitor", translate("Monitor"))
|
||||
mode:value("ap-wds", "%s (%s)" % {translate("Access Point"), translate("WDS")})
|
||||
mode:value("sta-wds", "%s (%s)" % {translate("Client"), translate("WDS")})
|
||||
mode:value("wds", translate("Static 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
|
||||
|
||||
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"})
|
||||
bssid:depends({mode="wds"})
|
||||
|
||||
wdssep = s:taboption("advanced", Flag, "wdssep", translate("Separate WDS"))
|
||||
wdssep:depends({mode="ap-wds"})
|
||||
|
||||
s:taboption("advanced", Flag, "doth", "802.11h")
|
||||
hidden = s:taboption("general", Flag, "hidden", translate("Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"))
|
||||
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("Separate Clients"),
|
||||
translate("Prevents client-to-client communication"))
|
||||
isolate:depends({mode="ap"})
|
||||
s:taboption("advanced", Flag, "bgscan", translate("Background Scan"))
|
||||
|
||||
mp = s:taboption("macfilter", ListValue, "macpolicy", translate("MAC-Address Filter"))
|
||||
mp:value("", translate("disable"))
|
||||
mp:value("deny", translate("Allow listed only"))
|
||||
mp:value("allow", translate("Allow all except listed"))
|
||||
ml = s:taboption("macfilter", DynamicList, "maclist", translate("MAC-List"))
|
||||
ml:depends({macpolicy="allow"})
|
||||
ml:depends({macpolicy="deny"})
|
||||
|
||||
s:taboption("advanced", Value, "rate", translate("Transmission Rate"))
|
||||
s:taboption("advanced", Value, "mcast_rate", translate("Multicast Rate"))
|
||||
s:taboption("advanced", Value, "frag", translate("Fragmentation Threshold"))
|
||||
s:taboption("advanced", Value, "rts", translate("RTS/CTS Threshold"))
|
||||
s:taboption("advanced", Value, "minrate", translate("Minimum Rate"))
|
||||
s:taboption("advanced", Value, "maxrate", translate("Maximum Rate"))
|
||||
s:taboption("advanced", Flag, "compression", translate("Compression"))
|
||||
|
||||
s:taboption("advanced", Flag, "bursting", translate("Frame Bursting"))
|
||||
s:taboption("advanced", Flag, "turbo", translate("Turbo Mode"))
|
||||
s:taboption("advanced", Flag, "ff", translate("Fast Frames"))
|
||||
|
||||
s:taboption("advanced", Flag, "wmm", translate("WMM Mode"))
|
||||
s:taboption("advanced", Flag, "xr", translate("XR Support"))
|
||||
s:taboption("advanced", Flag, "ar", translate("AR Support"))
|
||||
|
||||
local swm = s:taboption("advanced", Flag, "sw_merge", translate("Disable HW-Beacon timer"))
|
||||
swm:depends({mode="adhoc"})
|
||||
|
||||
local nos = s:taboption("advanced", Flag, "nosbeacon", translate("Disable HW-Beacon timer"))
|
||||
nos:depends({mode="sta"})
|
||||
nos:depends({mode="sta-wds"})
|
||||
|
||||
local probereq = s:taboption("advanced", Flag, "probereq", translate("Do not send probe responses"))
|
||||
probereq.enabled = "0"
|
||||
probereq.disabled = "1"
|
||||
end
|
||||
|
||||
|
||||
-------------------- Broadcom Interface ----------------------
|
||||
|
||||
if hwtype == "broadcom" then
|
||||
mode:value("wds", translate("WDS"))
|
||||
mode:value("monitor", translate("Monitor"))
|
||||
|
||||
hidden = s:taboption("general", Flag, "hidden", translate("Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"))
|
||||
hidden:depends({mode="ap"})
|
||||
hidden:depends({mode="adhoc"})
|
||||
hidden:depends({mode="wds"})
|
||||
|
||||
isolate = s:taboption("advanced", Flag, "isolate", translate("Separate Clients"),
|
||||
translate("Prevents client-to-client communication"))
|
||||
isolate:depends({mode="ap"})
|
||||
|
||||
s:taboption("advanced", Flag, "doth", "802.11h")
|
||||
s:taboption("advanced", Flag, "wmm", translate("WMM Mode"))
|
||||
|
||||
bssid:depends({mode="wds"})
|
||||
bssid:depends({mode="adhoc"})
|
||||
end
|
||||
|
||||
|
||||
----------------------- HostAP Interface ---------------------
|
||||
|
||||
if hwtype == "prism2" then
|
||||
mode:value("wds", translate("WDS"))
|
||||
mode:value("monitor", translate("Monitor"))
|
||||
|
||||
hidden = s:taboption("general", Flag, "hidden", translate("Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"))
|
||||
hidden:depends({mode="ap"})
|
||||
hidden:depends({mode="adhoc"})
|
||||
hidden:depends({mode="wds"})
|
||||
|
||||
bssid:depends({mode="sta"})
|
||||
|
||||
mp = s:taboption("macfilter", ListValue, "macpolicy", translate("MAC-Address Filter"))
|
||||
mp:value("", translate("disable"))
|
||||
mp:value("deny", translate("Allow listed only"))
|
||||
mp:value("allow", translate("Allow all except listed"))
|
||||
ml = s:taboption("macfilter", DynamicList, "maclist", translate("MAC-List"))
|
||||
ml:depends({macpolicy="allow"})
|
||||
ml:depends({macpolicy="deny"})
|
||||
|
||||
s:taboption("advanced", Value, "rate", translate("Transmission Rate"))
|
||||
s:taboption("advanced", Value, "frag", translate("Fragmentation Threshold"))
|
||||
s:taboption("advanced", Value, "rts", translate("RTS/CTS Threshold"))
|
||||
end
|
||||
|
||||
|
||||
------------------- WiFI-Encryption -------------------
|
||||
|
||||
encr = s:taboption("encryption", ListValue, "encryption", translate("Encryption"))
|
||||
encr.override_values = true
|
||||
encr.override_depends = true
|
||||
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"})
|
||||
|
||||
encr:value("none", "No Encryption")
|
||||
encr:value("wep-open", translate("WEP Open System"), {mode="ap"}, {mode="sta"}, {mode="ap-wds"}, {mode="sta-wds"})
|
||||
encr:value("wep-shared", translate("WEP Shared Key"), {mode="ap"}, {mode="sta"}, {mode="ap-wds"}, {mode="sta-wds"})
|
||||
|
||||
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("psk2", "WPA2-PSK")
|
||||
encr:value("psk-mixed", "WPA-PSK/WPA2-PSK Mixed Mode")
|
||||
encr:value("wpa", "WPA-EAP", {mode="ap"}, {mode="sta"}, {mode="ap-wds"}, {mode="sta-wds"})
|
||||
encr:value("wpa2", "WPA2-EAP", {mode="ap"}, {mode="sta"})
|
||||
elseif hostapd and not supplicant then
|
||||
encr:value("psk", "WPA-PSK", {mode="ap"}, {mode="ap-wds"}, {mode="adhoc"}, {mode="ahdemo"})
|
||||
encr:value("psk2", "WPA2-PSK", {mode="ap"}, {mode="ap-wds"}, {mode="adhoc"}, {mode="ahdemo"})
|
||||
encr:value("psk-mixed", "WPA-PSK/WPA2-PSK Mixed Mode", {mode="ap"}, {mode="ap-wds"}, {mode="adhoc"}, {mode="ahdemo"})
|
||||
encr:value("wpa", "WPA-EAP", {mode="ap"}, {mode="ap-wds"})
|
||||
encr:value("wpa2", "WPA2-EAP", {mode="ap"}, {mode="ap-wds"})
|
||||
encr.description = translate(
|
||||
"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " ..
|
||||
"and ad-hoc mode) to be installed."
|
||||
)
|
||||
elseif not hostapd and supplicant then
|
||||
encr:value("psk", "WPA-PSK", {mode="sta"}, {mode="sta-wds"})
|
||||
encr:value("psk2", "WPA2-PSK", {mode="sta"}, {mode="sta-wds"})
|
||||
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"})
|
||||
encr:value("wpa2", "WPA2-EAP", {mode="sta"}, {mode="sta-wds"})
|
||||
encr.description = translate(
|
||||
"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " ..
|
||||
"and ad-hoc mode) to be installed."
|
||||
)
|
||||
else
|
||||
encr.description = translate(
|
||||
"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " ..
|
||||
"and ad-hoc mode) to be installed."
|
||||
)
|
||||
local n = nw:get_network(value)
|
||||
if n then
|
||||
n:type("bridge")
|
||||
n:add_interface(i)
|
||||
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
|
||||
|
||||
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("Radius-Server"))
|
||||
server:depends({mode="ap", encryption="wpa"})
|
||||
server:depends({mode="ap", encryption="wpa2"})
|
||||
server:depends({mode="ap-wds", encryption="wpa"})
|
||||
server:depends({mode="ap-wds", encryption="wpa2"})
|
||||
server.rmempty = true
|
||||
|
||||
port = s:taboption("encryption", Value, "port", translate("Radius-Port"))
|
||||
port:depends({mode="ap", encryption="wpa"})
|
||||
port:depends({mode="ap", encryption="wpa2"})
|
||||
port:depends({mode="ap-wds", encryption="wpa"})
|
||||
port:depends({mode="ap-wds", 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:depends({mode="ap-wds", encryption="wpa"})
|
||||
key:depends({mode="ap-wds", 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("NAS ID"))
|
||||
nasid:depends({mode="ap", encryption="wpa"})
|
||||
nasid:depends({mode="ap", encryption="wpa2"})
|
||||
nasid:depends({mode="ap-wds", encryption="wpa"})
|
||||
nasid:depends({mode="ap-wds", encryption="wpa2"})
|
||||
nasid.rmempty = true
|
||||
|
||||
eaptype = s:taboption("encryption", ListValue, "eap_type", translate("EAP-Method"))
|
||||
eaptype:value("tls", "TLS")
|
||||
eaptype:value("ttls", "TTLS")
|
||||
eaptype:value("peap", "PEAP")
|
||||
eaptype:depends({mode="sta", encryption="wpa"})
|
||||
eaptype:depends({mode="sta", encryption="wpa2"})
|
||||
|
||||
cacert = s:taboption("encryption", FileUpload, "ca_cert", translate("Path to CA-Certificate"))
|
||||
cacert:depends({mode="sta", encryption="wpa"})
|
||||
cacert:depends({mode="sta", encryption="wpa2"})
|
||||
|
||||
privkey = s:taboption("encryption", FileUpload, "priv_key", translate("Path to Private Key"))
|
||||
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("Password of Private Key"))
|
||||
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("Authentication"))
|
||||
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("Identity"))
|
||||
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("Password"))
|
||||
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
|
||||
|
||||
-------------------- MAC80211 Interface ----------------------
|
||||
|
||||
if hwtype == "mac80211" then
|
||||
if fs.access("/usr/sbin/iw") then
|
||||
mode:value("mesh", "802.11s")
|
||||
end
|
||||
|
||||
mode:value("ahdemo", translate("Pseudo Ad-Hoc (ahdemo)"))
|
||||
mode:value("monitor", translate("Monitor"))
|
||||
bssid:depends({mode="adhoc"})
|
||||
|
||||
s:taboption("advanced", Value, "frag", translate("Fragmentation Threshold"))
|
||||
s:taboption("advanced", Value, "rts", translate("RTS/CTS Threshold"))
|
||||
|
||||
mode:value("ap-wds", "%s (%s)" % {translate("Access Point"), translate("WDS")})
|
||||
mode:value("sta-wds", "%s (%s)" % {translate("Client"), translate("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
|
||||
|
||||
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
|
||||
|
||||
hidden = s:taboption("general", Flag, "hidden", translate("Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"))
|
||||
hidden:depends({mode="ap"})
|
||||
hidden:depends({mode="ap-wds"})
|
||||
end
|
||||
|
||||
|
||||
|
||||
-------------------- Madwifi Interface ----------------------
|
||||
|
||||
if hwtype == "atheros" then
|
||||
mode:value("ahdemo", translate("Pseudo Ad-Hoc (ahdemo)"))
|
||||
mode:value("monitor", translate("Monitor"))
|
||||
mode:value("ap-wds", "%s (%s)" % {translate("Access Point"), translate("WDS")})
|
||||
mode:value("sta-wds", "%s (%s)" % {translate("Client"), translate("WDS")})
|
||||
mode:value("wds", translate("Static 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
|
||||
|
||||
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"})
|
||||
bssid:depends({mode="wds"})
|
||||
|
||||
wdssep = s:taboption("advanced", Flag, "wdssep", translate("Separate WDS"))
|
||||
wdssep:depends({mode="ap-wds"})
|
||||
|
||||
s:taboption("advanced", Flag, "doth", "802.11h")
|
||||
hidden = s:taboption("general", Flag, "hidden", translate("Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"))
|
||||
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("Separate Clients"),
|
||||
translate("Prevents client-to-client communication"))
|
||||
isolate:depends({mode="ap"})
|
||||
s:taboption("advanced", Flag, "bgscan", translate("Background Scan"))
|
||||
|
||||
mp = s:taboption("macfilter", ListValue, "macpolicy", translate("MAC-Address Filter"))
|
||||
mp:value("", translate("disable"))
|
||||
mp:value("deny", translate("Allow listed only"))
|
||||
mp:value("allow", translate("Allow all except listed"))
|
||||
ml = s:taboption("macfilter", DynamicList, "maclist", translate("MAC-List"))
|
||||
ml:depends({macpolicy="allow"})
|
||||
ml:depends({macpolicy="deny"})
|
||||
|
||||
s:taboption("advanced", Value, "rate", translate("Transmission Rate"))
|
||||
s:taboption("advanced", Value, "mcast_rate", translate("Multicast Rate"))
|
||||
s:taboption("advanced", Value, "frag", translate("Fragmentation Threshold"))
|
||||
s:taboption("advanced", Value, "rts", translate("RTS/CTS Threshold"))
|
||||
s:taboption("advanced", Value, "minrate", translate("Minimum Rate"))
|
||||
s:taboption("advanced", Value, "maxrate", translate("Maximum Rate"))
|
||||
s:taboption("advanced", Flag, "compression", translate("Compression"))
|
||||
|
||||
s:taboption("advanced", Flag, "bursting", translate("Frame Bursting"))
|
||||
s:taboption("advanced", Flag, "turbo", translate("Turbo Mode"))
|
||||
s:taboption("advanced", Flag, "ff", translate("Fast Frames"))
|
||||
|
||||
s:taboption("advanced", Flag, "wmm", translate("WMM Mode"))
|
||||
s:taboption("advanced", Flag, "xr", translate("XR Support"))
|
||||
s:taboption("advanced", Flag, "ar", translate("AR Support"))
|
||||
|
||||
local swm = s:taboption("advanced", Flag, "sw_merge", translate("Disable HW-Beacon timer"))
|
||||
swm:depends({mode="adhoc"})
|
||||
|
||||
local nos = s:taboption("advanced", Flag, "nosbeacon", translate("Disable HW-Beacon timer"))
|
||||
nos:depends({mode="sta"})
|
||||
nos:depends({mode="sta-wds"})
|
||||
|
||||
local probereq = s:taboption("advanced", Flag, "probereq", translate("Do not send probe responses"))
|
||||
probereq.enabled = "0"
|
||||
probereq.disabled = "1"
|
||||
end
|
||||
|
||||
|
||||
-------------------- Broadcom Interface ----------------------
|
||||
|
||||
if hwtype == "broadcom" then
|
||||
mode:value("wds", translate("WDS"))
|
||||
mode:value("monitor", translate("Monitor"))
|
||||
|
||||
hidden = s:taboption("general", Flag, "hidden", translate("Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"))
|
||||
hidden:depends({mode="ap"})
|
||||
hidden:depends({mode="adhoc"})
|
||||
hidden:depends({mode="wds"})
|
||||
|
||||
isolate = s:taboption("advanced", Flag, "isolate", translate("Separate Clients"),
|
||||
translate("Prevents client-to-client communication"))
|
||||
isolate:depends({mode="ap"})
|
||||
|
||||
s:taboption("advanced", Flag, "doth", "802.11h")
|
||||
s:taboption("advanced", Flag, "wmm", translate("WMM Mode"))
|
||||
|
||||
bssid:depends({mode="wds"})
|
||||
bssid:depends({mode="adhoc"})
|
||||
end
|
||||
|
||||
|
||||
----------------------- HostAP Interface ---------------------
|
||||
|
||||
if hwtype == "prism2" then
|
||||
mode:value("wds", translate("WDS"))
|
||||
mode:value("monitor", translate("Monitor"))
|
||||
|
||||
hidden = s:taboption("general", Flag, "hidden", translate("Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>"))
|
||||
hidden:depends({mode="ap"})
|
||||
hidden:depends({mode="adhoc"})
|
||||
hidden:depends({mode="wds"})
|
||||
|
||||
bssid:depends({mode="sta"})
|
||||
|
||||
mp = s:taboption("macfilter", ListValue, "macpolicy", translate("MAC-Address Filter"))
|
||||
mp:value("", translate("disable"))
|
||||
mp:value("deny", translate("Allow listed only"))
|
||||
mp:value("allow", translate("Allow all except listed"))
|
||||
ml = s:taboption("macfilter", DynamicList, "maclist", translate("MAC-List"))
|
||||
ml:depends({macpolicy="allow"})
|
||||
ml:depends({macpolicy="deny"})
|
||||
|
||||
s:taboption("advanced", Value, "rate", translate("Transmission Rate"))
|
||||
s:taboption("advanced", Value, "frag", translate("Fragmentation Threshold"))
|
||||
s:taboption("advanced", Value, "rts", translate("RTS/CTS Threshold"))
|
||||
end
|
||||
|
||||
|
||||
------------------- WiFI-Encryption -------------------
|
||||
|
||||
encr = s:taboption("encryption", ListValue, "encryption", translate("Encryption"))
|
||||
encr.override_values = true
|
||||
encr.override_depends = true
|
||||
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"})
|
||||
|
||||
encr:value("none", "No Encryption")
|
||||
encr:value("wep-open", translate("WEP Open System"), {mode="ap"}, {mode="sta"}, {mode="ap-wds"}, {mode="sta-wds"})
|
||||
encr:value("wep-shared", translate("WEP Shared Key"), {mode="ap"}, {mode="sta"}, {mode="ap-wds"}, {mode="sta-wds"})
|
||||
|
||||
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("psk2", "WPA2-PSK")
|
||||
encr:value("psk-mixed", "WPA-PSK/WPA2-PSK Mixed Mode")
|
||||
encr:value("wpa", "WPA-EAP", {mode="ap"}, {mode="sta"}, {mode="ap-wds"}, {mode="sta-wds"})
|
||||
encr:value("wpa2", "WPA2-EAP", {mode="ap"}, {mode="sta"})
|
||||
elseif hostapd and not supplicant then
|
||||
encr:value("psk", "WPA-PSK", {mode="ap"}, {mode="ap-wds"}, {mode="adhoc"}, {mode="ahdemo"})
|
||||
encr:value("psk2", "WPA2-PSK", {mode="ap"}, {mode="ap-wds"}, {mode="adhoc"}, {mode="ahdemo"})
|
||||
encr:value("psk-mixed", "WPA-PSK/WPA2-PSK Mixed Mode", {mode="ap"}, {mode="ap-wds"}, {mode="adhoc"}, {mode="ahdemo"})
|
||||
encr:value("wpa", "WPA-EAP", {mode="ap"}, {mode="ap-wds"})
|
||||
encr:value("wpa2", "WPA2-EAP", {mode="ap"}, {mode="ap-wds"})
|
||||
encr.description = translate(
|
||||
"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " ..
|
||||
"and ad-hoc mode) to be installed."
|
||||
)
|
||||
elseif not hostapd and supplicant then
|
||||
encr:value("psk", "WPA-PSK", {mode="sta"}, {mode="sta-wds"})
|
||||
encr:value("psk2", "WPA2-PSK", {mode="sta"}, {mode="sta-wds"})
|
||||
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"})
|
||||
encr:value("wpa2", "WPA2-EAP", {mode="sta"}, {mode="sta-wds"})
|
||||
encr.description = translate(
|
||||
"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " ..
|
||||
"and ad-hoc mode) to be installed."
|
||||
)
|
||||
else
|
||||
encr.description = translate(
|
||||
"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " ..
|
||||
"and ad-hoc mode) to be installed."
|
||||
)
|
||||
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
|
||||
|
||||
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("Radius-Server"))
|
||||
server:depends({mode="ap", encryption="wpa"})
|
||||
server:depends({mode="ap", encryption="wpa2"})
|
||||
server:depends({mode="ap-wds", encryption="wpa"})
|
||||
server:depends({mode="ap-wds", encryption="wpa2"})
|
||||
server.rmempty = true
|
||||
|
||||
port = s:taboption("encryption", Value, "port", translate("Radius-Port"))
|
||||
port:depends({mode="ap", encryption="wpa"})
|
||||
port:depends({mode="ap", encryption="wpa2"})
|
||||
port:depends({mode="ap-wds", encryption="wpa"})
|
||||
port:depends({mode="ap-wds", encryption="wpa2"})
|
||||
port.rmempty = true
|
||||
|
||||
key = s:taboption("encryption", Value, "key", translate("Key"))
|
||||
key:depends("encryption", "wep-open")
|
||||
key:depends("encryption", "wep-shared")
|
||||
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:depends({mode="ap-wds", encryption="wpa"})
|
||||
key:depends({mode="ap-wds", 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("NAS ID"))
|
||||
nasid:depends({mode="ap", encryption="wpa"})
|
||||
nasid:depends({mode="ap", encryption="wpa2"})
|
||||
nasid:depends({mode="ap-wds", encryption="wpa"})
|
||||
nasid:depends({mode="ap-wds", encryption="wpa2"})
|
||||
nasid.rmempty = true
|
||||
|
||||
eaptype = s:taboption("encryption", ListValue, "eap_type", translate("EAP-Method"))
|
||||
eaptype:value("tls", "TLS")
|
||||
eaptype:value("ttls", "TTLS")
|
||||
eaptype:value("peap", "PEAP")
|
||||
eaptype:depends({mode="sta", encryption="wpa"})
|
||||
eaptype:depends({mode="sta", encryption="wpa2"})
|
||||
|
||||
cacert = s:taboption("encryption", FileUpload, "ca_cert", translate("Path to CA-Certificate"))
|
||||
cacert:depends({mode="sta", encryption="wpa"})
|
||||
cacert:depends({mode="sta", encryption="wpa2"})
|
||||
|
||||
privkey = s:taboption("encryption", FileUpload, "priv_key", translate("Path to Private Key"))
|
||||
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("Password of Private Key"))
|
||||
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("Authentication"))
|
||||
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("Identity"))
|
||||
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("Password"))
|
||||
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
|
||||
|
|
|
@ -14,7 +14,6 @@ $Id$
|
|||
|
||||
local nw = require "luci.model.network"
|
||||
local fw = require "luci.model.firewall"
|
||||
local wl = require "luci.model.wireless"
|
||||
local uci = require "luci.model.uci".cursor()
|
||||
local http = require "luci.http"
|
||||
|
||||
|
@ -34,7 +33,6 @@ end
|
|||
|
||||
nw.init(uci)
|
||||
fw.init(uci)
|
||||
wl.init(uci)
|
||||
|
||||
m.hidden = {
|
||||
device = http.formvalue("device"),
|
||||
|
@ -145,14 +143,15 @@ function attachnet.parse(self, section)
|
|||
if not net then
|
||||
self.error = { [section] = "missing" }
|
||||
else
|
||||
local wdev = wl:get_device(m.hidden.device)
|
||||
wdev:disabled(false)
|
||||
wdev:channel(m.hidden.channel)
|
||||
local wdev = nw:get_wifidev(m.hidden.device)
|
||||
|
||||
wdev:set("disabled", false)
|
||||
wdev:set("channel", m.hidden.channel)
|
||||
|
||||
if replace:formvalue(section) then
|
||||
local n
|
||||
for _, n in ipairs(wdev:get_networks()) do
|
||||
wl:del_network(n:name())
|
||||
for _, n in ipairs(wdev:get_wifinets()) do
|
||||
wdev:del_wifinet(n)
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -177,8 +176,7 @@ function attachnet.parse(self, section)
|
|||
wconf.bssid = m.hidden.bssid
|
||||
end
|
||||
|
||||
local wnet = wl:add_network(wconf)
|
||||
|
||||
local wnet = wdev:add_wifinet(wconf)
|
||||
if wnet then
|
||||
if zone then
|
||||
fw:del_network(net:name())
|
||||
|
|
Loading…
Reference in a new issue