파라미코가 작동하지 않아요

파라미코가 작동하지 않아요

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')

작동하게 하려면 어떻게 해야 하나요?

관련 정보