Think before you speak, read before you think.

在vps上用vsftpd建立自己使用的ftp

by

in

ubuntu/debian用户,就不编译安装了,熟练的还是编译安装好,会对自己的目录很熟悉

安装:

apt-get install vsftpd

现在装好后已经可以使用了.用自己的非root账号可以打开.

配置文件在/etc/vsftp下

vps和兄弟合用,打算创建一个目录专门存放ftp的目录

mkdir -p /var/ftpfiles

vsftpd用户配置文件对用户的信息进行详细配置

anon_other_write_enable=YES #允许用户删除文件

cmds_allowed=ABOR,CWD,LIST,MDTM,MKD,NLST,PASS,PASV,APPE,PORT,PWD,QUIT,RETR,SIZE,STOR,TYPE,USER,REST,CDUP,HELP,MODE,NOOP,REIN,STAT,STOU,STRU,SYST,FEAT,DELE,RMD

可以将虚拟用户生成db文件

db_load -T -t hash -f /etc/vsftpd/virtusers /etc/vsftpd/virtusers.db

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *