Hi Billion_Fan. I think that I know the answer to this question, but here goes!
Is there any way to route multicast traffic across VLANs?
Use case: Application in VLAN1 needs to discover device in VLAN2, and unicast not an option on the device
Multicast routing
-
- Posts: 5383
- Joined: Tue Jul 19, 2011 4:30 pm
Re: Multicast routing
I am not sure if this is what you are looking for but try the following
Commands belowcan only be done via command line
Example
PC 1 wants to access PC 2 on a different VLAN group
PC 1 = 192.168.1.100 (default group)
PC 2 = 192.168.2.200 (CTTV group)
You following commands will have to entered via telnet/ssh
1. Telnet into the router
2. Type 'sh' and press enter
3. Type 'iptables -t filter -I GRP_FWD -i br0 -o br+ -s 192.168.1.100 -j ACCEPT' and press enter
4. Type 'iptables -t filter -I GRP_FWD -i br1 -o br+ -s 192.168.2.200 -j ACCEPT' and press enter
So two commands, if the router is rebooted the commands will be lost and have to re-entered.
-
- Posts: 162
- Joined: Fri Feb 28, 2014 11:28 am
Re: Multicast routing
Thanks Billion_Fan!, I'll give that a try