forwarding stream(IP and Port)

Hi guys,

I’m new to the Mikrotik platform. I need some help in forwarding specific IP and port to specific destination. Can you please show me the command in winbox. I have read in NAT(dst NAT/src NAT) but I’m not sure if this is the right approach and/or the exact configuration.

Please find below sample scenario.

Source IP and port
145.xxx.xxx.xxx:1234

receiving IP and port(mikrotik router-WAN)
80.xxx.xxx.xxx:3099

I can confirm in tourch, that I am receiving the stream about 15Mbps. I would like to send/forward this stream(IP:port) to a specific destination.

Questions.
1.) Can I send/forward it to a gateway which is the other physical port of the mikrotik router? or do i really have to know the specific device(IP and port).

So, your public IP on MT WAN interface is 80.xxx.xxx.xxx ?? and you expect the the traffic to port 3099 ??? and you want to forward it to some IP:port on your private network ??

or I missed the point ?

regards

something like this

/ip firewall nat
add chain=dstnat in-interface=your-wan protocol=tcp src-address=145.x.x.x src-port=1234 dst-port=3099 action=dst-nat to-addresses=192.168.88.xx to-ports=3099

change
in-interface=, protocol=, src-address=, to-address=
with yours

Yes, exactly.


Thank you so much for your feedback.

I had tried this one.

But I can not find any traffic.


can’t open images…

you also need to accept these nat-ed packets in firewall forward chain.

Hi,

what do you mean to accept in nat-ed packets in firewall? Can you please show how to do it?