配置vsftpd
1.配置/etc/vsftpd/vsftpd.conf
anonymous_enable=YES
local_enable=YES
write_enable=YES
anon_umask=022
local_umask=022
anon_root=/home/norealftp
dirmessage_enable=YES
connect_from_port_20=YES
xferlog_enable=YES
xferlog_file=/var/log/vsftpd.log
xferlog_std_format=YES
dual_log_enable=yes
vsftpd_log_file=/var/log/vsftpd.log
listen=YES
pam_service_name=vsftpd
guest_enable=YES
guest_username=norealftp
user_config_dir=/etc/vsftpd/user_config_dir
chroot_local_user=YES
listen_port=21
userlist_deny=NO
userlist_file=/etc/vsftpd/user_list
pam_service_name=vsftpd
userlist_enable=YES
2.生成數據庫文件 /etc/vsftpd/login_user.txt
添加用戶名和密碼
hlw(用戶名1)
topwalk(密碼)
hlw1(用戶2)
topwalk(密碼)
db_load -T -t hash -f /etc/vsftpd/login_user.txt /etc/vsftpd/vsftpd_login.db
chmod 600 /etc/vsftpd/vsftpd_login.db
3.配置/etc/pam.d/vsftpd
auth required /lib64/security/pam_userdb.so db=/etc/vsftpd/vsftpd_login
account required /lib64/security/pam_userdb.so db=/etc/vsftpd/vsftpd_login
4.建立用戶並指定目錄
useradd -d /home/hlw hlw
passwd hlw
5.配置每一個用戶的權限
/etc/vsftpd/user_config_dir/用戶名(hlw)(管理員權限)
anon_world_readable_only=NO
anon_upload_enable=YES
anon_mkdir_write_enable=YES
anon_other_write_enable=YES
6.把用戶添加到user_lis數據庫