New Post: Causes of "Server response does not contain SSH protocol...
Sorry I was out of the office.I downloaded the source code. Where can I see the release #?
View ArticleNew Post: Causes of "Server response does not contain SSH protocol...
Where did you download the sources code from ? Can't you just use the 2016.0.0-beta1 or 2016.0.0-beta2 nuget packages ?
View ArticleNew Post: Causes of "Server response does not contain SSH protocol...
Thank you for responding.Following the instructions to get the latest source code, shown below, I clicked on source code, download..Which took me to this download:
View ArticleNew Post: Slow upload speeds
Good day! Is this issue already fixed? Just want to know because I'm currently using it right now and still experiencing slow upload speeds. Thanks in advance! Cheers,
View ArticleNew Post: Cannot use RSA key generated by PuTTYgen
Hi, I've been trying to use RSA keys generated by PuTTYgen using the (default) "SSH 2 (RSA)" option instead of the keys I was previously generating using MKS Toolkit's ssh-keygen. With the keys...
View ArticleNew Post: Compatibility issues between SSH.NET and dropbear?
I'm using SSH.NET version 2013.4.7. My program need to connect to an SSH server, authenticate using a key, and upload a file. The destination of the file is an embedded ARM system running dropbear...
View ArticleNew Post: Control Chars - CTRL-V and CTRL-E
I'm able to successfully connect to and run commands on my server. The problem that I'm running in to now, is that I cannot figure out how to send control characters. To successfully logout of the...
View ArticleNew Post: SSH establish connect + through proxy socks5
Hello, I have this code:private void Connect() { if (client == null) { client = new SshClient("myproxy.net", txtUser.Text, txtPassword.Text); client.KeepAliveInterval = new TimeSpan(0, 0, 20);...
View ArticleNew Post: Cannot find message [/myfiletoupload.csv]
Hi, I have the exact same problem and this is the only mention I can find of it. Did you find a solution? Thanks.
View ArticleNew Post: Cannot find message [/myfiletoupload.csv]
Hello, I used the source code instead of the nuget package so I could debug the project and change things I needed to make it work. It's been a long time, Hope it helps.
View ArticleNew Post: Cannot find message [/myfiletoupload.csv]
Thanks. I ended up changing my code to use the fileUpload method instead - which worked.
View ArticleNew Post: how to pass special chars in passwords ?
One user has special chars in its Cisco's enable password (ï alias \357) Freeradius accepts it in the escaped style \357 but Ssh.net sends it directly and then is rejected It works with Putty or...
View ArticleNew Post: SshOperationTimeoutException and SshConnectionException continue to...
Hello, I am currently working on a project that must download, edit and then upload a file from an sftp server. To achieve this, I am using this library. As well as this, the file on the sftp is...
View ArticleNew Post: Files archiving to different location
Hello, If i want to move the files which are older than 5 days to different SFTP location, How i can achive using renci.ssh.net? Thanks in advance. Regards, Nagdeep. K.N.
View ArticleNew Post: Does SSH.NET use .NET System.Security.Cryptography classes or...
Does SSH.NET library use .NET System.Security.Cryptography classes or implement its own Crypto classes ?
View ArticleNew Post: Does SSH.NET use .NET System.Security.Cryptography classes or...
We implement our own hashing and crypto classes, but we intend to use the BCL (System.Security.Cryptography) classes for those target framework where they are available. As of the 2016.0.0 release, we...
View ArticleNew Post: Disposing client without disconnecting
What is the best practice between these two examples? Does it make sense to put the Disconnect() in a finally block to ensure it is always called or is it acceptable to simply allow dispose to close...
View ArticleNew Post: stty:: Invalid command error reported as error while trying to run...
Hi, We use Renci SSH library to communicate with a solaris server. I observe that for any command it reports an error stty::Invalid command but the ExitStatus is always 0...meaning that command was...
View ArticleNew Post: tnsping is not working via SSH.net dll
I have a requirement to run a .ksh file via .NET. For SSH the unix I'm using the SSH.NET dll. I'm able to successfully connect to the unix box and run commands. But when the .ksh file tries connecting...
View ArticleNew Post: Issue with command result output
Hi There I am using SSH.NET package to ssh to the linux box and run command on it in the following way:using (var sshClient = new SshClient(Connection)) { var command =...
View Article