Top "Ssh.net" questions

SSH.

Client not connected exception with SSH.Net

I'm having a strange issue with Renci SSH.Net: var sftp = new SftpClient(remoteHost, remotePort, remoteUserName, remotePassword); try { sftp.Connect(); …

c# ssh.net
"Renci.SshNet.Common.SshException: Invalid private key file" when loading SSH private key from configuration string using SSH.NET

I'm trying to send a file to some server using SFTP. During this process I'm getting the exception Renci.SshNet.…

c# .net ssh sftp ssh.net
Does SSH.NET accept only OpenSSH format of private key? If not, what are the restrictions?

The manual doesn't indicate such, but some Googling returns pages from the turn of the decade (such as this) suggesting …

c# .net ssh sftp ssh.net
Downloading a directory using SSH.NET SFTP in C#

I am using Renci.SSH and C# to connect to my Unix server from a Windows machine. My code works …

c# .net sftp ssh.net
C# SSH Connection

I'm trying to run SSH commands as part of a C# app. My code is as follows: using System; using …

c# ssh mono monodevelop ssh.net
Connecting to SFTP with key file using SSH.NET (Permission denied (publickey))

I have a C# console application in Visual Studio 2008 and .NET Framework 3.5. For testing purposes, I have installed an FTP …

c# .net visual-studio private-key ssh.net
Renci SSH.NET: Is it possible to create a folder containing a subfolder that does not exist

I am currently using Renci SSH.NET to upload files and folders to a Unix Server using SFTP, and creating …

c# recursion ssh sftp ssh.net
How to run several commands with SSH.Net?

I need to execute this action using a C# code: open putty.exe in the background (this is like a …

c# ssh ssh.net
Using SSH.NET to connect to Remote Hosts

I'm trying to automate configuring remote hosts, we have hundreds of these devices, we normally do it through USB programming, …

c# ssh ssh.net
C# Renci.SshNet.Sftp Connect throwing ArgumentNullException

I am using Renci.SshNet.Sftp to connect to SFTP. I am getting the following error when I try to …

c# ssh ssh.net