2016-06-13 6 views
0

私の会社が使用しているHTTPプロキシ経由でサーバーに接続するように~/.ssh/config fileを設定しようとしていますが、毎回低下しています... 誰でもこの方法を知っていますか? ?HTTPプロキシの下で作業するときにWindows上のSSH設定

私はのGit Bashのツールを使用して、Windows 7の上で作業し、ここに私の現在の~/.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 
関連する問題