Plesk Migrator不兼容的ssh peer(没有可接受的kexalgorithm)

我正尝试使用Plesk Migrator从cPanel服务器传输数据。 我正在使用命令行版本,但是我收到一个错误,我似乎无法修复。 Plesk的migrator GUI也显示了同样的错误。

Failed to connect to the the source server 'cpanel' (remote-host-ip) at 'remote-host-ip' by SSH as 'remote-host-user': Incompatible ssh peer (no acceptable kex algorithm) 

我有我的sshd_config设置像这样,

 MACs hmac-sha2-512,hmac-sha2-256,hmac-ripemd160,hmac-sha1 KexAlgorithms diffie-hellman-group-exchange-sha1,diffie-hellman-group1-sha1,[email protected],ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha1 Ciphers 3des-cbc,blowfish-cbc,aes128-cbc,aes128-ctr,aes256-ctr 

并且可以用普通的SSH命令连接到Cpanel服务器,使用私钥是绝对正常的,所以它逃避了我为什么在migrator上发生这种事情!

编辑:只是为了让你知道我也没有控制的cPanel服务器,因为它是一个普通的托pipe服务提供商 – 正如所说,从Plesk服务器ssh进入工作好 – 它与。

在sshd_config中设置以下内容:

 Ciphers [email protected],[email protected],aes256-ctr,aes128-ctr MACs [email protected],[email protected],[email protected],hmac-sha2-512,hmac-sha2-256,hmac-ripemd160,hmac-sha1 KexAlgorithms diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha1,diffie-hellman-group-exchange-sha1 

或者只是评论他们和迁移应该工作。