core: hacks for wifi no adhoc

This commit is contained in:
Maciej Krüger 2021-12-12 10:20:21 +01:00 committed by Alexander List
parent d259b0c8d4
commit 6348376e3a

View File

@ -127,23 +127,51 @@ local function configure_mesh(config, radio, index, suffix, disabled)
return return
end end
uci:section('network', 'interface', name, { -- TODO: source from site
proto = 'gluon_mesh', user_adjustable_channel = true
}) channel = 5
mode = "adhoc"
uci:section('wireless', 'wifi-iface', name, { local id = config.id
device = radio_name,
network = name, if user_adjustable_channel then
mode = 'mesh', id = string.format(template, channel)
mesh_id = config.id, end
mesh_fwding = false,
macaddr = macaddr, -- mode mesh, adhoc
mcast_rate = config.mcast_rate, if mode == "mesh" then
ifname = suffix and 'mesh' .. suffix, uci:section('network', 'interface', name, {
disabled = disabled, proto = 'gluon_mesh',
macfilter = macfilter, })
maclist = maclist,
}) uci:section('wireless', 'wifi-iface', name, {
device = radio_name,
network = name,
mode = 'mesh',
mesh_id = id,
mesh_fwding = false,
macaddr = macaddr,
mcast_rate = config.mcast_rate,
ifname = suffix and 'mesh' .. suffix,
disabled = disabled,
macfilter = macfilter,
maclist = maclist,
})
elseif mode == "adhoc" then
uci:section('wireless', 'wifi-iface', name, {
device = radio_name,
network = name,
mode = 'adhoc',
ssid = id,
encryption = 'none',
macaddr = macaddr,
mcast_rate = config.mcast_rate,
ifname = suffix and 'mesh' .. suffix,
disabled = disabled,
macfilter = macfilter,
maclist = maclist,
})
end
end end
local function fixup_wan(radio, index) local function fixup_wan(radio, index)