Mac OS 10.14.6 上的 SSH 连接问题

Mac OS 10.14.6 上的 SSH 连接问题

我正在设置与 sftp 远程服务器的连接,但所有请求都因超时而失败。还尝试通过 filezilla 进行连接,但输出相同。我遇到了什么问题以及如何解决?提前致谢

(base) macbook-air:~ username$ ssh root@***.**.***.*
ssh: connect to host ***.**.***.* port 22: Operation timed out
(base) macbook-air:~ username$ ssh [email protected]
The authenticity of host '178.208.83.17 (178.208.83.17)' can't be established.
RSA key fingerprint is SHA256:2FcbPfouRMFt9G6ToDDr3WyFZq7cWNoxnc6EmauZ388.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '178.208.83.17' (RSA) to the list of known hosts.
Password: 
ssh_dispatch_run_fatal: Connection to 178.208.83.17 port 22: Operation timed out

答案1

请记住远程控制安全FTP是不同的协议。安全FTP服务器通常只允许您访问传输文件,而不允许您访问 shell 来执行命令,就像通过 ssh 一样。

我猜你无法用 ssh 连接到服务器。你可以尝试使用 sftp 命令。

关于在 macOS 终端中使用 sftp 的文章链接

相关内容