jau schönen Dank erstmal
ich habe das mal in die Tat umgesetzt und leider nun folgende Probleme
mein Admin kann sich nicht mehr einloggen (Gruppe: ftpgroup) und mein Guest kann sich einloggen (Gruppe: ftpguest) aber ausser lesen nichts machen, auch nicht im upload Verzeichniss...
ich denke es ist das beste wenn ich mal meine conf poste:
# This is a ProFTPD configuration file
ServerName "Zippo's Linux FTP"
ServerType standalone
DefaultServer 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 ftpadmin
# Group ftpgroup
RequireValidShell off
# Normally, we want files to be overwriteable.
<Directory />
AllowOverwrite on
</Directory>
# Gruppeneinteilung
DefaultRoot /srv/ftp/ ftpguest,!ftpgroup
<Directory /srv/ftp/>
<Limit WRITE>
order Allow, Deny
AllowGroup ftpgroup
DenyAll
</Limit>
</Directory>
<Directory /srv/ftp/~~~upload~~~/>
<Limit STOR CWD MKD> #Schreiben und Verzeichnis Wechsel
AllowAll #wird erlaubt
</Limit>
<Limit READ RMD DELE> #alles andere
DenyAll #wird verboten
</Limit>
</Directory>
wäre nett wenn ihr mir helfen könntet
achja muss ich noch irgendwas mit chgrp oder chown machen ? oder übernimmt dieses UMASK ? daran könnte es jedenfalls liegen das ich nicht uploaden kann....*oder?*
aber wieso mein ftpgroup sich nicht mehr einloggen kann verstehe ich überhaupt nicht
Gruss
Stiggi