Local Port Forwarding

Hello there,

I am currently working on and learning Mikrotik Cloud Core device. I’ve managed to set Radius, Hotspot, DHCP Servers, Firewall rules etc. The problem I am experiencing is ;

I have 5 server connected in my Mikrotik device and one of them are Ubuntu server which is for technical forum and mail.

The static IP we have is ; 195.175.xx.xxx

When I connect into this IP with different network I am able to connect to this server via HTTP port. But when I try to log into server in localhost with this IP ( Which is static ), it directs me to Mikrotik’s Interface.

This is the some part of forwarding I made;




I’d be grateful If you could help me about how to disable HTTP login of Mikrotik Interface so I can directly login into my server with my static IP in my local host.

Hope I explained clearly what I am occuring. Thanks in advance!

in Ip → Services disable “www” or change the web port of your mikrotik.

Thanks for the answer,

I disabled it. It solved to interface issue but with this IP, I still cannot connect to my server. Tried in other network, its working pretty fine but in local it still doesn’t work.

192.168.1.51 is the server I want to connect via my static IP in my local network. I forwarded ports but it still doesn’t connect in my local network.

In your local roules, for the port forwarding, dont use the In. Inteface field, use the Dst. Address field and put your routers local ip address
ex:

/ip firewall nat add action=dst-nat chain=dstnat disabled=no dst-address=xxx.xxx.xxx.xxx dst-port=80 protocol=udp to-addresses=192.168.1.51 to-ports=80

You can use the in-interface parameter as long as it is not your local LAN interface

That worked ( tcp version ofc ).

Thank you very much!