From 65c50bc5b32fee384972fc36e363e6c6ce1af2d7 Mon Sep 17 00:00:00 2001 From: ImmortalPC Date: Thu, 27 Mar 2014 15:44:06 +0100 Subject: [PATCH] [SSH] add a cheat for ssh (encryption) --- cheatsheets/ssh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cheatsheets/ssh b/cheatsheets/ssh index ee40c57..ce11b52 100644 --- a/cheatsheets/ssh +++ b/cheatsheets/ssh @@ -16,5 +16,8 @@ ssh -X -t user@example.com 'chromium-browser' # To create a SOCKS proxy on localhost and port 9999 ssh -D 9999 user@example.com +# -X use an xsession, -C compress data, "-c blowfish" use the encryption blowfish +ssh user@example.com -C -c blowfish -X + # For more information, see: # http://unix.stackexchange.com/q/12755/44856