Show user ip on lan side

Hi all,

I have a Mikrotik router and a Synology nas.
Before I got the MK router I was able to see the IP of users logged into my NAS.
Now when users log in to my NAS from outside my lan I can only see the router local ip address.

I want to be able to see the users real internet IP in the logfile of my NAS.
I don’t know what that option is called or how to fix it.

Thank you very much..

Br. Simon

Post result of:

/ip firewall export hide-sensitive

if you used dst-nat for your NAS, you should see the external IP when they going through the fireware and the NAS device should see it too.

Most likely there’s just:

/ip firewall nat
add action=masquerade chain=srcnat

instead of proper:

/ip firewall nat
add action=masquerade chain=srcnat out-interface=<WAN>

Like this is even more precise

add action=masquerade chain=srcnat out-interface=<WAN> src-address-type=!local

add action=masquerade chain=srcnat out-interface= src-address-type=!local

>

Thank you very much. The last one here worked perfect! You are GREAT!