New Post: PortForwading Bug
Thank you for the quick answer! I will try your example project and see what happens.
View ArticleNew Post: PortForwading Bug
Thanks to your example I was able to 'pin-point' my problem and I have found my solution. You were right, this is not a bug in the library it was my very own application that was causing this trouble....
View ArticleNew Post: PortForwading Bug
bimbimone wrote: Thanks to your example I was able to 'pin-point' my problem and I have found my solution. You were right, this is not a bug in the library it was my very own application that was...
View ArticleNew Post: Usage Examples and how to redirect output to textbox.
Hello I'm trying to do the same as Nagadarshan and create an SSH terminal on a web page. I tried your code Oleg but I keep getting errors with this line: using (var ssh = new SshClient(connectionInfo))...
View ArticleNew Post: SSH.NET Shell display output at the last line
say you issue the following command: apt-get install MySql this command generates an output where some of the text is displayed line by line and some should be displayed at the last line. Here is an...
View ArticleNew Post: SSH.NET Shell display output at the last line
Implement a Terminal, which is not simple. You have to parse and handle control...
View ArticleNew Post: SSH.NET Shell display output at the last line
thank you for a quick reply. Indeed, a challenging task. On top of it, I want to emulate it in Silverlight. Thanks again for the references.
View ArticleNew Post: SSH.NET Shell display output at the last line
with that being said. I am new to SSH.NET and still learning. What would be the best point to start? the following code static void ycmd(string cmd, StreamReader reader, StreamWriter writer,...
View ArticleNew Post: netconfig on juniper solution
Sorry i know this is an old thread. Did this get merged into the main release? I am using the 3.5 and 4.0 Binary in a project and getting the same error on this.Connect() Thanks in advance
View ArticleNew Post: netconfig on juniper solution
It is still working for me. Netconf is configured on Juniper ( set system services netconf ssh ) and in my code nc = new NetConfClient(ip, "admin", pw); nc.AutomaticMessageIdHandling = false;...
View ArticleNew Post: Cannot send this string using runcommand() with c#
Im quite confused and basically out of ideas...Below is the simple code i've written to try it out it will connect but will not execute the command.. using (var client = new SshClient("10.182.65.253",...
View ArticleNew Post: Cannot send this string using runcommand() with c#
Check the exit code of your command and ensure XNATRestClient is in your $PATH.
View ArticleNew Post: Cannot send this string using runcommand() with c#
Will try it cheers...Thanks for the tip..
View ArticleNew Post: PortForwading Bug
I read last comments, but I'm not able to solve. I do this next test. I made a TEMP database on two sql servers availables with 2 freeSSH servers for each network. I create a temp users for SSH server...
View ArticleNew Post: PortForwading Bug
You are using the same port for both LocalForwards. Usually you should get an exception... but I'm bad in reading VB Change the port 14444 in Button2_Click to something different, e.g 14445.
View ArticleNew Post: SftpClient.Exists always return true
I've created this little function in my project and I don't have any problems.public bool Exists(string remotefilepath) { try { _sftpClient.GetAttributes(remotefilepath); } catch...
View ArticleNew Post: PortForwading Bug
But the forwading port is closed before reopen, I think this should works fine. in fact, I'm using a Chilkat SSH trial component while we find a solution for SSH.net, and works very well just like that.
View ArticleNew Post: PortForwading Bug
Hi, I could reproduce your issue with your code and credentials. The problem in fact isn't SSH.Net. Its the SqlConnection pool. To make it clear, the problem is your connection/query/result seems to...
View ArticleNew Post: netconfig on juniper solution
OK. I think I got this figured out I was loading an older version of the Binary. I am no longer getting the error. would anyone be able to post an example of an RPC message? I am sending the...
View ArticleNew Post: netconfig on juniper solution
I dostatic Renci.SshNet.NetConfClient nc;…nc =newNetConfClient(ip,user, pw);nc.AutomaticMessageIdHandling =false;nc.OperationTimeout =newTimeSpan(0, 0, 60);nc.Connect();… System.Xml.XmlDocument c = new...
View Article