New Post: Event Driven SshClient
Hi, Currently using Ssh.net sucessfully, I just want to be able to detect a server's disconnection Is it possible to add a handler in sshclient which would fire a sshclient.Disconnected event when...
View ArticleNew Post: SSH.NET
Hey, i also get the same error when i try to run a command and i'm very new to programming, but i need to fix the problem! i'm using version: 2014.4.6-beta2 did you fix the problem?
View ArticleNew Post: SSH.NET
if found out that ssh.net really don't apply to a ssh session using (var client = new SshClient(comboBox1.Text, username.Text, password.Text)) { client.Connect(); if (client.IsConnected) {...
View ArticleNew Post: Stability while in beta; "stable" timeframe
I'm going to open a new thread and suggest an "official fork" on github. We might create a group, where contributors are welcome, until the author (drieseng) claims it. More details in the new thread.
View ArticleNew Post: Creating an official fork on github?
Hi everyone, it's been considered on another thread, and I would like to make a suggestion: on github, creating a new group, and forking the current project there. This group would include the original...
View ArticleNew Post: Creating an official fork on github?
It's OpenSource with a BSD-License. If you want to support it, you are free to fork it. Maybe this will help you: https://github.com/darinkes/ssh.net But I don't have the time and energy to...
View ArticleNew Post: sFTP with privateKeyFile and password in ftp connection
What if you do not or cannot use a PasswordAuthenticationMethod? In my case i JUST want to use the private key. Is there a method or procedure for accomplishing this?
View ArticleNew Post: Creating an official fork on github?
Of course everyone's free to fork it, with the risk of losing a central repository where all improvements fall back. Since your fork is up to date, you could just create a group (SSH.NET? SSHNET?),...
View ArticleNew Post: sFTP with privateKeyFile and password in ftp connection
simply like this vb.net: ' your openssh private key dim Ppk as string = "-----BEGIN RSA PRIVATE KEY-----" & vbcrlf _& ...................................................... & vbcrlf _ &...
View ArticleNew Post: Run SSH Command with Asynchronous method
Hi everybody, Now I want to create a program like putty with 2 textbox, textbox 1 displays result and textbox 2 to insert command. It takes me a lot of time to receive the result with some command. I...
View ArticleNew Post: Send and store results from multiple commands in the same connection
Is there a way to do this? I am opening a connection and sending a command, for example, cd /some dir i then store this as a SShCommand global variable. what i am trying to do is send another command...
View ArticleNew Post: Maintain conversation
All, I am looking to persist a conversation with a remote server. What i am doing is connecting to a host, sending a command like change directory... to some directory besides root. Store the results...
View ArticleNew Post: How to maintain a 'conversation' with an SSH session?
Can you link the solution you found to your problem!? I am having the same issue, i am losing session from all previous commands sent to the server.
View ArticleNew Post: How to maintain a 'conversation' with an SSH session?
If I can interfere in your topic, I wrote vb.net code with renci ssh.net to manage many Cisco switches & routers. I added some code in send/receive command for :take out command echo from response...
View ArticleNew Post: Maintain conversation
after connection, you have to use a sshclient.shellstream for sendng commands & receiving responses take a look at...
View ArticleNew Post: Examples
I'm trying to find some examples on how to use this rather thorough library but I'm not having any luck. I've looked in the HTML Help file and while all the Classes are well documented through XML...
View ArticleNew Post: Examples
you can take a look at http://blog.atcp.us/2013/11/10/talking-to-cisco-routers-switches-firewalls-with-renci-sshnet/ or...
View ArticleNew Post: Examples
I am primarily looking at the SFTP Namespace, uploading, downloading, reading the directories and deleting files. I thought there would be some examples and I just wasn't finding them in the...
View ArticleNew Post: Creating an official fork on github?
I think this is a good idea. It will make the project move a lot quicker with more contributions. I certainly hope the original authors can see its value and join in with the move.
View ArticleNew Post: Send and store results from multiple commands in the same connection
Use a ShellStream to create a shell from which you can send and receive interactive commands from.http://stackoverflow.com/questions/28452809/renci-sshnet-how-to-type-a-text-in-ssh-session
View Article