2016-06-13 61 views
0

我試圖設置我的~/.ssh/config file通過我的公司正在使用的HTTP代理服務器上連接,但它每次都在下降... 有誰知道如何做到這一點?當在HTTP代理下工作時在Windows上的SSH配置

我工作在Windows 7上,使用Git的猛砸工具,這裏是我當前的~/.ssh/config

Host github.com 
    HostName github.com 
    IdentityFile ~/.ssh/id_rsa 
    ProxyCommand connect -H XX.XX.XX.XXXX:8080 %h 443 

命令ssh -T [email protected] -v輸出:

OpenSSH_7.1p2, OpenSSL 1.0.2d 9 Jul 2015 
debug1: Reading configuration data /c/Users/name/.ssh/config 
debug1: /c/Users/name/.ssh/config line 1: Applying options for github.com 
debug1: Reading configuration data /etc/ssh/ssh_config 
debug1: Executing proxy command: exec connect -H XX.XX.XX.XXXX:8080 github.com 443 
debug1: permanently_drop_suid: 1201653 
debug1: identity file /c/Users/user/.ssh/id_rsa type 1 
debug1: key_load_public: No such file or directory 
debug1: identity file /c/Users/gregv/.ssh/id_rsa-cert type -1 
debug1: Enabling compatibility mode for protocol 2.0 
debug1: Local version string SSH-2.0-OpenSSH_7.1 
ssh_exchange_identification: Connection closed by remote host 

回答

0

OK,我的問題實際上是443上設置的端口,這裏是正在爲我工​​作的~/.ssh/config文件文件:

Host github.com 
    IdentityFile ~\.ssh\id_rsa 
    ProxyCommand connect -H XX.XX.XX.XXXX:8080 %h %p 
    ForwardAgent yes 
相關問題