www.ProFTPD.de

ProFTPD => ProFTPD - Deutsch => Thema gestartet von: Anonymous am 31. August 2003, 03:42:02



Titel: Kann mich nicht einloggen
Beitrag von: Anonymous am 31. August 2003, 03:42:02
Irgendwie läuft das hier nicht wirklich...

Hier die Meldung:

[root@LuckyServer daniel]# ftp
ftp> open localhost
Connected to localhost.
220 ProFTPD 1.2.8 Server (Radio Paralax Backstage FTP Server) [LuckyServer]
500 AUTH not understood
500 AUTH not understood
KERBEROS_V4 rejected as an authentication type
Name (localhost:daniel): daniel
331 Password required for daniel.
Password:
530 Login incorrect.
Login failed.
421 Service not available, remote server has closed connection
ftp> bye


Und hier meine Config:

# 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         "Radio Paralax Backstage FTP Server"
ServerType         standalone
DefaultServer         on

# Port 21 is the standard FTP port.
Port            21

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

# Set the user and group under which the server will run.
User            ftp
Group            ftp

# To cause every FTP user to be "jailed" (chrooted) into their home
# directory, uncomment this line.
DefaultRoot /home/ftp/


# Normally, we want files to be overwriteable.
<Directory />
  AllowOverwrite      on
</Directory>



Wo ist das Problem? Der User daniel ist auf dem System vorhanden und eingerichtet.


Titel: Re: Kann mich nicht einloggen
Beitrag von: stonki am 31. August 2003, 10:28:00
Zitat von: "Anonymous"

Wo ist das Problem? Der User daniel ist auf dem System vorhanden und eingerichtet.


mach mal "proftpd -l". Ggf. fehlt Dir mod_pam, dann installiere Dir mal die Pam Devel Pakete und kompiliere ProFTPD neu.

cu
stonki


Titel: Kann mich nicht einloggen
Beitrag von: Leva am 31. August 2003, 11:26:38
Ich hab nur dieses Modul bei mir installiert.

mod_auth_pam.c

Wo finde ich mod_pam? Hab auf der Homepage nichts gefunden. :?:


Titel: Kann mich nicht einloggen
Beitrag von: stonki am 31. August 2003, 16:00:05
Zitat von: "Leva"
Ich hab nur dieses Modul bei mir installiert.

mod_auth_pam.c

Wo finde ich mod_pam? Hab auf der Homepage nichts gefunden. :?:


ne, das ist ok. Starte mal proftpd im debug mode

cu
stonki


Titel: Kann mich nicht einloggen
Beitrag von: Anonymous am 31. August 2003, 17:49:28
[root@LuckyServer daniel]# proftpd -d 9
 - parsing '/etc/proftpd.conf' configuration
 - FS: using system open()
 - FS: using system read()
 - dispatching auth request "getpwnam" to module mod_auth_file
 - dispatching auth request "getpwnam" to module mod_auth_unix
 - dispatching auth request "getgrnam" to module mod_auth_file
 - dispatching auth request "getgrnam" to module mod_auth_unix
 - FS: using system read()
 - <Directory />: adding section for resolved path '/'
 - FS: using system read()
 - FS: using system close()
LuckyServer -
LuckyServer - Config for Radio Paralax Backstage FTP Server:
LuckyServer - /
LuckyServer -  AllowOverwrite
LuckyServer -  Umask
LuckyServer - DefaultServer
LuckyServer - Umask
LuckyServer - UserID
LuckyServer - UserName
LuckyServer - GroupID
LuckyServer - GroupName
LuckyServer - DefaultRoot
LuckyServer - dispatching auth request "getgroups" to module mod_auth_file
LuckyServer - dispatching auth request "getgroups" to module mod_auth_unix
LuckyServer - SETUP PRIVS at main.c:2618
LuckyServer - ROOT PRIVS at main.c:1909
LuckyServer - RELINQUISH PRIVS at main.c:1915


Titel: Kann mich nicht einloggen
Beitrag von: stonki am 31. August 2003, 19:20:47
und nun das gleiche nochmal wenn Du Dich versuchst einzuloggen...


Titel: Kann mich nicht einloggen
Beitrag von: Anonymous am 31. August 2003, 20:58:09
Wie meinste das? Wenn ich mich einlogge kommen die selben Meldungen wie sonst auch...


Titel: Kann mich nicht einloggen
Beitrag von: stonki am 01. September 2003, 09:51:43
Zitat von: "Anonymous"
Wie meinste das? Wenn ich mich einlogge kommen die selben Meldungen wie sonst auch...


wenn Du versuchst Dich einzuloggen, dann sollten meldungen ala:

uk:/home/stonki # /usr/local/sbin/proftpd -n -d9
 - parsing '/usr/local/etc/proftpd.conf' configuration
[...]
uk.stonki.de (localhost[127.0.0.1]) - connected - local  : 127.0.0.1:21
uk.stonki.de (localhost[127.0.0.1]) - connected - remote : 127.0.0.1:16519
uk.stonki.de (localhost[127.0.0.1]) - FTP session opened.
[...]
uk.stonki.de (localhost[127.0.0.1]) - ROOT PRIVS at mod_auth_pam.c:243
uk.stonki.de (localhost[127.0.0.1]) - RELINQUISH PRIVS at mod_auth_pam.c:401
uk.stonki.de (localhost[127.0.0.1]) - dispatching auth request "setgrent" to module mod_auth_file
uk.stonki.de (localhost[127.0.0.1]) - dispatching auth request "setgrent" to module mod_auth_unix
uk.stonki.de (localhost[127.0.0.1]) - ROOT PRIVS at mod_auth.c:490
uk.stonki.de (localhost[127.0.0.1]) - RELINQUISH PRIVS at mod_auth.c:492
uk.stonki.de (localhost[127.0.0.1]) - USER PRIVS 500 at mod_auth.c:995
uk.stonki.de (localhost[127.0.0.1]) - RELINQUISH PRIVS at mod_auth.c:997
[...]

kommen, also nen ganzer batzen :)


Titel: Kann mich nicht einloggen
Beitrag von: Anonymous am 01. September 2003, 17:32:29
Sorry aber da passiert nix dergleichen.


Titel: Kann mich nicht einloggen
Beitrag von: stonki am 01. September 2003, 17:55:08
Zitat von: "Anonymous"
Sorry aber da passiert nix dergleichen.


hmmm, also noch mal von vorne oder Du gibst mir kurz Access auf Dein System....