Port Forward only ONE rule works.

Hi,

I have setup a few Por forwarding rules on mi RB951 but only the TOP one will work!. The other no.

Here are the forwards I have created:
/ip firewall nat
add action=dst-nat chain=dstnat in-interface=Wan1-Iplan protocol=tcp to-addresses=10.0.0.5 to-ports=3050
add action=dst-nat chain=dstnat dst-port=3389 in-interface=Wan1-Iplan protocol=tcp to-addresses=10.0.0.66 to-ports=3389
add action=dst-nat chain=dstnat in-interface=Wan1-Iplan protocol=tcp to-addresses=10.0.0.230 to-ports=3390
add action=dst-nat chain=dstnat in-interface=Wan1-Iplan protocol=tcp to-addresses=10.0.0.5 to-ports=14147
add action=dst-nat chain=dstnat in-interface=Wan1-Iplan protocol=tcp to-addresses=10.0.0.89 to-ports=3391

But only the one of port 3050 works. If I move another to the top (with WinBox) only that one will work.

Can you please, help me?

You are dst-nating all TCP port in first rule, because you not omit dst-port. Add dst-port=3050 in first rule and all be working.

\

Вы не прописали dst-port в первом правиле, поэтому весь трафик натится и не доходит до следующего правила. Укажите конкретный dst-port в первом правиле и все заработает.

Add Dst. Port to every rule

Thanks a lot!