www.ProFTPD.de
13. März 2007, 21:39:31 *
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  
Seiten: [1]   Nach unten
  Drucken  
Autor Thema: Fehlermeldung bei Start von Proftpd  (Gelesen 201 mal)
0 Mitglieder und 1 Gast betrachten dieses Thema.
Hateman
ProFTPD
*
Offline Offline

Beiträge: 2


Profil anzeigen
« am: 11. September 2006, 21:52:31 »

Hi zusammen,

habe folgendes Problem. Beim ausfuehren foglenden Befehls:

Zitat
/etc/init.d/proftpd restart

bekomme ich folgende Fehlermeldung:

Zitat
Starting ftp server: proftpd - Fatal: <IfModule>: unclosed <IfModule> context on line 139 of '/etc/proftpd/proftpd.conf'
 failed!

Meine Config:

Zitat
#
# /etc/proftpd/proftpd.conf -- This is a basic ProFTPD configuration file.
# To really apply changes reload proftpd after modifications.
#

# Includes DSO modules
Include /etc/proftpd/modules.conf

ServerName         "R14541"
ServerType         standalone
DeferWelcome         off

MultilineRFC2228      on
DefaultServer         on
ShowSymlinks         on

TimeoutNoTransfer      600
TimeoutStalled         600
TimeoutIdle         1200

DisplayLogin                    welcome.msg
DisplayFirstChdir               .message
ListOptions                   "-l"

DenyFilter         \*.*/

# Port 21 is the standard FTP port.
Port            21

# In some cases you have to specify passive ports range to by-pass
# firewall limitations. Ephemeral ports can be used for that, but
# feel free to use a more narrow range.
# PassivePorts                    49152 65534

# 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 that the server normally runs at.
User            proftpd
Group            nogroup

# Umask 022 is a good standard umask to prevent new files and dirs
# (second parm) from being group and world writable.
Umask            022  022
# Normally, we want files to be overwriteable.
AllowOverwrite         on

# Uncomment this if you are using NIS or LDAP to retrieve passwords:
# PersistentPasswd      off

# Be warned: use of this directive impacts CPU average load!
#
# Uncomment this if you like to see progress and transfer rate with ftpwho
# in downloads. That is not needed for uploads rates.
# UseSendFile         off

TransferLog /var/log/proftpd/xferlog
SystemLog   /var/log/proftpd/proftpd.log

<IfModule mod_tls.c>
TLSEngine off
</IfModule>

<IfModule mod_quota.c>
QuotaEngine on
</IfModule>

<IfModule mod_ratio.c>
Ratios on
</IfModule>


# Delay engine reduces impact of the so-called Timing Attack described in
# http://security.lss.hr/index.php?page=details&ID=LSS-2004-10-02
# It is on by default.
<IfModule mod_delay.c>
DelayEngine on
</IfModule>

<IfModule mod_ctrls.c>
ControlsEngine        on
ControlsMaxClients    2
ControlsLog           /var/log/proftpd/controls.log
ControlsInterval      5
ControlsSocket        /var/run/proftpd/proftpd.sock
</IfModule>

<IfModule mod_ctrls_admin.c>
AdminControlsEngine on
</IfModule>
# A basic anonymous configuration, no upload directories.

# <Anonymous ~ftp>
#   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
#
#   # Limit WRITE everywhere in the anonymous chroot
#   <Directory *>
#     <Limit WRITE>
#       DenyAll
#     </Limit>
#   </Directory>
#
#   # Uncomment this if you're brave.
#   # <Directory incoming>
#   #   # Umask 022 is a good standard umask to prevent new files and dirs
#   #   # (second parm) from being group and world writable.
#   #   Umask            022  022
#   #            <Limit READ WRITE>
#   #            DenyAll
#   #            </Limit>
#   #            <Limit STOR>
#   #            AllowAll
#   #            </Limit>
#   # </Directory>
#
# </Anonymous>
Gespeichert
VolGas
Moderator
ProFTPD
*****
Offline Offline

Beiträge: 771



Profil anzeigen
« Antwort #1 am: 12. September 2006, 05:01:04 »

Hi,

in der Datei, die Du gepostet hast, gibt es keine offenen "IfModule"-Blöcke.
Aber ganz am Anfang definierst Du mit "Include /etc/proftpd/modules.conf" ein
Include-File, das den Fehler beinhalten muß.

Generell wird von Include-Files abgeraten - mit guten Gründen.
Einen davon sieht man gleich hier.

In dieser .conf steht so viel, was man sich wohl zu 99% aller Fälle sparen könnte,
aber das hier fehlt meiner Meinung nach:
    UseReverseDNS off
    IdentLookups off
    RequireValidShell off
    DefaultRoot ~
  • Die ersten beiden Direktive beschleunigen den Login
  • RequireValidShell: ein Anachronismus, der, wenn man ihn vergisst auszuschalten,
    für einigen Verdruß sorgen kann.
  • DefaultRoot: "beamt" den User in sein Verzeichnis und "sperrt" (chroot) ihn dort ein.
    Absolut wichtig - beim Fehlen eine sehr große Sicherheitslücke!

Diese Konfigurationsdatei war wohl nur für anonymous-FTP ausgelegt.

mfg.
  VolGas
Gespeichert
Hateman
ProFTPD
*
Offline Offline

Beiträge: 2


Profil anzeigen
« Antwort #2 am: 12. September 2006, 19:51:47 »

Hallo,

aber leider besteht der Fehler immernoch. Und was du mit deinen fehlenden Zeilen meinst, kann ich leider nicht nachvollziehen, da ich kein allzugroßer Pro bin. Danke schön. Im Anhang findet man die moules.conf.

Zitat
#
# This file is used to manage DSO modules and features.
#

# This is the directory where DSO modules resides

ModulePath /usr/lib/proftpd

# Allow only user root to load and unload modules, but allow everyone
# to see which modules have been loaded

ModuleControlsACLs insmod,rmmod allow user root
ModuleControlsACLs lsmod allow user *

#LoadModule mod_ctrls_admin.c
LoadModule mod_tls.c
LoadModule mod_sql.c
LoadModule mod_ldap.c
LoadModule mod_sql_mysql.c
LoadModule mod_sql_postgres.c
LoadModule mod_quotatab.c
LoadModule mod_quotatab_file.c
LoadModule mod_quotatab_ldap.c
LoadModule mod_quotatab_sql.c
LoadModule mod_radius.c
LoadModule mod_wrap.c
LoadModule mod_rewrite.c

# keep this module the last one
LoadModule mod_ifsession.c
Gespeichert
VolGas
Moderator
ProFTPD
*****
Offline Offline

Beiträge: 771



Profil anzeigen
« Antwort #3 am: 13. September 2006, 14:45:51 »

Irgendwie kann das nicht sein - die Fehlermeldung passt nicht zu der .conf, die Du
hier gepostet hast. War das ganz sich die monierte "/etc/proftpd/proftpd.conf" ?

Noch zu den zusätzlichen Direktiven: einfach der aktuell gültigen proftpd.conf
hinzufügen - fertig.

mfg.
  VolGas
Gespeichert
Seiten: [1]   Nach oben
  Drucken  
 
Gehe zu:  

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.066 Sekunden mit 17 Zugriffen.