Ssh with the error "no error"

I created a virtual machine instance for a Google computer and am trying to use SSH. Oddly enough, the ssh command fails with a "No Error" error and ends. Why can this happen? Maybe this is a corporate firewall problem? (If so, how can I find out? I'm running Cygwin on a Windows 2008 server, and the Google virtual machine isntance is Debian linux.

J@VAPMAP01001 /cygdrive/c/Users/J
$ ssh -o UserKnownHostsFile=/dev/null -o CheckHostIP=no -o StrictHostKeyChecking=no -    i /home/J23587/.ssh/google_compute_engine -A -p 22 J23587@107.178.220.0 --

ssh: connect to host 107.178.220.0 port 22: No error

J@VAPMAP01001 /cygdrive/c/Users/J
+4
source share
1 answer

There seems to be a bug in cygwin that causes this. When I got this error, all I had to do was quit cygwin, open cygwin and try again. It works great.

+2

Source: https://habr.com/ru/post/1545112/


All Articles