Skip to content
Snippets Groups Projects
Unverified Commit 97f44c20 authored by Matthias Schiffer's avatar Matthias Schiffer
Browse files

gluon-mesh-batman-adv: enable bridge learning on bat0 again

Reverts d5829d87 ("gluon-mesh-batman-adv-core: disable bridge port
learning on bat0").

Fixes #1121
parent 4014e439
No related branches found
No related tags found
No related merge requests found
...@@ -43,19 +43,11 @@ uci:section('network', 'interface', 'bat0', ...@@ -43,19 +43,11 @@ uci:section('network', 'interface', 'bat0',
proto = 'none', proto = 'none',
macaddr = sysconfig.primary_mac, macaddr = sysconfig.primary_mac,
multicast_router = 2, multicast_router = 2,
learning = 0, learning = 1,
} }
) )
uci:delete('network', 'client_lan') uci:delete('network', 'client_lan')
if sysconfig.lan_ifname then
uci:section('network', 'interface', 'client_lan',
{
unicast_flood = 0,
}
)
uci:set('network', 'client_lan', 'ifname', sysconfig.lan_ifname)
end
uci:save('network') uci:save('network')
......
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