在win10 上使用ssh连接到树莓派上
树莓派上的设置
- 启用ssh
启用VCN和SSH,这样可以使用VNC和SSH远程。
win10 上的设置
- 安装ssh客户端
按下win键输入"应用和功能"
如果没有安装就搜索:OpenSSH客户端,安装。
-
连接到树莓派上
按下Win+R 输入cmd打开命令行
输入ssh 树莓派用户名@树莓派ip地址
ssh raspberry@ 192.168.1.4
打开树莓派上的控制台,输入ip addr
查看ip,然后@ 后面就是树莓派的用户名
- 输入密码
连接完成。
如果提示:
:\Users\Xue>ssh raspberry@192.168.1.4
The authenticity of host '192.168.1.4 (192.168.1.4)' can't be established.
ED25519 key fingerprint is SHA256:MHitiN1pFHWrItjdqk+HvUHh7276PI1hV6Ysh4DtOu4.
This host key is known by the following other names/addresses:
C:\Users\Xue/.ssh/known_hosts:1: 192.168.1.6
Are you sure you want to continue connecting (yes/no/[fingerprint])?
意思是这个树莓派之前 没有使用SSH连接过,为了确保安全问你一下。当你尝试通过SSH连接到一个新的或之前未连接过的远程主机时,你的本地SSH客户端会检查该主机的公钥,以确保你连接的是正确的服务器,而不是一个冒充的中间人攻击。
输入yes,
就会进行下一步。
输入yes并成功输入密码后,SSH客户端已经将192.168.1.4的ED25519密钥永久添加到了你的known_hosts文件中。这意味着下次你尝试连接到这个IP地址时,SSH客户端将不再提示你确认密钥,因为它已经被记录为已知和信任的主机。
Warning: Permanently added '192.168.1.4' (ED25519) to the list of known hosts.
raspberry@192.168.1.4's password:
Linux raspberrypi 6.1.0-rpi7-rpi-v8 #1 SMP PREEMPT Debian 1:6.1.63-1+rpt1 (2023-11-24) aarch64
The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.
Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
Last login: Sun Mar 10 11:28:24 2024
这些信息是:
Linux raspberrypi 6.1.0-rpi7-rpi-v8 #1 SMP PREEMPT Debian 1:6.1.63-1+rpt1 (2023-11-24) aarch64
显示了树莓派的操作系统版本和内核信息。
接下来的几行是Debian GNU/Linux系统的版权声明和免责声明。
Last login: Sun Mar 10 11:28:24 2024
显示了你上一次成功登录的时间。