vsftpd 是"very secure FTP daemon"的缩写,安全性是它的一个最大的特点。vsftpd 是一个 UNIX 类操作系统上运行的服务器的名字,它可以运行在诸如 Linux、BSD、Solaris、 HP-UNIX等系统上面,是一个完全免费的、开发源代码的ftp服务器软件,支持很多其他的 FTP 服务器所不支持的特征。比如:非常高的安全性需求、带宽限制、良好的可伸缩性、可创建虚拟用户、支持IPv6、速率高等
下面详细讲解svftpd服务的安装
环境:CentOS 6.3_64 操作系统
一.安装:
1.安装Vsftpd服务相关部件: 检查是否已经安装vsftpd
rpm -qa|grep vsftpd安装则卸载,本机已经安装了,会出现如下内容:
vsftpd-2.2.2-11.el6.4.1.X86_64卸载:
rpm -e vsftpd-2.2.2-11.el6.4.1.X86_64 yum install vsftpd*2.确认安装PAM服务相关部件:
yum install pam*3.安装DB4部件包:
yum install db4*二.系统帐户
useradd vsftpd -s /sbin/nologin默认的Vsftpd的服务宿主用户是root,但是这不符合安全性的需要。这里建立名字为vsftpd的用户,用他来作为支持Vsftpd的服务宿主用户。由于该用户仅用来支持Vsftpd服务用,因此没有许可他登陆系统的必要,并设定他为不能登陆系统的用户。 2.建立Vsftpd虚拟宿主用户:
useradd ftper -s /sbin/nologin本篇主要是介绍Vsftp的虚拟用户,虚拟用户并不是系统用户,也就是说这些FTP的用户在系统中是不存在的。他们的总体权限其实是集中寄托在一个在系统中的某一个用户身上的,所谓Vsftpd的虚拟宿主用户,就是这样一个支持着所有虚拟用户的宿主用户。由于他支撑了FTP的所有虚拟的用户,那么他本身的权限将会影响着这些虚拟的用户,因此,处于安全性的考虑,该用户也绝对没有登陆系统的必要,这里也设定他为不能登陆系统的用户三.调整Vsftpd的配置文件:
vi /etc/vsftpd/vsftpd.conf下面是原配置文件的详细说明
# Allow anonymous FTP? (Beware - allowed by default if you comment this out).
#anonymous_enable=YES
#是否允许匿名访问
anonymous_enable=NO
#
# Uncomment this to allow local users to log in.
#设定本地用户可以访问。注意:主要是为虚拟宿主用户,如果该项目设定为NO那么所有虚拟用户将无法访问。
local_enable=YES
#
# Uncomment this to enable any form of FTP write command.
#设定可以进行写操作。
write_enable=YES
#
# Default umask for local users is 077. You may wish to change this to 022,
# if your users expect that (022 is used by most other ftpd's)
#设定上传后文件的权限掩码。
local_umask=022
#
# Uncomment this to allow the anonymous FTP user to upload files. This only
# has an effect if the above global write enable is activated. Also, you will
# obviously need to create a directory writable by the FTP user.
#anon_upload_enable=YES
#禁止匿名用户上传
anon_upload_enable=NO
#
# Uncomment this if you want the anonymous FTP user to be able to create
# new directories.
#anon_mkdir_write_enable=YES
#禁止匿名用户建立目录。
anon_mkdir_write_enable=NO
#
# Activate directory messages - messages given to remote users when they
# go into a certain directory.
#设定开启目录标语功能
dirmessage_enable=YES
#
# Activate logging of uploads/downloads.
#设定开启日志记录功能
xferlog_enable=YES
#
# Make sure PORT transfer connections originate from port 20 (ftp-data).
#设定端口20进行数据连接。
connect_from_port_20=YES
#
# If you want, you can arrange for uploaded anonymous files to be owned by
# a different user. Note! Using "root" for uploaded files is not
# recommended!
#chown_uploads=YES
#设定禁止上传文件更改宿主。
chown_uploads=NO
#chown_username=whoever
#
# You may override where the log file goes if you like. The default is shown
# below.
#设定Vsftpd的服务日志保存路径。注意,该文件默认不存在。必须要手动touch出来,并且由于这里更改了Vsftpd的服务宿主用户为手动建立的Vsftpd。必须注意给与该用户对日志的写入权限,否则服务将启动失败。
xferlog_file=/var/log/vsftpd.log
#
# If you want, you can have your log file in standard ftpd xferlog format
#设定日志使用标准的记录格式。
xferlog_std_format=YES
#
# You may change the default value for timing out an idle session.
#设定空闲连接超时时间,这里使用默认。将具体数值留给每个具体用户具体指定,当然如果不指定的话,还是使用这里的默认值600,单位秒。
#idle_session_timeout=600
#
# You may change the default value for timing out a data connection.
#设定单次最大连续传输时间,这里使用默认。将具体数值留给每个具体用户具体指定,当然如果不指定的话,还是使用这里的默认值120,单位秒。
#data_connection_timeout=120
# It is recommended that you define on your system a unique user which the
# ftp server can use as a totally isolated and unprivileged user.
#nopriv_user=ftpsecure
#设定支撑Vsftpd服务的宿主用户为手动建立的Vsftpd用户。注意,一旦做出更改宿主用户后,必须注意一起与该服务相关的读写文件的读写赋权问题。比如日志文件就必须给与该用户写入权限等。
nopriv_user=vsftpd
# Enable this and the server will recognise asynchronous ABOR requests. Not
# recommended for security (the code is non-trivial). Not enabling it,
# however, may confuse older FTP clients.
#设定支持异步传输功能。
async_abor_enable=YES
# By default the server will pretend to allow ASCII mode but in fact ignore
# the request. Turn on the below options to have the server actually do ASCII
# mangling on files when in ASCII mode.
# Beware that on some FTP servers, ASCII support allows a denial of service
# attack (DoS) via the command "SIZE /big/file" in ASCII mode. vsftpd
# predicted this attack and has always been safe, reporting the size of the
# raw file.
# ASCII mangling is a horrible feature of the protocol.
#设定支持ASCII模式的上传和下载功能。
ascii_upload_enable=YES
ascii_download_enable=YES
#
# You may fully customise the login banner string:
#设定Vsftpd的登陆标语。
ftpd_banner=This Vsftp server supports virtual users ^_^
#
# You may specify a file of disallowed anonymous e-mail addresses. Apparently
# useful for combatting certain DoS attacks.
#deny_email_enable=YES
# (default follows)
#banned_email_file=/etc/vsftpd/banned_emails
#
# You may specify an explicit list of local users to chroot() to their home
# directory. If chroot_local_user is YES, then this list becomes a list of
# users to NOT chroot().
#chroot_list_enable=YES
#禁止用户登出自己的FTP主目录。
chroot_list_enable=NO
# (default follows)
#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
#禁止用户登陆FTP后使用"ls -R"的命令。该命令会对服务器性能造成巨大开销。如果该项被允许,那么挡多用户同时使用该命令时将会对该服务器造成威胁。
ls_recurse_enable=NO
# When "listen" directive is enabled, vsftpd runs in standalone mode and
# listens on IPv4 sockets. This directive cannot be used in conjunction
# with the listen_ipv6 directive.
#设定该Vsftpd服务工作在StandAlone模式下。顺便展开说明一下,所谓StandAlone模式就是该服务拥有自己的守护进程支持,在ps -A命令下我们将可用看到vsftpd的守护进程名。
#如果不想工作在StandAlone模式下,则可以选择SuperDaemon模式,在该模式下 vsftpd将没有自己的守护进程,而是由超级守护进程Xinetd全权代理,与此同时,Vsftp服务的许多功能将得不到实现。
listen=YES
#
# This directive enables listening on IPv6 sockets. To listen on IPv4 and IPv6
# sockets, you must run two copies of vsftpd whith two configuration files.
# Make sure, that one of the listen options is commented !!
#listen_ipv6=YES
#设定PAM服务下Vsftpd的验证配置文件名。因此,PAM验证将参考/etc/pam.d/下的vsftpd文件配置
pam_service_name=vsftpd
#设定userlist_file中的用户将不得使用FTP。
userlist_enable=YES
#设定支持TCP Wrappers。#KC: The following entries are added for supporting virtual ftp users
tcp_wrappers=YES
#默认Vsftpd.conf中不包含这些设定项目,需要自己手动添加配置。
#设定启用虚拟用户功能。
guest_enable=YES
#指定虚拟用户的宿主用户。
guest_username=ftper
#设定虚拟用户的权限符合他们的宿主用户。这个被指定的目录里,将存放每个Vsftp虚拟用户个性的配置文件,一个需要注意的地方就是这些配置文件名必须和虚拟用户名相同。
virtual_use_local_privs=YES
#设定虚拟用户个人Vsftp的配置文件存放路径,这个被指定的目录里,将存放每个Vsftp虚拟用户个性的配置文件,一个需要注意的地方就是这些配置文件名必须和虚拟用户名相同。
user_config_dir=/etc/vsftpd/vconf
注意上面画红线的地方!
3.建立Vsftpd的日志文件,并更该属主为Vsftpd的服务宿主用户:touch /var/log/vsftpd.log chown vsftpd.vsftpd /var/log/vsftpd.log
4.建立虚拟用户配置文件存放路径:
mkdir /etc/vsftpd/vconf/三.制作虚拟用户数据库文件
touch /etc/vsftpd/virtusers建立了一个虚拟用户名单文件,这个文件就是来记录vsftpd虚拟用户的用户名和口令的数据文件,我这里给它命名为virt_ftp_user。为了避免文件的混乱,我把这个名单文件就放置在/etc/vsftpd/下。
vi /etc/vsftpd/ftp_user
----------------------------
designer
123456
ben
123456
----------------------------
编辑这个虚拟用户名单文件,在其中加入用户的用户名和口令信息。格式很简单:"一行用户名,一行口令"。
db_load -T -t hash -f /etc/vsftpd/ftp_user /etc/vsftpd/ftp_user.db这个命令简单说明一下
ll /etc/vsftpd/ftp_user.db需要特别注意的是,以后再要添加虚拟用户的时候,只需要按照"一行用户名,一行口令"的格式将新用户名和口令添加进虚拟用户名单文件。但是光这样做还不够,不会生效的哦!还要再执行一遍" db_load -T -t hash -f 虚拟用户名单文件 虚拟用户数据库文件.db "的命令使其生效才可以!
四.设定PAM验证文件,并指定虚拟用户数据库文件进行读取
1.察看原来的Vsftp的PAM验证配置文件:
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----------------------------------------------------------------
2.在编辑前做好备份: cp /etc/pam.d/vsftpd /etc/pam.d/vsftpd.bak 编辑Vsftpd的PAM验证配置文件
vi /etc/pam.d/vsftpd ---------------------------------------------------------------- #%PAM-1.0 auth sufficient /lib/security/pam_userdb.so db=/etc/vsftpd/ftp_user.db account sufficient /lib/security/pam_userdb.so db=/etc/vsftpd/ftp_user.db
注意:画红线的地方有点系统是相当路径,把前面的/lib/security去掉,只留:pam_userdb.so
在原来的基础上加上以上两条,内容是对虚拟用户的安全和帐户权限进行验证。 这里的auth是指对用户的用户名口令进行验证。 这里的accout是指对用户的帐户有哪些权限哪些限制进行验证。 其后的sufficient表示充分条件,也就是说,一旦在这里通过了验证,那么也就不用经过下面剩下的验证步骤了。相反,如果没有通过的话,也不会被系统立即挡之门外,因为sufficient的失败不决定整个验证的失败,意味着用户还必须将经历剩下来的验证审核。 再后面的/lib/security/pam_userdb.so表示该条审核将调用pam_userdb.so这个库函数进行。 最后的db=/etc/vsftpd/virtusers则指定了验证库函数将到这个指定的数据库中调用数据进行验证。 ---------------------------------------------------------------- 五.虚拟用户的配置 1.建立测试用户的FTP用户目录:
mkdir /home/ftper/designer/ /home/ftper/ben/(注意要建立在/home/${虚拟用户}/下)
cp /etc/vsftpd/vsftpd.conf.bak /etc/vsftpd/vconf/vconf.tmp4.定制虚拟用户模版配置文件:
vi /etc/vsftpd/vconf/vconf.tmp anonymous_enable=NO 设定不允许匿名用户访问。 write_enable=YES 设定允许写操作。 local_umask=022 设定上传文件权限掩码。 anon_upload_enable=NO 设定不允许匿名用户上传。 anon_mkdir_write_enable=NO 设定不允许匿名用户建立目录。 idle_session_timeout=600 设定空闲连接超时时间。 data_connection_timeout=120 设定单次连续传输最大时间。 max_clients=10 设定并发客户端访问个数。 max_per_ip=5 设定单个客户端的最大线程数,这个配置主要来照顾Flashget、迅雷等多线程下载软件。 local_max_rate=2048000 设定该用户的最大传输速率,单位b/s。这里将原vsftpd.conf配置文件经过简化后保存作为虚拟用户配置文件的模版。这里将并不需要指定太多的配置内容,主要的框架和限制交由 Vsftpd的主配置文件vsftpd.conf来定义,即虚拟用户配置文件当中没有提到的配置项目将参考主配置文件中的设定。而在这里作为虚拟用户的配置文件模版只需要留一些和用户流量控制,访问方式控制的配置项目就可以了。这里的关键项是local_root这个配置,用来指定这个虚拟用户的FTP主路径。5.更改虚拟用户的主目录的属主为虚拟宿主用户:
chown -R ftper.ftper /home/ftper/
6.检查权限:
ll /opt/vsftp/total 24 drwxr-xr-x 2 ftper ftper 4096 Sep 16 05:14 designer drwxr-xr-x 2 ftper ftper 4096 Sep 16 05:00 ben 六.给测试用户定制: 1.从虚拟用户模版配置文件复制:
cp /etc/vsftpd/vconf/vconf.tmp /etc/vsftpd/vconf/ben
2.针对具体用户进行定制:
vi /etc/vsftpd/vconf/ben --------------------------------- local_root=/home/ftper/ben anonymous_enable=NO write_enable=YES local_umask=022 anon_upload_enable=NO anon_mkdir_write_enable=NO idle_session_timeout=300 data_connection_timeout=90 max_clients=1 max_per_ip=1 local_max_rate=2048000#该值控制上传每秒字节大小,大小直接影响到上传速度七.启动服务 service vsftpd start Starting vsftpd for vsftpd: [ OK ]
八.测试: 1.在虚拟用户目录中预先放入文件: touch /home/ftper/ben/ftp.test
2.从其他机器作为客户端登陆FTP:
ftp ftp> open 192.168.1.108
Connected to 192.168.1.108. ...
3.测试列单操作 ftp> ls -rw-r--r-- 1 501 501 0 Sep 15 21:14 kc.test 226 Directory send OK.(目录列单成功)
4.测试上传操作: ftp> put (local-file) upfilt.test
(remote-file) upfilt.test local: upfilt.test remote: upfilt.test 227 Entering Passive Mode (192,168,1,108,230,1) 150 Ok to send data. 226 File receive OK. (上传成功) 699 bytes sent in 0.024 seconds (29 Kbytes/s) ftp>
5.测试建立目录操作: ftp> mkdir test 257 "/home/ftper/ben/test" created (目录建立成功)
6.测试下载操作: ftp> get ftp.test local: ftp.test remote: ftp.test 227 Entering Passive Mode (192,168,1,108,164,178) 150 Opening BINARY mode data connection for kc.test (0 bytes). 226 File send OK.(下载成功)
7.测试超时: ftp> dir 421 Timeout.(超时有效) ftp> user -------------------------------------------------------------------- 原因:虚拟用户再丰富,其实也是基于它们的宿主用户ftper的,如果ftper这个虚拟用户的宿主被限制住了,那么虚拟用户也将受到限制。 补充:
500 OOPS:错误
有可能是你的vsftpd.con配置文件中有不能被实别的命令,还有一种可能是命令的YES 或 NO 后面有空格。
我遇到的是命令后面有空格。因为我是用GEDIT来编辑的配置文件
550 权限错误,不能创建目录和文件
附:
对于要想让Root有权限登录,直接编辑/etc/vsftpd/ftpusers 和/etc/vsftpd/user_list文件,将Root从里面注释掉即可,
然后从新启动vsftpd即可
service vsftpd restart
设置开机自启动:
开机默认VSFTPD服务自动启动:
方法一: chkconfig --list|grep vsftpd ( 查看当前vsftpd是否开机自启动) --vsftpd 0:off 1:off 2:off 3:off 4:off 5:off 6:off chkconfig vsftpd on #执行ON设置 方法二: 修改 /etc/rc.local , 把行/usr/local/sbin/vsftpd & 插入文件中,以实现开机自动启动。 方法三:修改/etc/rc.local,加入/etc/rc.d/init.d/vsftpd start
导致ftp配置失败的常见的错误:
1.有的登录不了的原因可能是linux开启的防火墙,在防火墙里设置开发21端口即可:
vi /etc/sysconfig/iptables
加入:
-A INPUT -m state --state ESTABLISHED RELATED -j ACCEPT -A INPUT -M state --state NEW -m tcp -p tcp --dport 21 -j ACCEPT
然后重启ftp服务:
service vsftpd restart
2.ftp服务器连接失败,错误提示:
500 OOPS: child died
解决办法:查看ftp_home_dir或者ftpd_disable_trans是否有一个启动,
[root@ben]# sestatus -b| grep ftp
allow_ftpd_anon_write off
注意:不同的系统ftp的解决方案不同,像我的centos6.3就没有ftpd_disable_trans这项,只有ftp_home_dir
我们把本机存在的两者的任意一个设置为on即可:
setsebool -P ftpd_disable_trans on
或者:
setsebool -P ftp_home_dir on
前提是他们在刚才查看的列表中存在!
然后重启vsftpd服务即可:
service vsftpd restart