Hi,
We are trying to connect to following SFTP server: sftp-transparency.entsoe.eu
This used to work fine but fails after an update of the mentioned server. We noticed they updated their server and now only offer ssh-ed25519 as host key algorithm. We tried with following code (and other attempts):
using(var client = new Sftp())
{
//tried without and with this line:
client.Config.HostKeyAlgorithms = SecureShellHostKeyAlgorithm.ED25519;
client.Connect(Host, Config.SourcePort);
}
All attempts however result in following exception when calling the Connect method:
*ComponentPro.Net.SftpException: 'The client and the server have no common host key algorithm.'*
On the page https://doc.componentpro.com/ComponentPro-Sftp/ssh-ciphers we saw that a plugin is required? Where can this plugin be found?
Thank you,
Klaus Vancamelbeke
asked 4/27/2022 8:35:11 AM