proFTP를 설치하고 외부에서 접속을 시도했는데 안되요.. ㅠ.ㅠ
먼저 하나로CATV를 사용합니다..
하나로 측에서 포트를 막아놓은거 같군요.. 그래서
웹이랑 FTP를 다른 포트를 쓰고있습니다.
그런데.. 문제는 ws-ftp로 Port바꾸고 접속을 하면 일단 로그인 그다음
환영메세지..
LIST 에서 멈춰버립니다.
그리고 접속이 끊어 집니다.
화일 리스트를 볼수없는거 같은데... 설정이 잘못된건지.. 아니면.. CATV상에
문제인지...
부탁드립니다. 아래 설정...proftp.conf
# This is a basic ProFTPD configuration file (rename it to
# 'proftpd.conf' for actual use. It establishes a single server
# and a single anonymous login. It assumes that you have a user/group
# "nobody" and "ftp" for normal operation and anon.
ServerName "Welcom.... Sanghun Lee's FTP Server...."
ServerType standalone
DefaultServer on
# Use Pam Module (required /etc/pam.d/ftp)
# please read /usr/doc/proftpd-1.2pre3/mod_pam.c
#
AuthPAMAuthoritative on
# Port 21 is the standard FTP port.
Port 22
# Umask 022 is a good standard umask to prevent new dirs and files
# from being group and world writable.
Umask 022
# To prevent DoS attacks, set the maximum number of child processes
# to 30. If you need to allow more than 30 concurrent connections
# at once, simply increase this value. Note that this ONLY works
# in standalone mode, in inetd mode you should use an inetd server
# that allows you to limit maximum number of processes per service
# (such as xinetd)
# MaxInstances 30
# Set the user and group that the server normally runs at.
User nobody
Group nobody
# To show all filenames including ``dot'' files
#LsDefaultOptions "-a"
#
# To allow root login
# be sure to take root out from /etc/ftpusers also :)
#
#RootLogin on
RootLogin off
# Normally, we want files to be overwriteable.
<Directory /*>
AllowOverwrite on
</Directory>
# A basic anonymous configuration, no upload directories.
<Anonymous ~ftp>
User ftp
Group ftp
RequireValidShell off
# 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
# Limit the maximum number per host
# MaxClientsPerHost 1
# We want 'welcome.msg' displayed at login, and '.message' displayed
# in each newly chdired directory.
DisplayLogin welcome.msg
DisplayFirstChdir .message
# Limit WRITE everywhere in the anonymous chroot
#<Limit WRITE>
# DenyAll
#</Limit>
# Upload directory, allow upload and mkdir and deny download
#
<Directory /home/ftp>
<Limit READ>
DenyALL
</Limit>
<Limit STOR MKD>
AllowALL
</Limit>
</Directory>
#<Directory /home/ftp/public>
# <Limit READ MKD STOR DIRS>
# AllowAll
# </Limit>
#</Directory>
</Anonymous>