Multicast Routing Streaming Video

Hi,

We have this network topology:

VLC Server(192.168.102.3) ------Ether2 Mikrotik_A(192.168.102.1)##Mikrotik_A## Ether1 Mikrotik_A(192.168.203.10) ---------Ether1 Mikrotik_B(192.168.203.11)##Mikrotik_B## Ether2 Mikrotik_B(192.168.103.1)------------VLC Client(192.168.103.2)

We need multicast to be routed. The firmware I’m using is 3.28.

This is the problem we have:

Router Mikortik_A

[admin@A] > routing pim interface add
[admin@A] > routing pim interface p
Flags: X - disabled, I - inactive, D - dynamic, R - designated-router,
v1 - IGMPv1, v2 - IGMPv2, v3 - IGMPv3

INTERFACE PROTOCOLS

0 v2 all pim
igmp
1 DRv2 ether3 pim
igmp
2 DR register pim

[admin@A] > routing pim rp add address= Which is the IP that must be used here? 192.168.102.1 - 192.168.203.10
Router Mikrotik_B:

[admin@B] > routing pim interface add interface=ether1
[admin@B] > routing pim interface p
Flags: X - disabled, I - inactive, D - dynamic, R - designated-router,
v1 - IGMPv1, v2 - IGMPv2, v3 - IGMPv3

INTERFACE PROTOCOLS

0 Rv2 ether1 pim
igmp
1 DR register pim

Configure static Rendezvous Point:

[admin@B] > routing pim rp add address= Which is the IP that must be used here? 192.168.102.1 - 192.168.203.10
route on VLC sever:

ip route add 224.0.1.1/32 via Which IP? 192.168.103.1 - 192.168.102.1 - 192.168.203.10

Is it necessary to deploy a proxy IGMP?
Do you think that a IP-IP tunnel (or any other kind of tunnel) would make things easier?

Thanks in advance.
DMescal

It´s Work

VLC Server(192.168.102.3) ------Ether2 Mikrotik_A(192.168.102.1)##Mikrotik_A## Ether1 Mikrotik_A(192.168.203.10) ---------Ether1 Mikrotik_B(192.168.203.11)##Mikrotik_B## Ether2 Mikrotik_B(192.168.103.1)------------VLC
Client(192.168.103.2)

We need multicast to be routed. The firmware I’m using is 3.28.

This is the solution:

Router Mikortik_A

[admin@A] > routing pim interface add
[admin@A] > routing pim rp add address=192.168.203.10
[admin@A] > routing pim rp add address=192.168.203.11

Router Mikrotik_B:

[admin@B] > routing pim interface add interface=ether1
[admin@B] > routing pim interface add interface=ether2
[admin@B] > routing pim rp add address=192.168.203.10
[admin@B] > routing pim rp add address=192.168.203.11

route on VLC sever:
ip route add 224.0.1.1/32 via 192.168.102.1

Regards
DMescal