LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Server (https://www.linuxquestions.org/questions/linux-server-73/)
-   -   ProFTPD (https://www.linuxquestions.org/questions/linux-server-73/proftpd-641048/)

bambeklis 05-09-2008 08:20 AM

ProFTPD
 
Good day,

I'm thinking why my ProFTPD isn't running as well as I want. I mean, when I connect to It from then LAN it works great, but when I connect from remote computer the connection takes long time and I get bored of waiting. So I can't connect to my FTP from any of remote computers. Here is my proftpd.conf:

ServerIdent off
ServerName "ProFTPD server"
ServerType standalone
DefaultServer on
Port 21
Umask 022
User ftp
Group ftp
DefaultRoot ~
RootLogin off
RequireValidShell off
UseFtpUsers off
TimeoutLogin 120
TimeoutIdle 600
TimeoutNoTransfer 900
TimeoutStalled 900
MaxLoginAttempts 2
UseReverseDNS off
IdentLookups off


SystemLog /var/log/proftpd/system.log
TransferLog /var/log/proftpd/transfer.log
DefaultTransferMode binary
AllowOverwrite on


<Anonymous /home/ftp>
User ftp
Group ftp
UserAlias anonymous ftp
MaxClients 50 "Perdaug klientu"
AnonRequirePassword off


<Limit WRITE>
DenyAll
Allow from 10.0.1.2
</Limit>


<Directory download/*>
<Limit READ>
AllowAll
</Limit>
<Limit WRITE >
DenyAll
allow from 10.0.1.2
</Limit>
</Directory>

<Directory upload>
<Limit WRITE>
DenyAll
</Limit>
umask 022 022
<Limit STOR MKD XMKD READ>
AllowAll
</Limit>
<Limit DELE>
DenyAll
allow from 10.0.1.2
</Limit>
</Directory>
</Anonymous>

P.S. sorry for my english If there are many mistakes :)

Thanks

bambeklis 05-09-2008 03:26 PM

No answers ?


All times are GMT -5. The time now is 07:25 AM.