Forwarding All traffic

Hello
i have Mikrotik SXT , bridged WAN+LAN with 192.168.1.0/24 address.

now i want forward All traffic (like port 80,443) from above range to this ip : 192.168.1.90

i tested some dst nat but not worked :frowning:

any idea?

add action=dst-nat chain=dstnat disabled=no dst-address=192.168.1.0/24 dst-port=
80 protocol=tcp to-addresses=192.168.1.90 to-ports=80

not work

what about forwarding port 80 ?

i remember before i do it , and it work, but now i dont know what is wrong,
can somebody help me?
:slight_smile:

lots of options to you, but my general port forward.

add action=dst-nat chain=dstnat dst-port=80 in-interface=ether1-Gateway protocol=tcp to-addresses=192.168.1.90

if I need to route an external port to a different internal port

add action=dst-nat chain=dstnat dst-port=8081 in-interface=ether1-Gateway protocol=tcp to-addresses=192.168.1.90 to-ports=80

I think maybe where you are getting held up is the dst-address=192.168.1.0/24