incoming 이란 폴더에 업로드 하게해주고 싶은데 ftp 설정을 아?

khaic0c0의 이미지

아래 설정환경을 보시면 잘아시겠지만,

지금 제 상태는 계정사용자는 자기 계정안에서만 모든지 할수 있습니다.
그런데 문제는 Anonymous 입니다.

그럭저럭 설정은 잘됬는데, 폴더를 pub 와 incoming 으로 나누었습니다.
pub 는 제가 제공하게될 폴더입니다.
그래서 이곳은 읽고, 다운로드 받아가는거 정도만 되게끔 해놨구요.
incoming 은 공유폴더입니다.
누구나 와서 읽고,쓰고,다운로드받아 갈수 있으며 지우는것만 안됩니다.

그런데 이것중... incoming 디렉토리가 말을 안듣습니다.
업로드가 안되더군요... 어떻게 해줘야 될까요?

Quote:
d--xrwx--- 4 nobody ftp 4096 6월 6 17:14 ftp => /home/ftp
drwxrwxr-x 2 ftp ftp 4096 6월 6 21:31 incoming => /home/ftp/incoming

<Anonymous ~ftp>
  User                          ftp
  Group                         ftp

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

  # Limit the maximum number of anonymous logins
  MaxClients                    10 "Sorry, maxium users %m -- try again later"
  MaxClientsPerHost             2 "Sorry, Over 2 connection not allow"

  # We want 'welcome.msg' displayed at login, and '.message' displayed
  # in each newly chdired directory.
  DisplayLogin                  welcome.msg
  DisplayFirstChdir             .message
  RequireValidShell             off
  # Limit WRITE everywhere in the anonymous chroot

  <Directory pub/*>
    <Limit READ>
      AllowAll
    </Limit>
    <Limit WRITE>
      DenyAll
    </Limit>
  </Directory>

  <Directory incoming/*>
    <Limit MKD STOR CWD READ WRITE>
       AllowAll
    </Limit>
    <Limit RMD DELE>
       DenyAll
    </Limit>
  </Directory>
  <Directory /home/*>
    <Limit ALL>
       AllowAll
    </Limit>
  </Directory>

</Anonymous>
김민수의 이미지

        AuthUsingAlias                  on
        <Directory      ~ftp/incoming/>
                <Limit STOR CWD>
                        AllowAll
                </Limit>

                <Limit READ RMD DELE MKD>
                        DenyAll
                </Limit>
        </Directory>

제가 사용하는 /usr/local/etc/proftpd.conf의 일부 입니다.
저는 와레즈 악용 가능성 때문에 STOR, CWD만 가능하게 하고 쓰고 있습니다.

잠고하십시오.

인류와 지구를 살리는 길은 소비를 의식적이고 자발적으로 줄이는 것, 바로 거기에 있다.
=========================
우리가 정말 정보의 바다에 살고 있을까?