Windows 10 Linux Subsystem SSH client Resource temporarily unavailable

28

6

I am trying to ssh into my remote server within the Windows 10 Linux Subsystem. I am using MS Windows 10 Home Insider Preview build 14366.

While at the command prompt, I type:

ssh user@domain.com

A few seconds after typing the ssh command, I am getting the following message:

ssh: connect to host domain.com port 22: Resource temporarily unavailable

I am successfully able to connect using Putty as well as using ssh within Git Bash.

So, that leads me to believe the issue is on my local pc and more specifically within the Linux Subsystem. I'm still very green with the Linux environment and am not sure how to interpret this message. What resource is unavailable and what should I do to make it available?

kell

Posted 2016-07-08T16:25:34.920

Reputation: 281

First guess: Windows Firewall? ps> and welcome on superuser :) Google a little seems instead related with fork. Please [edit] the post and add the command line that give you this error. – Hastur – 2016-07-08T16:26:50.473

related – Ramhound – 2016-07-08T16:30:09.917

just checking that you are using an Insider Preview build of Windows 10 because AFAIK the Linux subsystem is only available in this version, not on 'normal' Windows 10. Otherwise maybe you are using Cygwin? – gogoud – 2016-07-08T16:32:40.043

@ggoud - I have updated the question to include the operating system. It is indeed the Insider Preview build. – kell – 2016-07-08T19:59:48.260

@Hastur - Thanks for the welcome. I have updated the question with the command I used. Let me know if the edit makes sense. – kell – 2016-07-08T20:04:37.643

@Ramhound - I reviewed the link you sent and am not sure if any of that applies. I am not seeing any of the extra detail information. – kell – 2016-07-08T20:04:47.537

2I am also having this issue. It affects all programs supported by ssh such as git and apt-get – scicalculator – 2016-08-09T14:55:20.017

I observed the same behavior on ssh, but git worked for me. Additional testing showed that the server was reachable from Cygwin, and interestingly, from telnet on WSL (telnet <hostname> <ssh port number>). So it doesn't appear to be a firewall issue since the machine can connect to the server at that port. It's probably something deeper in the WSL kernel. – computergeek125 – 2016-08-14T19:03:49.123

Answers

11

As far as I can tell, this is a bug in WSL. Hopefully, Microsoft will fix it in the next build. But for now, we can use this slightly ugly hack.

Update #1: Definitely a bug. Found this issue on Github. Thier proposed workaround of relaunching the shell works for me as well if you don't want to go through all of this.

TL;DR Add this to END your SSH config (usually located at ~/.ssh/config):

Host *
    ProxyCommand nc %h %p %r

Here's why it works: Our SSH issue is not a firewall issue because nc and telnet work to the same host and port (try telnet <host> <port> or nc <host> <port>: you should see something like SSH-2.0-OpenSSH_6.6.1p1 Ubuntu-2ubuntu2.7). This we can use to our advantage.

SSH allows the use of proxies that take standard input and send it to the server's port via the ProxyCommand option. This is normally used to tunnel into networks to a protected host by using an in-between bastion SSH server, sometimes called a jump host (see this link for more info).

This hack tells SSH to use a proxy with no jump host(s). So, it gets around SSH's failed allocation of TCP resources by pushing all of the network resource allocation onto Netcat, which does work. SSH just does its SSH thing without any network connections, and Netcat sends the raw data over a TCP connection to the SSH server.

WARNING: Since this modifies the ProxyCommand for all hosts, I do not know how it interacts with other SSH config hosts that use ProxyCommand. I have a few servers with which I can test this, and I will update this answer with the results. There is a chance that there are no detrimental side effects, but I cannot guarantee that.

Update #2: I did some testing with a few of my servers, and this appears to work. SSH uses the uppermost entry in the config when multiple entries apply. Thus, an existing ProxyCommand present above this hack would override it. When the new SSH command is executed, it re-reads the SSH config, and if there is no other ProxyCommand, SSH uses our hack ProxyCommand, allowing it to only apply to the "outermost" SSH session. Word of warning: if you put the hack at the top of the config file (or above the entry you are trying to SSH to), SSH sessions that require a ProxyCommand will ignore the other ProxyCommand and instead attempt to resolve the address of the host and connect directly with Netcat.

computergeek125

Posted 2016-07-08T16:25:34.920

Reputation: 305

Thanks for the detail @computergeek125. Unfortunately, even after setting up the config as suggested, I still get the same message ssh: connect to host domain.com port 22: Resource temporarily unavailable When I run nc -v <host> <port>, for verbose output, I get the same error: Resource temporarily unavailable. I may be doing something wrong, not sure. Since I don't have any ssh issues using the Git bash shell, I'll stick with it for now. BTW, my system is now at build 14393, so, if this was a bug in the version at the time of the question, it is still a bug 27 builds later. – kell – 2016-08-21T14:58:13.037

Well that's interesting. I'll have to do some research on that build. I was running 14903 at the time (I'm up to 14905 now). It may be something they fixed in the build I have. – computergeek125 – 2016-08-22T15:27:45.620

How do i edit the SSH config? In the bash for windows console I tried vi ~/.ssh/config which opened an empty file. I pasted your commands but when I try to save (esc -> : -> wq) it tells me "~/.ssh/config" E212: Cannot open file for writing – Dan – 2018-01-10T10:55:25.930

Ok that's weird. What build of Windows are you running, and what's the output of ls -al ~/.ssh? – computergeek125 – 2018-01-10T12:31:20.010

3

This was also an issue for me, turned out it was my (Symantec) firewall blocking all internet traffic from bash.

Seems it's a general issue with 3rd party firewall providers which don't recognise the process:

https://github.com/Microsoft/BashOnWindows/issues/809

When I disabled my firewall it worked okay. Can't find a better solution at the moment.

Andrew Jones

Posted 2016-07-08T16:25:34.920

Reputation: 131

0

In my case, I got this error because a windows update caused trouble with my Hyper-V switch. Turns out the host I was trying to ssh to was connected to that switch--fixing it restored ssh.

MatrixManAtYrService

Posted 2016-07-08T16:25:34.920

Reputation: 101

0

For future reference, when you install Nginx, it will block SSH by default with the error message "Resource temporarily unavailable" unless you...

sudo ufw allow ssh

andrerpena

Posted 2016-07-08T16:25:34.920

Reputation: 223

Windows 10 itself has a firewall. Why did you suggest that? – Biswapriyo – 2019-02-23T17:52:26.977

I'm suggesting that for future users with the same problems because I had the exact same issue and it was because Nginx was blocking SSH to the server – andrerpena – 2019-02-23T18:10:49.087