[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debian-users:50945] Re: proftpdでディレクトリごとのIPアドレスアクセス制限方法を教えてください



武藤様


ご返答をありがとうございました。

> Directory内にLOGINを書く書式はproftpdでは効果がありません。
> (http://www.proftpd.org/docs/howto/Limit.html, The above will not work.
> FTP clients (unlike HTTP clients) login to the server, not into specific
> directories.)
そうなのですね。。。

> http://www.proftpd.org/docs/howto/Limit.html にあるように、Anonymousを
> 流用するか、IfUserディレクティブを使うのがよいでしょう。

IfUserを使用し、アカウントにIPアドレス制限をかけることにより思ったような動きになりました。
ありがとうございました!
  <Class friends>
    From 192.168.0.0/24
  </Class>

  <IfUser hoge>
    <Limit LOGIN>
      AllowClass friends
      DenyAll
    </Limit>
  </IfUser>