当前位置:   article > 正文

ssh端口修改以及git报端口22连接失败_gitlab22端口

gitlab22端口

以windows为例

 C:\Users\Administrator\.ssh
  • 1

如果该路径下没有config文件,则创建一个。

config中添加如下内容:

如是以ip访问的:

Host "211.111.xx.xxx"
Port 3333

  • 1
  • 2
  • 3

以linux为例

vi /etc/ssh/sshd_config
  • 1

将#port22 这一行注释去掉,修改22为2020。

Host github.com
User git
Hostname ssh.github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa
Port 443
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
service sshd restart或systemctl restart sshd
  • 1

linux git端口22连接失败

vi ~/.ssh/config
  • 1
Host gitlab.com
  Hostname altssh.gitlab.com
  User git
  Port 443
  PreferredAuthentications publickey
  #IdentityFile ~/.ssh/gitlab
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
sudo chmod 600 config
  • 1

参考文章

- ssh端口

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

闽ICP备14008679号