免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1388 | 回复: 2
打印 上一主题 下一主题

[FTP] 请大虾赐教 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-11-25 11:42 |只看该作者 |倒序浏览
proftpd想限制某个用户的dele权限,但是在proftpd.conf中设置以后老是不成功。设置完已经重新启动了proftpd, 请大家赐教。

  1. # Ts is a basic ProFTPD configuration file (rename it to
  2. # 'proftpd.conf' for actual use.  It establishes a single server
  3. # and a single anonymous login.  It assumes that you have a user/group
  4. # "nobody" and "ftp" for normal operation and anon.

  5. ServerName                      "PDI"
  6. #ServerType                     inetd
  7. ServerType                      standalone
  8. DefaultServer                   on
  9. ServerIdent                     on "ftp server without anonymous"


  10. # Port 21 is the standard FTP port.
  11. Port                            21

  12. # Umask 022 is a good standard umask to prevent new dirs and files
  13. # from being group and world writable.
  14. Umask                           022

  15. # To prevent DoS attacks, set the maximum number of child processes
  16. # to 30.  If you need to allow more than 30 concurrent connections
  17. # at once, simply increase this value.  Note that this ONLY works
  18. # in standalone mode, in inetd mode you should use an inetd server
  19. # that allows you to limit maximum number of processes per service
  20. # (such as xinetd).
  21. MaxInstances                    30
  22. MaxClients                      10
  23. MaxClientsPerHost               5 "Only 5 client per host"
  24. MaxClientsPerUser               5 "Only 5 session per user"
  25. RequireValidShell               off
  26. AllowStoreRestart               on
  27. AllowOverWrite                  on
  28. UseReverseDNS                   off
  29. MultilineRFC2228                on
  30. IdentLookups                    off
  31. #HiddenStor                      on
  32. AllowOverWrite                  on
  33. #RateReadBPS                     1048576
  34. PassivePorts                    51001   51999
  35. #tcpReceiveWindow                8192
  36. DefaultTransferMode             binary
  37. SystemLog                       /var/proftpd/proftpd.log
  38. DefaultRoot                     ~
  39. TimeoutIdle 600


  40. # Set the user and group under which the server will run.
  41. User                            nobody
  42. Group                           nobody
  43. #User                           cl
  44. #Group                          cl
  45. # Normally, we want files to be overwriteable.
  46. <Directory /home/users>
  47.   AllowOverwrite                off
  48. </Directory>
  49. <Directory /home/www/wwwroot/cms/down>
  50. <LIMIT XRMD RMD RNTO RNFR DELE>
  51.     DenyUser guest5
  52. </Limit>
  53. </Directory>
复制代码

[ 本帖最后由 ramboo 于 2005-11-25 11:45 编辑 ]

论坛徽章:
0
2 [报告]
发表于 2005-11-25 13:35 |只看该作者
改成AllowUser !guest5看看
还要查看下该用户对这个目录的读写权限

论坛徽章:
0
3 [报告]
发表于 2005-11-25 22:18 |只看该作者
试试

  1. <LIMIT XRMD RMD RNTO RNFR DELE>
  2.     Order deny, allow
  3.     DenyUser guest5
  4.     AllowAll
  5. </Limit>
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP