Using vsftpd, all I want to do is share a directory I have with some friends and I am stuck. My ufw
has the correct ports allowed, same as my router. I can SSH in so that tells me those are correct.
Here is my vsftpd.conf
file (comments removed, original file is shared on dropbox):
listen=YES
anonymous_enable=NO
local_enable=YES
local_umask=022
use_localtime=YES
listen_port=13000
ftpd_banner=So you want to steal movies.
secure_chroot_dir=/var/run/vsftpd/empty
pam_service_name=vsftpd
rsa_cert_file=/etc/ssl/private/vsftpd.pem
rsa_private_key_file=/etc/ssl/private/vsftpd.pem
ssl_enable=YES
pasv_min_port=13000
pasv_max_port=13100
userlist_enable=YES
userlist_file=/etc/vsftpd.user_list
userlist_deny=NO
0 Answers