Danke schon mal für die schnelle 'Starthilfe'.
Mit der Versionsnummer kann ich mich auch vertan haben. :lol:
..ist auf jeden Fall 1.8... von Mandrake 9.2
Die Erklärungen auf
www.proftpd.de haben mich leider nicht zu Ziel geführt, die studiere ich schon seit 2 Tagen. Hier ist meine conf:
ServerName "ProFTPD Default Installation"
ServerType standalone
DefaultServer on
# Allow FTP resuming.
# Remember to set to off if you have an incoming ftp for upload.
AllowStoreRestart on
# Port 21 is the standard FTP port.
Port 21
# 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 under which the server will run.
User nobody
Group nogroup
# To cause every FTP user to be "jailed" (chrooted) into their home
# directory, uncomment this line.
#DefaultRoot ~
# Normally, we want files to be overwriteable.
<Directory />
AllowOverwrite on
</Directory>
# Needed for NIS.
PersistentPasswd off
# DefaultRoot /home/foo foo
<Global>
DefaultRoot /var/www/html/upload myftp
AllowForeignAddress on
DefaultChdir /var/www/html/upload
<Directory /var/www/html/upload/bilder>
<Limit STOR>
AllowAll
</Limit>
</Directory>
<Directory /var/www/html/ftp>
<Limit STOR>
</Limit>
</Directory>
</Global>
Wie man sieht, ist es bis auf die letzten paar Zeilen die Grundkonfiguration. Leider läuft es (wie gesagt) nicht wie es soll.
CLEMENS