-
-
Notifications
You must be signed in to change notification settings - Fork 932
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SshClient Connect #38
Comments
What version of .NET are you using, and on what type of device ? |
.NET 4.5 / Visual Studio 2012 Wha do you mean about device? |
I thought you might have been using Silverlight or Windows Phone. |
I failed to reproduce this issue (using .NET 4.0, .NET 4.5, .NET Core). |
No further feedback. |
Hello,
I don't know if its issue or I'm doing something wrong, I starting using older versions of Ssh.net and everything work fine but when I update to the last version I can't connect at server.
System.Net.Sockets.SocketException (0x80004005): Operation Not Supported em System.Net.Sockets.Socket.ConnectAsync(SocketAsyncEventArgs e) em Renci.SshNet.Abstractions.SocketAbstraction.Connect(IPEndPoint remoteEndpoint, TimeSpan connectTimeout) em Renci.SshNet.Session.SocketConnect(String host, Int32 port) em Renci.SshNet.Session.Connect() em Renci.SshNet.BaseClient.Connect()
Code is simple
client = new SshClient("192.168.1.141", "user", "123456"); client.KeepAliveInterval = TimeSpan.FromSeconds(120); client.ConnectionInfo.Timeout = TimeSpan.FromSeconds(150); client.Connect();
I can't find any solution over the web and I don't know what do to.
Anyone can help me?
Thanks!
The text was updated successfully, but these errors were encountered: