centos vsftp

CentOS vsftp更新了很多版本更新,我本人认为CentOS vsftp很好使的文件系统,在此向大家推荐。如今技术不断更新,各种使用文件都已经淘汰。我认为还是有很不错的如CentOS vsftp值得大家来运用。CentOS下的vsftp

一.安装:

1.安装CentOS vsftp服务相关部件:
[root@KcentOS5 ~]# yum install vsftpd*

2.确认安装PAM服务相关部件:
[root@KcentOS5 ~]# yum install pam*开发包,其实不装也没有关系,主要的目的是确认PAM。

3.安装DB4部件包:
这里要特别安装一个db4的包,用来支持文件数据库。
[root@KcentOS5 ~]# yum install db4*

二.系统帐户

1.建立CentOS vsftp服务的宿主用户:

  1. [root@CentOS5/]#chmod700/home/vftpsite
  2. [root@KcentOS5~]#useraddvsftpd-s/sbin/nologin

默认的CentOS vsftp的服务宿主用户是root,但是这不符合安全性的需要。这里建立名字为CentOS vsftp的用户,用他来作为支持CentOS vsftp的服务宿主用户。由于该用户仅用来支持CentOS vsftp服务用,因此没有许可他登陆系统的必要,并设定他为不能登陆系统的用户。[root@CentOS5 /]#useradd –d /home/vftpsite –s /sbin/nologin vftpuser

2.建立CentOS vsftp虚拟宿主用户:

[root@KcentOS5 nowhere]# useradd overlord -s /sbin/nologin本篇主要是介绍CentOS vsftp的虚拟用户,虚拟用户并不是系统用户,也就是说这些FTP的用户在系统中是不存在的。他们的总体权限其实是集中寄托在一个在系统中的某一个用户身上的,所谓CentOS vsftp的虚拟宿主用户,就是这样一个支持着所有虚拟用户的宿主用户。

由于他支撑了FTP的所有虚拟的用户,那么他本身的权限将会影响着这些虚拟的用户,因此,处于安全性的考虑,也要非分注意对该用户的权限的控制,该用户也绝对没有登陆系统的必要,这里也设定他为不能登陆系统的用户。

(这里插一句:原本在建立上面两个用户的时候,想连用户主路径也不打算给的。本来想加上 -d /home/nowhere 的,据man useradd手册上讲
述:“ -d, --home HOME_DIRThe new user will be created using HOME_DIR as the value for theuser鈙 login directory. The default is to append the LOGIN name to
BASE_DIR and use that as the login directory name. The directoryHOME_DIR does not have to exist but will not be created if it ismissing.

使用-d参数指定用户的主目录,用户主目录并不是必须存在的。如果没有存在指定的目录的话,那么它将不会被建立”。结果我尝试 -d /home/nowhere 指定到一个并不存在的目录的时候,我KAO!竟然给我自己新建了一个= =#)

三.调整CentOS vsftp的配置文件:

1.编辑配置文件前先备份
[root@KcentOS5 ~]# cp /etc/vsftpd/vsftpd.conf /etc/vsftpd/vsftpd.conf.backup

2.编辑主配置文件Vsftpd.conf
[root@KcentOS5 ~]# vi /etc/vsftpd/vsftpd.conf

这里我将原配置文件的修改完全记录,凡是修改的地方我都会保留注释原来的配置。其中加入我对每条配置项的认识,对于一些比较关键的配置项这里我做了我的观点,并且原本英语的说明我也不删除,供参考对比用。

  1. #Exampleconfigfile/etc/vsftpd/vsftpd.conf
  2. #
  3. #Thedefaultcompiledinsettingsarefairlyparanoid.Thissamplefile
  4. #loosensthingsupabit,tomaketheftpdaemonmoreusable.
  5. #Pleaseseevsftpd.conf.5forallcompiledindefaults.
  6. #
  7. #READTHIS:ThisexamplefileisNOTanexhaustivelistofvsftpdoptions.
  8. #Pleasereadthevsftpd.conf.5manualpagetogetafullideaofvsftpd's
  9. #capabilities.
  10. #
  11. #AllowanonymousFTP?(Beware-allowedbydefaultifyoucommentthisout).
  12. #anonymous_enable=YES
  13. anonymous_enable=NO

设定不允许匿名访问# Uncomment this to allow local users to log in.local_enable=YES设定本地用户可以访问。注意:主要是为虚拟宿主用户,如果该项目设定为NO那么所有虚拟用户将无法访问。# Uncomment this to enable any form of FTP write command.
write_enable=YES设定可以进行写操作。

  1. #Defaultumaskforlocalusersis077.Youmaywishtochangethisto022,
  2. #ifyourusersexpectthat(022isusedbymostotherftpd's)
  3. local_umask=022

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

  1. #
  2. #UncommentthistoallowtheanonymousFTPusertouploadfiles.Thisonly
  3. #hasaneffectiftheaboveglobalwriteenableisactivated.Also,youwill
  4. #obviouslyneedtocreateadirectorywritablebytheFTPuser.
  5. #anon_upload_enable=YES
  6. anon_upload_enable=NO

禁止匿名用户上传。

  1. #UncommentthisifyouwanttheanonymousFTPusertobeabletocreate
  2. #newdirectories.
  3. #anon_mkdir_write_enable=YES
  4. anon_mkdir_write_enable=NO

禁止匿名用户建立目录。

  1. #Activatedirectorymessages-messagesgiventoremoteuserswhenthey
  2. #gointoacertaindirectory.
  3. dirmessage_enable=YES

设定开启目录标语功能。# Activate logging of uploads/downloads.xferlog_enable=YES设定开启日志记录功能。# Make sure PORT transfer connections originate from port 20 (ftp-data).connect_from_port_20=YES设定端口20进行数据连接。

  1. #Ifyouwant,youcanarrangeforuploadedanonymousfilestobeownedby
  2. #adifferentuser.Note!Using"root"foruploadedfilesisnot
  3. #recommended!
  4. #chown_uploads=YES
  5. chown_uploads=NO

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

  1. #chown_username=whoever
  2. #
  3. #Youmayoverridewherethelogfilegoesifyoulike.Thedefaultisshown
  4. #below.
  5. xferlog_file=/var/log/vsftpd.log

设定Vsftpd的服务日志保存路径。注意,该文件默认不存在。必须要手动touch出来,并且由于这里更改了CentOS vsftp的服务宿主用户为手动建立的CentOS vsftp。必须注意给与该用户对日志的写入权限,否则服务将启动失败。# If you want, you can have your log file in standard ftpd xferlog formatxferlog_std_format=YES

设定日志使用标准的记录格式。# You may change the default value for timing out an idle session.#idle_session_timeout=600设定空闲连接超时时间,这里使用默认。将具体数值留给每个具体用户具体指定,当然如果不指定的话,还是使用这里的默认值600,单位秒。# You may change the default value for timing out a data connection.#data_connection_timeout=120

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

  1. #Itisrecommendedthatyoudefineonyoursystemauniqueuserwhichthe
  2. #ftpservercanuseasatotallyisolatedandunprivilegeduser.
  3. #nopriv_user=ftpsecure
  4. nopriv_user=vsftpd

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

  1. #EnablethisandtheserverwillrecogniseasynchronousABORrequests.Not
  2. #recommendedforsecurity(thecodeisnon-trivial).Notenablingit,
  3. #however,mayconfuseolderFTPclients.
  4. async_abor_enable=YES

设定支持异步传输功能。

  1. #
  2. #BydefaulttheserverwillpretendtoallowASCIImodebutinfactignore
  3. #therequest.TurnonthebelowoptionstohavetheserveractuallydoASCII
  4. #manglingonfileswheninASCIImode.
  5. #BewarethatonsomeFTPservers,ASCIIsupportallowsadenialofservice
  6. #attack(DoS)viathecommand"SIZE/big/file"inASCIImode.vsftpd
  7. #predictedthisattackandhasalwaysbeensafe,reportingthesizeofthe
  8. #rawfile.
  9. #ASCIImanglingisahorriblefeatureoftheprotocol.
  10. ascii_upload_enable=YES
  11. ascii_download_enable=YES

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

  1. #Youmayfullycustomisetheloginbannerstring:
  2. ftpd_banner=ThisVsftpserversupportsvirtualusers^_^

设定CentOS vsftp的登陆标语。

  1. #
  2. #Youmayspecifyafileofdisallowedanonymouse-mailaddresses.Apparently
  3. #usefulforcombattingcertainDoSattacks.
  4. #deny_email_enable=YES
  5. #(defaultfollows)
  6. #banned_email_file=/etc/vsftpd/banned_emails
  7. #
  8. #Youmayspecifyanexplicitlistoflocaluserstochroot()totheirhome
  9. #directory.Ifchroot_local_userisYES,thenthislistbecomesalistof
  10. #userstoNOTchroot().
  11. #chroot_list_enable=YES
  12. chroot_list_enable=NO

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

  1. #(defaultfollows)
  2. #chroot_list_file=/etc/vsftpd/chroot_list
  3. #
  4. #Youmayactivatethe"-R"optiontothebuiltinls.Thisisdisabledby
  5. #defaulttoavoidremoteusersbeingabletocauseexcessiveI/Oonlarge
  6. #sites.However,somebrokenFTPclientssuchas"ncftp"and"mirror"assume
  7. #thepresenceofthe"-R"option,sothereisastrongcaseforenablingit.
  8. #ls_recurse_enable=YES
  9. ls_recurse_enable=NO

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

  1. #When"listen"directiveisenabled,vsftpdrunsinstandalonemodeand
  2. #listensonIPv4sockets.Thisdirectivecannotbeusedinconjunction
  3. #withthelisten_ipv6directive.
  4. listen=YES

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

  1. #
  2. #ThisdirectiveenableslisteningonIPv6sockets.TolistenonIPv4andIPv6
  3. #sockets,youmustruntwocopiesofvsftpdwhithtwoconfigurationfiles.
  4. #Makesure,thatoneofthelistenoptionsiscommented!!
  5. #listen_ipv6=YES
  6. pam_service_name=vsftpd


设定PAM服务下CentOS vsftp的验证配置文件名。因此,PAM验证将参考/etc/pam.d/下的CentOS vsftp文件配置。userlist_enable=YES设定userlist_file中的用户将不得使用FTP。tcp_wrappers=YES设定支持TCP Wrappers。

#KC: The following entries are added for supporting virtual ftp users.以下这些是关于CentOS vsftp虚拟用户支持的重要配置项目。默认Vsftpd.conf中不包含这些设定项目,需要自己手动添加配置。guest_enable=YES设定启用虚拟用户功能。

guest_username=overlord指定虚拟用户的宿主用户。virtual_use_local_privs=YES设定虚拟用户的权限符合他们的宿主用户。user_config_dir=/etc/vsftpd/vconf设定虚拟用户个人Vsftp的配置文件存放路径。也就是说,这个被指定的目录里,将存放每个Vsftp虚拟用户个性的配置文件,一个需要注意的地方就是这些配置文件名必须和虚拟用户名相同。保存退出。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值