当前位置:   article > 正文

解决ssh: connect to host github.com port 22: Connection timed out_ssh:connect to host connection timed out

ssh:connect to host connection timed out

连接 GitHub 时无法连接到 22 端口时,可以尝试将端口更换为 443

  1. 首先,尝试使用以下命令从 GitHub 克隆仓库:
$ git clone git@github.com:xxxxx/xxxx.git my-awesome-proj
  • 1

如果出现以下错误信息:

Cloning into 'my-awesome-proj'...
ssh: connect to host github.com port 22: Connection timed out
fatal: Could not read from remote repository.
  • 1
  • 2
  • 3

这说明不能通过 22 端口连接到 GitHub。
2. 接下来,尝试使用以下命令测试 SSH 连接:

$ ssh -T git@github.com
  • 1

如果再次出现连接超时的错误信息:

ssh: connect to host github.com port 22: Connection timed out
  • 1

这意味着无法通过 22 端口进行 SSH 连接。
3. 尝试使用以下命令,将 SSH 连接的端口更改为 443:

$ ssh -T -p 443 git@ssh.github.com
  • 1

如果显示以下信息:

Hi xxxx! You've successfully authenticated, but GitHub does not provide shell access.
  • 1

这意味着通过 443 端口成功进行了身份验证,但 GitHub 不提供 shell 访问权限。
4. 现在,我们需要在 ~/.ssh/config 文件中覆盖 SSH 设置。使用以下命令编辑该文件:

$ vim ~/.ssh/config
  • 1

在文件中添加以下内容:

# Add section below to it
Host github.com
  Hostname ssh.github.com
  Port 443
  • 1
  • 2
  • 3
  • 4

保存并关闭文件。
5. 最后,再次尝试使用以下命令进行 SSH 连接:

$ ssh -T git@github.com
  • 1

如果显示以下信息:

Hi xxxxx! You've successfully authenticated, but GitHub does not provide shell access.
  • 1

这意味着成功通过 443 端口进行了身份验证,并且现在可以正常连接到 GitHub。
6. 现在,您可以尝试再次克隆仓库:

$ git clone git@github.com:xxxxxx/xxxxx.git my-awesome-proj
  • 1

如果显示以下信息:

Cloning into 'my-awesome-proj'...
remote: Enumerating objects: 15, done.
remote: Counting objects: 100% (15/15), done.
remote: Compressing objects: 100% (14/14), done.
remote: Total 15 (delta 0), reused 15 (delta 0), pack-reused 0
Receiving objects: 100% (15/15), 22.90 KiB | 4.58 MiB/s, done.
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

这意味着成功克隆了 GitHub 上的仓库。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/590319
推荐阅读
相关标签
  

闽ICP备14008679号