Hi,
I'm unable to connect to my ProFTPD Server with Filezilla.
I got the following error:
Code
- Status: Resolving address of www.tcxxxx.com
- Status: Connecting to 85.25.xxx.xxx:21...
- Status: Connection established, waiting for welcome message...
- Status: Initializing TLS...
- Error: GnuTLS error -110: The TLS connection was non-properly terminated.
- Status: Server did not properly shut down TLS connection
- Status: Connection attempt failed with "ECONNABORTED - Connection aborted".
- Error: Could not connect to server
- Status: Waiting to retry...
- Status: Resolving address of www.tcxxxx.com
- Status: Connecting to 85.25.xxx.xxx:21...
- Status: Connection established, waiting for welcome message...
- Response: 220 [malta1264.startdedicated.de] i-MSCP FTP server.
- Command: AUTH TLS
- Response: 234 AUTH TLS successful
- Status: Initializing TLS...
- Error: GnuTLS error -110: The TLS connection was non-properly terminated.
- Status: Server did not properly shut down TLS connection
- Status: Connection attempt failed with "ECONNABORTED - Connection aborted".
- Error: Could not connect to server
I checked the cert.pem of the Domain without any errors.
service proftpd status says:
The ftp_ssl.log says:
Code
- 2022-05-04 08:10:54,057 mod_tls/2.6[24512]: TLS/TLS-C requested, starting TLS handshake
- 2022-05-04 08:10:54,092 mod_tls/2.6[24512]: unable to accept TLS connection: received EOF that violates protocol
- 2022-05-04 08:10:54,092 mod_tls/2.6[24512]: panic: SSL_ERROR_SSL, line 4540:
- (1) error:140E0197:SSL routines:SSL_shutdown:shutdown while in init
- 2022-05-04 08:10:54,092 mod_tls/2.6[24512]: unexpected OpenSSL error, disconnecting
The SSL Section of the proftpd.conf looks like this:
Code
- # SSL configuration
- <Global>
- <IfModule mod_tls.c>
- TLSEngine on
- TLSRequired off
- TLSLog /var/log/proftpd/ftp_ssl.log
- TLSOptions NoCertRequest NoSessionReuseRequired
- TLSRSACertificateFile /etc/imscp/imscp_services.pem
- TLSRSACertificateKeyFile /etc/imscp/imscp_services.pem
- TLSCACertificateFile /etc/imscp/isrgrootx1.pem
- TLSVerifyClient off
- </IfModule>
- </Global>
- <IfModule mod_tls.c>
- TLSProtocol TLSv1.2
- </IfModule>
Can anyone help?