对vsftp虚拟用户设置不同的权限

1。在vsftpd.conf文件中添加用户配置文件目录设置

[root@alexli ~]# 
[root@alexli ~]# vim /etc/vsftpd/vsftpd.conf 
 

#chroot_list_file=/etc/vsftpd/chroot_list
#
# You may activate the "-R" option to the builtin ls. This is disabled by
# default to avoid remote users being able to cause excessive I/O on large
# sites. However, some broken FTP clients such as "ncftp" and "mirror" assume
# the presence of the "-R" option, so there is a strong case for enabling it.
#ls_recurse_enable=YES
chroot_local_user=YES
user_config_dir=/etc/vsftpd_vu                      #用户权限文件夹位置


guest_enable=YES
guest_username=ftpuser
pam_service_name=vsftpd.vu
userlist_enable=YES
#enable for standalone mode
listen=YES
tcp_wrappers=YES
"/etc/vsftpd/vsftpd.conf" 113L, 4237C 已写入                  
[root@alexli ~]# mkdir /etc/vsftpd_vu       #创建用户权限文件夹
[root@alexli ~]# 
[root@alexli ~]# 
[root@alexli ~]# cd /etc/vsftpd_vu/
[root@alexli vsftpd_vu]# vim wang5
anon_world_readable_only=NO       #表示用户可以浏览ftp目录和下载文件
anon_upload_enable=YES            #表示用户可以上传文件
anon_mkdir_write_enable=YES       #表示用户具有建立和删除目录的权利
anon_other_write_enable=YES       #表示用户具有文件改名和删除文件的


~
~
"wang5" [新] 4L, 107C 已写入
[root@alexli vsftpd_vu]# 
[root@alexli vsftpd_vu]# vim zhao6

anon_world_readable_only=YES       #表示用户只具有只读权限
anon_upload_enable=NO              #表示用户不可上传
anon_mkdir_write_enable=NO         #表示用户不能建目录
anon_other_write_enable=NO         #表示用户不能更改文件


[root@alexli vsftpd_vu]# 

你可能感兴趣的:(vsftp,权限)