WowLinux 7.1 입니다.
내부 네트워크에서는 ftp 잘됩니다. 알ftp 에서도 잘되구요.
근데 외부에서 하면 접속과 로그인은 됩니다.
간단한 명령어(pwd, help, cd) 등은 먹힙니다.
근데 ls 랑 파일 올리고 받기가 않됩니다.
passive 모드로 해도 안됩니다.
잘 아시는 분, 답변 좀 부탁드립니다.
제 proftpd.conf 설정파일입니다.
# ProFTPD configuration file. Need more information of configuration,
# See the References in '/usr/share/doc/proftpd-core-{version}/' directory
# If u have any question, visit our Web Site. http://www.wowlinux.com # or http://proftpd.oops.org # Thank you - WOWLINU
X.COM ServerName "Proftpd FTP Server"
ServerType standalone
DefaultServer on
DefaultRoot ~
Port 21
Umask 022
MaxInstances 30
User nobody
Group nobody
UseReverseDNS off
IdentLookups off
AuthPAMAuthoritative on
RootLogin off
DenyFilter *.*/
DeferWelcome off
TimesGMT off
#AllowForeignAddress on
#RateReadBPS 256
#RateReadFreeBytes 5120
#RateReadHardBPS on
TimeoutIdle 0
TimeoutNoTransfer 0
TimeoutLogin 300
DisplayLogin /etc/proftpd/conf/welcome.msg
DisplayFirstChdir .message
<Directory /*>
AllowOverwrite on
</Directory>
<Anonymous ~ftp>
User ftp
Group ftp
UserAlias anonymous ftp
MaxClients 10 "Sorry, maxium users %m -- try again later"
MaxClientsPerHost 2 "Sorry, Over 2 connection not allow"
DisplayLogin welcome.msg
DisplayFirstChdir .message
RequireValidShell off
# HideUser root
# HideGroup root
# Anonymous's Uploads Directory
<Directory incoming/*>
AllowOverwrite on
AllowRetrieveRestart on
AllowStoreRestart on
<Limit DELE RMD>
DenyAll
</Limit>
<Limit READ STOR MDK>
AllowAll
</Limit>
</Directory>
# Anonymous's Public Directory
<Directory pub/*>
<Limit READ>
AllowAll
</Limit>
<Limit STOR DELE RMD MKD>
DenyAll
</Limit>
</Directory>
</Anonymous>