为了提高scp的传输速度指定了scp的加密算法为arcfour $ scp -c arcfour localFile userName@remoteIP:remoteFile 得到报错unknown cipher type $ ssh -c userName@remoteIP 得到报错no matching cipher found 解决办法:找到/etc/ssh/sshd_config,在文件最后加入一行 Ciphers 3des-cbc,blowfish-cbc,cast128-cbc,ar…