ekkas
1
Sorry for such a basic question…
I have simple setup, 1 WiFi(10.1.5.5/24) & 1 LAN card(192.168.0.1/24) with SrcNat setup (masquerade)
Now I want to forward a port to internal LAN (192.168.0.3) accesable from the WiFi side.
But how do I do it?
Thanks
Ekkas
mrz
2
You must use dst-nat
/ip firewall nat add chain=dstnat action=dst-nat to-addresses=x.x.x.x to-ports=xx dst-port=xx in-interface=wifi
yes, you do it with srcnat and dstnat
that methode same how to map public to local one, try search at wiki page: http://wiki.mikrotik.com/
ekkas
4
/ip firewall nat add chain=dstnat action=dst-nat to-addresses=x.x.x.x to-ports=xx dst-port=xx in-interface=wifi
Thank you, it’s working fine.