Why are remote desktop clients (RDP) very slow on my Mac?

9

0

I have a Mac Pro and a 120 Mbps up (2 Mbps down) broadband cable connection over my Fritbox 7390.

When I use the Microsoft RDP Client or the CorD-Client on OS X (Lion, Snow Leopard, Leopard - all have the same problem), the RDP connection is very slow. When I start Windows in Boot Camp on the same machine and use the RDP client from Windows, everything is fine.

Can anyone tell me the reason for this? How can I fix it? Are there any modifications I can make, such as TCP optimization?

Tex

Posted 2011-08-05T08:31:53.347

Reputation:

Have Parallels? Try running RDP that way? – Keltari – 2014-12-30T00:22:21.920

The RDS protocol has various optimisations in it, not all of which a client is required to implement. They get added over time. Obviously Microsoft's client implements most of them, the only other client I've seen that implements a lot of them is iTap. But it's commercial (although it was worth it for me, for near to mstsc performance). If you can compile FreeRDP (good luck!), I hear it performs well too. – ta.speot.is – 2013-04-26T21:51:26.333

Answers

7

I don't know for sure, but I've heard the same complaint. A theory is that on Mac (and Linux) the full images are sent over the network, whereas on Windows some higher level drawing commands are sent, at least for some parts of the screen.

It'd be interesting to try running Remote Desktop Client for Windows on the Mac (or Linux) using Wine, and compare performance this way.

kirsch

Posted 2011-08-05T08:31:53.347

Reputation: 71

2

I had this very issue but the interesting thing is that the RDC to this machine had been working fine some days before – but all of a sudden, over a gigabit network I could see each bitmap block coming across. I tried some other solutions such as executing:

netsh interface tcp set global rss=disabled
netsh interface tcp set global autotuninglevel=disabled

from an elevated commas prompt as suggested here: Vista Remote Desktop Connection Client Slow Delay or Disconnect When Connect to Windows Server 2003 SP2 x64 Edition RDP. That didn't work though.

Then I twigged what had changed since it last worked. I had re-enabled by realtime virus checker (in this case ESET Cybersecurity). I turned off realtime file system protection and instantly RDC and (and also SplashTop desktop, which does the same thing) got back to normal speed.

bowerandy

Posted 2011-08-05T08:31:53.347

Reputation: 21

1

I had this problem on my MacBook Pro with this:

sudo -s
sysctl net.inet.tcp.delayed_ack=0

To make it stick between reboots, add it to /etc/sysctl.conf with…

echo net.inet.tcp.delayed_ack=0 >> /etc/sysctl.conf

dkay29

Posted 2011-08-05T08:31:53.347

Reputation: 11

0

Try tweaking the Display settings on the Mac OSX RDP client.

Go to RDC->Preferences->Display, remove some of the "expensive" options in the "while connected" section (such as: show desktop background, show themes, etc...).

Asher

Posted 2011-08-05T08:31:53.347

Reputation: 902

this mentions some settings you could try tweaking https://communities.vmware.com/message/2400015 and http://www.tech-recipes.com/rx/11235/how-to-improve-remote-desktop-protocol-performance/

– rogerdpack – 2014-12-27T15:31:03.277

0

I was having the same issue with both CoRD and Windows RDP. What fixed it for me was adding more memory (I went from 4GB to 8GB).

jasonnjester

Posted 2011-08-05T08:31:53.347

Reputation: 1

0

OK installing freerdp client ($brew install freerdp in my case, using homebrew) seemed to provide an increased performance over the built-in "Remote Desktop Connection" for me. Finally fast RDP on mac :)

This thread mentions various other clients as well, FWIW, including CoRD, though for me CoRD seemed still slow'ish, and is built on rdesktop instead of FreeRDP (not sure what that means but might help understand it's speed being comparable to the built in Remote Desktop Connection. (though rdesktop itself seemed more responsive than CoRD to me, for whatever reason).

Also see this thread, it mentions that there is a "Microsoft Remote Desktop" app in the app store, which, for me, is quite responsive.

rogerdpack

Posted 2011-08-05T08:31:53.347

Reputation: 1 181

0

In my experience connecting to a low-spec'ed Windows 10 box (older second generation Core i5 with 4GB RAM) with RDP from OS X is severely affected by real-time malware/spyware/antivirus scanning. Disabling Microsoft's own Windows Defender's real-time protection made the experience much more tolerable.

cosmix

Posted 2011-08-05T08:31:53.347

Reputation: 101