BitBucket SSH connection issues

0

I am behind a corporate firewall. When I try to push code I get the following error...

ssh_exchange_identification: read: Connection reset by peer

When I connect outside the firewall everything works fine.

Windows is logging these errors...

The certificate received from the remote server has not validated correctly. The error code is 0x80092012. The SSL connection request has failed. The attached data contains the server certificate.

The following fatal alert was generated: 43. The internal error state is 552.

Any ideas?

git
ssh
cygwin
firewall
asked on Stack Overflow Sep 29, 2014 by is_numeric

1 Answer

1

You can try to use one of below commands:

git config http.sslVerify false

or

export GIT_SSL_NO_VERIFY=true
answered on Stack Overflow Sep 29, 2014 by Piotr Oktaba

User contributions licensed under CC BY-SA 3.0