用tar包配置高可用性vsftp (下)

来源:云南设计港 时间:2007-08-29 13:41:00 

三、附目

1、我的/etc/vsftpd.conf文件的内容


  [quote:93f3c4a2db]#Exampleconfigfile/etc/vsftpd.conf
  #
  #Thedefaultcompiledinsettingsarefairlyparanoid.Thissamplefile
  #loosensthingsupabit,tomaketheftpdaemonmoreusable.
  #Pleaseseevsftpd.conf.5forallcompiledindefaults.
  #
  #READTHIS:ThisexamplefileisNOTanexhaustivelistofvsftpdoptions.
  #Pleasereadthevsftpd.conf.5manualpagetogetafullideaofvsftpd's
  #capabilities.
  #
  #AllowanonymousFTP?(Beware-allowedbydefaultifyoucommentthisout).
  anonymous_enable=NO
  #
  #Uncommentthistoallowlocaluserstologin.
  local_enable=YES
  #
  #UncommentthistoenableanyformofFTPwritecommand.
  write_enable=YES
  #
  #Defaultumaskforlocalusersis077.Youmaywishtochangethisto022,
  #ifyourusersexpectthat(022isusedbymostotherftpd's)
  local_umask=022
  #
  #UncommentthistoallowtheanonymousFTPusertouploadfiles.Thisonly
  #hasaneffectiftheaboveglobalwriteenableisactivated.Also,youwill
  #obviouslyneedtocreateadirectorywritablebytheFTPuser.
  anon_upload_enable=NO
  #
  #UncommentthisifyouwanttheanonymousFTPusertobeabletocreate
  #newdirectories.
  anon_mkdir_write_enable=NO
  #
  #Activatedirectorymessages-messagesgiventoremoteuserswhenthey
  #gointoacertaindirectory.
  dirmessage_enable=YES
  #
  #Activateloggingofuploads/downloads.
  xferlog_enable=YES
  #
  #MakesurePORTtransferconnectionsoriginatefromport20(ftp-data).
  connect_from_port_20=YES
  #
  #Ifyouwant,youcanarrangeforuploadedanonymousfilestobeownedby
  #adifferentuser.Note!Using"root"foruploadedfilesisnot
  #recommended!
  #chown_uploads=YES
  #chown_username=whoever
  #
  #Youmayoverridewherethelogfilegoesifyoulike.Thedefaultisshown
  #below.
  #xferlog_file=/var/log/vsftpd.log
  #
  #Ifyouwant,youcanhaveyourlogfileinstandardftpdxferlogformat
  #xferlog_std_format=YES
  #
  #Youmaychangethedefaultvaluefortimingoutanidlesession.
  #idle_session_timeout=600
  #
  #Youmaychangethedefaultvaluefortimingoutadataconnection.
  #data_connection_timeout=120
  #
  #Itisrecommendedthatyoudefineonyoursystemauniqueuserwhichthe
  #ftpservercanuseasatotallyisolatedandunprivilegeduser.
  #nopriv_user=ftpsecure
  #
  #EnablethisandtheserverwillrecogniseasynchronousABORrequests.Not
  #recommendedforsecurity(thecodeisnon-trivial).Notenablingit,
  #however,mayconfuseolderFTPclients.
  #async_abor_enable=YES
  #
  #BydefaulttheserverwillpretendtoallowASCIImodebutinfactignore
  #therequest.TurnonthebelowoptionstohavetheserveractuallydoASCII
  #manglingonfileswheninASCIImode.
  #Bewarethatturningonascii_download_enableenablesmaliciousremoteparties
  #toconsumeyourI/Oresources,byissuingthecommand"SIZE/big/file"in
  #ASCIImode.
  #TheseASCIIoptionsaresplitintouploadanddownloadbecauseyoumaywish
  #toenableASCIIuploads(topreventuploadedscriptsetc.frombreaking),
  #withouttheDoSriskofSIZEandASCIIdownloads.ASCIImanglingshouldbe
  #ontheclientanyway..
  ascii_upload_enable=YES
  ascii_download_enable=YES
  #
  #Youmayfullycustomisetheloginbannerstring:
  ftpd_banner=WelcometoServ-UFTPserser.#(一个真实的慌言:em02:)
  #
  #Youmayspecifyafileofdisallowedanonymouse-mailaddresses.Apparently
  #usefulforcombattingcertainDoSattacks.
  #deny_email_enable=YES
  #(defaultfollows)
  #banned_email_file=/etc/vsftpd.banned_emails
  #
  #Youmayspecifyanexplicitlistoflocaluserstochroot()totheirhome
  #directory.Ifchroot_local_userisYES,thenthislistbecomesalistof
  #userstoNOTchroot().
  chroot_list_enable=YES
  #(defaultfollows)
  chroot_list_file=/etc/vsftpd.chroot_list
  #
  #Youmayactivatethe"-R"optiontothebuiltinls.Thisisdisabledby
  #defaulttoavoidremoteusersbeingabletocauseexcessiveI/Oonlarge
  #sites.However,somebrokenFTPclientssuchas"ncftp"and"mirror"assume
  #thepresenceofthe"-R"option,sothereisastrongcaseforenablingit.
  #ls_recurse_enable=YES
  chroot_local_user=YES
  listen_port=2121
  listen=yes
  guest_enable=YES
  guest_username=virtual
  pasv_min_port=30000
  pasv_max_port=30999
  pam_service_name=ftp.vu
  anon_world_readable_only=NO
  user_config_dir=/etc/vsftpd_user_conf[/quote:93f3c4a2db]

2、我的/etc/vsftpd_user_conf/download的内容

[quote:93f3c4a2db]anon_world_readable_only=NO[/quote:93f3c4a2db]

3、我的/etc/vsftpd_user_conf/upload的内容


  [quote:93f3c4a2db]anon_world_readable_only=NO
  write_enable=YES
  anon_upload_enable=YES
  anon_mkdir_write_enable=YES[/quote:93f3c4a2db]

4、我的/etc/vsftpd_user_conf/admin的内容


  [quote:93f3c4a2db]anon_world_readable_only=NO
  write_enable=YES
  anon_upload_enable=YES
  anon_other_write_enable=YES
  anon_mkdir_write_enable=YES[/quote:93f3c4a2db]

5、自启动脚本,在/etc/rc.local中加入/usr/local/sbin/vsftpd/etc/vsftpd.conf&

标签:
0
投稿

猜你喜欢

  • 专访51wan寻找女一号亚军“09环球皇后中国皇后亚军”叶子金

    2009-11-23 09:45:00
  • 做站要做具有“生命力”的网站

    2008-06-06 11:26:00
  • shell中的各种括号的使用方法

    2023-11-10 15:03:40
  • Google再现高管离职潮 近两年离职高管一览

    2009-10-14 14:34:00
  • 事半功倍做营销:“转化率”再优化

    2009-03-16 09:39:00
  • 2月14 情人节快到了,你的网站准备好了吗?

    2008-02-13 12:28:00
  • 一个完美网站的101项指标 第五部分.安全性

    2008-02-29 22:27:00
  • 提高GG收入的7个小诀窍

    2008-03-24 19:28:00
  • Alexa排名权威性和算法要素解析

    2009-08-11 14:42:00
  • 李彦宏:成功是因为自己得高人指点

    2008-07-29 13:14:00
  • Discuz! 7.1:热点话题聚焦社区热点信息

    2009-09-25 12:12:00
  • VirtualBox虚拟机使用技巧

    2023-06-21 23:34:20
  • 详解VMware 当中出现:无法将 Ethernet0 连接到虚拟网络"VMnet8"的问题

    2022-08-19 06:20:26
  • GoDaddy:如何使用Microsoft Publisher 2003创建FTP位置 Godaddy

    2010-04-22 12:53:00
  • linux epoll机制详解

    2023-08-05 07:01:20
  • 沃尔玛网站开售健康护理产品 欲成美网购第一站

    2009-10-14 09:28:00
  • 百度视频重金购买版权 年内预算将高达2亿元

    2010-03-07 09:22:00
  • ubuntu下apache服务器操作方法小结

    2022-03-16 19:54:27
  • phpwindV6.3关于改名后可以重复投票问题

    2009-02-20 16:03:00
  • iis限制 流量限制与cpu限制的对比

    2008-05-29 14:06:00
  • asp之家 网站运营 m.aspxhome.com