port forwarding

I need to have access to a device on a private subnet to retrieve an html page from it. I have RouterOS on a box with a public IP. I don’t want to change too many settings, as this is a short-term project. Is it possible to set up so that http://:82 actually returns http://:80.

I’ve tried:
/ip firewall dst-nat add dst-address=/32 dst-port=82 protocol=tcp action=redirect to-dst-address=- to-dst-port=80-80

What I get back is the web page from the RouterOS box, not from the device. What am I missing?

Something like this:

/ip firewall dst-nat in-interface=Internet dst-address=:82 protocol=tcp action=nat to-dst-address=192.168.1.2 to-dst-port=80

Looks like you’re redirecting when the action should be NAT.

Regards

Andrew

/ip firewall dst-nat add in-interface=ether2 dst-address=:82 protocol=tcp action=nat to-dst-address=192.168.1.2 to-dst-port=80

Works perfectly. Thank you!