If you connect from LAN to WAN, where the external server lives, then IMHO you should set "fake" static local IP in your router and configure all clients to connect to this address. Then you should set rule like ZeroByte suggested
/ip firewall nat add chain=dstnat dst-address=LOCAL_IP action=dst-nat to-addresses=current.server.ip.address
Why IMHO it is better way ?
1. The local IP will be constant forever for your client stations. Easy to mantain no matter what is current address of server. You do not need to remember previous IPs...same configuration regardless current server IP. No problem at all.
2. Rule proposed by ZeroByte masks an old IP which COULD host now services we want to access.
3. If you do not track current stations' configurations for each address change you need new rule for all old server's IPs and the current one.
4. If you want to configure clients accessing server from WAN side, you just need to have static public IP, maybe the same as you have, and set the second rule
/ip firewall nat add chain=dstnat dst-address=ACCESS_WAN_IP action=dst-nat to-addresses=current.server.ip.address
Voila