Windows Vista and RDP

Windows Vista introduces a new ‘Network Level Authentication’ mechanism to RDP. It will be intereting to find out what they are doing there exactly, but meanwhile you might want to be able to use your legacy RDP clients to access your Vista desktop. Here is how you do this:

To configure Vista for
the old RDP clients, go to Control Panel -> System -> Advanced System
Settings. Select the “Remote” tab and then “Allow connections
from computers running any version of Remote Desktop”. That works – at the
very least – good for mstsc.exe on Windows.

Here is a screen shot (Build 5342):

Now, the interesting thing would be to get this to work with rdesktop(1) and similar non-Windows RDP clients as well. Unfortunately, the latest Build 5342 is very uncooperative here. rdesktop fails miserably. Compare the TCP streams (upper one is rdesktop, lower one is mstsc.exe on Windows XP SP2):

2 thoughts

  1. The problem with rdesktop .vs. Vista is that rdesktop has a compile-time fixed modulus size for the RSA public key that comes from the server. If you hack the rdesktop source and change:

    #define SEC_MODULUS_SIZE 64

    to

    #define SEC_MODULUS_SIZE 256

    you can then connect to Vista…. but of course you can’t use the same binary to connect to 2k3 or XP. A proper fix would need to detect the key size as the connection is setup.

Leave a Reply to Ilya Konstantinov Cancel reply

Your email address will not be published. Required fields are marked *