0

我让 Linaro 在嵌入式系统 (Zedboard) 中运行。我正在使用 Mac 终端 ssh 到这个系统。Zedboard 有一个 IP。我在接口文件中设置它。该板未连接到 Internet,并且未运行任何防火墙。我无法通过 ssh 连接到这台机器。

$ ssh -vvv root@169.254.218.146
OpenSSH_5.6p1, OpenSSL 0.9.8x 10 May 2012
debug1: Reading configuration data /etc/ssh_config
debug1: Applying options for *
debug2: ssh_connect: needpriv 0
debug1: Connecting to 169.254.218.146 [169.254.218.146] port 22.
debug1: connect to address 169.254.218.146 port 22: Connection refused
ssh: connect to host 169.254.218.146 port 22: Connection refused

第三个详细信息不应该有一个 debug3 吗?但是,Ping 有效。我可以ping得很好,它会响应。任何帮助表示赞赏。谢谢你。

编辑:我注意到一些奇怪的行为。我的第一次连接(在启动 Linaro 之后)实际上超时了。

root@Vinayak’s MacBook Pro ~ $ ssh -vvv root@169.254.218.146
OpenSSH_5.6p1, OpenSSL 0.9.8x 10 May 2012
debug1: Reading configuration data /etc/ssh_config
debug1: Applying options for *
debug2: ssh_connect: needpriv 0
debug1: Connecting to 169.254.218.146 [169.254.218.146] port 22.
debug1: connect to address 169.254.218.146 port 22: Operation timed out
ssh: connect to host 169.254.218.146 port 22: Operation timed out

任何 SUBSEQUENT ssh 都会给出拒绝连接的结果。

4

1 回答 1

0

第三个调试级别显示的信息与此处无关。它显示了有关 SSH 连接的其他详细信息,但这里根本没有建立连接,所以没什么可说的。

您的输出表明 Zedboard 未运行 SSH 服务器,或者未配置为接受此 IP 上的连接。

于 2013-07-16T20:12:54.057 回答