New Post: How can i get the information of FileTransfer Progress on SCP ??
oh.. Thanks Oleg!! I will try your solutions. And feedback the result to you. Thanks!
View ArticleNew Post: Keeping same session/channel between distinc commands execution
Hi, I would like to run two related commands. For instance:cd / dir I saw that each RunCommand call resets the SSH session so the second command won't have the same session as the first one. Is it...
View ArticleNew Post: Sample code for SSH shell
Hello, Could someone post here a sample code for open ssh shell connection + sample command to send command to console ? Becasue I can't find anything in source code.
View ArticleCreated Issue: SshAuthenticationException : User cannot be authenticated [1547]
Getting SshAuthenticationException : User cannot be authenticated when trying to authenticate with username/password+private key(dsa, 2048bits w/o passphrase)```var connectionInfo = new...
View ArticleCommented Issue: SshAuthenticationException : User cannot be authenticated...
Getting SshAuthenticationException : User cannot be authenticated when trying to authenticate with username/password+private key(dsa, 2048bits w/o passphrase)```var connectionInfo = new...
View ArticleNew Post: SshAuthenticationException : User cannot be authenticated
Hi Oleg, Thanks for response. I have created issue 1547. And also spent some time for debugging and wrote the solution. Thanks, Alexander
View ArticleNew Post: SCP Upload to Cisco Firewall
Hi There, Excellent product thank you so much! So here's my issue. I am able to upload a file, but the problem is once it is uploaded the file is renamed so something strange like "scp_f8". I know that...
View ArticleNew Post: Conexion a Sftp por medio de cha1, Aes un ejemplo
Primero Gracias por la Libreria, quisiera saber o tener un ejemplo de como se puede cifrar la comunicacion desde el cliente al sftp, ya logro lo de enviarlo al ftp pero necesito poder realizar el...
View ArticleSource code checked in, #24719
Fix SshAuthenticationException by handling PartialSuccess response and continue authentication proccess in that case
View ArticleCommented Issue: SshAuthenticationException : User cannot be authenticated...
Getting SshAuthenticationException : User cannot be authenticated when trying to authenticate with username/password+private key(dsa, 2048bits w/o passphrase)```var connectionInfo = new...
View ArticleClosed Issue: SshAuthenticationException : User cannot be authenticated [1547]
Getting SshAuthenticationException : User cannot be authenticated when trying to authenticate with username/password+private key(dsa, 2048bits w/o passphrase)```var connectionInfo = new...
View ArticleCommented Issue: Rosh [1546]
When i use the Rosh command any other commands taht i pass are not working.!any help greatly appreciated. Dim connInfo As New Renci.SshNet.PasswordConnectionInfo(servTxt.Text, Val(prtTxt.Text),...
View ArticleNew Post: Keeping same session/channel between distinc commands execution
Hi, I am afraid it it is not possible due to server implementation. One command execution cannot remember command execution results. You can either execute one long command, which could be series of...
View ArticleCommented Issue: Port Forwarding [1540]
" public ForwardedPortLocal(uint boundPort, string host, uint port): this(string.Empty, boundPort, host, port){}"Would it be better if you would do the following instead of above public...
View ArticleClosed Issue: Port Forwarding [1540]
" public ForwardedPortLocal(uint boundPort, string host, uint port): this(string.Empty, boundPort, host, port){}"Would it be better if you would do the following instead of above public...
View ArticleCommented Issue: ZeroBytes in ShellStream [1525]
Somethimes in a shellstream there can be zero bytes found.It was gone after the update in 12/2012 and appiert backwith the update in ~02/2013.In the buffer i can find then lots of zero bytes, some text...
View ArticleCommented Issue: Reverse tunnel help [1538]
I think I am doing something wrong, I am trying to setup a remote tunnel. For testing purposes I have a local nodejs website listening on port 3000. I am doing an ssh connection to my amazon web...
View ArticleNew Post: Keeping same session/channel between distinc commands execution
You can do this with shell, as long as you seperate the commands with a ";" (in unix anyways) ex: I do this all the time with my code cd <somedir>;grep stuff <filename>
View ArticleNew Post: Sample code for SSH shell
string command = <your command>; using (var ssh = new SshClient(connectionInfo)) { ssh.Connect(); string reply = String.Empty; try { using (var shellStream = ssh.CreateShellStream("dumb", 0, 0,...
View ArticleNew Post: Connection to sftp via CHA1, Aes an example
Thanks for the Libreria First, I would like to know or have an example of how you can encrypt communication from client to sftp, achievement and sending it to ftp but I need to perform encryption of...
View Article