我尝试使用SSH ProxyCommand通过跳转框连接到服务器未成功。我的配置在下面,我正在运行以下命令:

ssh 10.0.2.54 -F ssh.config -vv

Host x.x.x.x
    User                   ec2-user
    HostName               x.x.x.x
    ProxyCommand           none
    IdentityFile           /Users/me/.ssh/keys.pem
    BatchMode              yes
    PasswordAuthentication no

Host *
    ServerAliveInterval    60
    TCPKeepAlive           yes
    ProxyCommand           ssh -W %h:%p -q [email protected]
    ControlMaster          auto
    ControlPersist         8h
    User                   ec2-user
    IdentityFile           /Users/me/.ssh/keys.pem

结果是:
OpenSSH_6.2p2, OSSLShim 0.9.8r 8 Dec 2011
debug1: Reading configuration data ssh.config
debug1: ssh.config line 9: Applying options for *
debug1: auto-mux: Trying existing master
debug1: Control socket "/Users/me/.ssh/[email protected]:22" does not exist
debug2: ssh_connect: needpriv 0
debug1: Executing proxy command: exec ssh -W 10.0.2.54:22 -q [email protected]
debug1: identity file /Users/me/.ssh/keys.pem type -1
debug1: identity file /Users/me/.ssh/keys.pem-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.2
debug1: permanently_drop_suid: 501

我该如何解决/解决问题?

谢谢,

最佳答案

ControlPersistProxyCommand结合使用无效,并且您错过了ControlPath选项。但这不是问题。

首先,如果您使用的是非标准配置文件,并且希望通过proxy命令使用它,则需要在此指定它。 -q选项使连接安静,因此您不知道在proxy命令的作用下发生了什么。 LogLevel DEBUG3选项非常有用。

这行:

ProxyCommand           ssh -W %h:%p -q [email protected]

需要是(并且您不需要用户名,因为上面已经指定了用户名):
ProxyCommand           ssh -W %h:%p -F ssh.config x.x.x.x

您的命令中的参数顺序也错误:
ssh 10.0.2.54 -F ssh.config -vv

需要是:
ssh -F ssh.config 10.0.2.54

正如您可以从手册页中阅读的那样。如果使用-vv选项,则不需要LogLevel

然后它应该对您有用(至少对我有用,否则请检查日志)。

08-27 17:12