New Post: sftp examples
Look for this Exemplo for C# application; (http://surendrasharmadotnet.blogspot.com.br/2014/03/how-to-upload-file-via-sftp-using.html)
View ArticleNew Post: Problems changing directory with sftpClient.ChangeDirectory() after...
Hi, I have the following script:string workingDirectory; using (var client = new SshClient(ssh_host, ssh_username, ssh_password)) { try { client.Connect(); if(client.IsConnected) { SshCommand...
View ArticleNew Post: Connect asynchronously
Hi I was wondering if anyone has had any luck connecting to an SSH server asynchronously or if anyone know if this is possible. It works fine if you have the correct credentials, but when you make a...
View ArticleNew Post: SCP Client hangs on Download method call due to password needing...
We are using the SCP Client to connect to a remote server and download some files. We noticed the process has been hung for the past 3 weeks at the Download method call. We logged into the remote...
View ArticleNew Post: A first chance exception of type...
Hi I'm trying to access and give orders to a Sonicwall Firewall with the SSh.net lib in Visual studio 2012 in C#. I would like to give a simple SSH Order such as" ping 127.0.0.1 "and get the result as...
View ArticleNew Post: How access SonicWALL
Do you have a solution? I have the same problem.... Best regards, Stefan
View ArticleNew Post: How access SonicWALL
I have a similar Problem but no solution yet. Best Regards Tom
View ArticleNew Post: Exit code from remote linux bash execution
Hello: A bash shell script executes code and then echoes text and the screen and exits with a specific exit code like: echo "This is my text" exit 1 RunCommand captures the string "This is my text"....
View ArticleNew Post: How access SonicWALL
I changed the library to SharpSSH.net (http://www.tamirgal.com/blog/page/sharpssh.aspx) Now i dont experience any problems anymore. My issues may have been an incompatibility by Sonicwall and SSH.Net....
View ArticleNew Post: SSH.Net log network data throw proxy
Here is my code wich is use for login into a ssh server and foward port success SshClient client; ForwardedPortDynamic port; publicvoid Start(string server, string user, string password, int...
View ArticleNew Post: Screen limitation on return command
I am sending a command for a mikrotik by ssh./interface print stats I'm getting this output. 13 DR <pppo ... 111 749 511 1 216 396 589 1 054 678 1 074 122 DR 14 <pppo ... 49 965 132 1 184 225...
View ArticleNew Post: How can I enable the receipt of 8 bit characters from a SSH connection
Hi, I have been most impressed with SSH.NET, with all the help here I was able to get my terminal emulator to make SSH connections in a short period of time. Well done. My current issue I have not been...
View ArticleNew Post: X11 forward
Hi Is it possible to forward X11 using ssh.net as client? I installed xming in my windows and want to run GUI app of linux in my windows client using C# and ssh.net. Any idea?
View ArticleNew Post: How can I enable the receipt of 8 bit characters from a SSH connection
I have solved this problem by supplying an instantiation of my own Encode class, very similar to the the ASCIIEncoding class in Renci.SshNet. It overrides various methods so that bytes are passed...
View ArticleNew Post: SSH.NET Licence Agreement in comercial application
Can I use SSH.NET DLLs in project for application development for my customer. Is there any restriction in this case? I read Licence agreement under Licence tab but I am not sure that this component is...
View ArticleNew Post: Renci.SshNet.Common.SshOperationTimeoutException
We were experiencing this exact problem; updating to the newest version of SSH.NET fixed it. Version 2013.4.7 exhibits this problem. Version 2014.4.6-beta2 does not.
View ArticleNew Post: SOCKS5: Host unreachable.
I am trying to connect to an external SFTP server via a SOCKS proxy server using SSH.NET library (V2013.4.7) but I'm getting error "SOCKS5:Host unreacheable". The connection works fine in other tools...
View ArticleNew Post: Interacting with and also capturing an SSH session
This is a conceptual question. I just need to know where to get started. My application is to connect via SSH to an embedded device and then send a series of commands, parsing the results and sending...
View Article