Titel: FAT Partition freigeben Beitrag von: RinderKnecht am 05. November 2003, 19:51:35 Ich möchte mit Proftpd meine FAT-Parition frei geben, nur wenn ich mich dann connecten will, fragt er auf einmal nach einem User + Passwort
Code: # This is a basic ProFTPD configuration file (rename it to # 'proftpd.conf' for actual use. It establishes a single server # and a single anonymous login. It assumes that you have a user/group # "nobody" and "ftp" for normal operation and anon. ServerName "ProFTPD Default Installation" ServerType standalone DefaultServer on RequireValidShell off AuthPAM off AuthPAMConfig ftp # 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 proftpd Group proftpd # Normally, we want files to be overwriteable. <Directory /> AllowOverwrite on </Directory> # A basic anonymous configuration, no upload directories. <Anonymous /mnt/hdc/folder> User ftp Group ftp # We want clients to be able to login with "anonymous" as well as "ftp" UserAlias anonymous ftp # Limit the maximum number of anonymous logins MaxClients 2 # We want 'welcome.msg' displayed at login, and '.message' displayed # in each newly chdired directory. DisplayLogin welcome.msg DisplayFirstChdir .message # Limit WRITE everywhere in the anonymous chroot <Limit WRITE> DenyAll </Limit> </Anonymous> Wenn ich nur die Zeile Code: <Anonymous /mnt/hdc/folder> änder, so dass das Ziel eine ext2 Partition ist, kann ich mich problemlos einloggen. Habe Proftpd Version 1.2.9_rc2 Titel: FAT Partition freigeben Beitrag von: Wörsty am 05. November 2003, 20:11:25 Hilft das? :arrow: mount --bind (http://www.proftpd.de/index.php?id=13&backPID=13&tx_faq_faq=3)
Titel: FAT Partition freigeben Beitrag von: RinderKnecht am 05. November 2003, 21:50:36 ne, geht immer noch nicht
Titel: Re: FAT Partition freigeben Beitrag von: stonki am 06. November 2003, 07:38:00 Zitat von: "RinderKnecht" Ich möchte mit Proftpd meine FAT-Parition frei geben, nur wenn ich mich dann connecten will, fragt er auf einmal nach einem User + Passwort schau mal nach, mit welchen Rechten Du die FAT Partition einbindest und ob der Username, unter dem anonymer FTP läuft dann darauf zugreifen kann. cu stonki Titel: FAT Partition freigeben Beitrag von: RinderKnecht am 08. November 2003, 18:07:36 Jo, merci
das war's, habs jetzt einfach mit Code: uid=1002,gid=100 eingebunden, dann ging's |