SSH – How to Speed Up X Over SSH on a Slow Network Connection

networkingperformancesshx11

Are there any specific recommendations on speeding up X applications over ssh on a slow network connection? In this specific case, I am accessing a server located in west coast from a laptop in east coast and that too on a not too fast DSL connection.

Any settings for ssh?
Any tips in general?

Best Answer

You will probably see the most major benefits by using compression using the -C option. You can also enable it in your sshd_config by using the following line:

Compression yes
Related Question