solaris下配置proftpd的共享访问

发布于 2022-09-03 04:39:56 字数 2525 浏览 13 评论 1

本帖最后由 jklyekai 于 2010-02-08 11:57 编辑

proftp1.3.2, opensolaris系统;
groupadd ftp ftp  
gid=2003
我想实现: 用户组grp1 用户user1 共享的ftpshare1和grp2,user2 ftpshare2都能正常访问,但是user1不能访问ftpshare2
系统启动时候,就能访问ftp
用户管理 通过ldap认证控制的。
现在的问题是,ftp建好之后,2个用户都能访问,但是每个用户都能访问2个共享目录。。。不知道如何处理。谢谢。

如下是我的ftp.CONF信息
ServerName  " ftp server"
ServerType  standalone
DefaultServer  on
Port  21
Umask  000
MaxInstances  30
MaxClients  30
TransferRate STOR  0
TransferRate RETR  0
MaxStoreFileSize  4000 MB
# Set the user and group under which the server will run.
User  ftp
Group ftp
UseReverseDNS  off
IdentLookups  off
#LDAP
LDAPServer  127.0.0.1

LDAPDNInfo  cn=admin,dc=example,dc=com admin
LDAPDoAuth  on ou=People,dc=example,dc=com
DefaultRoot  /export/home/ftp !ftp

AllowOverwrite  on
LDAPDoUIDLookups  on ou=People,dc=example,dc=com
LDAPDoGIDLookups  on ou=Group,dc=example,dc=com
<Limit  SITE_CHMOD>
   DenyAll
</Limit>
<Anonymous  /export/home/anonymous>
   User  ftp
   Group  ftp
   UserAlias  anonymous ftp
   DisplayLogin  /usr/loca/etc/welcome.msg
   DisplayChdir  .message
   <Limit  WRITE>
      DenyAll
   </Limit>
</Anonymous>

<Limit  LOGIN>
  order  allow,deny
  Allow from all
  Deny  from all
</Limit>
<Directory  /export/home/ftp/tank_fra>
   <Limit  DIRS STOR RETR DELE RNFR MKD>
      AllowUser ftp1
   </Limit>
</Directory>
<Directory  /export/home/ftp/tank_rre>
   <Limit  DIRS STOR RETR DELE RNFR MKD>
      AllowUser ftp2
   </Limit>
</Directory>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

陌路终见情 2022-09-03 08:52:44

过年回来,没人指导一下?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文