www.ProFTPD.de

ProFTPD => ProFTPD - Deutsch => Thema gestartet von: Breaker am 26. Februar 2007, 22:42:11



Titel: Auth oder Login-Probleme
Beitrag von: Breaker am 26. Februar 2007, 22:42:11
Hallo :-)


Ich habe den FTP-Server mit 2 verschiedene User am Laufen,- einmal mich (Breaker) als System-User mit shell und 1 x ein Virtuellen User ohne Shell, welcher mir nur DB-Dumps hochschieben kann

Wenn ich mich (als Breaker) auf FTP einlogen will, passiert es meistens, das ich 4-8 x den Login-Screen bekomme, eher der Server die Daten akzeptiert, das gleiche wird auch beim virtuellen User passieren, da die DB-Dumps fast immer mit 0-byte im Verzeichniss liegen, weil der Login nicht akzeptiert wird.

Weiß jemand, woran das liegt, das ich mich so oft einlogen muß ?


Titel: Re: Auth oder Login-Probleme
Beitrag von: VolGas am 01. März 2007, 11:06:49
Hallo,

nein, nicht ohne weitere Informationen.
Poste bitte Deine proftpd.conf und ein Debug (siehe ->FAQ (http://www.proftpd.de/FAQ.15.0.html)) eines Logins
Was vorher ausgegeben wurde, bitte verwerfen!

mfg.
  VolGas


Titel: Re: Auth oder Login-Probleme
Beitrag von: Breaker am 01. März 2007, 20:05:55
Hi, Danke dir :-)

Hier ist die Konfig :

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

ServerName         "Debian"
ServerType standalone
DeferWelcome         off

MultilineRFC2228 on
DefaultServer         on
ShowSymlinks off

UseReverseDNS off
IdentLookups off
AllowRetrieveRestart on
AllowStoreRestart on

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

DenyFilter         \*.*/

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

# Uncomment this if you would use TLS module:
#TLSEngine          on

# Uncomment this if you would use quota module:
#Quotas            on

# Uncomment this if you would use ratio module:
#Ratios            on

# Port 21 is the standard FTP port.
Port            21

# 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            nobody
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
DeleteAbortedStores off
HiddenStor off

# 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.
#DelayEngine          off

# 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>
<Global>
AllowForeignAddress on
AllowRetrieveRestart on
AllowStoreRestart on
DefaultChdir /var/www/htdocs
DeleteAbortedStores off
HiddenStor off
TransferLog /var/log/proftp-zugriff.log
UserPassword dumperjob PASSWORT
DefaultRoot /var/www/htdocs/scripts/mysqldumper/work/backup dumperjob
</Global>
SystemLog /var/log/proftp-speicher.log
AllowForeignAddress on




Beim Debug muß ich nochmal nachfragen, wie ich so ein Log erstellen kann ....FAQ hilft mir da nicht weiter, weil keines der Punkte zutrifft ...



Titel: Re: Auth oder Login-Probleme
Beitrag von: VolGas am 02. März 2007, 02:51:25
Das mag sein, aber wie man den ProFTPD in den Debugmode bringt, steht da schon.
Aber das brauchen wir vielleicht gar nicht: setze mal "DelayEngine off" ein, das könnte
es nämlich schon gewesen sein. Ein paar Postings weiter unten hatte schon jemand das
gleiche Problem und im Forum findest Du das über die Suchfunktion auch immer wieder.

mfg.
  VolGas