SSH 卡在 client_input_global_request : rtype hostkeys-00@openssh. com want_reply 0

标签 ssh vagrant private-key macos-high-sierra tunneling

我正在尝试连接到我的 mac 上的 Vagrant 机器(我使用的是 Mac OS High Sierra)。
我正在使用私钥连接到它,但我卡在这条线上:

client_input_global_request: rtype hostkeys-00@openssh.com want_reply 0

我使用以下命令行:
ssh -v -N  -L localhost:5432:192.168.33.10:5432 -o ConnectTimeout=1 -o ServerAliveInterval=30 -o ServerAliveCountMax=3 -i /Users/MacUser/Desktop/Vagrant_Project/.vagrant/machines/default/virtualbox/private_key -p 22 vagrant@192.168.33.10

这是结果:
OpenSSH_7.6p1, LibreSSL 2.6.2
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 48: Applying options for *
debug1: Connecting to 192.168.33.10 [192.168.33.10] port 22.
debug1: fd 3 clearing O_NONBLOCK
debug1: Connection established.
debug1: key_load_public: No such file or directory
debug1: identity file /Users/MacUser/Desktop/Vagrant_Project/.vagrant/machines/default/virtualbox/private_key type -1
debug1: key_load_public: No such file or directory
debug1: identity file /Users/MacUser/Desktop/Vagrant_Project/.vagrant/machines/default/virtualbox/private_key-cert type -1
debug1: Local version string SSH-2.0-OpenSSH_7.6
debug1: Remote protocol version 2.0, remote software version OpenSSH_7.2p2 Ubuntu-4ubuntu2.6
debug1: match: OpenSSH_7.2p2 Ubuntu-4ubuntu2.6 pat OpenSSH* compat 0x04000000
debug1: Authenticating to 192.168.33.10:22 as 'vagrant'
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: algorithm: curve25519-sha256@libssh.org
debug1: kex: host key algorithm: ecdsa-sha2-nistp256
debug1: kex: server->client cipher: chacha20-poly1305@openssh.com MAC: <implicit> compression: none
debug1: kex: client->server cipher: chacha20-poly1305@openssh.com MAC: <implicit> compression: none
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server host key: ecdsa-sha2-nistp256 SHA256:Ju/ngomtpiyMPtrgFsK+ttKbFUR9BwW3CyDFjo5KITc
debug1: Host '192.168.33.10' is known and matches the ECDSA host key.
debug1: Found key in /Users/MacUser/.ssh/known_hosts:3
debug1: rekey after 134217728 blocks
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: rekey after 134217728 blocks
debug1: SSH2_MSG_EXT_INFO received
debug1: kex_input_ext_info: server-sig-algs=<rsa-sha2-256,rsa-sha2-512>
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey
debug1: Next authentication method: publickey
debug1: Trying private key: /Users/MacUser/Desktop/Vagrant_Project/.vagrant/machines/default/virtualbox/private_key
debug1: Authentication succeeded (publickey).
Authenticated to 192.168.33.10 ([192.168.33.10]:22).
debug1: Local connections to localhost:5432 forwarded to remote address 192.168.33.10:5432
debug1: Local forwarding listening on ::1 port 5432.
debug1: channel 0: new [port listener]
debug1: Local forwarding listening on 127.0.0.1 port 5432.
debug1: channel 1: new [port listener]
debug1: Requesting no-more-sessions@openssh.com
debug1: Entering interactive session.
debug1: pledge: network
debug1: client_input_global_request: rtype hostkeys-00@openssh.com want_reply 0

有人能给我一个提示来摆脱这个问题吗?我被困在这一点上,永远。
我认为问题应该在 Vagrant 和 Mac Os 之间。同样的 vagrant 虚拟机在 Windows 环境下工作。

最佳答案

我在通过堡垒主机连接到实例时遇到了与 ProxyJump 指令相同的问题。该过程在同一行后超时。结果发现防火墙从堡垒主机断开连接存在问题。

据我所知,您与 的联系192.168.33.10 打开监听端口成功挂起 5423 在本地主机上。因此,您要么在端口 上设置了防火墙阻止与 localhost 的连接。 5423 上的防火墙192.168.33.10 阻塞端口 5423 .

要解决这个问题,您必须使用 手动测试这些端口。 telnet\n map 公用事业
语法如下:

telnet localhost 5423

或者
nmap -p 5423 192.168.33.10

如果端口已打开,您将看到以下消息

Escape character is '^]'.



如果端口被防火墙关闭,telnet 将挂起并显示以下消息

Trying 172.18.0.47...



如果端口被 fireawll 关闭,nmap 将显示它已过滤

PORT STATE SERVICE

80/tcp filtered http



如果端口通过防火墙打开但没有应用程序在此端口上监听,您将收到一条消息

telnet: Unable to connect to remote host: Connection refused



之后,您需要打开这些端口。在 linux 机器上只需发出以下命令
iptables -I INPUT -p tcp --dport 5423 --syn -j ACCEPT && service iptables save

在 MacOS 上你需要修改这个文件 /etc/pf.conf (通过此 article 找到)

关于SSH 卡在 client_input_global_request : rtype hostkeys-00@openssh. com want_reply 0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53410559/

相关文章:

rvm - Packer.io 使用 puppet 配置程序失败 :/usr/bin/puppet: line 3: rvm: command not found

java - 如何使用密码加密的私钥生成 RSA key 对?

java - 如何在 MS SQL Server 中存储公钥/私钥?

linux - 如何设置公钥认证?

python - 如何使用带有公钥文件的 Paramiko 访问远程服务器

go - 在 circle ci 中使用 go mod 获取私有(private) repo

具有 FQDN(完全限定域名)的 Vagrant Vhost

python - 为什么 paramiko 不能运行这个命令? (Python)

ssh - 无法通过 Google 计算引擎中的 SSH 连接到实例,同一帐户的另一个实例工作正常

在本地运行时抛出 python-logstash 错误