Mikrotik port forwarding example | How to redirect http traffic



This article showing up how to forwarding http traffic into the internal web server.
Let our WEB server IP address 192.168.10.100 and using port 80.
/ip firewall nat
add  chain=dstnat disabled=no dst-port=80 protocol=tcp
action=dst-nat to-addresses=192.168.10.100 to-ports=80
As a result all internal http traffic forwarding internal web servers.
We can customize that firewall rule in different type of criteria.
Many company using ubnt radio device and need access via internet or other but basically radio management ip used private ip block,in this situation we can forward private ip address in to public ip address.

No comments:

Post a Comment