使用文件创建ftp虚拟用户

1.创建虚拟用户

[root@centos7 ~]# cd /etc/vsftpd/

[root@centos7 vsftpd]# vi user.txt
#添加
user1
123456
user2
654321

[root@centos7 vsftpd]# db_load -T -t hash -f user.txt vusers.db
[root@centos7 vsftpd]# chmod 600 vusers.db

2.创建映射用户

[root@centos7 vsftpd]# useradd -s /sbin/nologin -d /data/ftproot vuser
#ftp根目录
[root@centos7 vsftpd]# mkdir -pv /data/ftproot
[root@centos7 vsftpd]# chmod a=rx /data/ftproot
#创建上传文件夹
[root@centos7 vsftpd]# mkdir /data/ftproot/user{1,2}/upload
#赋权
[root@centos7 vsftpd]# setfacl -m u:vuser:rwx /data/ftproot/user1/upload
[root@centos7 vsftpd]# setfacl -m u:vuser:rwx /data/ftproot/user2/upload

3.修改配置文件

[root@centos7 vsftpd]# vi /etc/pam.d/vsftpd.db
#添加
auth required pam_userdb.so db=/etc/vsftpd/vusers
account required pam_userdb.so db=/etc/vsftpd/vusers

[root@centos7 vsftpd]# vi /etc/vsftpd/vsftpd.conf
#修改
pam_service_name=vsftpd.db
#添加
guest_enable=YES
guest_username=vuser
user_config_dir=/etc/vsftpd/vusers.d/

#添加user1配置文件
[root@centos7 vsftpd]# mkdir /etc/vsftpd/vusers.d/
[root@centos7 vsftpd]# cd /etc/vsftpd/vusers.d/
[root@centos7 vusers.d]# vi user1
#添加
anon_upload_enable=YES
anon_mkdir_write_enable=YES
anon_other_write_enable=YES
local_root=/data/ftproot/user1

#添加user2配置文件
[root@centos7 vusers.d]# vi user2
#添加
anon_upload_enable=YES
anon_mkdir_write_enable=YES
anon_other_write_enable=YES
local_root=/data/ftproot/user2

4.启动服务

[root@centos7 vusers.d]# systemctl start vsftpd

你可能感兴趣的:(使用文件创建ftp虚拟用户)