Jump to content
Froxlor Forum

[solved] Secure FTP Alternative


wqsupport

Recommended Posts

  • 2 weeks later...

For anyone else trying to implement this, we used FTP+TLS on the ProFTPD daemon.

 

/etc/proftpd/tls.conf

<IfModule mod_tls.c>
TLSEngine                  on
TLSLog                     /var/log/proftpd/tls.log
TLSProtocol                SSLv23
TLSRSACertificateFile      /etc/nginx/ssl/certificate.crt
TLSRSACertificateKeyFile   /etc/nginx/ssl/certificate-private.key
TLSRequired                on
TLSOptions           AllowClientRenegotiations NoSessionReuseRequired
TLSRenegotiate required    off
</IfModule>

 

/etc/proftpd/proftpd.conf

PassivePorts                  49152 65534

Include /etc/proftpd/tls.conf

 

IPTABLES

-A INPUT -p tcp -m tcp -m multiport -j ACCEPT --dports 20,21

-I INPUT -p tcp --dport 49152:65534 -j ACCEPT

Link to comment
Share on other sites

  • 1 year later...

Archived

This topic is now archived and is closed to further replies.



×
×
  • Create New...