10/6 What's the easiest way to get the ip from the env var
SSH_CLIENT="10.10.10.10 1212 22" in bash? I want to use it to
set the DISPLAY env var.
\_ see man pages for any/all of: sed, awk, perl, cut, tr (and many
others).
\_ Why are you doing this? ssh will set DISPLAY itself if you
run it with the right options, and it will do it securely. -tom
\_ Ah, thx.
\_ ssh -X -l mylogin hostname
\_ ssh -Y -l mylogin hostname
\_ Ok, now it's slow. ;) What's the fastest cipher and mac
to use? The choices are:
rc4/blowfish/aes-128/192/256/twofish/3des...
\_ plaintext.
\_ IMO, blowfish is the best blend of speed and security
\_ RC4 is by far the fastest, and secure enough for joe averages
using SSH2.
\_ After you log in, how do you see what cipher/mac is in use?
\_ depends on what ssh you use, obviously. i don't know of
a way for openssh. use -v to see what's being
negotiated.
\_ Ok, now it's slow. ;) What's the fastest cipher and mac to use? |