[SSH] add a cheat for ssh (encryption)

This commit is contained in:
ImmortalPC 2014-03-27 15:44:06 +01:00
parent b4c5b7f2f9
commit 65c50bc5b3
1 changed files with 3 additions and 0 deletions

View File

@ -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