无法在 aws ec2 上检索目录列表 FTPS
Failed to retrieve directory listing FTPS on aws ec2
我已经使用 vsftpd 在我的 AWS EC2 Ubuntu 实例上设置了一个 FTPS 服务器。我无法使用 FileZilla 进行连接。
Status: Connecting to 52.32.88.85:21...
Status: Connection established, waiting for welcome message...
Status: Initializing TLS...
Status: Verifying certificate...
Status: TLS connection established.
Status: Connected
Status: Retrieving directory listing...
Command: PWD
Response: 257 "/"
Command: TYPE I
Response: 200 Switching to Binary mode.
Command: PASV
Response: 227 Entering Passive Mode (52,32,88,85,78,137).
Command: LIST
Response: 425 Failed to establish connection.
Error: Failed to retrieve directory listing
根据我正在阅读的内容,FTP 至少需要在服务器端转发监听端口。我该怎么做呢?我尝试了 this,但它不起作用。
我启动了一个新实例并遵循 this tutorial 并将以下行添加到我的 vsftpd.conf
pasv_enable=YES
pasv_max_port=12100
pasv_min_port=12000
port_enable=YES
我在安全组中开放了12000-12100端口范围
我对该服务器进行了扫描,但只看到端口 21-22 打开。为了使您的 FTPS 服务器正常工作,您需要在安全组的入站规则中打开 vsftpd.conf 中指定的被动端口范围。
下面是一个例子。注意:检查您在 conf
中的实际端口设置
我已经使用 vsftpd 在我的 AWS EC2 Ubuntu 实例上设置了一个 FTPS 服务器。我无法使用 FileZilla 进行连接。
Status: Connecting to 52.32.88.85:21...
Status: Connection established, waiting for welcome message...
Status: Initializing TLS...
Status: Verifying certificate...
Status: TLS connection established.
Status: Connected
Status: Retrieving directory listing...
Command: PWD
Response: 257 "/"
Command: TYPE I
Response: 200 Switching to Binary mode.
Command: PASV
Response: 227 Entering Passive Mode (52,32,88,85,78,137).
Command: LIST
Response: 425 Failed to establish connection.
Error: Failed to retrieve directory listing
根据我正在阅读的内容,FTP 至少需要在服务器端转发监听端口。我该怎么做呢?我尝试了 this,但它不起作用。
我启动了一个新实例并遵循 this tutorial 并将以下行添加到我的 vsftpd.conf
pasv_enable=YES
pasv_max_port=12100
pasv_min_port=12000
port_enable=YES
我在安全组中开放了12000-12100端口范围
我对该服务器进行了扫描,但只看到端口 21-22 打开。为了使您的 FTPS 服务器正常工作,您需要在安全组的入站规则中打开 vsftpd.conf 中指定的被动端口范围。
下面是一个例子。注意:检查您在 conf
中的实际端口设置