1。在vsftpd.conf文件中添加用戶配置文件目錄設置vim
[root@alexli ~]#
[root@alexli ~]# vim /etc/vsftpd/vsftpd.conf
app
#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 #用戶權限文件夾位置tcp
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 zhao6ide
anon_world_readable_only=YES #表示用戶只具備只讀權限
anon_upload_enable=NO #表示用戶不可上傳
anon_mkdir_write_enable=NO #表示用戶不能建目錄
anon_other_write_enable=NO #表示用戶不能更改文件
[root@alexli vsftpd_vu]# ui