Hallo leute ich habe hier ein Problem und währe für Hilfe sehr dankbar
mein User mit heimatverzeichnis /home/user sollen auch auf die daten der eigentlichen ftp /var/ftp
mit symlink ln -s -d /var/ftp /home/user/ftp klappt das nicht !! mit mount --bind /var/ftp /home/user/ftp klappt das zwar aber mein Kernel kennt das bind beim booten und laden der fstab nicht. desweiteren währe der aufwand doch erheblich.
mit dem chrootet ist es ja auch nicht so wie soll ausgeschaltet kommen die user zwar per symlink auf die Ftp aber auch auf das var-verzeichnis und das soll ja nicht !! da.
gibts da nicht eine elegantere lösung ?? User sind alle in sekundärgruppe ftp !! hier meine .conf datei # 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 blabla ServerType standalone ShowSymlinks on DefaultServer on Port 21 #Standartport für FTP = 21
# Umask 022 is a good standard umask to prevent new dirs and files # from being group and world writable. Umask 022
MaxInstances 30
# Set the user and group under which the server will run. User nobody Group nobody
# 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 /var/ftp> AllowOverwrite on </Directory>
# A basic anonymous configuration, no upload directories. If you do not # want anonymous users, simply delete this entire <Anonymous> section. <Anonymous /var/ftp> #Anonymous Ftp-Access Block Starts here User ftp Group ftp UserAlias anonymous ftp # We want clients to be able to login with "anonymous" as well as "ftp" <Directory *> <Limit WRITE> DenyALL </Limit> </Directory> <Directory incoming> #hier ist das Hochladen erlaubt <Limit READ WRITE> DenyAll </Limit> <Limit STOR> AllowAll </Limit> </Directory> <Directory open> <Limit all> DenyAll </Limit> </Directory> # 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 # Limit WRITE everywhere in the anonymous chroot </Anonymous> #Anonymous Access Block ends here
|