From 463f8b3f881cd5eba2fe670f8d38f4793eac129e Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Sat, 2 Apr 2016 19:38:17 -0400 Subject: [PATCH] tossed blowfish cipher, which seems to have been dropped somewhere between ubuntu 14.04, 15.10 or 16.04, since my 16.04 system would no longer talk to my 15.10 system. --- customizing/fred/scripts/ssh.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/customizing/fred/scripts/ssh.sh b/customizing/fred/scripts/ssh.sh index f9cdb7ca..13d57fa3 100755 --- a/customizing/fred/scripts/ssh.sh +++ b/customizing/fred/scripts/ssh.sh @@ -21,9 +21,11 @@ export TERM=linux # forcing one to hit ctrl-c. if [ ! -z "$keyfile" ]; then - \ssh -i "$keyfile" -X -C -c blowfish-cbc $* + \ssh -i "$keyfile" -X -C $* +#-c blowfish-cbc else - \ssh -X -C -c blowfish-cbc $* + \ssh -X -C $* +#-c blowfish-cbc fi if [ $? -eq 0 ]; then -- 2.34.1