Reverse proxy with different http ports

I need to run multiple web servers, all on the same server on different ports
I tried to follow this http://wiki.mikrotik.com/wiki/Multiple_Web_Servers
But it will not let me specify an outgoing port.

The web servers are on port 80, 3000 and 10000
I use apache to do the same thing at another location.

Is this possible with Mikrotik v 4.4?

yes you can


for example:


when some one want to get server 123.com:5555 the nat is at follow:

chain: dst-nat, dest addres:your public ip protocol tcp, dst.port 5555 action dst-nat: to address 192.168.0.1 to port 5555


and just add another rule changing the port that means your web server.

I want to have the following
citta.xxx.com:80 → 192.168.1.2:80
webmail.xxx.com:80 → 192.168.1.2:3000
webadmin.xxx.com:80 → 192.168.1.2:10000