Я пытаюсь настроить vsftpd на моем сервере, он работает, работает и подключается. Но при попытке подключиться к серверу с помощью FileZilla я получаю следующую ошибку:
Status: Connection established, waiting for welcome message...
Status: Insecure server, it does not support FTP over TLS.
Status: Logged in
Status: Retrieving directory listing...
Command: PWD
Response: 257 "/var/www/html"
Command: TYPE I
Response: 200 Switching to Binary mode.
Command: PASV
Response: 227 Entering Passive Mode (193,23,181,154,235,226).
Command: LIST
Error: The data connection could not be established: ETIMEDOUT - Connection
attempt timed out
Я уже установил порты и направил их в брандмауэр:
vsftpd.conf:
connect_from_port_20 = YES
pasv_enable = YES
pasv_addr_resolve = NO
pasv_address = 193.23.181.154
pasv_min_port = 4242
pasv_max_port = 4243
port_enable = YES
Что я делаю неправильно / мне нужно добавить?