1

Im trying to ssh a machine from my Windows 10 machine using a linux shell.

I tried using Bash programm included in Windows 10 and i have got the following error: "Resource temporarily unavailable"

I tried then using Cygwin but i have got the following error: "Connection timeout"

I tried then using a virtualbox VM but i have got the following error: "Connection timeout"

It only works with Putty client but it is not a shell

Does anybody know how to makes it work with Windows 10 Bash, Cygwin or a Virtual Box VM ?

Thank you

loicg
  • 11
  • 1
  • 2
  • 1
    Windows 10 WSL Bash is a known issue: https://superuser.com/questions/1098526/windows-10-linux-subsystem-ssh-client-resource-temporarily-unavailable – Patrick May 26 '17 at 14:56
  • For the others, double-check your connection settings. Make sure you're connecting to the right port and IP that putty is connecting to. – Patrick May 26 '17 at 14:57
  • Thank you for your answer. I will check the workaround proposed and related to Win 10 WSL Bash. For other i m not sure this is related to connection settings as it works fine with Putty on the same machine – loicg May 29 '17 at 12:12

1 Answers1

2

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
  • 345
  • 2
  • 3
  • 11