web-private-wifi: add warning about mesh on wan
This commit is contained in:
parent
a651971edb
commit
6ace824580
@ -1,5 +1,6 @@
|
||||
local uci = require("simple-uci").cursor()
|
||||
local wireless = require 'gluon.wireless'
|
||||
local util = require 'gluon.util'
|
||||
|
||||
-- where to read the configuration from
|
||||
local primary_iface = 'wan_radio0'
|
||||
@ -13,9 +14,27 @@ local s = f:section(Section, nil, translate(
|
||||
.. 'at the same time.'
|
||||
))
|
||||
|
||||
local uplink_interfaces = util.get_role_interfaces(uci, 'uplink')
|
||||
local mesh_on_wan = false
|
||||
|
||||
for _, iface in ipairs(util.get_role_interfaces(uci, 'mesh')) do
|
||||
if util.contains(uplink_interfaces, iface) then
|
||||
mesh_on_wan = true
|
||||
end
|
||||
end
|
||||
|
||||
local enabled = s:option(Flag, "enabled", translate("Enabled"))
|
||||
enabled.default = uci:get('wireless', primary_iface) and not uci:get_bool('wireless', primary_iface, "disabled")
|
||||
|
||||
if mesh_on_wan and enabled.data then
|
||||
local w = Warning()
|
||||
w:setcontent(translate(
|
||||
'Meshing on WAN interface is enabled.' ..
|
||||
'This can lead to problems.'
|
||||
))
|
||||
s:append(w)
|
||||
end
|
||||
|
||||
local ssid = s:option(Value, "ssid", translate("Name (SSID)"))
|
||||
ssid:depends(enabled, true)
|
||||
ssid.datatype = "maxlength(32)"
|
||||
|
Loading…
Reference in New Issue
Block a user