パラミコはうまくいきません。

パラミコはうまくいきません。

paramiko 2.7.2とOpenSSH_7.9p1があります。何かを試すたびに同じエラーが発生します。

SSHException: Incompatible ssh server (no acceptable ciphers)

私が理解したのは、パスワードを次のように定義したので、すべてがうまくいくはずです。sshd_configそしてssh_config

sshd_config:

Ciphers aes128-ctr,aes192-ctr,aes256-ctr,aes128-cbc,3des-cbc

ssh_config:

Ciphers aes128-ctr,aes192-ctr,aes256-ctr,aes128-cbc,3des-cbc

ssh -Qパスワード:

3des-cbc
aes128-cbc
aes192-cbc
aes256-cbc
[email protected]
aes128-ctr
aes192-ctr
aes256-ctr
[email protected]
[email protected]
[email protected]

paramiko.Transport._preferred_ciphers:

('aes128-ctr', 'aes192-ctr', 'aes256-ctr', 'aes128-cbc', 'aes192-cbc', 'aes256-cbc', 'blowfish-cbc', '3des-cbc')

動作させるにはどうすればよいですか?

ベストアンサー1

おすすめ記事