如何从 Linux 主机通过 ssh 进入 Virtual Box Windows 7 客户机?

如何从 Linux 主机通过 ssh 进入 Virtual Box Windows 7 客户机?

我已经在客户机上安装了 Cygwin 并设置了 sshd。我可以ssh localhost从客户机内部进行操作。

虚拟机通过“NAT”适配器连接,我为虚拟机设置了端口转发规则,内容如下:

TCP 127.0.0.1 6666 10.0.2.15 22

但是当我尝试使用以下命令从 Linux 主机连接时:

$ ssh  -v -p 6666 [email protected]
OpenSSH_6.6.1, OpenSSL 1.0.1f 6 Jan 2014
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug1: Connecting to 127.0.0.1 [127.0.0.1] port 6666.
debug1: Connection established.
debug1: identity file /home/pjmp/.ssh/id_rsa type 1
debug1: identity file /home/pjmp/.ssh/id_rsa-cert type -1
debug1: identity file /home/pjmp/.ssh/id_dsa type -1
debug1: identity file /home/pjmp/.ssh/id_dsa-cert type -1
debug1: identity file /home/pjmp/.ssh/id_ecdsa type -1
debug1: identity file /home/pjmp/.ssh/id_ecdsa-cert type -1
debug1: identity file /home/pjmp/.ssh/id_ed25519 type -1
debug1: identity file /home/pjmp/.ssh/id_ed25519-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.6.1p1 Ubuntu-2ubuntu2.8

命令因此输出而挂起。我做错了什么?

答案1

除了虚拟机中非常简单的互联网连接之外,NAT 接口几乎毫无用处。桥接接口并在 LAN 上获取可寻址 IP,使用私有接口,或 NAT 与其他接口之一的组合。

答案2

我发现反过来也可以正常工作,所以从 cygwin 到 linux 主机使用 ssh。所以我使用这种方法,因为对我来说从哪一侧建立连接并不重要。

相关内容