Skip to content
Snippets Groups Projects
Commit 3de151c2 authored by Daniel Golle's avatar Daniel Golle
Browse files

mesh-batman-adv-core: allow sites to set VLAN for mesh

parent fc62de55
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,7 @@ for _, config in ipairs({'wifi24', 'wifi5'}) do
need_string(config .. '.mesh_ssid')
need_string_match(config .. '.mesh_bssid', '^%x[02468aAcCeE]:%x%x:%x%x:%x%x:%x%x:%x%x$')
need_number(config .. '.mesh_mcast_rate')
need_number(config .. '.mesh_vlan', false)
end
need_boolean('mesh_on_wan', false)
......@@ -27,13 +27,32 @@ local function configure_radio(radio, index, config)
local mesh = 'mesh_' .. radio
uci:delete('network', mesh)
uci:section('network', 'interface', mesh,
uci:delete('network', mesh .. '_vlan')
if config.mesh_vlan then
uci:section('network', 'interface', mesh,
{
proto = 'none',
mtu = '1532',
}
)
uci:section('network', 'interface', mesh .. '_vlan',
{
ifname = '@' .. mesh .. '.' .. config.mesh_vlan,
proto = 'batadv',
mtu = '1528',
mesh = 'bat0',
}
)
)
else
uci:section('network', 'interface', mesh,
{
proto = 'batadv',
mtu = '1528',
mesh = 'bat0',
}
)
end
uci:delete('wireless', mesh)
uci:section('wireless', 'wifi-iface', mesh,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment