Share Internet and TV on the same cable without the need of VLAN tag

Hi I would like to share IPTV and Internet on the same Ethernet cable

my ISP sends IPTV on vlan 3999 and internet doesn’t need any VLAN

so I’ve created 1 VLAN with id 3999 on ether1 (gatway to internet) and bridge it to ether6 (when I connect to ether6 with pc only TV works and I don’t have internet)

so I’ve installed multicast package and setup IGMP Proxy like so:

/routing igmp-proxy interface
 add alternative-subnets=0.0.0.0/0 disabled=no interface=ether6 threshold=1 upstream=yes 
 add disabled=no interface=ether2 threshold=1 upstream=no

(ether2 = has Internet and I would also like IPTV on it)
(ether6 = I bridge it to VLAN 3999 and if I connect to it direcly I got only IPTV)

but it doesn’t work (I have default firewall rules and I even disabled all rules but it still doesn’t work)

PS: I even add that rules but it still doesn’t work:

/ip firewall filter
 add action=accept chain=input comment="Allow Broadcast Traffic" disabled=no dst-address-type=broadcast place-before=0
 add action=accept chain=input comment="Allow IGMP" disabled=no protocol=igmp place-before=0
 add action=accept chain=input comment="Allow IPTV" disabled=no protocol=udp dst-address=224.0.0.0/4 place-before=0

now I realy don’t know what I am doing wrong
Thanks for Anwsering and Best Regards

When you bridge vlan to ether6 then only iptv will work on ether6 because that vlan is dedicated to iptv only.

As for IGMP proxy your configuration is wrong.
Upstream must be vlan interface. And that vlan should not be bridged anywhere.

Hi I’ve factory reset the router to test without defoult config and I’ve putted IPTV (vlan 3999 (where IPTV is)) on upstream and ether2 (where I would like to have Internet and IPTV) on downstream but it stil doesn’t work and I even remove VLAN IPTV from every bridge

Here is all my config:

# sep/21/2016 12:26:18 by RouterOS 6.35.4
# software id = DZIA-SA5V
#
/interface bridge
add name=bridge1
/interface wireless
set [ find default-name=wlan1 ] disabled=no mode=ap-bridge wireless-protocol=\
    802.11
/interface vlan
add interface=ether1 name=IPTV vlan-id=3999
/ip pool
add name=dhcp ranges=192.168.88.10-192.168.88.100
/ip dhcp-server
add address-pool=dhcp disabled=no interface=bridge1 name=dhcp1
/interface bridge port
add bridge=bridge1 interface=ether2
add bridge=bridge1 interface=ether3
add bridge=bridge1 interface=ether4
add bridge=bridge1 interface=ether5
add bridge=bridge1 interface=ether6
add bridge=bridge1 interface=ether7
add bridge=bridge1 interface=ether8
add bridge=bridge1 interface=ether9
add bridge=bridge1 interface=ether10
add bridge=bridge1 interface=sfp1
add bridge=bridge1 interface=wlan1
/ip address
add address=192.168.88.1/24 interface=ether2 network=192.168.88.0
/ip dhcp-client
add dhcp-options=hostname,clientid disabled=no interface=ether1
/ip dhcp-server network
add address=192.168.88.0/24 gateway=192.168.88.1 netmask=24
/ip firewall filter
add chain=input comment="Allow Broadcast Traffic" dst-address-type=broadcast
add chain=input comment="Allow IGMP" protocol=igmp
add chain=forward protocol=udp
add chain=input comment="Allow T-2 IPTV" dst-address=224.0.0.0/4 protocol=udp
/ip firewall nat
add action=masquerade chain=srcnat out-interface=ether1
/lcd
set default-screen=stats read-only-mode=yes touch-screen=disabled
/lcd interface pages
set 0 interfaces="sfp1,ether1,ether2,ether3,ether4,ether5,ether6,ether7,ether8\
    ,ether9,ether10"
/routing igmp-proxy interface
add alternative-subnets=0.0.0.0/0 interface=IPTV upstream=yes
add interface=ether2-master
/system clock
set time-zone-name=Europe/Ljubljana
/system routerboard settings
set protected-routerboot=disabled

and here is a print from /igmp proxy settings:

[admin@MikroTik] > /routing igmp-proxy interface print
Flags: X - disabled, I - inactive, D - dynamic, U - upstream
 #    INTERFACE                                                       THRESHOLD
 0 I  ether2-master                                                           1
 1 IU IPTV                                                                    1

it saying inactice (how can I make it active?)

I still don’t know what I am doing wrong

Thanks for Anwsering and Best Regards

Local interface in igmp proxy settings is not correct. Ether2 is part of the bridge, so there should be bridge interface instead.

Hi i’ve changed downstream interface to bridge but for some reason it is still inactive:

Flags: X - disabled, I - inactive, D - dynamic, U - upstream 
 #    INTERFACE                                                         THRESHOLD
 0 I  bridge                                                                    1
 1 IU IPTV                                                                      1