vsftpd 缺少 SSL/TLS 连接的横幅,导致客户端错误

vsftpd 缺少 SSL/TLS 连接的横幅,导致客户端错误

我想知道是否有人遇到了 vsftpd 的这个问题:

以下是来自客户端的日志:

FTPS

Status:Resolving address of ftpservice.domain.com
Status:Connecting to 1.1.1.1:990...
Status:Connection established, waiting for welcome message...
Error:Connection timed out
Error:Could not connect to server

FTP PLAIN:

Status:Resolving address of ftpservice.domain.com
Status:Connecting to 1.1.1.1:21...
Status:Connection established, waiting for welcome message...
Response:220 "FTP Server"
Command:USER test_user
Response:331 Please specify the password.
Command:PASS **********
Response:230 Login successful.
Command:SYST
Response:215 UNIX Type: L8
Command:FEAT
Response:211-Features:
Response:AUTH SSL
Response:AUTH TLS
Response:EPRT
Response:EPSV
Response:MDTM
Response:PASV
Response:PBSZ
Response:PROT
Response:REST STREAM
Response:SIZE
Response:TVFS
Response:UTF8
Response:211 End
Command:OPTS UTF8 ON
Response:200 Always in UTF8 mode.
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 (1,1,1,1,25,103).
Command:LIST
Response:150 Here comes the directory listing.
Response:226 Directory send OK.
Status:Directory listing successful

以前有人见过这种行为吗?

答案1

解决方案是在 vsftpd 配置中添加以下选项:

ssl_ciphers=HIGH

相关内容