SSH.NET icon indicating copy to clipboard operation
SSH.NET copied to clipboard

SSH.NET is a Secure Shell (SSH) library for .NET, optimized for parallelism.

Results 188 SSH.NET issues
Sort by recently updated
recently updated
newest added

Based on https://github.com/dotnet/runtime/issues/89718, we can use native `AesGcm` for .NET Framework from [Microsoft.Bcl.Cryptography](https://www.nuget.org/packages/Microsoft.Bcl.Cryptography/) nuget package

I am using Renci.SshNet in an application that monitors networked devices. Each device executes multiple commands at different intervals (e.g., every 10 seconds, 15 seconds, and 2 minutes). Commands run...

In the following example, only the "Begin download" console log is written. It successfully downloads the file, but never moves beyond the line with `DownloadFile`. No errors are thrown, and...

Had a service working perfectly for SSH.NET version 2020.0.2 which was able to connect to some SFTP using certificate. After upgrading to SSH.NET version 2024.2.0 one of my connections stopped...

I have a use case where I want _real time_ output from the console command to be printed to the console. Unfortunately, the streams that are written to cannot be...

If one changes directory with sftpclient.ChangeDirectory(path) and then tries to create a file in the new path sftpclient.Create(filename) the Create command does not see the change directory. The same happens...

When I trying to use var _port= new ForwardedPortDynamic("127.0.0.1", 5000), On that's code: ``` _client = new SshClient(s); _client.HostKeyReceived += (sender, e) => { e.CanTrust = true; }; _client.Connect(); _client.AddForwardedPort(_port);...

Hi! It would be awesome if SSH.NET package could provide these few async overload methods for more ergonomic developer experience. Previously there were implemented here https://github.com/JohnTheGr8/Renci.SshNet.Async but that package has...

Hello. Thank you for your effort on this project! I would like to know if there is any plan to add support for multipart transfer for single file. I have...

Trying to sftp mulitple files with separate sftp instances using the plinq s.AsParallel().Select(part => productSaver.SaveSnapshot(product, cutoffTime, part)) .ToArray().AsParallel() .ForAll(file => UploadFile(file, delivery.DeliveryID)); a product has say 16 files to upload,...