i have http server after mikrotik router
so i want to forward all http request from my public ip to my http server internal ip?
Mikrotik-Router(WAN: 196.xxx.xxx.xxx)(LAN: 192.168.88.1/24) → My HTTP Server (192.168.88.100)
?!
i have http server after mikrotik router
so i want to forward all http request from my public ip to my http server internal ip?
Mikrotik-Router(WAN: 196.xxx.xxx.xxx)(LAN: 192.168.88.1/24) → My HTTP Server (192.168.88.100)
?!
Mikrotik-Router(WAN: 196.xxx.xxx.xxx)(LAN: 192.168.88.1/24) → My HTTP Server (192.168.88.100)
/ip firewall nat
add action=dst-nat chain=dstnat dst-address=Mk-Wan-IP dst-port=80 protocol=tcp to-addresses=192.168.88.100 to-ports=80
make that rule for protocol UDP, as well
Repeat those two for any other port like 8080 which is often usable for http connections.
thank you very much i will try it and tell you result
working 100%