Настройка маршрутизаторов MikroTik.

Для просмотра IPTV в маршрутизаторах MikroTik необходимо из консоли ввести следующее:

/ip firewall filter remove [/ip firewall filter find];
/ip firewall filter add chain=input action=accept protocol=icmp;
/ip firewall filter add chain=input action=accept in-interface=ether1-gateway protocol=igmp;
/ip firewall filter add chain=input action=accept in-interface=ether1-gateway protocol=udp src-address=0.0.0.0/0 dst-port=1234;
/ip firewall filter add chain=input action=accept connection-state=established;
/ip firewall filter add chain=input action=accept connection-state=related;
/ip firewall filter add chain=input action=drop in-interface=ether1-gateway;
/ip firewall filter add chain=input action=drop in-interface=pptp-pskovline;
/routing igmp-proxy interface remove [/routing igmp-proxy interface find];
/routing igmp-proxy interface add alternative-subnets=0.0.0.0/0 interface=ether1-gateway threshold=1 upstream=yes;
/routing igmp-proxy interface add interface=bridge-local threshold=1 upstream=no;
/interface bridge filter add action=drop chain=output disabled=no dst-port=1234 ip-protocol=udp mac-protocol=ip out-interface=wlan1 src-address=0.0.0.0/0;