proftpd-1.2.5-1kr rpm버전을 proftpd korean user group에서 받아서
설치를 했습니다.
익명으로 접속하면 마운트된 디렉토리(/mnt/ftp/ftp)의 내용이 나오게끔 설정
했습니다. 전에도 이렇게 사용했었습니다.
근데 이번에 새로운 버전으로 다시 설치하고 익명으로 접속하면 아래와 같이 아
무런 내용도 안나오고 quota off라는 내용이 나오는데 저는 quota설정은 어디
에도 되있지 않거든요.
# ftp localhost 2330
Connected to localhost.localdomain.
220 PorFTPd Account Server ready ..
500 AUTH not understood.
500 AUTH not understood.
KERBEROS_V4 rejected as an authentication type
Name (localhost:root): ftp ===> 익명접속 맞죠?
331 Anonymous login ok, send your complete email address as your password.
Password:
230 Anonymous access granted, restrictions apply.
Remote system type is UNIX.
Using binary mode to transfer files.
ftp> ls
227 Entering Passive Mode (127,0,0,1,128,39).
150 Opening ASCII mode data connection for file list
226-Transfer complete.
226 Quotas off ===> quota 옵션은 주지도 않았고...설정도 안했는데..
ftp>
익명으로 접속은 잘 되지만 내용이 안나오네요.
계정은 아무문제 없습니다.
답변 좀 부탁드립니다.
참고로 제 proftpd.conf파일 내용입니다.
######################################################################
ServerName "FTP Server"
ServerType standalone
DefaultServer on
ServerAdmin root@localhost UseReverseDNS off
IdentLookups off
ServerIdent On "PorFTPd Account Server ready .. "
Port 2330
RootLogin off
Umask 022
AuthPAMAuthoritative on
TimesGMT off
DenyFilter *.*/
MaxClients 10
MaxClientsPerHost 1
MaxHostsPerUser 1
TimeoutIdle 900
TimeoutNoTransfer 900
TimeoutLogin 300
DeferWelcome off
DisplayLogin /etc/proftpd/welcome.msg
DisplayFirstChdir .message
User nobody
Group nobody
<Directory /*>
AllowOverwrite on
</Directory>
<Anonymous /mnt/ftp/ftp> ===> 여기 경로를 수정했습니다.
User ftp
Group ftp
RequireValidShell off
UserAlias anonymous ftp
<Limit LOGIN>
AllowAll
</Limit>
DisplayLogin welcome.msg
DisplayFirstChdir .message
MaxClients 10
MaxClientsPerHost 1 "죄송합니다. 이미 접속되어 있습니다."
HideUser root
HideGroup root
<Limit WRITE>
DenyAll
</Limit>
<Directory up/*> ===> /mnt/ftp/ftp/up으로 수정한겁니다.
<Limit READ RMD DELE>
DenyALL
</Limit>
<Limit STOR MKD>
AllowALL
</Limit>
</Directory>
<Directory down/*> ===> /mnt/ftp/ftp/down으로 수정한겁니다.
<Limit READ>
AllowALL
</Limit>
<Limit STOR DELE RMD MKD>
DenyALL
</Limit>
</Directory>
</Anonymous>
--
아~~ 눈뜨고 싶다.