SFTP 连接被对方​​重置

SFTP 连接被对方​​重置

我在打开与特定 sftp 的会话时遇到问题。我按照主机提供的步骤运行此命令以连接到他们的 ftp。

sftp -o port=7010 -o IdentityFile=sftp_file_address username@ip_address

我尝试在详细模式下运行它,并在 sftp 后添加 -vvv。

这是输出。

Connecting to ip_address...
OpenSSH_5.3p1, OpenSSL 1.0.1e-fips 11 Feb 2013
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug2: ssh_connect: needpriv 0
debug1: Connecting to ip_address [ip_address] port 7010.
debug1: connect to address ip_address port 7010: Connection timed out
ssh: connect to host ip_address port 7010: Connection timed out
Couldn't read packet: Connection reset by peer

我对此完全陌生,你能帮助我理解为什么会发生这种情况以及输出意味着什么吗?

谢谢

答案1

问题由以下消息描述connect to host ip_address port 7010: Connection timed out。这意味着您的计算机尝试与ip_address(我假设是您已编辑的实际 IP 地址)通信,但未收到任何响应。也许远程主机已与网络断开连接,或者您输入了错误的 IP 地址。

相关内容