Ich habe gezwickt rsyslogaufnehmen *.debugzu /var/log/debug, dessen Ausgang unten.
Wenn ich versuche mich einzuloggen ssh, bekomme ich:
Jun 6 23:13:05 foo-machine sshd[13965]: Invalid user roy from 204.28.116.34 Jun 6 23:13:05 foo-machine sshd[13965]: input_userauth_request: invalid user roy [preauth] Jun 6 23:13:06 foo-machine sshd[13965]: pam_krb5(sshd:auth): pam_sm_authenticate: entry (nonull) Jun 6 23:13:06 foo-machine sshd[13965]: pam_krb5(sshd:auth): (user roy) attempting authentication as roy@EXAMPLE.COM Jun 6 23:13:06 foo-machine sshd[13965]: pam_krb5(sshd:auth): (user roy) krb5_get_init_creds_password: Decrypt integrity check failed Jun 6 23:13:06 foo-machine sshd[13965]: pam_krb5(sshd:auth): authentication failure; logname=roy uid=0 euid=0 tty=ssh ruser= rhost=204.28.116.34 Jun 6 23:13:06 foo-machine sshd[13965]: pam_krb5(sshd:auth): pam_sm_authenticate: exit (failure) Jun 6 23:13:06 foo-machine sshd[13965]: pam_unix(sshd:auth): check pass; user unknown Jun 6 23:13:06 foo-machine sshd[13965]: pam_unix(sshd:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=204.28.116.34 Jun 6 23:13:06 foo-machine sshd[13965]: Libgcrypt warning: missing initialization - please fix the application Jun 6 23:13:07 foo-machine sshd[13965]: Failed password for invalid user roy from 204.28.116.34 port 30760 ssh2
(Beachten Sie, dass mir bewusst ist, dass "Überprüfung der Entschlüsselung der Integrität fehlgeschlagen" "falsches Kennwort" bedeutet. Das von mir angegebene Kennwort ist korrekt.)
Wenn ich versuche mich einzuloggen login, bekomme ich:
Jun 6 22:55:58 foo-machine login[13003]: pam_krb5(login:auth): pam_sm_authenticate: entry Jun 6 22:56:00 foo-machine login[13003]: pam_krb5(login:auth): (user roy) attempting authentication as roy@EXAMPLE.COM Jun 6 22:56:00 foo-machine login[13003]: pam_krb5(login:auth): user roy authenticated as roy@EXAMPLE.COM Jun 6 22:56:00 foo-machine login[13003]: pam_krb5(login:auth): (user roy) temporarily storing credentials in /tmp/krb5cc_pam_98AyqH Jun 6 22:56:00 foo-machine login[13003]: pam_krb5(login:auth): pam_sm_authenticate: exit (success) Jun 6 22:56:00 foo-machine login[13003]: Libgcrypt warning: missing initialization - please fix the application Jun 6 22:56:00 foo-machine login[13003]: pam_krb5(login:account): pam_sm_acct_mgmt: entry Jun 6 22:56:00 foo-machine login[13003]: pam_krb5(login:account): (user roy) retrieving principal from cache Jun 6 22:56:00 foo-machine login[13003]: pam_krb5(login:account): pam_sm_acct_mgmt: exit (success) Jun 6 22:56:00 foo-machine login[13003]: pam_mail(login:session): user unknown Jun 6 22:56:00 foo-machine login[13003]: pam_umask(login:session): account for roy not found Jun 6 22:56:00 foo-machine login[13003]: pam_krb5(login:session): (user roy) getpwnam failed for roy Jun 6 22:56:00 foo-machine login[13003]: pam_unix(login:session): session opened for user roy by root(uid=0) Jun 6 22:56:00 foo-machine login[13003]: User not known to the underlying authentication module
Wenn ich versuche, mich mit zu authentifizieren kinit, geht alles gut:
# kinit -V roy@EXAMPLE.COM Using default cache: /tmp/krb5cc_0 Using principal: roy@EXAMPLE.COM Password for roy@EXAMPLE.COM: Authenticated to Kerberos v5 #
/etc/pam.d/common-account:
# here are the per-package modules (the "Primary" block) account [success=2 new_authtok_reqd=done default=ignore] pam_krb5.so minimum_uid=1000 debug account [success=1 new_authtok_reqd=done default=ignore] pam_unix.so # here's the fallback if no module succeeds account requisite pam_deny.so # prime the stack with a positive return value if there isn't one already; # this avoids us returning an error just because nothing sets a success code # since the modules above will each just jump around account required pam_permit.so # and here are more per-package modules (the "Additional" block) # end of pam-auth-update config
Beachten Sie, dass ich hier eine Änderung vorgenommen habe. account ... pam_krb5war perviously im Abschnitt „Weitere Block“, aber das gegeben pam_denyist auf requisite, es war mir nicht klar, wie pam_krb5jemals erreicht werden könnte. So zog ich es nach oben. Die nächsten beiden Dateien bleiben von mir unberührt:
/etc/pam.d/common-auth:
# here are the per-package modules (the "Primary" block) auth [success=4 default=ignore] pam_krb5.so minimum_uid=1000 debug auth [success=3 default=ignore] pam_unix.so nullok_secure try_first_pass auth [success=2 default=ignore] pam_ccreds.so minimum_uid=1000 action=validate use_first_pass auth [default=ignore] pam_ccreds.so minimum_uid=1000 action=update # here's the fallback if no module succeeds auth requisite pam_deny.so # prime the stack with a positive return value if there isn't one already; # this avoids us returning an error just because nothing sets a success code # since the modules above will each just jump around auth required pam_permit.so # and here are more per-package modules (the "Additional" block) auth optional pam_ccreds.so minimum_uid=1000 action=store auth optional pam_cap.so # end of pam-auth-update config
/etc/pam.d/common-session:
# here are the per-package modules (the "Primary" block) session [default=1] pam_permit.so # here's the fallback if no module succeeds session requisite pam_deny.so # prime the stack with a positive return value if there isn't one already; # this avoids us returning an error just because nothing sets a success code # since the modules above will each just jump around session required pam_permit.so # The pam_umask module will set the umask according to the system default in # /etc/login.defs and user settings, solving the problem of different # umask settings with different shells, display managers, remote sessions etc. # See "man pam_umask". session optional pam_umask.so # and here are more per-package modules (the "Additional" block) session [success=1 default=ignore] pam_krb5.so minimum_uid=1000 session required pam_unix.so session optional pam_systemd.so # end of pam-auth-update config
Nebenbei bemerkt ist Apache DS mein LDAP- und KDC-Server. ( /etc/krb5.confzeigt darauf.) (Da OpenLDAP / "normal" Kerberos nicht eingerichtet werden konnte; Apache war einfacher, aber leider funktioniert es nicht.)
Warum kann ich mich nicht einloggen?
Hast du das jemals gelöst? Ich habe ein sehr ähnliches Problem: https://unix.stackexchange.com/questions/166135/cant-login-to-debian-7-7-with-kerberos-nis-user
David Mackintosh vor 9 Jahren
1
@ DavidMackintosh: Nein :-(
Thanatos vor 9 Jahren
0
@DavidMackintosh: IIRC, ich glaube *, es gibt etwas namens "nss", das beim Nachschlagen von Details zu Benutzern (im Grunde getpwent-Delegaten) involviert ist, und ich hatte dies nicht eingerichtet. Aber ich bin mir nicht sicher, ob das stimmt oder nicht stimmt. Ich hatte nie Zeit, es zu versuchen.
Thanatos vor 9 Jahren
0
@DavidMackintosh: Sorry für den Kommentar-Spam, ich habe mir gerade deine Frage angesehen. "Dies lässt mich glauben, dass es ein Problem mit meiner /etc/nsswitch.conf" <ist - das habe ich oben gemeint. Ich dachte, das sei auch mein Problem, aber ich kam nie dazu, diese Datei zu verstehen oder was ich damit tun musste.
Thanatos vor 9 Jahren
0
Nach dem, was ich oben sehe, versucht SSH, sich mit Anmeldeinformationen anzumelden, anstatt ein Kerberos-Ticket vorzulegen (das Sie mit kinit auf der Clientseite erhalten können). Sicherlich, wie Sie oben erwähnt haben, funktioniert kinit bei Ihrem Kunden, was gut ist. Könnten Sie die SSH / SSHD-Debug-Protokolle buchen?