CentOS搭建Vsftpd服务器

转自:http://alca0126.blog.51cto.com/7826974/1754906

一、安装vsftpd服务相关组件

需要安装组件vsftpd pam db4 db4-utils

[[email protected] /]# yum -y install vsftpd*  db4-*

二、建立帐户

建立Vsftpd服务的宿主用户:

[[email protected] /]#useradd vsftpd -s /sbin/nologin

默认Vsftpd的服务宿主用户是root,但是这不符合安全性的需要。这里建立名字为vsftpd的用户,用它来作为支持Vsftpd的服务宿主用户。由于该用户仅用来支持Vsftpd服务用,没有许可它登陆系统的必要,并设定它为不能登陆系统的用户。

建立Vsftpd虚拟宿主用户:

[[email protected] /]#useradd ftpuser -s /sbin/nologin

主要是介绍Vsftp的虚拟用户,虚拟用户并不是系统用户,也就是说这些FTP的用户在系统中是不存在的。他们的总体权限其实是集中寄托在一个在系统中的某一个用户身上的,所谓Vsftpd的虚拟宿主用户,就是这样一个支持着所有虚拟用户的宿主用户。由于他支撑了FTP的所有虚拟的用户,那么他本身的权限将会影响着这些虚拟的用户,因此,处于安全性的考虑,也要非分注意对该用户的权限的控制,该用户也绝对没有登陆系统的必要,这里也设定他为不能登陆系统的用户。

三、调整Vsftpd的配置文件:

编辑配置文件前先备份

[[email protected] /]#cp /etc/vsftpd/vsftpd.conf/etc/vsftpd/vsftpd.conf.backup

编辑主配置文件Vsftpd.conf

[[email protected] /]# vi /etc/vsftpd/vsftpd.conf

原配置文件的修改完全记录,凡是修改的地方都会保留注释原来的配置。原本英语的说明我也不***,供参考对比用。———————————————————————————————————————

# Example config file /etc/vsftpd/vsftpd.conf
#

# The default compiled in settings are fairlyparanoid. This sample file
# loosens things up a bit, to make the ftp daemon more usable.
# Please see vsftpd.conf.5 for all compiled in defaults.
#

# READ THIS: This example file is NOT anexhaustive list of vsftpd options.

# Please read the vsftpd.conf.5 manual page toget a full idea of vsftpd’s

# capabilities.

#

# Allow anonymous FTP? (Beware – allowed bydefault if you comment this out).

#anonymous_enable=YES

anonymous_enable=NO

设定不允许匿名访问

#

# Uncomment this to allow local users to login.

local_enable=YES

设定本地用户可以访问。注意:主要是为虚拟宿主用户,如果该项目设定为NO那么所有虚拟用户将无法访问。

#

# Uncomment this to enable any form of FTPwrite command.

write_enable=YES

设定可以进行写操作。

#

# Default umask for local users is 077. You maywish to change this to 022,

# ifyour users expect that (022 is used by most other ftpd’s)

local_umask=022

设定上传后文件的权限掩码。

#

# Uncomment this to allow the anonymous FTPuser to upload files. This only

# has an effect if the above global write enableis activated. Also, you will

# obviously need to create a directory writableby the FTP user.

#anon_upload_enable=YES

anon_upload_enable=NO

禁止匿名用户上传。

#

# Uncomment this if you want the anonymous FTPuser to be able to create

# new directories.

#anon_mkdir_write_enable=YES

anon_mkdir_write_enable=NO

禁止匿名用户建立目录。

#

# Activate directory messages – messages givento 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 originatefrom port 20 (ftp-data).

connect_from_port_20=YES

设定端口20进行数据连接。

#
# If you want, you can arrange for uploaded anonymous files to be owned by

# a different user. Note! Using “root” foruploaded files is not

# recommended!

#chown_uploads=YES

chown_uploads=NO

设定禁止上传文件更改宿主。

#chown_username=whoever

#

# You may override where the log file goes ifyou like. The default is shown

# below.

xferlog_file=/var/log/vsftpd.log

设定Vsftpd的服务日志保存路径。注意,该文件默认不存在。必须要手动touch出来,并且由于这里更改了Vsftpd的服务宿主用户为手动建立的Vsftpd。必须注意给与该用户对日志的写入权限,否则服务将启动失败。

#

# If you want, you can have your log file instandard ftpd xferlog format

xferlog_std_format=YES

设定日志使用标准的记录格式。

#

# You may change the default value for timingout an idle session.

#idle_session_timeout=600

设定空闲连接超时时间,这里使用默认。将具体数值留给每个具体用户具体指定,当然如果不指定的话,还是使用这里的默认值600,单位秒。

#

# You may change the default value for timingout a data connection.

#data_connection_timeout=120

设定单次最大连续传输时间,这里使用默认。将具体数值留给每个具体用户具体指定,当然如果不指定的话,还是使用这里的默认值120,单位秒。

#

# It is recommended that you define on yoursystem a unique user which the

# ftp server can use as a totally isolated andunprivileged user.

#nopriv_user=ftpsecure

nopriv_user=vsftpd

设定支撑Vsftpd服务的宿主用户为手动建立的Vsftpd用户。注意,一旦做出更改宿主用户后,必须注意一起与该服务相关的读写文件的读写赋权问题。比如日志文件就必须给与该用户写入权限等。

#

# Enable this and the server will recogniseasynchronous ABOR requests. Not

# recommended for security (the code isnon-trivial). Not enabling it,

# however, may confuse older FTP clients.

async_abor_enable=YES

设定支持异步传输功能。

#

# By default the server will pretend to allowASCII mode but in fact ignore

# the request. Turn on the below options tohave the server actually do ASCII

# mangling on files when in ASCII mode.

# Beware that on some FTP servers, ASCIIsupport allows a denial of service

# attack (DoS) via the command “SIZE /big/file”in ASCII mode. Vsftpd

# predicted this attack and has always beensafe, reporting the size of the

# raw file.

# ASCII mangling is a horrible feature of theprotocol.

ascii_upload_enable=YES

ascii_download_enable=YES

设定支持ASCII模式的上传和下载功能。

#

# You may fully customise the login bannerstring:

ftpd_banner=This Vsftp server supports virtual users

设定Vsftpd的登陆标语。

#

# You may specify a file of disallowedanonymous 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 localusers to chroot() to their home

# directory. If chroot_local_user is YES, thenthis list becomes a list of

# users to NOT chroot().

#chroot_list_enable=YES

chroot_list_enable=NO

禁止用户登出自己的FTP主目录。

# (default follows)

#chroot_list_file=/etc/vsftpd/chroot_list

#

# You may activate the “-R” option to thebuiltin ls. This is disabled by

# default to avoid remote users being able tocause excessive I/O on large

# sites. However, some broken FTP clients suchas “ncftp” and “mirror” assume

# the presence of the “-R” option, so there isa strong case for enabling it.

#ls_recurse_enable=YES

ls_recurse_enable=NO

禁止用户登陆FTP后使用”ls -R”的命令。该命令会对服务器性能造成巨大开销。如果该项被允许,那么挡多用户同时使用该命令时将会对该服务器造成威胁。

# When “listen” directive is enabled, vsftpdruns in standalone mode and

# listens on IPv4 sockets. This directivecannot be used in conjunction

# with the listen_ipv6 directive.

listen=YES

设定该Vsftpd服务工作在StandAlone模式下。顺便展开说明一下,所谓StandAlone模式就是该服务拥有自己的守护进程支持,在ps -A命令下我们将可用看到vsftpd的守护进程名。如果不想工作在StandAlone模式下,则可以选择SuperDaemon模式,在该模式下 vsftpd将没有自己的守护进程,而是由超级守护进程Xinetd全权代理,与此同时,Vsftp服务的许多功能将得不到实现。

#

# This directive enables listening on IPv6sockets. To listen on IPv4 and IPv6

# sockets, you must run two copies of vsftpdwhith two configuration files.

# Make sure, that one of the listen options iscommented !!

#listen_ipv6=YES

pam_service_name=vsftpd
设定PAM服务下Vsftpd的验证配置文件名。因此,PAM验证将参考/etc/pam.d/下的vsftpd文件配置。

userlist_enable=YES

设定userlist_file中的用户将不得使用FTP。

tcp_wrappers=YES

设定支持TCP Wrappers。

#KC: The following entries are added forsupporting virtual ftp users.

以下这些是关于Vsftpd虚拟用户支持的重要配置项目。默认Vsftpd.conf中不包含这些设定项目,需要自己手动添加配置。

guest_enable=YES

设定启用虚拟用户功能。

guest_username=ftpuser

指定虚拟用户的宿主用户。

virtual_use_local_privs=YES

设定虚拟用户的权限符合他们的宿主用户。

user_config_dir=/etc/vsftpd/vconf

设定虚拟用户个人Vsftp的配置文件存放路径。也就是说,这个被指定的目录里,将存放每个Vsftp虚拟用户个性的配置文件,一个需要注意的地方就是这些配置文件名必须和虚拟用户名相同。

————————————————————————-———————————————————

保存退出。

四、建立Vsftpd的日志文件,并更该属主为Vsftpd的服务宿主用户:

[[email protected] /]#touch /var/log/vsftpd.log

[[email protected] /]#chown vsftpd.vsftpd/var/log/vsftpd.log

五、建立虚拟用户配置文件存放路径:

[[email protected] /]# mkdir /etc/vsftpd/vconf/


六、制作虚拟用户数据库文件

先建立虚拟用户名单文件:

[[email protected] /]#touch /etc/vsftpd/virtusers

建立了一个虚拟用户名单文件,这个文件就是来记录vsftpd虚拟用户的用户名和口令的数据文件,我这里给它命名为virtusers。为了避免文件的混乱,我把这个名单文件就放置在/etc/vsftpd/下。

编辑虚拟用户名单文件:

[[email protected] /]#vi /etc/vsftpd/virtusers

—————————-————————-————————-————————-————————-—

ftpuser01

123456

ftpuser02

123456

ftpuser03

123456

—————————-————————-————————-————————-————————-—

编辑这个虚拟用户名单文件,在其中加入用户的用户名和口令信息。格式很简单:“一行用户名,一行口令”。

 

生成虚拟用户数据文件:

[[email protected] /]#db_load -T -t hash -f/etc/vsftpd/virtusers /etc/vsftpd/virtusers.db

察看生成的虚拟用户数据文件

[[email protected] /]# ll /etc/vsftpd/virtusers.db

-rw-r–r– 1 root root 12288 Sep 16 03:51/etc/vsftpd/virtusers.db

需要特别注意的是,以后再要添加虚拟用户的时候,只需要按照“一行用户名,一行口令”的格式将新用户名和口令添加进虚拟用户名单文件。但是光这样做还不够,不会生效的哦!还要再执行一遍“ db_load -T -t hash -f 虚拟用户名单文件虚拟用户数据库文件.db ”的命令使其生效才可以!

七、设定PAM验证文件,并指定虚拟用户数据库文件进行读取

察看原来的VsftpPAM验证配置文件:

[[email protected] /]#cat /etc/pam.d/vsftpd

—————————————————————————————————-—————————-

#%PAM-1.0

session   optional     pam_keyinit.so    force revoke

auth      required     pam_listfile.so item=user sense=denyfile=/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

——————————————————————————————————————————--

在编辑前做好备份:

[[email protected] /]#cp /etc/pam.d/vsftpd/etc/pam.d/vsftpd.backup

编辑VsftpdPAM验证配置文件

[[email protected] /]#vi /etc/pam.d/vsftpd

#%PAM-1.0

auth   sufficient     /lib/security/pam_userdb.so     db=/etc/vsftpd/virtusers

account sufficient     /lib/security/pam_userdb.so     db=/etc/vsftpd/virtusers

以上两条是手动添加的,内容是对虚拟用户的安全和帐户权限进行验证。这里的auth是指对用户的用户名口令进行验证。这里的accout是指对用户的帐户有哪些权限哪些限制进行验证。其后的sufficient表示充分条件,也就是说,一旦在这里通过了验证,那么也就不用经过下面剩下的验证步骤了。相反,如果没有通过的话,也不会被系统立即挡之门外,因为sufficient的失败不决定整个验证的失败,意味着用户还必须将经历剩下来的验证审核。

再后面的/lib/security/pam_userdb.so表示该条审核将调用pam_userdb.so这个库函数进行。
最后的db=/etc/vsftpd/virtusers则指定了验证库函数将到这个指定的数据库中调用数据进行验证。(注:如果是64位操作系统lib=lib64)

另外,如果是虚拟用户登录出现503错误,有可能是防火墙或者selinux设置,另外就是注释 /etc/pam.d/vsftpd除vsftpd验证的其他所有行!

八、虚拟用户的配置

 

规划好虚拟用户的主路径:

[[email protected] /]#mkdir /opt/vsftp/

建立测试用户的FTP用户目录:

[[email protected] /]#mkdir /opt/vsftp/kanecruise/ /opt/vsftp/mello/ /opt/vsftp/near/

建立虚拟用户配置文件模版:

[[email protected] /]#cp /etc/vsftpd/vsftpd.conf.backup /etc/vsftpd/vconf/vconf.tmp

定制虚拟用户模版配置文件:

[[email protected] /]#vi /etc/vsftpd/vconf/vconf.tmp

local_root=/opt/vsftp/virtuser

指定虚拟用户的具体主路径。

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=50000

设定该用户的最大传输速率,单位b/s。

——————————–————————————————————————————————

这里将原vsftpd.conf配置文件经过简化后保存作为虚拟用户配置文件的模版。这里将并不需要指定太多的配置内容,主要的框架和限制交由Vsftpd 的主配置文件vsftpd.conf来定义,即虚拟用户配置文件当中没有提到的配置项目将参考主配置文件中的设定。而在这里作为虚拟用户的配置文件模版只需要留一些和用户流量控制,访问方式控制的配置项目就可以了。这里的关键项是local_root这个配置,用来指定这个虚拟用户的FTP主路径。

更改虚拟用户的主目录的属主为虚拟宿主用户:

[[email protected] /]#chown -R ftpuser.ftpuser /opt/vsftp/

检查权限:

[[email protected] /]#ll /opt/vsftp/

total 24

drwxr-xr-x 2 ftpuser.ftpuser  4096 Sep 16 05:14 ftpuser01

drwxr-xr-x 2 ftpuser.ftpuser  4096 Sep 16 05:00 ftpuser02

drwxr-xr-x 2 ftpuser.ftpuser  4096 Sep 16 05:00 ftpuser03

九、给测试用户定制:

 从虚拟用户模版配置文件复制:

[[email protected] /]#cp /etc/vsftpd/vconf/vconf.tmp/etc/vsftpd/vconf/ftpuser01

针对具体用户进行定制:

[[email protected] /]#vi /etc/vsftpd/vconf/ftpuser01

———————————————————————————————————————————

local_root=/opt/vsftp/ftpuser01

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=25000

十、启动服务:

[[email protected] /]#service vsftpd start

Starting vsftpd forvsftpd:                               [ OK ]

如果想把虚拟用户锁定在其用户根目录请在/etc/vsftpd/配制vsftpd.conf

第一种方法:

chroot_local_user=NO
chroot_list_enable=YES
chroot_list_file=/etc/vsftpd.chroot_list
然后,在/etc/vsftpd.chroot_list文件中加入虚拟用户名。

第二种方法:

在配置文件中修改chroot_local_user=YES。

时间: 2024-10-04 17:33:48

CentOS搭建Vsftpd服务器的相关文章

CentOS 6.x上搭建vSFTPD服务器搭建与配置详解

摘要: 手把手教你搭建vsftpd服务器,实现了基于db文件和MySQL数据库文件进行虚拟用户认证,当然了也本文章也包含搭建过程中问题的排查啦,哈哈哈. 另外,我在CentOS 7.x上也进行了搭建测试,步骤一致,个别命令会有不同,但不影响测试效果. 服务器部署需求分析(实现效果): 1.登录.传输全程进行加密处理. 2.记录用户上传.下载文件日志. 3.针对每个用户有公共文件夹(大家都可以看到和下载其中的文件)和私有文件夹(只有自己可以看到,并且可上传下载文件). 一.vsftpd服务安装:

在centos中搭建vsftpd服务器

最近在学习linux的知识,在学习中是一步一个坑,没点脾气,谁让我啥都不会呢. 搭建vsftpd服务器步骤: 1.查看本机是否安装了vsftpd,命令rpm -qa|grep vsftpd 2.如果已经安装了,则打开配置文件,命令vim vsftpd.conf 3.如果没有安装则,用yum安装 yum -y install vsftpd, 4.在根目录下创建一个文件夹mkdir ftpfile 5.增加一个用户 useradd ftpuser -d /ftpfile -s /sbin/nolog

在CentOS搭建Git服务器 转

在CentOS搭建Git服务器 来自 :http://www.jianshu.com/p/69ea5ded3ede 前言 我们可以GitHub发布一些开源代码的公共仓库,但对于私密仓库就需要收费了.公司内部通常会搭建自己的Git服务器,我也通过在自己的服务器上搭建练习一下. 开始前先说一下服务器信息,这里是阿里云的CentOS 6.5 64位操作系统. 一 确认服务器是否安装Git [[email protected] git]# rpm -qa gitgit-1.7.1-3.el6_4.1.x

centos搭建samba服务器

centos搭建samba服务器 Samba是在Linux和UNIX系统上实现SMB协议的一个免费软件,由服务器及客户端程序构成.SMB(Server Messages Block,信息服务块)是一种在局域网上共享文件和打印机的一种通信协议,它为局域网内的不同计算机之间提供文件及打印机等资源的共享服务.SMB协议是客户机/服务器型协议,客户机通过该协议可以访问服务器上的共享文件系统.打印机及其他资源.通过设置"NetBIOS over TCP/IP"使得Samba不但能与局域网络主机分

Linux(CentOS)搭建SVN服务器全攻略

虽然在windows上搭建SVN很简单,但是效能却不高,这当然是和linux相比了.然而在linux上搭建SVN却非常繁琐,所以今天这篇文章就来一步一步教您如何在Centos上搭建SVN 安装#yum install subversion 1)创建svn用户#groupadd svn#useradd -g sky user//是将user加入到sky組內切换用户#su svn以后代码库的创建维护等,都用这个帐户来操作. 2)创建版本库编辑.bash_profile 加上如下配置SVN_HOME=

[记录]CentOS搭建SVN服务器(主从同步)

CentOS搭建SVN服务器(主从同步)1.安装步骤如下: 1)安装: #yum install subversion 2)查看安装位置: #rpm -ql subversion 3)查看版本: #/usr/bin/svnversion --version2.创建svn版本库目录 #mkdir -p /var/svn/svnrepos3.创建版本库 #svnadmin create /var/svn/svnrepos4.进入/var/svn/svnrepos/conf目录 1)authz文件是权

CentOS搭建Git服务器及权限管理

声明:本教程,仅作为配置的记录,细节不展开,需要您有一点linux的命令基础,仅作为配置参考. 1. 系统环境 系统: Linux:CentOS 7.2 64位 由于CentOS已经内置了OpenSSH,如果您的系统没有,请自行安装. 查看ssh版本 $ ssh -V # 输出以下表示没问题,可以继续. 版本可能不一致,能用即可. OpenSSH_6.6.1p1, OpenSSL 1.0.1e-fips 11 Feb 2013 避免系统环境和其他的不一致,请核对您系统的版本,其他发行版请对应修改

使用Linux(CentOS) 搭建SVN服务器全攻略

本文主要讲解Linux搭建SVN服务器,希望对大家的学习有所帮助. 因为现在在公司用到这个svn高大上工具,很方便管理一个部门所有人统一查看文件和共享,可以在线更新文档上.所以在这里我就很详细给大家操作搭建下服务以及使用. 1.什么是SVN(subversion) 什么是svn呢?简单的说,您可以把svn当作你的备份服务器,更好的是,他可以帮助您记住你共享文件和创建文件每次上传到这个服务器的档案内容.并且自动的赋予每次的变更一个版本. 2.为什么要用SVN (1). 备份工作档案的重要性,你永远

2-6-RHEL6.5搭建vsftpd服务器案例分析与总结(Red Hat Enterprise Linux Server6.3)@树袋飘零

本节内容介绍: 一.FTP简介 二.vsftpd服务器的安装 三.vsftpd服务器配置 四.vsftpd案例分析 五.vsftpd虚拟主机 六.虚拟账户 FTP简介 FTP(File Transfer Protocol)是Internet上提供文件传输的协议,,它采用c/s结构的工作模式.FTP的初衷就是为了解决存在于复杂的计算机环境中的操作系统多样化的问题,FTP为所有的使用此服务的主机建立了统一的机制协议,这样尽管大家都个性十足,但是都遵守FTP协议,文件的沟通传输也就能顺利畅通了.FTP