ssh_exchange_identification

发布于 2024-11-06 22:59:47 字数 585 浏览 0 评论 0原文

我的带有 cygwin 的 Windows 7 系统位于公司防火墙后面,我安装了 corkscrew 并且我的配置文件读取

User git
    HostName ssh.github.com
    Port 443
    ProxyCommand /d/cygwin/bin/corkscrew http://x.x.x.x 80 %h %p /c/Users/ad cd/.ssh/id_rsa.

但是当我执行 git clone ssh://[电子邮件受保护]:443/rails/rails.git, 我收到错误

Cloning into rails...
ssh_exchange_identification: Connection closed by remote host
fatal: The remote end hung up unexpectedly

My windows 7 system with cygwin is behind a corporate firewall, I installed corkscrew and my config file reads

User git
    HostName ssh.github.com
    Port 443
    ProxyCommand /d/cygwin/bin/corkscrew http://x.x.x.x 80 %h %p /c/Users/ad cd/.ssh/id_rsa.

But when I do git clone ssh://[email protected]:443/rails/rails.git,
I get the error

Cloning into rails...
ssh_exchange_identification: Connection closed by remote host
fatal: The remote end hung up unexpectedly

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

青春如此纠结 2024-11-13 22:59:47

您的开瓶器配置存在一些问题。

第一个问题(可能也是真正的问题)是 corkscrew 的第一个参数应该是主机名,而不是 URI。因此,请删除 http:// 前缀。第二个参数让 Corkscrew 知道代理位于端口 80 上。

另一个问题是 Corkscrew 使用用户名:密码 authfile 来授权代理,而不是 RSA 密钥。您的最后一个参数是 RSA 私钥,而不是 authfile。

除此之外,很可能您的 RSA 公钥未在 github 上注册。

There are a few problems with your corkscrew config.

The first problem (and probably the real problem) is that the first argument to corkscrew should be a hostname, not a URI. So drop the http:// prefix. The second argument lets corkscrew know that the proxy is on port 80.

Another problem is that corkscrew uses a username:password authfile for authorizing to the proxy, not an RSA key. Your last argument is an RSA private key, not an authfile.

Other than that, it is most likely that your RSA public key is not registered with github.

Bonjour°[大白 2024-11-13 22:59:47

Git 仅使用 SSH 作为传输/安全性,因此请尝试使用 ssh -v 直接 ssh 进入开发框,以查看您的密钥是否正确传递和接受。

Git just uses SSH as the transport / security so try ssh'ing straight into dev box using ssh -v to see if your keys are properly being passed and accepted.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文