我需要通过sshd将笔记本电脑(Mac OS)连接到Virtual Box(Debian),然后在Debian中测试telnet。问题是我似乎无法通过sshd连接。
我知道
sshd重新执行要求使用绝对路径执行
我跑步时
sshd root@192.xxx.xx.xx
但是如果我按照建议使用绝对路径,我会得到这个:
/usr/sbin/sshd root@192.xxx.xx.xxx
额外参数root@192.xxx.xx.xxx
问题是什么,一个人如何通过sshd连接?
答案 0 :(得分:1)
sshd
是dæmon程序,它侦听SSH端口,然后让传入的连接进入。
您要使用ssh
(不带“ d”)作为客户端连接到远程计算机:
usr/sbin/ssh root@192.xxx.xx.xxx