d1nd141
Goto Top

Mikrotik igmp proxy (TVIP) auf vlan

Hallo,

auf meinem MT hab ich mein Wan-interface wo ein vlan35 drauf liegt (Provider braucht dies so), und hier dann meine pppoe Verbindung:

/interface ethernet
set [ find default-name=ether1 ] name=ether1-gateway
set [ find default-name=ether2 ] name=ether2-master-local
set [ find default-name=ether3 ] master-port=ether2-master-local name=ether3-slave-local
set [ find default-name=ether4 ] master-port=ether2-master-local name=ether4-slave-local
set [ find default-name=ether5 ] master-port=ether2-master-local name=ether5-slave-local
/interface vlan
add interface=ether1-gateway name=vlan35 vlan-id=35
/interface pppoe-client
add add-default-route=yes disabled=no interface=vlan35 name=pppoe-out1 password=xxxxx profile=pppoe use-peer-dns=yes user=xxxxx


Da mein Provider den Tv Traffic auch im vlan35 schickt, muss ich den igmp proxy auch auf dieses Interface legen.

/routing igmp-proxy
set quick-leave=yes
/routing igmp-proxy interface
add alternative-subnets=224.0.0.0/4 interface=vlan35 upstream=yes
add interface=ether3-slave-local
/routing igmp-proxy mfc
add downstream-interfaces=ether3-slave-local group=224.0.0.0 upstream-interface=vlan35

Leider funktioniert dies nicht, Internet geht, jedoch kein TV.
Lege ich jetzt jedoch das vlan35 interface in ne Bridge mit meinem Lokalen interface, geht TV, jedoch kein Inet mehr (nehme an, da pppoe dann nicht mehr auf vlan35 zugreifen kann).

Unter Linux mit igmpproxy funktioniert dies jedoch einwandfrei:

quickleave
phyint eth0.35 upstream  ratelimit 0  threshold 1
       altnet 224.0.0.0/4;

phyint eth2 downstream ratelimit 0 threshold 1
 altnet 192.168.10.0/24;

Funktioniert beim MT igmp proxy überhaupt mit nem vlan wo schon ne pppoe Verbindung drauf ist?

Hat hier jemand Erfahrungen damit?
Besten Dank im Voraus

Content-Key: 308842

Url: https://administrator.de/contentid/308842

Ausgedruckt am: 28.03.2024 um 21:03 Uhr

Mitglied: 129813
129813 03.07.2016 aktualisiert um 10:46:07 Uhr
Goto Top
Hi.
add interface=ether3-slave-local
Traffic from a switch group to another subnet always leaves the Wohle group from the master port, not one of it's slaves! So here you need to add the master port of the switch group.

Regards
Mitglied: D1nd141
D1nd141 03.07.2016 um 11:13:41 Uhr
Goto Top
Maybe this sounds a bit stupid, but the only master IF is the ether2-master-local.
But also, adding ether2-master-local as IGMP-proxy if does not work:

/routing igmp-proxy
set quick-leave=yes
/routing igmp-proxy interface
add alternative-subnets=224.0.0.0/4,172.19.7.1/32 interface=vlan35 upstream=yes
add interface=ether2-master-local
/routing igmp-proxy mfc
add downstream-interfaces=ether2-master-local group=224.0.0.0 upstream-interface=vlan35
add downstream-interfaces=ether2-master-local group=172.19.7.1 upstream-interface=vlan35
Mitglied: D1nd141
D1nd141 19.07.2016 um 18:52:09 Uhr
Goto Top
The solution was to add a "fake" Ip address (192.168.11.1) to the vlan35 interface.
Then the igmp proxy works fine.