질문&답변
클라우드/리눅스에 관한 질문과 답변을 주고 받는 곳입니다.
리눅스 분류

proftpd에서 접속은 되는데 파일이 안보이네여

작성자 정보

  • 김태선 작성
  • 작성일

컨텐츠 정보

본문

안녕하세요 무더운 날씨 속에 수고 많으 십니다.

다름이 아니라 proftpd1.2.9를 설치 하엿습니다.

그리고 컴파일을 해서 다 설치를 한후 리눅스 계정 test라는 것을 만들고 test란 사람에게 ftp를 사용하게 만들고 싶습니다. 음 그런데 test란 계정으로 ftp를 접속해 보면 접속이 되지만 파일 업로드가 안되거든요. 왜그러는지 궁금하네요.

아래는 저의 설정 (/etc/proftpd.conf) 부분 입니다.

참고로 저는 공유기를 사용하고 있어서 포트를 변경 시켜주었습니다.

정말 답답한데 시원한 답변좀 부탁드릴께엽..

즐거운 하루 되세여^^

 

 

 1 # This 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
      6 ServerName          "linux server test"
      7 ServerType  standalone
      8 DefaultServer           on
      9
     10 # Port 21 is the standard FTP port.
     11 Port                2121
     12
     13 # Umask 022 is a good standard umask to prevent new dirs and files
     14 # from being group and world writable.
     15 Umask               022
     16
     17 # To prevent DoS attacks, set the maximum number of child processes
     18 # to 30.  If you need to allow more than 30 concurrent connections
     19 # at once, simply increase this value.  Note that this ONLY works
     20 # in standalone mode, in inetd mode you should use an inetd server
     21 # that allows you to limit maximum number of processes per service
     22 # (such as xinetd).
     23 MaxInstances            30
     24
     25 # Set the user and group under which the server will run.
     26 User                root
     27 Group               root
     28
     29 # To cause every FTP user to be "jailed" (chrooted) into their home
     30 # directory, uncomment this line.
     31 DefaultRoot /
     32
     33 # Normally, we want files to be overwriteable.
     34 <Directory />
     35   AllowOverwrite        on
     36 </Directory>
     37
     38 # A basic anonymous configuration, no upload directories.  If you do not
     39 # want anonymous users, simply delete this entire <Anonymous> section.
     40 <Anonymous ~ftp>

41   User              ftp
     42   Group             ftp
     43
     44   # We want clients to be able to login with "anonymous" as well as "ftp"
     45   UserAlias         anonymous ftp
     46
     47   # Limit the maximum number of anonymous logins
     48   MaxClients            10
     49
     50   # We want 'welcome.msg' displayed at login, and '.message' displayed
     51   # in each newly chdired directory.
     52   DisplayLogin          welcome.msg
     53   DisplayFirstChdir     .message
     54
     55   # Limit WRITE everywhere in the anonymous chroot
     56   <Limit WRITE>
     57     DenyAll
     58   </Limit>
     59 </Anonymous>

 

 

관련자료

댓글 0
등록된 댓글이 없습니다.

공지사항


뉴스광장


  • 현재 회원수 :  60,292 명
  • 현재 강좌수 :  36,954 개
  • 현재 접속자 :  424 명