I have yet to figure out how to do a simple one-to-one full nat so a hotspot client with a static ip address can accecpt incoming connections from the internet. When i find the person that can make that happen for me he will be rewarded!
This is done through src-nat and dst-nat. You also have to add the public IP address to the Public interface.
dst-nat rules should look similar to this...
1 ;;; Dan
dst-address=66.60.xxx.xxx/32 action=nat to-dst-address=10.0.0.18
2 ;;; Sales Office
dst-address=66.60.xxx.xxx/32 action=nat to-dst-address=10.0.0.12
3 ;;; Roger
dst-address=66.60.xxx.xxx/32 action=nat to-dst-address=10.0.0.34
src-nat rules should look like this...
;;; Dan
src-address=10.0.0.18/32 action=nat to-src-address=66.60.xxx.xxx
1 ;;; Sales Office
src-address=10.0.0.12/32 action=nat to-src-address=66.60.xxx.xxx
2 ;;; Roger
src-address=10.0.0.34/32 action=nat to-src-address=66.60.xxx.xxx
Remember to assign the additional IP addresses to the WAN interface on your MT router. That should be it, unless I've forgotten anything...