Open
Description
SFTP connection failed using Net::SFTP client. But it's working with Filezilla and sftp command.
sftp -i ~/.ssh/private_key.pub -P 16321 -oKexAlgorithms=diffie-hellman-group1-sha1 -c aes128-cbc user@host
Code Example:
require 'net/sftp'
sftp = Net::SFTP.start('hostname', 'user', password: '', port: 'port', keys: '~/.ssh/private_key.pub')
sftp.connect
Output:
Failed to connect to hostname: could not settle on kex algorithm
Server kex preferences: diffie-hellman-group1-sha1,diffie-hellman-group-exchange-sha1
Client kex preferences: ecdh-sha2-nistp521,ecdh-sha2-nistp384,ecdh-sha2-nistp256,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha1
Is it possible to use any of these Server preferences kex algorithms instead?
Is there any way to define Net::SFTP to use local ssh config?
Metadata
Metadata
Assignees
Labels
No labels