mirror of
https://github.com/openwrt/luci.git
synced 2026-04-15 10:51:51 +00:00
luci-0.8: merge missing parts of r4293
This commit is contained in:
@@ -465,6 +465,8 @@ config variable
|
||||
option name 'key'
|
||||
option section 'wireless.wifi-iface'
|
||||
option title 'Key'
|
||||
option minlength 8
|
||||
option maxlength 63
|
||||
list depends 'encryption=wep'
|
||||
list depends 'encryption=psk'
|
||||
list depends 'encryption=wpa,mode=ap'
|
||||
|
||||
@@ -322,17 +322,20 @@ if hwtype == "atheros" or hwtype == "mac80211" or hwtype == "prism2" then
|
||||
if hostapd and supplicant then
|
||||
encr:value("psk", "WPA-PSK")
|
||||
encr:value("psk2", "WPA2-PSK")
|
||||
encr:value("mixed", "WPA-PSK/WPA2-PSK Mixed Mode")
|
||||
encr:value("wpa", "WPA-EAP", {mode="ap"}, {mode="sta"})
|
||||
encr:value("wpa2", "WPA2-EAP", {mode="ap"}, {mode="sta"})
|
||||
elseif hostapd and not supplicant then
|
||||
encr:value("psk", "WPA-PSK", {mode="ap"}, {mode="adhoc"}, {mode="ahdemo"})
|
||||
encr:value("psk2", "WPA2-PSK", {mode="ap"}, {mode="adhoc"}, {mode="ahdemo"})
|
||||
encr:value("mixed", "WPA-PSK/WPA2-PSK Mixed Mode", {mode="ap"}, {mode="adhoc"}, {mode="ahdemo"})
|
||||
encr:value("wpa", "WPA-EAP", {mode="ap"})
|
||||
encr:value("wpa2", "WPA2-EAP", {mode="ap"})
|
||||
encr.description = translate("wifi_wpareq")
|
||||
elseif not hostapd and supplicant then
|
||||
encr:value("psk", "WPA-PSK", {mode="sta"})
|
||||
encr:value("psk2", "WPA2-PSK", {mode="sta"})
|
||||
encr:value("mixed", "WPA-PSK/WPA2-PSK Mixed Mode", {mode="sta"})
|
||||
encr:value("wpa", "WPA-EAP", {mode="sta"})
|
||||
encr:value("wpa2", "WPA2-EAP", {mode="sta"})
|
||||
encr.description = translate("wifi_wpareq")
|
||||
@@ -342,6 +345,7 @@ if hwtype == "atheros" or hwtype == "mac80211" or hwtype == "prism2" then
|
||||
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")
|
||||
|
||||
@@ -230,6 +230,7 @@ if hwtype == "atheros" or hwtype == "mac80211" then
|
||||
elseif hostapd and not supplicant then
|
||||
encr:value("psk", "WPA-PSK", {mode="ap"}, {mode="adhoc"})
|
||||
encr:value("psk2", "WPA2-PSK", {mode="ap"}, {mode="adhoc"})
|
||||
encr:value("mixed", "WPA-PSK/WPA2-PSK Mixed Mode", {mode="ap"}, {mode="adhoc"})
|
||||
encr:value("wpa", "WPA-Radius", {mode="ap"})
|
||||
encr:value("wpa2", "WPA2-Radius", {mode="ap"})
|
||||
encr.description = translate("wifi_wpareq")
|
||||
@@ -246,6 +247,7 @@ if hwtype == "atheros" or hwtype == "mac80211" then
|
||||
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
|
||||
|
||||
key = s:option(Value, "key", translate("key"))
|
||||
|
||||
Reference in New Issue
Block a user