虚拟用户的特点是只能访问服务器为其提供的FTP服务,而不能访问系统的其它资源。所以,如果想让用户对FTP服务器站内具有写权限,但又不允许访问系统其它资源,可以使用虚拟用户来提高系统的安全性。
在VSFTP中,认证这些虚拟用户使用的是单独的口令库文件(pam_userdb),由可插入认证模块(PAM)认证。使用这种方式更加安全,并且配置更加灵活。
为了建立此口令库文件,先要生成一个文本文件。该文件的格式如下,单数行为用户名,偶数行为口令:
[root@SVNSERVER ftp]# vim /etc/vsftpd/account.txt
abcd1
abcd1234
abcd2
abcd1234
abcd3
abcd1234
[root@SVNSERVER ~]#db_load -T -t hash -f ./account.txt /etc/vsftpd/account.db
--这个命令需要db4-utils这个包
[root@SVNSERVER ~]#chmod 600 /etc/vsftpd/account.db
[root@SVNSERVER ~]# cat /etc/pam.d/vsftpd
#%PAM-1.0
#session optional pam_keyinit.so force revoke
#auth required pam_listfile.so item=user sense=deny file=/etc/vsftpd/ftpusers onerr=succeed
#auth required pam_shells.so
#auth include system-auth
#account include system-auth
#session include system-auth
#session required pam_loginuid.so
auth required pam_userdb.so db=/etc/vsftpd/account
account required pam_userdb.so db=/etc/vsftpd/account
[root@SVNSERVER ~]#useradd -d /file/ftp -s /sbin/nologin admin
[root@SVNSERVER ~]# chmod 700 /file/ftp
经过该步骤的设置,/file/ftp就是admin用户的主目录,该用户也是ftp目录的拥有者。除root用户之外,只有该用户具有对该目录的读、写和执行的权限。
anonymous_enable=NO
local_enable=YES
local_umask=022
xferlog_enable=YES
connect_from_port_20=YES
xferlog_std_format=YES
listen=YES
write_enable=YES
anon_upload_enable=YES
anon_mkdir_write_enable=YES
anon_other_write_enable=YES
one_process_model=NO
chroot_local_user=YES
ftpd_banner=Welcom to my FTP server.
anon_world_readable_only=NO
guest_enable=YES
guest_username=admin
pam_service_name=/etc/pam.d/vsftpd
userlist_enable=YES
userlist_deny=YES
userlist_file=/etc/vsftpd/user_list
user_config_dir=/etc/vsftpd/user_config_dir
上面代码中,guest_enable=YES表示启用虚拟用户;guest_username=admin则是将虚拟用户映射为本地用户,这样虚拟用户登录后才能进入本地用户admin的目录/file/ftp;pam_service_name=vsftpd指定PAM的配置文件为 vsftpd。
[root@SVNSERVER ~]#service vsftpd restart
[root@SVNSERVER ~]# ftp 127.0.0.1
Connected to 127.0.0.1.
220 Welcom to my FTP server.
530 Please login with USER and PASS.
530 Please login with USER and PASS.
KERBEROS_V4 rejected as an authentication type
Name (127.0.0.1:root): abcd1
331 Please specify the password.
Password:
230 Login successful.
Remote system type is UNIX.
Using binary mode to transfer files.
在虚拟FTP服务器中,也可以对各个用户的权限进行设置。方法是在/etc/vsftpd/vsftpd.conf文件中添加如下一行:
user_config_dir=/etc/vsftpd/user_config_dir用户配置文件目录
然后在用户配置文件目录下创建相应的用户配置文件,比如为上述名为dingfei的用户创建一个配置文件(假设配置文件目录为/etc/vsftpd/user_conf_dir):
#[root@SVNSERVER ~]# vim /etc/vsftpd/user_config_dir/abcd1
write_enable=YES
write_enable=YES
anon_world_readable_only=NO
anon_upload_enable=YES
anon_mkdir_write_enable=YES
anon_other_write_enable=YES
local_root=/file/ftp
权限说明
#管理员权限,拥有所有权限:
write_enable=YES
anon_world_readable_only=NO
anon_upload_enable=YES
anon_mkdir_write_enable=YES
anon_other_write_enable=YES
local_root=/home/ftp
-------------
#只可以上传,不可修改和删除:
local_root=/home/ftp/user
anon_world_readable_only=NO
anon_upload_enable=YES
download_enable=YES
anon_other_write_enable=NO
anon_mkdir_write_enable=YES
#只可以浏览和下载:
local_root=/home/ftp
anon_world_readable_only=NO
download_enable=NO
anon_other_write_enable=NO
anon_mkdir_write_enable=YES
大家可以发现,无论是哪个虚拟用户,登录后所在的目录都是/home/ftpsite,即都是guest用户的自家目录。下面,介绍如何为每个虚拟用户建立自家目录。
一种作法是在虚拟用户的个人配置文件中使用local_root选项指定虚拟用户的自家目录。以gou为例,在第上步的基础上,首先/etc/vsftpd_user_conf/gou文件中加入:
local_root=/home/ftpsite/gou
/home/ftpsite下新建gou目录,并将权限设为virtual_user:
1.在account.txt中添加用户名和密码
2.运行如下命令,将用户名和密码添加到数据库中
db_load -T -t hash -f ./account.txt /etc/vsftpd/account.db
3.在/home/ftpsite中新建一个文件夹,与用户明相同
4.在vsftpd_user_conf文件夹下新建和用户名相同的文件,并在其中加入
local_root=/home/ftpsite/用户名