Redirect port 80 for external web administration

Hi,

I got a Mikrotik RB2011UiAS-2HnD-IN a week ago.

Now I want to configure this router.

First, the router has 192.168.1.1 as a internal IP.

I want to change the web administration port 80 by port 9000 in order to access from internet.

and I want redirect the external port 80 to an internal port 80 of my web server with IP 192.168.1.50.

Anyone can help me?

Thanks.
Robert.

You should do the following to change the Web management port. / ip service set www port = 80 address = 0.0.0.0/24 disabled = no. You can do the NAT process in this way. /ip firewall add action=dst-nat chain=dstnat comment=“Web Server” disabled=no dst-port=80 protocol=tcp to-addresses=192.168.1.50 to-ports=80

For port 80 traffic from anywhere
/ip firewall add action=dst-nat chain=dstnat comment=“Web Server” disabled=no dst-port=80 protocol=tcp in-interface=ether1-gateway to-addresses=192.168.1.50

For remote router access via external Port 9000
/ip firewall add action=redirect chain=dstnat comment=“Web Server” disabled=no dst-port=9000 protocol=tcp in-interface=ether1-gateway to-ports=80

Do not forget to allow through firewall for both input and forward chains TCP 80.