目录列表在FileZilla中失败

时间:2014-01-06 12:16:27

标签: ftp filezilla

我正在尝试使用Filezilla连接到FTP服务器。当我使用宽带时,它正在工作,但当我使用我的大学互联网时,它说:

Error:  Connection timed out
Error:  Failed to retrieve directory listing

我尝试了被动和主动模式但都徒劳无功。它连接但未能给出目录列表。

以下是活动模式的完整日志

Status: Resolving address of where2service.com
Status: Connecting to 166.62.2.1:21...
Status: Connection established, waiting for welcome message...
Response:   220---------- Welcome to Pure-FTPd [privsep] [TLS] ----------
Response:   220-You are user number 22 of 500 allowed.
Response:   220-Local time is now 05:09. Server port: 21.
Response:   220-This is a private system - No anonymous login
Response:   220 You will be disconnected after 3 minutes of inactivity.
Command:    USER where2service
Response:   331 User where2service OK. Password required
Command:    PASS ***********
Response:   230 OK. Current restricted directory is /
Status: Server does not support non-ASCII characters.
Status: Connected
Status: Retrieving directory listing...
Command:    PWD
Response:   257 "/" is your current location
Command:    TYPE I
Response:   200 TYPE is now 8-bit binary
Command:    PORT 192,168,126,200,228,90
Response:   200 Port command successful.
Command:    MLSD
Response:   150 Accepted data connection
Response:   226-Options: -a -l 
Response:   226 18 matches total
Error:  Connection timed out

以下是被动模式的日志:

Status: Resolving address of where2service.com
Status: Connecting to 166.62.2.1:21...
Status: Connection established, waiting for welcome message...
Response:   220---------- Welcome to Pure-FTPd [privsep] [TLS] ----------
Response:   220-You are user number 20 of 500 allowed.
Response:   220-Local time is now 05:13. Server port: 21.
Response:   220-This is a private system - No anonymous login
Response:   220 You will be disconnected after 3 minutes of inactivity.
Command:    USER where2service
Response:   331 User where2service OK. Password required
Command:    PASS ***********
Response:   230 OK. Current restricted directory is /
Status: Server does not support non-ASCII characters.
Status: Connected
Status: Retrieving directory listing...
Command:    PWD
Response:   257 "/" is your current location
Command:    TYPE I
Response:   200 TYPE is now 8-bit binary
Command:    PASV
Response:   227 Entering Passive Mode (166,62,2,1,174,209)
Command:    MLSD
Response:   150 Accepted data connection
Response:   226-Options: -a -l 
Response:   226 18 matches total
Error:  Connection timed out
Error:  Failed to retrieve directory listing

7 个答案:

答案 0 :(得分:28)

将我的加密更新为“仅使用普通FTP(不安全)

后工作正常

答案 1 :(得分:25)

已解决,请转到文件>网站管理员,选择您的网站,然后您必须设置“加密:仅使用普通FTP(不安全)”和终于联系了。 As you can see

答案 2 :(得分:9)

在FileZilla中,转到文件>站点管理器和常规选项卡加密集func btnfavoriteClicked(_ sender: UIButton) { sender.isSelected = !sender.isSelected } Here step by step HELP 它对我有用!

答案 3 :(得分:7)

在“检索目录列表'”时,FTP连接失败或者'建立连接,等待欢迎消息'。请按照以下步骤操作,这可能会对您有所帮助。

  1. 打开Filezilla并打开设置(在“编辑”菜单下)
  2. " Connection"选择" FTP"
  3. 顶部的部分称为传输模式。在其中,选择 "被动模式"
  4. 单击“确定”。你现在应该能够连接。

答案 4 :(得分:5)

在主动模式下,您发送:

Command:    PORT 192,168,126,200,228,90

这是一个私人IP地址。服务器无法连接到该服务器。所以这绝对不适用于Internet上的服务器。如果必须使用活动模式,则需要打开防火墙/路由器以将传入的FTP连接转发到计算机。在FileZilla中,打开设置(ConnectionFTPActive mode)并相应地进行配置。

在被动模式下,您发送:

Command:    PASV
Response:   227 Entering Passive Mode (166,62,2,1,174,209)

这意味着FTP服务器要求您连接到该IP和端口。如果您有防火墙,则无法连接到它。如果服务器没有正确设置和防火墙,它将无法看到您的传入连接。

有关更多信息,请查看FileZilla wiki中的network configuration article

答案 5 :(得分:1)

尝试了以上所有但是没有奏效。最后选择以管理员身份运行Filezilla ...问题解决了。

答案 6 :(得分:0)

当我连接到托管的ftp服务器时,出现以下错误。

状态:连接已建立,正在等待欢迎消息... 状态:正在初始化TLS ... 状态:正在验证证书... 状态:TLS连接已建立。 状态:已登录 状态:正在检索目录列表... 命令:PWD响应:257“ /”是您当前的位置 命令:TYPE I响应:200 TYPE现在为8位二进制 命令:PASV 响应:227进入被动模式(138,128,162,194,117,133) 命令:MLSD错误:不活动20秒后连接超时错误:无法检索目录列表

这是解决上述问题的正确路径。我正在使用filezilla作为ftp客户端应用程序。

1)单击“文件”菜单,然后单击“站点管理器”图标顶部。 2)在加密部分,从下拉列表中选择“仅使用普通FTP”。 3)还将登录类型更改为“普通”。

enter image description here