You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've gotten the conect to proftpd to work (custom compiled with mod_proxy and mod_tls), but it like it fails the TLS connections to the backend FTPS server.
The error i get is:
2021-01-14 16:28:31,172 mod_proxy/0.7[18986]: TLSv1.2 connection created, using cipher ECDHE-RSA-AES256-GCM-SHA384 (256 bits)
2021-01-14 16:28:31,174 mod_proxy/0.7[18986]: proxy session running as UID 0, GID 0, restricted to '/var/lib/ftp/proxytable/empty'
2021-01-14 16:28:34,137 mod_proxy/0.7[18986]: Entering Passive Mode (XX,XXX,XXX,XXX,198,48).
2021-01-14 16:28:34,186 mod_proxy/0.7[18986]: starting TLS negotiation on data connection
2021-01-14 16:28:34,217 mod_proxy/0.7[18986]: unable to connect using TLS: system call error: [104] Connection reset by peer
2021-01-14 16:28:34,217 mod_proxy/0.7[18986]: unable to open data connection to upload.ftpserver.com: TLS negotiation failed
2021-01-14 16:28:34,217 mod_proxy/0.7[18986]: postopen error for backend data connection output stream: Operation not permitted
Any hits of how to set it up appreciated, or even how i get to test this. I've verified that with Filezilla the backend server is responsive.
The text was updated successfully, but these errors were encountered:
2021-01-14 16:28:34,186 mod_proxy/0.7[18986]: starting TLS negotiation on data connection
2021-01-14 16:28:34,217 mod_proxy/0.7[18986]: unable to connect using TLS: system call error: [104] Connection reset by peer
2021-01-14 16:28:34,217 mod_proxy/0.7[18986]: unable to open data connection to upload.ftpserver.com: TLS negotiation failed
suggest that the backend FTPS server is failing the data transfer TLS handshake for some reason. Are there any logs from that backend server that might provide some clues/details?
Can you provide the configuration you're currently using for the mod_proxy part? In addition, what will help to debug the mod_proxy -> backend server interactions will be some detailed trace logging, using a configuration like so for the proxy:
Here, we configure a TraceLog with many trace channels enabled, and we point the module-specific TLS and proxy logs at the same log file, to capture all the relevant log messages in a single file. It will be a large log file, but hopefully you can provide that log file, so we can see what might be happening.
I'm trying to to use mod_proxy to get support for TLS1.0 for a FTP service that only supports TLS1.2.
So the way it should go is:
Client -----[TLS1.0]----->proftpd/mod_proxy -------[TLS1.2]------>FTPS server.
I've gotten the conect to proftpd to work (custom compiled with mod_proxy and mod_tls), but it like it fails the TLS connections to the backend FTPS server.
The error i get is:
Any hits of how to set it up appreciated, or even how i get to test this. I've verified that with Filezilla the backend server is responsive.
The text was updated successfully, but these errors were encountered: