1、SSH 登录界面(Linux/Unix 服务器)
当你使用 `ssh username@server_ip` 命令连接 Linux 服务器时,会看到类似如下提示:
username@server_ip's password:
或者首次连接时出现:
The authenticity of host 'server_ip (xxx.xxx.xxx.xxx)' can't be established.
ECDSA key fingerprint is SHA256:xxxxxxxxxxxxxxxxxxxxxx.
Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
成功登录后进入命令行终端:
Last login: Mon Apr 5 10:00:00 2025 from client_ip
[username@hostname ~]$
✅ 提示:建议使用密钥对登录(更安全),避免密码暴力破解。
2、Windows 远程桌面(RDP)登录界面
在 Windows Server 上启用远程桌面后,客户端通过“远程桌面连接”程序输入 IP 和用户名,会弹出图形化登录窗口:
bash
$ ssh user@192.168.1.100
The authenticity of host '192.168.1.100 (192.168.1.100)' can't be established.
ECDSA key fingerprint is SHA256:abc...xyz.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '192.168.1.100' (ECDSA) to the list of known hosts.
user@192.168.1.100's password:
Welcome to Ubuntu 22.04 LTS (GNU/Linux 5.15.0-76-generic x86_64)