我正在尝试使用安全 ftp (SFTP) 连接到我的服务器。
在 Windows 上我没有遇到问题,但是在我的 Linux 计算机上我收到以下错误:
status: Connecting to 89.104.207.220...
Response: fzSftp started
Command: open "[email protected]" 22
Error: No route to host
Error: Could not connect to server
Status: Waiting to retry...
Status: Connecting to 89.104.207.220...
Response: fzSftp started
Command: open "[email protected]" 22
Error: No route to host
Error: Could not connect to server
Status: Connecting to 89.104.207.220...
Response: fzSftp started
Command: open "[email protected]" 22
Error: No route to host
Error: Could not connect to server
Status: Waiting to retry...
Status: Connecting to 89.104.207.220...
Response: fzSftp started
Command: open "[email protected]" 22
Error: No route to host
Error: Could not connect to server
我已使用以下命令打开了端口 22:
sudo iptables -A INPUT -i eth1 -p tcp --dport 22 -j ACCEPT
然而什么也没发生。
有人尝试过这个问题并知道如何解决吗?
答案1
打开 ”[电子邮件保护]“ 22
在我看来,您确实将root@
作为服务器地址的一部分,并且它试图连接到字面上名为 的主机[email protected]
,而不是以 root 身份连接到名为 的主机89.104.207.220
。请仔细检查您的输入。