New Post: Dynamic PortForward Problem
just for your info, using 24900 build it fix my dynamic portforward not responding problem. thank you
View ArticleNew Post: Dynamic PortForward Problem
Thanks for letting me know. I think its probably has to do with how I start threads, so I guess it fixed another problem. Thanks, Oleg
View ArticleNew Post: "An established connection was aborted by the software in your host...
hello! I am trying to execute some commands on a Juniper SSG 350M (with default settings, but ssh enabled on all interfaces) Firewall, after establishing a ssh connection... but I always get the same...
View ArticleNew Post: 3.5 Source Code for release 2013.1.8?
Hey everyone, I imported and compiled the Renci 3.5 project into VS , built it and added the reference to my project, but lots of classes are not available. For example SshClient and SftpClient do not...
View ArticleNew Post: 3.5 Source Code for release 2013.1.8?
Hi, Yes, .NET 3.5 source code is generated of .NET40 with some differentce for 3.5 located in .NET 3.5 project. Basically you will need to merge .NET40 and .NET35 versions. Hope it helps. Thanks, Oleg
View ArticleNew Post: Connecting to OpenSSH server
It is working now. I don't see the difference so maybe it was something else I was doing wrong... public Boolean VerifyConnetion() { var passwordAuthMethod = new PasswordAuthenticationMethod(username,...
View ArticleNew Post: "An established connection was aborted by the software in your host...
I think that device does not allow execution of "get system version" command. Its probably valid but only when executed using Shell. Some SSH implementations restrict what can be done or executed and...
View ArticleNew Post: 'No such file' exception when calling DownloadFile (SftpClient)...
Hi, Can you post a code example of what you doing so I could try to recreate it here? Thanks, Oleg
View ArticleNew Post: SFTP: Uploading Files to the FTP Server has Inconsistent Behavior
Hi Oleg, Yes, i am uploading to the FTP Server through SFTP. Thanks, Navin
View ArticleNew Post: "An established connection was aborted by the software in your host...
Thanks for the reply, well, I found a solution... the command itself was not the problem, but using the RunCommand() method was so. Instead of the RunCommand() method I used the shellstream example...
View ArticleNew Post: "An established connection was aborted by the software in your host...
another question: Is it possible to get the name of the firewall during the connection establishment or after a successfull connection? I have to know it to be able to send the correct commands to the...
View ArticleNew Post: Weird problem on SSH Port Forwarding
private SshClient SshC = new SshClient("Host", Port, "User", "Password"); private ForwardedPortLocal LPF1, LPF2, LPF3, RgF1, RqF1, RqF2, RqF3, MDB; SshC.Connect(); MDB = new...
View ArticleNew Post: "An established connection was aborted by the software in your host...
Hi, Unfortunately I do not know how this can be done. If you can find a specification of it or code example I can try to incorporate it in the future release. Thanks, Oleg
View ArticleNew Post: Pageant integration?
Oleg, This Pageant patch appears to work perfectly for Windows 7. But when I run it through Windows server 2008 R2, the authentication always fails. It appears to be something in the way the patch...
View ArticleNew Post: Pageant integration?
Hi, You can look on source code tab, patches. It was part of 12705 patch and its author is mladjenovic Thanks, Oleg
View ArticleNew Post: Pageant integration?
Hi, sorry for posting here. I had to use SendMessage winapi call because that's what putty uses internally . There is no official api for pageant. About you problem I can't help you because I do not...
View ArticleNew Post: Pageant integration?
Thanks for the update! I'll take a look and try it out. UAC is exactly the path I'm heading down at the moment so this is good timing. Both pageant and my application are running under the same user...
View ArticleNew Post: Pageant integration?
I took a look in the WINPGNTC.C PuTTY source file and noticed: /* * Make the file mapping we create for communication with * Pageant owned by the user SID rather than the default. This * should make...
View ArticleNew Post: 'No such file' exception when calling DownloadFile (SftpClient)...
here is a code sample i use: class Processor : IDisposable { private class StateData { public Processor Processor { get; set; } public FileStream FileStream { get; set; } public string FileName { get;...
View ArticleNew Post: An existing connection was forcibly closed by the remote host
I am hoping someone can easily tell me what this is causing this error: System.Net.Sockets.SocketException (0x80004005): An existing connection was forcibly closed by the remote host I've only just...
View Article