首页 > 代码库 > Centos7 - githup ssh方式配置代理
Centos7 - githup ssh方式配置代理
配置
# 生成公钥、私钥。把公钥上传至githup上。 [root@compute01 ~]# ssh-keygen -t rsa # 一路回车,默认私钥在~/.ssh/id_rsa # 配置ssh代理 [root@compute01 ~]# cat ~/.ssh/config Host github.com *.github.com ProxyCommand connect-proxy -H web-proxy.xxx.com:8080 %h %p IdentityFile ~/.ssh/id_rsa User git # 测试 [root@compute01 ~]# ssh -T git@github.com # 显示如下,说明ok Hi xxx! You‘ve successfully authenticated, but GitHub does not provide shell access.
tips: connect-proxy需要额外安装包,下载链接见:
http://rpm.pbone.net/index.php3/stat/4/idpl/34752384/dir/redhat_el_7/com/connect-proxy-1.100-13.el7.x86_64.rpm.html
参考链接
https://www.chenyudong.com/archives/use-git-or-github-in-company-local-net.html
https://www.chenyudong.com/archives/ssh-using-private-public-key-no-password.html
本文出自 “the-way-to-cloud” 博客,请务必保留此出处http://iceyao.blog.51cto.com/9426658/1921833
Centos7 - githup ssh方式配置代理
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。