I have DVB device broadcasting to 239.6.2.1:6670/udp, behind Mikrotik router with no “multicast” package (i.e. no PIM).
I want to forward this traffic into WAN, to unicast address A.B.C.D:7015/udp.
My naive attempts:
/ip firewall nat chain=dstnat dst-address=239.6.2.1 protocol=udp dst-port=6670 action=dst-nat to-addresses=A.B.C.D. to-ports=7015
/ip firewall mangle chain=prerouting protocol=udp dst-port=6670 action=change-ttl new-ttl=set:10
/ip ro add dst-address=239.6.0.0/16 ... # explicit route
Any suggestion please?