免费注册 查看新帖 |

Chinaunix

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

[FTP] 新手关于 proftpd 的配置问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2003-03-15 17:13 |只看该作者 |倒序浏览
我安装好了proftpd 1.28,(安装目录/usr/local/proftpd),有下面几个问题请各位高手解答:


我的系统平台是FreeBSD 4.7

1、怎样配置 proftpd.conf 使能够达到我下面的要求:

   可以用anonymous 无密码访问,另外建立一个 visitor 用户以口令login123登录,两个用户登录的ftp根目录都是 /var/ftp,
   并且把登录用户限制在ftp根目录里。需要的时候可以禁止anonymous访问。
   visitor用户可以在/var/ftp/incoming上传文件,不能建立子目录。上传文件由root/wheel所有。

   下面是我拷贝过来的proftpd一份例子配置文件,我不知道怎么修改,麻烦各位高手指点一下。

ServerName                        "roFTPD Anonymous Server"
ServerType                        standalone

# Port 21 is the standard FTP port.
Port                                21

# If you don't want normal users logging in at all, uncomment this
# next section
#<Limit LOGIN>;
#  DenyAll
#</Limit>;

User                                nobody
Group                                nogroup

MaxInstances                    30

TimeoutStalled                        300

DisplayLogin                        welcome.msg
DisplayFirstChdir                .message

<Anonymous ~ftp>;

  # Allow logins if they are disabled above.
  <Limit LOGIN>;
    AllowAll
  </Limit>;

  # Maximum clients with message
  MaxClients                        5 "Sorry, max %m users -- try again later"

  User                                ftp
  Group                                ftp
  # We want clients to be able to login with "anonymous" as well as "ftp"
  UserAlias                        anonymous ftp

  # Limit WRITE everywhere in the anonymous chroot
  <Limit WRITE>;
    DenyAll
  </Limit>;

  # An upload directory that allows storing files but not retrieving
  # or creating directories.
  <Directory uploads/*>;
    <Limit READ>;
      DenyAll
    </Limit>;

    <Limit STOR>;
      AllowAll
    </Limit>;
  </Directory>;

</Anonymous>;


2、怎样让 proftpd 可以以 proftpd start|restart|stop 这样来控制启动和关闭。

我在Proftpd安装目录里看到这样一个脚本:proftpd.init.d,那么怎样修改它来使用呢?
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP