|
Written by David Noel-Davies
|
|
Friday, 13 July 2007 |
|
My solution to How can I reach my server from a restrictive network? can help when you have to use a client's or a hotel’s local network that restricts outgoing connections. In that case, you can usually get out on port 443 (HTTPS). I've tried port 80 (HTTP), but RDP fails to connect with networks that use proxy servers, such as Microsoft ISA Server. Although proxies work at the HTTP level, they fail to forward RDP traffic sent over port 80. Port 443, however, has always worked for me. The reason is that, because HTTPS is encrypted, even proxies have to forward RDP traffic through port 443. To access your server via RDP on port 443, you either have to use RRAS to redirect port 3389 traffic to port 443 or reconfigure Terminal Services to use port 443 instead of port 3389. To reconfigure Terminal Services, open a registry editor (e.g., regedit.exe) and go to HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp. Change the PortNumber value from 00000D3D (hexadecimal for port 3389) to 000001BB (hexadecimal for port 443).
|