New Post: How to use SshNet with https
Please explain exactly what you want to achieve.
View ArticleNew Post: Specific command doesn't work
I ended up writing and reading directly from the shell stream (using SshClient.CreateShellStream()) and playing with Expect() to get and parse the output I need. Thanks a lot for the help :)
View ArticleNew Post: How to use SshNet with https
I wan't using SSH request connect "https://www.google.com". I have send data with port 443 but sever report error !
View ArticleNew Post: How to use SshNet with https
You know what SSH is and does? What you want is not possible, since https is not SSH, it's SSL... And please provide your code, since I don't get what you want to achieve and your explanation is quite...
View ArticleNew Post: Parallel Download
Hi, I am very new to SSH.Net. I need to download multiple files within single connection opened. Please let me know how to achieve this. I have tried this by implementing Parallel.ForEach statement,...
View ArticleNew Comment on "ExampleSftpMultipleUploadDownload"
How can we achieve this dynamically, instead of hardcoding the instances.
View ArticleNew Post: ForwardedPortLocal Work on Linux, but refused by server 10054 with...
I tested forwardedPortLocal function very successfully with My CentOS and fedora without any errors. But When I try it with AIX 6.1 , seems SSH connected well and forwardedport.Start() with no error,...
View ArticleNew Post: new SshClient Exception on Synology
Hi, Can you help me please ? Client Win7 SHH on NAS Synology DS109+ enabled Putty works (also localportforwarding) code:var connectionInfo = new PasswordConnectionInfo("192.168.2.66", "root",...
View ArticleNew Post: new SshClient Exception on Synology
Whats the exception? Where is the code where the exception occurs."Error starts here <<<" is not valid C-Sharp-Code ;)
View ArticleNew Post: ForwardedPortLocal Work on Linux, but refused by server 10054 with...
The SSH-Daemon on your target machine must allow PortForwarding. What does "default sshd_config" mean? Some distributers think they have to "improve" default configs :( check out:...
View ArticleNew Post: new SshClient Exception on Synology
Sorry... De exception start at client.Connect(); error is: A first chance exception of type 'System.Net.Sockets.SocketException' occurred in System.dll A first chance exception of type...
View ArticleNew Post: new SshClient Exception on Synology
Please give all informations of the exception. Message, stacktrace etc. ...
View ArticleNew Post: ForwardedPortLocal Work on Linux, but refused by server 10054 with...
thanks for your comment. But when I try this with ssh command "ssh -N -f -L abc:123:def:456 ".. then execute my_call then it works. I hope to know how to get same result as I use command ssh with...
View ArticleNew Post: new SshClient Exception on Synology
I solved it, it's strange but I changed using (SshClient client = new SshClient(connectionInfo)) to: SshClient client = new SshClient(connectionInfo); and now it works... After that I had troubles with...
View ArticleNew Post: new SshClient Exception on Synology
It's not strange. Connect() returns after it is done. Your code was:using (SshClient client = new SshClient(connectionInfo)) { client.Connect(); //Error starts here } The client object is created, it...
View ArticleNew Post: ForwardedPortLocal Work on Linux, but refused by server 10054 with...
Take a look at the tests:https://sshnet.codeplex.com/SourceControl/latest#Renci.SshClient/Renci.SshNet.Tests/Classes/ForwardedPortLocalTest.cs Since you don't show all your code, I also just can guess...
View ArticleCreated Unassigned: Channel.SendData timeout [1706]
On one particular server, I'm getting timeout exceptions trying to upload. It's sitting there waiting for a SSH_MSG_CHANNEL_WINDOW_ADJUST message from the server, but the server still has like 14KB...
View ArticleNew Post: Renci.SshNet.Common.SshOperationTimeoutException
Hi - I'm getting the error when I attempt to upload a file to our vendor's server. I can upload just fine to our dev server (same code and file). I've attached the trace file. Any ideas on what's going...
View ArticleNew Post: RunCommand hangs and doesnt timeout either
Hi All, I use PowerShell 3.0 with this library and cannot get Runcommand to work. I am trying to connect to a switch and execute a simple command like "show version". Below is the code. It just hangs...
View Article