我希望能够在我的.ssh/config文件中指定ssh使用协议2(命令行参数-2),以及与它一起使用哪些密码。
以下内容似乎不起作用(我得到了糟糕的配置选项:Cyphers)
Host XXX
HostName YYYY
User ZZZZ
Compression no
Cyphers arcfour,blowfish-cbc
ControlPath ~/.ssh/%r@%h:%p
IdentityFile ~/.ssh/seas/id_rsa另外,我如何知道我使用的ssh (或OpenSSH)的哪个版本?which ssh或man ssh没有透露多少信息。
发布于 2012-10-12 17:20:44
Cyphers应该是Ciphers类型Protocol X,其中X可以1或2 (2是默认的)试试man ssh_config
https://unix.stackexchange.com/questions/50705
复制相似问题