SSH代理转发

时间:2012-08-25 00:16:01

标签: ssh github

我正在尝试在运行Mountain Lion的MacBook Air上设置代理转发。

在本地,我可以运行ssh -T git@github.com并成功连接到github。

当我尝试ssh到我的服务器并运行ssh -T git@github.com时,它表示权限被拒绝。

这是~/.ssh/config

Host <my host>
  ForwardAgent yes

ssh -v <my server>

的输出
debug1: Reading configuration data /Users/tombleymaier/.ssh/config
debug1: /Users/tombleymaier/.ssh/config line 1: Applying options for <host>
debug1: Reading configuration data /etc/ssh_config
debug1: /etc/ssh_config line 20: Applying options for *
debug1: Connecting to <host> [<ip>] port 22.
debug1: Connection established.

/etc/ssh_config(第20行+)

 Host *
   SendEnv LANG LC_*
#   ForwardAgent no
#   ForwardX11 no
#   RhostsRSAAuthentication no
#   RSAAuthentication yes
#   PasswordAuthentication yes
#   HostbasedAuthentication no
#   GSSAPIAuthentication no
#   GSSAPIDelegateCredentials no
#   GSSAPIKeyExchange no
#   GSSAPITrustDNS no
#   BatchMode no
#   CheckHostIP yes
#   AddressFamily any
#   ConnectTimeout 0
#   StrictHostKeyChecking ask
#   IdentityFile ~/.ssh/identity
#   IdentityFile ~/.ssh/id_rsa
#   IdentityFile ~/.ssh/id_dsa
#   Port 22
#   Protocol 2,1
#   Cipher 3des
#   Ciphers aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128,aes128-cbc,3des-cbc
#   MACs hmac-md5,hmac-sha1,umac-64@openssh.com,hmac-ripemd160
#   EscapeChar ~
#   Tunnel no
#   TunnelDevice any:any
#   PermitLocalCommand no
#   VisualHostKey no
#   ProxyCommand ssh -q -W %h:%p gateway.example.com

我在另一台运行Mountain Lion的MacBook上进行了设置。

1 个答案:

答案 0 :(得分:4)

结果是每次重启都会从本地ssh-agent中删除身份。必须使用ssh-add命令运行-kssh-add -K ~/.ssh/privateKey.txt

来自:SVN+SSH, not having to do ssh-add every time? (Mac OS)