www.ProFTPD.de
13. März 2007, 22:05:36 *
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: instabiles Verhalten  (Gelesen 261 mal)
0 Mitglieder und 1 Gast betrachten dieses Thema.
axel
ProFTPD
*
Offline Offline

Beiträge: 2


Profil anzeigen
« am: 12. Juli 2005, 12:57:58 »

Holla!

Ich habe das Problem, dass die Verbindung oft abbricht, ohne erkennbaren Grund. Mal läufts ganz gut, dann auf einmal wieder überhaupt nicht.
Hier mal die Infos, soweit ich sie rausgefunden habe:

proftpd -vv:
Code:

 - ProFTPD Version: 1.2.10 (stable)
 -   Scoreboard Version: 01040002
 -   Built: do mrt 22 18:28:32 CET 2001
 -     Module: mod_core.c
 -     Module: mod_xfer.c
 -     Module: mod_auth_unix.c
 -     Module: mod_auth_file.c
 -     Module: mod_auth.c
 -     Module: mod_ls.c
 -     Module: mod_log.c
 -     Module: mod_site.c
 -     Module: mod_auth_pam.c
 -     Module: mod_quotatab.c
 -     Module: mod_sql.c
 -     Module: mod_sql_mysql.c
 -     Module: mod_quotatab_sql.c
 -     Module: mod_ratio.c
 -     Module: mod_tls.c
 -     Module: mod_rewrite.c
 -     Module: mod_radius.c
 -     Module: mod_wrap.c
 -     Module: mod_quotatab_file.c
 -     Module: mod_delay/0.4
 -     Module: mod_readme.c
 -     Module: mod_ifsession.c
 -     Module: mod_cap/1.0






Config:
Code:

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

ServerName                      "blabla"
ServerType                      standalone
ServerAdmin                     webmaster@blabla.de

UseReverseDNS off
IdentLookups off
RootLogin off

ServerIdent on "ftp.blabla.de"
DeferWelcome                    on
DefaultServer                   on
Port 21

# Umask 022 is a good standard umask to prevent new files and dirs
# (second parm) 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

<Directory />
    AllowOverwrite on
</Directory>

#FXP Unterstuetzung
AllowForeignAddress on

# Maximal-Werte setzen
MaxClientsPerHost 3 "Sorry, nicht mehr als %m Verbindungen erlaubt"
MaxClients 8 "Leider sind schon %m Clients verbunden"
MaxLoginAttempts 3

# Restart erlauben
AllowStoreRestart on
AllowRetrieveRestart on

# Jail all users into their virtual home dir
DefaultRoot ~

RequireValidShell off

# Logging options
TransferLog /var/log/proftpd.xferlog

# Some logging formats
LogFormat default "%h %l %u %t \"%r\" %s %b"
LogFormat auth "%v [%P] %h %t \"%r\" %s"
LogFormat write "%h %l %u %t \"%r\" %s %b"

# Log file/dir access
ExtendedLog /var/log/proftpd.access_log WRITE,READ write

# Record all logins
ExtendedLog /var/log/proftpd.auth_log AUTH auth

# Paranoia logging level....
ExtendedLog /var/log/proftpd.paranoid_log ALL default


MultilineRFC2228                on
ShowSymlinks                    on

TimeoutNoTransfer               3600
TimeoutStalled                  600
TimeoutIdle                     1200

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

DenyFilter                      \*.*/

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



# Set the user and group that the server normally runs at.
User                            nobody
Group                           nogroup

# 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

<Limit LOGIN>
    Order deny,allow
    AllowGroup ftptest
</Limit>

# Mysql Zugangskontrolle
SQLConnectInfo syshosting@localhost syshosting sdjf7Fbj274FFkfy8D
SQLAuthenticate users groups
SQLAuthTypes Crypt
SQLDefaultGID 65534
SQLDefaultUID 65534
SQLMinUserGID 1000
SQLMinUserUID 1000
SQLUserInfo ftp_users pn_name pn_passwd pn_uid pn_gid pn_homedir null
SQLGroupInfo ftp_groups pn_groupid pn_gid pn_members
SQLDefaultHomeDir /tmp

SQLLog PASS updatecount
SQLNamedQuery updatecount UPDATE "pn_count=pn_count+1 WHERE pn_name='%u'" ftp_users
SQLLogFile /var/log/proftpd.sql.log

QuotaEngine on
QuotaDirectoryTally on
QuotaDisplayUnits Kb
QuotaShowQuotas on

SQLNamedQuery get-quota-limit \
    SELECT "pn_name, 'pn_user', pn_per_session, pn_limit_type, pn_bytes_in_avail, \
    pn_bytes_out_avail, pn_bytes_xfer_avail, pn_files_in_avail, pn_files_out_avail, \
    pn_files_xfer_avail \
    FROM ftp_users \
    WHERE pn_name = '%{0}' AND 'pn_user' = '%{1}'"

SQLNamedQuery get-quota-tally \
    SELECT "pn_name, pn_quota_type, pn_bytes_in_used, pn_bytes_out_used, \
    pn_bytes_xfer_used, pn_files_in_used, pn_files_out_used, pn_files_xfer_used \
    FROM ftp_quotatallies \
    WHERE pn_name = '%{0}' AND pn_quota_type = '%{1}'"

SQLNamedQuery update-quota-tally \
    UPDATE "pn_bytes_in_used = pn_bytes_in_used + %{0}, \
    pn_bytes_out = pn_bytes_out_used + %{1}, pn_bytes_xfer_used = pn_bytes_xfer_used + %{2}, \
    pn_files_in_used = pn_files_in_used + %{3}, pn_files_out_used = pn_files_out_used + %{4}, \
    pn_files_xfer_used = pn_files_xfer_used + %{5} \
    WHERE pn_name = '%{6}' AND pn_quota_type = '%{7}'" ftp_quotatallies

SQLNamedQuery insert-quota-tally \
    INSERT "%{0}, %{1}, %{2}, %{3}, %{4}, %{5}, %{6}, %{7}" ftp_quotatallies

QuotaLimitTable sql:/get-quota-limit
QuotaTallyTable sql:/get-quota-tally/update-quota-tally/insert-quota-tally





Debug-Ausgabe:
Code:

localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'USER blabla' to mod_tls
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'USER blabla' to mod_core
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'USER blabla' to mod_core
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'USER blabla' to mod_delay
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'USER blabla' to mod_auth
localhost (84.169.35.183[84.169.35.183]) - dispatching CMD command 'USER blabla' to mod_ratio
localhost (84.169.35.183[84.169.35.183]) - dispatching CMD command 'USER blabla' to mod_auth
localhost (84.169.35.183[84.169.35.183]) - no supplemental groups found for user 'blabla'
localhost (84.169.35.183[84.169.35.183]) - dispatching POST_CMD command 'USER blabla' to mod_sql
localhost (84.169.35.183[84.169.35.183]) - dispatching POST_CMD command 'USER blabla' to mod_delay
localhost (84.169.35.183[84.169.35.183]) - dispatching LOG_CMD command 'USER blabla' to mod_sql
localhost (84.169.35.183[84.169.35.183]) - dispatching LOG_CMD command 'USER blabla' to mod_log
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'PASS (hidden)' to mod_rewrite
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'PASS (hidden)' to mod_tls
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'PASS (hidden)' to mod_core
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'PASS (hidden)' to mod_core
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'PASS (hidden)' to mod_delay
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'PASS (hidden)' to mod_wrap
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'PASS (hidden)' to mod_radius
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'PASS (hidden)' to mod_auth
localhost (84.169.35.183[84.169.35.183]) - dispatching CMD command 'PASS (hidden)' to mod_auth
localhost (84.169.35.183[84.169.35.183]) - no supplemental groups found for user 'blabla'
localhost (84.169.35.183[84.169.35.183]) -
localhost (84.169.35.183[84.169.35.183]) - Config for blabla:
localhost (84.169.35.183[84.169.35.183]) - Limit
localhost (84.169.35.183[84.169.35.183]) -  Order
localhost (84.169.35.183[84.169.35.183]) -  AllowGroup
localhost (84.169.35.183[84.169.35.183]) - /
localhost (84.169.35.183[84.169.35.183]) -  AllowOverwrite
localhost (84.169.35.183[84.169.35.183]) -  RootLogin
localhost (84.169.35.183[84.169.35.183]) -  Umask
localhost (84.169.35.183[84.169.35.183]) -  AllowForeignAddress
localhost (84.169.35.183[84.169.35.183]) -  MaxClientsPerHost
localhost (84.169.35.183[84.169.35.183]) -  MaxClients
localhost (84.169.35.183[84.169.35.183]) -  AllowStoreRestart
localhost (84.169.35.183[84.169.35.183]) -  AllowRetrieveRestart
localhost (84.169.35.183[84.169.35.183]) -  RequireValidShell
localhost (84.169.35.183[84.169.35.183]) -  TransferLog
localhost (84.169.35.183[84.169.35.183]) -  ShowSymlinks
localhost (84.169.35.183[84.169.35.183]) -  DisplayLogin
localhost (84.169.35.183[84.169.35.183]) -  DisplayFirstChdir
localhost (84.169.35.183[84.169.35.183]) -  ListOptions
localhost (84.169.35.183[84.169.35.183]) -  DenyFilter
localhost (84.169.35.183[84.169.35.183]) -  SQLConnectInfo
localhost (84.169.35.183[84.169.35.183]) -  SQLAuthenticate
localhost (84.169.35.183[84.169.35.183]) -  SQLAuthTypes
localhost (84.169.35.183[84.169.35.183]) -  SQLDefaultGID
localhost (84.169.35.183[84.169.35.183]) -  SQLDefaultUID
localhost (84.169.35.183[84.169.35.183]) -  SQLMinUserGID
localhost (84.169.35.183[84.169.35.183]) -  SQLMinUserUID
localhost (84.169.35.183[84.169.35.183]) -  SQLLog_PASS
localhost (84.169.35.183[84.169.35.183]) -  SQLNamedQuery_updatecount
localhost (84.169.35.183[84.169.35.183]) -  SQLNamedQuery_get-quota-limit
localhost (84.169.35.183[84.169.35.183]) -  SQLNamedQuery_get-quota-tally
localhost (84.169.35.183[84.169.35.183]) -  SQLNamedQuery_update-quota-tally
localhost (84.169.35.183[84.169.35.183]) -  SQLNamedQuery_insert-quota-tally
localhost (84.169.35.183[84.169.35.183]) -  SQLLog_PASS
localhost (84.169.35.183[84.169.35.183]) - IdentLookups
localhost (84.169.35.183[84.169.35.183]) - RootLogin
localhost (84.169.35.183[84.169.35.183]) - ServerIdent
localhost (84.169.35.183[84.169.35.183]) - DeferWelcome
localhost (84.169.35.183[84.169.35.183]) - DefaultServer
localhost (84.169.35.183[84.169.35.183]) - Umask
localhost (84.169.35.183[84.169.35.183]) - AllowForeignAddress
localhost (84.169.35.183[84.169.35.183]) - MaxClientsPerHost
localhost (84.169.35.183[84.169.35.183]) - MaxClients
localhost (84.169.35.183[84.169.35.183]) - MaxLoginAttempts
localhost (84.169.35.183[84.169.35.183]) - AllowStoreRestart
localhost (84.169.35.183[84.169.35.183]) - AllowRetrieveRestart
localhost (84.169.35.183[84.169.35.183]) - DefaultRoot
localhost (84.169.35.183[84.169.35.183]) - RequireValidShell
localhost (84.169.35.183[84.169.35.183]) - TransferLog
localhost (84.169.35.183[84.169.35.183]) - ExtendedLog
localhost (84.169.35.183[84.169.35.183]) - ExtendedLog
localhost (84.169.35.183[84.169.35.183]) - ExtendedLog
localhost (84.169.35.183[84.169.35.183]) - ShowSymlinks
localhost (84.169.35.183[84.169.35.183]) - TimeoutNoTransfer
localhost (84.169.35.183[84.169.35.183]) - TimeoutStalled
localhost (84.169.35.183[84.169.35.183]) - TimeoutIdle
localhost (84.169.35.183[84.169.35.183]) - DisplayLogin
localhost (84.169.35.183[84.169.35.183]) - DisplayFirstChdir
localhost (84.169.35.183[84.169.35.183]) - ListOptions
localhost (84.169.35.183[84.169.35.183]) - DenyFilter
localhost (84.169.35.183[84.169.35.183]) - UserID
localhost (84.169.35.183[84.169.35.183]) - UserName
localhost (84.169.35.183[84.169.35.183]) - GroupID
localhost (84.169.35.183[84.169.35.183]) - GroupName
localhost (84.169.35.183[84.169.35.183]) - SQLConnectInfo
localhost (84.169.35.183[84.169.35.183]) - SQLAuthenticate
localhost (84.169.35.183[84.169.35.183]) - SQLAuthTypes
localhost (84.169.35.183[84.169.35.183]) - SQLDefaultGID
localhost (84.169.35.183[84.169.35.183]) - SQLDefaultUID
localhost (84.169.35.183[84.169.35.183]) - SQLMinUserGID
localhost (84.169.35.183[84.169.35.183]) - SQLMinUserUID
localhost (84.169.35.183[84.169.35.183]) - SQLUserTable
localhost (84.169.35.183[84.169.35.183]) - SQLUsernameField
localhost (84.169.35.183[84.169.35.183]) - SQLPasswordField
localhost (84.169.35.183[84.169.35.183]) - SQLUidField
localhost (84.169.35.183[84.169.35.183]) - SQLGidField
localhost (84.169.35.183[84.169.35.183]) - SQLHomedirField
localhost (84.169.35.183[84.169.35.183]) - SQLGroupTable
localhost (84.169.35.183[84.169.35.183]) - SQLGroupnameField
localhost (84.169.35.183[84.169.35.183]) - SQLGroupGIDField
localhost (84.169.35.183[84.169.35.183]) - SQLGroupMembersField
localhost (84.169.35.183[84.169.35.183]) - SQLDefaultHomedir
localhost (84.169.35.183[84.169.35.183]) - SQLLog_PASS
localhost (84.169.35.183[84.169.35.183]) - SQLNamedQuery_updatecount
localhost (84.169.35.183[84.169.35.183]) - SQLLogFile
localhost (84.169.35.183[84.169.35.183]) - QuotaEngine
localhost (84.169.35.183[84.169.35.183]) - QuotaDirectoryTally
localhost (84.169.35.183[84.169.35.183]) - QuotaDisplayUnits
localhost (84.169.35.183[84.169.35.183]) - QuotaShowQuotas
localhost (84.169.35.183[84.169.35.183]) - SQLNamedQuery_get-quota-limit
localhost (84.169.35.183[84.169.35.183]) - SQLNamedQuery_get-quota-tally
localhost (84.169.35.183[84.169.35.183]) - SQLNamedQuery_update-quota-tally
localhost (84.169.35.183[84.169.35.183]) - SQLNamedQuery_insert-quota-tally
localhost (84.169.35.183[84.169.35.183]) - QuotaLimitTable
localhost (84.169.35.183[84.169.35.183]) - QuotaTallyTable
localhost (84.169.35.183[84.169.35.183]) - CURRENT-CLIENTS
localhost (84.169.35.183[84.169.35.183]) - USER
localhost (84.169.35.183[84.169.35.183]) - USER blabla: Login successful.
localhost (84.169.35.183[84.169.35.183]) - Preparing to chroot() the environment, path = '/var/www/sites/blabla'
localhost (84.169.35.183[84.169.35.183]) - Environment successfully chroot()ed.
localhost (84.169.35.183[84.169.35.183]) - in dir_check_full(): path = '/', fullpath = '/var/www/sites/blabla/'.
localhost (84.169.35.183[84.169.35.183]) - dispatching POST_CMD command 'PASS (hidden)' to mod_sql
localhost (84.169.35.183[84.169.35.183]) - dispatching POST_CMD command 'PASS (hidden)' to mod_cap
localhost (84.169.35.183[84.169.35.183]) - mod_cap/1.0: capabilities '= cap_net_bind_service+ep'
localhost (84.169.35.183[84.169.35.183]) - dispatching POST_CMD command 'PASS (hidden)' to mod_ifsession
localhost (84.169.35.183[84.169.35.183]) - dispatching POST_CMD command 'PASS (hidden)' to mod_readme
localhost (84.169.35.183[84.169.35.183]) - dispatching POST_CMD command 'PASS (hidden)' to mod_delay
localhost (84.169.35.183[84.169.35.183]) - dispatching POST_CMD command 'PASS (hidden)' to mod_radius
localhost (84.169.35.183[84.169.35.183]) - dispatching POST_CMD command 'PASS (hidden)' to mod_tls
localhost (84.169.35.183[84.169.35.183]) - dispatching POST_CMD command 'PASS (hidden)' to mod_ratio
localhost (84.169.35.183[84.169.35.183]) - dispatching POST_CMD command 'PASS (hidden)' to mod_quotatab
localhost (84.169.35.183[84.169.35.183]) - dispatching POST_CMD command 'PASS (hidden)' to mod_log
localhost (84.169.35.183[84.169.35.183]) - dispatching POST_CMD command 'PASS (hidden)' to mod_ls
localhost (84.169.35.183[84.169.35.183]) - dispatching POST_CMD command 'PASS (hidden)' to mod_auth
localhost (84.169.35.183[84.169.35.183]) - dispatching LOG_CMD command 'PASS (hidden)' to mod_sql
localhost (84.169.35.183[84.169.35.183]) - dispatching LOG_CMD command 'PASS (hidden)' to mod_log
localhost (84.169.35.183[84.169.35.183]) - dispatching LOG_CMD command 'PASS (hidden)' to mod_ratio
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'SYST' to mod_rewrite
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'SYST' to mod_tls
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'SYST' to mod_core
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'SYST' to mod_core
localhost (84.169.35.183[84.169.35.183]) - dispatching CMD command 'SYST' to mod_core
localhost (84.169.35.183[84.169.35.183]) - dispatching POST_CMD command 'SYST' to mod_sql
localhost (84.169.35.183[84.169.35.183]) - dispatching LOG_CMD command 'SYST' to mod_sql
localhost (84.169.35.183[84.169.35.183]) - dispatching LOG_CMD command 'SYST' to mod_log
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'FEAT' to mod_rewrite
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'FEAT' to mod_tls
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'FEAT' to mod_core
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'FEAT' to mod_core
localhost (84.169.35.183[84.169.35.183]) - dispatching CMD command 'FEAT' to mod_core
localhost (84.169.35.183[84.169.35.183]) - dispatching POST_CMD command 'FEAT' to mod_sql
localhost (84.169.35.183[84.169.35.183]) - dispatching LOG_CMD command 'FEAT' to mod_sql
localhost (84.169.35.183[84.169.35.183]) - dispatching LOG_CMD command 'FEAT' to mod_log
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'CWD /html/vpp/modules/Admin_Messages' to mod_rewrite
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'CWD /html/vpp/modules/Admin_Messages' to mod_tls
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'CWD /html/vpp/modules/Admin_Messages' to mod_core
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'CWD /html/vpp/modules/Admin_Messages' to mod_core
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'CWD /html/vpp/modules/Admin_Messages' to mod_ratio
localhost (84.169.35.183[84.169.35.183]) - dispatching CMD command 'CWD /html/vpp/modules/Admin_Messages' to mod_ratio
localhost (84.169.35.183[84.169.35.183]) - dispatching CMD command 'CWD /html/vpp/modules/Admin_Messages' to mod_core
localhost (84.169.35.183[84.169.35.183]) - in dir_check_full(): path = '/html/vpp/modules/Admin_Messages', fullpath = '/var/www/sites/blabla/html/vpp/modules/Admin_Messages'.
localhost (84.169.35.183[84.169.35.183]) - dispatching POST_CMD command 'CWD /html/vpp/modules/Admin_Messages' to mod_sql
localhost (84.169.35.183[84.169.35.183]) - dispatching POST_CMD command 'CWD /html/vpp/modules/Admin_Messages' to mod_readme
localhost (84.169.35.183[84.169.35.183]) - dispatching LOG_CMD command 'CWD /html/vpp/modules/Admin_Messages' to mod_sql
localhost (84.169.35.183[84.169.35.183]) - dispatching LOG_CMD command 'CWD /html/vpp/modules/Admin_Messages' to mod_log
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'PWD' to mod_rewrite
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'PWD' to mod_tls
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'PWD' to mod_core
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'PWD' to mod_core
localhost (84.169.35.183[84.169.35.183]) - dispatching CMD command 'PWD' to mod_core
localhost (84.169.35.183[84.169.35.183]) - dispatching POST_CMD command 'PWD' to mod_sql
localhost (84.169.35.183[84.169.35.183]) - dispatching LOG_CMD command 'PWD' to mod_sql
localhost (84.169.35.183[84.169.35.183]) - dispatching LOG_CMD command 'PWD' to mod_log
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'TYPE A' to mod_rewrite
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'TYPE A' to mod_tls
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'TYPE A' to mod_core
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'TYPE A' to mod_core
localhost (84.169.35.183[84.169.35.183]) - dispatching CMD command 'TYPE A' to mod_xfer
localhost (84.169.35.183[84.169.35.183]) - dispatching POST_CMD command 'TYPE A' to mod_sql
localhost (84.169.35.183[84.169.35.183]) - dispatching LOG_CMD command 'TYPE A' to mod_sql
localhost (84.169.35.183[84.169.35.183]) - dispatching LOG_CMD command 'TYPE A' to mod_log
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'PASV' to mod_rewrite
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'PASV' to mod_tls
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'PASV' to mod_core
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'PASV' to mod_core
localhost (84.169.35.183[84.169.35.183]) - dispatching CMD command 'PASV' to mod_core
localhost (84.169.35.183[84.169.35.183]) - Entering Passive Mode (213,239,217,195,129,136).
localhost (84.169.35.183[84.169.35.183]) - dispatching POST_CMD command 'PASV' to mod_sql
localhost (84.169.35.183[84.169.35.183]) - dispatching LOG_CMD command 'PASV' to mod_sql
localhost (84.169.35.183[84.169.35.183]) - dispatching LOG_CMD command 'PASV' to mod_log
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'LIST' to mod_rewrite
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'LIST' to mod_tls
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'LIST' to mod_core
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'LIST' to mod_core
localhost (84.169.35.183[84.169.35.183]) - dispatching PRE_CMD command 'LIST' to mod_ratio
localhost (84.169.35.183[84.169.35.183]) - dispatching CMD command 'LIST' to mod_ls
localhost (84.169.35.183[84.169.35.183]) - passive data connection opened - local  : 213.239.217.195:33160
localhost (84.169.35.183[84.169.35.183]) - passive data connection opened - remote : 84.169.35.183:59041
localhost (84.169.35.183[84.169.35.183]) - ProFTPD terminating (signal 11)
localhost (84.169.35.183[84.169.35.183]) - FTP session closed.
Gespeichert
stonki
Administrator
ProFTPD
*****
Offline Offline

Beiträge: 1853


15318939
Profil anzeigen WWW E-Mail
« Antwort #1 am: 12. Juli 2005, 14:10:01 »

schalt mal die delay engine aus und teste dann nochmal.
Gespeichert

www.stonki.de:    the more I see, the more I know.......
www.proftpd.de:   Deutsche ProFTPD Dokumentation
www.krename.net:  Der Batch Renamer für KDE
www.kbarcode.net: Die Barcode Solution für KDE
axel
ProFTPD
*
Offline Offline

Beiträge: 2


Profil anzeigen
« Antwort #2 am: 12. Juli 2005, 15:22:25 »

Vielen Dank, stonki  L&auml;chelnd  L&auml;chelnd
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 16 Zugriffen.