Soldato
- Joined
- 7 Jan 2007
- Posts
- 10,607
- Location
- Sussex, UK
I followed this guide to get proftp working:
http://www.debian-administration.org/article/Setting_up_an_FTP_server_on_Debian
It told me to add this to proftp.conf:
I added that and started the daemon back up, now in filezilla I can successfully connect to the FTP server via ftp, SFTP & FTPES over explicit TLS/SSL.
Have I successfully setup ssl encryption, if I use the SFTP or FTPES option in filezilla?
I'm a little confused as to what I have done, if I had linked my LAN ip to my ISP IP people could still try to guess my password and login?
My windows PC just imported the key with my user/pass, how do I limit access to my internal PC's only?
Is ssl/TLS only there to stop people "tapping into" my ftp when I am connected to it?
http://www.debian-administration.org/article/Setting_up_an_FTP_server_on_Debian
It told me to add this to proftp.conf:
Code:
<IfModule mod_tls.c>
TLSEngine on
TLSLog /var/log/proftpd-tls.log
TLSProtocol TLSv1
# Are clients required to use FTP over TLS when talking to this server?
TLSRequired off
TLSRSACertificateFile /etc/proftpd/ftpd-rsa.pem
TLSRSACertificateKeyFile /etc/proftpd/ftpd-rsa-key.pem
# Authenticate clients that want to use FTP over TLS?
TLSVerifyClient off
</IfModule>
I added that and started the daemon back up, now in filezilla I can successfully connect to the FTP server via ftp, SFTP & FTPES over explicit TLS/SSL.
Have I successfully setup ssl encryption, if I use the SFTP or FTPES option in filezilla?
I'm a little confused as to what I have done, if I had linked my LAN ip to my ISP IP people could still try to guess my password and login?
My windows PC just imported the key with my user/pass, how do I limit access to my internal PC's only?
Is ssl/TLS only there to stop people "tapping into" my ftp when I am connected to it?