SSH 到同一网络上的计算机

SSH to a computer on the same network

我需要通过 ssh 连接到我办公室的一台计算机上,但我不确定如何操作。我在 Windows 台电脑上,想访问 Linux 台电脑。如何找出 Linux 计算机的 IP 地址?我需要担心 SSH 密钥吗?

获取IP地址后,是否登录到那台电脑

ssh username@ip

您在 VMware 或 VirtualBox 上使用 Linux 吗? 在Linux

中获取您的IP地址
# ifconfig

然后,从您 Windows 的终端 ssh as

# ssh user@linux_ipaddress

因为ssh key不存在所以会第一次询问你

The authenticity of xxx
ECDSA key xxxx    
Are you sure you want to continue connecting(yes/no)

只要输入是。 当然,你的 Linux 必须启动 sshd 并且防火墙(端口 22)必须打开。