gluon-mesh-batman-adv-core: Always forward towards mesh/batman-adv

Since we just segmented the IGMP/MLD domain between node and
mesh boundaries, we will not be able to keep track of multicast
listeners on other nodes from the bridge anymore.

Therefore we need to always hand any multicast packets we received from
local clients to batman-adv. We can do this by setting the bridge port
option "multicast_router" to 2.

Signed-off-by: Linus Lüssing <linus.luessing@c0d3.blue>
This commit is contained in:
Linus Lüssing 2015-09-05 04:53:58 +02:00
parent c5ce1525e6
commit bc35d6916a

View File

@ -55,6 +55,7 @@ uci:section('network', 'interface', 'bat0',
ifname = 'bat0', ifname = 'bat0',
proto = 'none', proto = 'none',
macaddr = sysconfig.primary_mac, macaddr = sysconfig.primary_mac,
multicast_router = 2,
} }
) )