New Post: on cisco router no response after send Enable
Thanks Pat, Question remains: why can I send the Enable command and password using SharpSSH and also using terminal emulators like Putty and SecureCRT? Granted IOS versions are not all the same and...
View ArticleNew Post: on cisco router no response after send Enable
but still if I can use a program using the SharpSSH library then why not SSH.NET? I doubt anyone here knows. There are no doubt subtleties as to how they both (and others) interpret and...
View ArticleNew Post: Get the string result from Execute() during the execution
Well first of all I have to say I have used this library for a couple of projects and I like it! And really do appreciate the work all developers have done. So hats off to them :) And secondly, I...
View ArticleNew Post: Get the string result from Execute() during the execution
"Why has there been no response to this question? ... Can anyone give feedback on this? Is it possible today?""And secondly, I didn't intend to be rude, I was more baffled to be honest in reference to...
View ArticleNew Post: Get the string result from Execute() during the execution
Thanks to BogusException to explain Internet Communications 101. It should make you think that two people seemed to read your post as rude and unfriendly. Btw. don't make fun of non-native speakers on...
View ArticleNew Post: Proposal: Switching to GIT?
Just in case anybody else wants to export the repository from svn to git: git svn clone --no-metadata https://sshnet.svn.codeplex.com/svn/ ssh.net --revision 9489:35331 I skip all commits previous to...
View ArticleNew Post: SSH.NET Developers, Supporters, Moderators, Contributors, Users:...
Developers & Associated Contributors to SSH.NET, I write programs for myself, and rarely for the benefit of my employers. I write in several languages, and have been doing it for more years than I...
View ArticleNew Post: Proposal: Switching to GIT?
da_rinkes wrote: I tried the tools git-svn and svn2git, but both failed to transform the repo. Apperantly cause codeplex is not using a 100% standard svn. I'm willing to bet it has to do with...
View ArticleNew Post: on cisco router no response after send Enable
All right Pat, da_rinkes, Perhaps you wonder what I'm working at. I have a system, in use for some 10 years now to, by which people can perform settings on switches/routers. Up to now I used external...
View ArticleNew Post: on cisco router no response after send Enable
class switchSshSession Class switchSshSession Inherits switchSession Private SSHPasswordConnection As Renci.SshNet.PasswordAuthenticationMethod Private SSHKeyboardInteractive As...
View ArticleNew Post: Invoke-SsshCommand password problem
Hi, I trying to execute a command using Invoke-SshCommand. While executing a command with sudo, its giving error bcz password not passed for sudo. So please anyone help me on how to deal with. ex:...
View ArticleNew Post: VB.NET Framework 3.5 and Renci ssh - keep session open
Hi everyone, I'm using Renci SSH within my vb.net project and wondering how I can pass multiple commands and keep the session open. I'm just testing things at the moment, but I'd like to navigate to a...
View ArticleNew Post: VB.NET Framework 3.5 and Renci ssh - keep session open
SshCommand opens a new shell for every command, so your commands are not in the same context. In your case you can simply combine the commands by using "&&", "||" or...
View ArticleNew Post: Slow failure reading non-existing file using SCP
Hi, I'm using ScpClient to download files. When the file exists it is fast (~10ms), but if the file does not exist the download takes about 3.5 seconds to fail. Is this normal? I have not as yet...
View ArticleNew Post: Slow failure reading non-existing file using SCP
Hi, Just tried to reproduce it and it fails fast: var start = DateTime.Now; try { var scp = new ScpClient(res.host, int.Parse(res.port), res.user, res.password); scp.Connect(); var file = new...
View ArticleNew Post: sftp client 'Exists' method returns true always
I am using SSH.NET library which is working perfectly on LINUX SFTP server. But I used the same code to check on Windows SFTP but it is not working as expected. Issue is that when I check whether...
View ArticleNew Post: Slow failure reading non-existing file using SCP
Hi, Thanks for having a look. Interesting. The 'server' is a proprietary Linux device we manufacture. I need to investigate further. The way you use the ScpClient is different to my implementation, I...
View ArticleNew Post: Slow failure reading non-existing file using SCP
Sorry I did not answer your question about the server properly. It is a Linux box using SSH-2.0-dropbear_0.49 Thx Rob
View ArticleNew Post: Slow failure reading non-existing file using SCP
Thanks, I have confirmed that the 3 second delay is on the server end, nothing to do with SSH.NET. Thanks for your help
View ArticleNew Post: Maintain connection through different forms
I am using : client = new SshClient(res.host, int.Parse(res.port), res.user, res.password); _client.connect(); in FORM1 after successful authentication I want to execute commands in FORM2: Just like :...
View Article