It is nice to use the RDP to be on a different port for security purposes. If a firewall scanner finds out that port 3389 is allowed then it is pretty obvious that it is an RDP hole in the firewall punched in.
So how about port 12345 ?
2 options;
1. Change the port on the windows itself to custom port.
Lets assume you want it on port 12345, This case you change it to;
static (inside,outside) <Public_IP> <Private_IP>netmask 255.255.255.255
access-list 102 permit tcp any host <Public_IP>eq 12345
access-group 102 in interface outside
http://support.microsoft.com/kb/306759
The link above would show you how to change the port in windows.
2. Change the port on the static nat statement so that you connect to a random port but pix would route it to default rdp port.
static (inside,outside) tcp <Public_IP> 12345 <Private_IP>3389 netmask 255.255.255.255
access-list 102 permit tcp any host <Public_IP>eq 12345
access-group 102 in interface outside
Then launch Remote Desktop Client and then type in address as <Public_IP>:12345 Kewl…
