New Post: Stability while in beta; "stable" timeframe
I second the GitHub suggestion. Thanks for all your hard work!!
View ArticleNew Post: Stability while in beta; "stable" timeframe
For what it's worth in the past few days I tried multiple times to reply and couldn't because codeplex was in read-only mode (I believe it was in read-only mode for over a week).
View ArticleNew Post: Sending a command SshClient, timeout?
Hi I have got the SshClient to work fine. But when I want to erase and reload a device it hangs and obviously will not reconnect as it has different credentials. Is there a way to issue a command and...
View ArticleNew Post: Handle other proxy types
Hi, First of all, don't stop working on this project, it's really a good one (the best I could find, actually). I was wondering if it is possible to handle other kind of proxy servers by generalizing...
View ArticleNew Post: Stability while in beta; "stable" timeframe
I also agree with the move to GitHub, which would allow you engage community with you, while staying the manager of the project (ie. accepting or denying each individual pull request). And I also agree...
View ArticleNew Post: Hanging indefinitely while trying to write to the stream
If written some threaded code that makes use of this library. A simplified version of my code looks like this:while (!stopThread) { if ([there is new input]) { ShellStream.WriteLine(newInput); output =...
View ArticleNew Post: su or sudo root
Hi tried above logic "client.RunCommand("echo \"userpwd\" | sudo -S command").Execute()" but in our case we don't know the password for security reasons, and we use secured key to login. so is there...
View ArticleNew Post: Output and Error stream in one common stream
Hi, I would like to have the output of the command in one common stream to know when the error has been raised. Is there a way to do this with the SshCommand? Thanks
View ArticleNew Post: Stability while in beta; "stable" timeframe
picrap wrote: I also agree with the move to GitHub, which would allow you engage community with you, while staying the manager of the project (ie. accepting or denying each individual pull request)....
View ArticleNew Post: Hanging indefinitely while trying to write to the stream
I'm not sure about the why but at line 673: "_messageListenerCompleted.WaitOne();" you can add a timemout value in the WaitOne() method.
View ArticleNew Post: Sending a command SshClient, timeout?
Something like this ? using (var client = new SshClient(host, username, password)) { client.Connect(); client.RunCommand("reset"); client.Disconnect(); }
View ArticleNew Post: Hanging indefinitely while trying to write to the stream
I didn't want to mess with the source code of the SSH library in case it caused some further error. My stopgap solution was to encapsulate any call that might throw the exception that triggers the...
View ArticleNew Post: Low performance (Upload time comparing)
Hi, wonder if you managed to find this issue. I'm using sshnet to provide port forwarding for mysql backend of client application, and that does work great. Recently, we decided to do some more...
View ArticleNew Post: How to send results of client.RunCommand to a listbox WinForms C#
Hi There I am trying to use SSH.Net in a WinForms app, however I am having issues trying to ouput the result of a command to a listbox. I can connect fine to the server. Debugging the line with string...
View ArticleNew Post: How to send results of client.RunCommand to a listbox WinForms C#
Instead of using string output = client.RunCommand(command).ToString(); listBox1.Text = output; usevar output = client.RunCommand(command) listBox1.Items.Add(output.Result);
View ArticleNew Post: Stability while in beta; "stable" timeframe
I second the motion! This is great project and I don't want to see it die. I can certainly help and I am sure other people will help too! Moving to GitHub will certainly help and will allow other...
View ArticleNew Post: How to send results of client.RunCommand to a listbox WinForms C#
Great thanks, I'm getting the ls -la output into the listbox now, albeit all on one line but I can fix that. Thanks for your help :-)
View ArticleNew Post: How to send results of client.RunCommand to a listbox WinForms C#
Outputting the results of ls -la or iostat to the listbox is okay, columns are a bit off, more formatting required. This is okay for these commands, top for example doesn't display.var output =...
View ArticleNew Post: Upload limit
I can't say about whether or not there is a limit on SSH, but in looking at your code,do you think you could be consuming too many filehandles in your process? You might want to use ProcessExplorer or...
View ArticleNew Post: Trouble using .RunCommand() with ssh.net
So I am trying to run a remote nodejs server with a few arguments and although I manage the start the server correctly i fail to pass on to the next command and the app fails after a 60 sec timeout....
View Article