www.ProFTPD.de
13. März 2007, 22:03:27 *
Willkommen Gast. Bitte einloggen oder registrieren.
Haben Sie Ihre Aktivierungs E-Mail übersehen?

Einloggen mit Benutzername, Passwort und Sitzungslänge
News: SMF - Neu installiert!
 
  Übersicht Hilfe Suche Login Registrieren  
  Zeige Beiträge
Seiten: [1]
1  ProFTPD / ProFTPD - Deutsch / Proftpd + Home + FTP am: 19. März 2004, 17:55:51
ist eigentlich ne gute Idee
habe jetzt mit nem Kumpel ein MegaMount für --bind gebastelt
das prüft ob im homeverzeichnis ein ftp ordner vom root erstellt wird und für dann das mount --bind aus, selbstverständlich ohne doppelte einträge in der mtab !!

noch fragen ??
2  ProFTPD / ProFTPD - Deutsch / Proftpd + Home + FTP am: 16. März 2004, 23:33:47
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
Seiten: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.2 | SMF © 2006-2007, Simple Machines LLC Prüfe XHTML 1.0 Prüfe CSS
Seite erstellt in 0.07 Sekunden mit 18 Zugriffen.