上传/下载时 ftp 出错

上传/下载时 ftp 出错

今年,在我的工程课上,我们学习了操作系统和 Shell 编程。我在 FTP 上保存了我的工作备份,以前它工作得很好,但现在我在向服务器上传和下载时遇到了这个错误:

ftp> dir
500 I won't open a connection to 10.23.28.243 (only to 1.23.149.28)
ftp: bind: Address already in use

&

ftp> put asdf.sh
local: asdf.sh remote: asdf.sh
500 I won't open a connection to 10.23.28.243 (only to 1.23.149.28)

我无法访问大学服务器,请帮我解决这个问题。

答案1

确保服务器正在监听端口 21,并且防火墙规则允许该端口。

您也可以尝试通过执行 ftp -p 使用被动模式

相关内容