www.ProFTPD.de

ProFTPD => ProFTPD - Deutsch => Thema gestartet von: Gortosch am 17. November 2005, 15:31:20



Titel: Anonymous Bereich Zugriffsrechte
Beitrag von: Gortosch am 17. November 2005, 15:31:20
Grüße Euch,
ich hab folgendes Problem. Wenn ich den Teil Limit All DenyAll als ersten Limit drinnen habe kann der Anonymous nichts machen wenn ich ihn raus lasse kann er alles. Aber eigentlich sollte es dochso funktionieren?

Bitte um Hilfe.

de Gortosch

Code:
<Anonymous /hde1/FTP-ROOT/Alle>
   User ftp
   Group nogroup
   # We want clients to be able to login with "anonymous" as well as "ftp"
   UserAlias anonymous ftp
   # Cosmetic changes, all files belongs to ftp user
   DirFakeUser on ftp
   DirFakeGroup on ftp
 
   RequireValidShell off
 
   # Limit the maximum number of anonymous logins
   MaxClients 10
 
   # We want 'welcome.msg' displayed at login, and '.message' displayed
   # in each newly chdired directory.
   DisplayLogin welcome.msg
   DisplayFirstChdir .message
     
   <Directory /hde1/FTP-ROOT/Alle>
     <Limit ALL>
       DenyAll
     </Limit>

     <Limit CDUP CWD XCWD XCUP>
       AllowAll
     </Limit>

     <Limit STOR STOU>
       AllowAll
     </Limit>
 
   </Directory>
 </Anonymous>