martinho3712 0 Posted February 26, 2020 Report Share Posted February 26, 2020 (edited) Boa tarde, Estou a tentar fazer uma aplicação para enviar 6 ficheiros todos os dias por sftp. Estou a utilizar C# e a dll Renci.SshNet. static Renci.SshNet.SshClient ssh; static Renci.SshNet.ShellStream stream; ssh = new Renci.SshNet.SshClient("100.61.214.120", "WZSFPRYOUR10", "+WZSFPRYOUR1010"); ssh.Connect(); mas sempre que corro a app encontro este erro. Error while connecting : Renci.SshNet.Common.SshAuthenticationException: No suitable authentication method found to complete authentication. at Renci.SshNet.ConnectionInfo.Authenticate(Session session) at Renci.SshNet.Session.Connect() at Renci.SshNet.BaseClient.Connect() O que posso estar a fazer de errado????? Obrigado Edited February 26, 2020 by martinho3712 Link to post Share on other sites
M6 149 Posted February 28, 2020 Report Share Posted February 28, 2020 Diria que o erro é bastante explicativo: Quote No suitable authentication method found to complete authentication. A autenticação falhou por não estares a usar o método de autenticação correto. Faz a ligação manualmente para confirmares e verifica se há alguma coisa adicional que te estejas a esquecer. Verifica a documentação para saberes que opções tens. 10 REM Generation 48K! 20 INPUT "URL:", A$ 30 IF A$(1 TO 4) = "HTTP" THEN PRINT "400 Bad Request": GOTO 50 40 PRINT "404 Not Found" 50 PRINT "./M6 @ Portugal a Programar." Link to post Share on other sites
martinho3712 0 Posted February 28, 2020 Author Report Share Posted February 28, 2020 Obrigado pela sua ajuda M6... Perfeito !https://winscp.net/eng/docs/library Faltava isto: SshHostKeyFingerprint = "ssh-rsa 2048 xxxxxxxxxxx...=" Obrigado pela ajuda. Link to post Share on other sites
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now