Lade...
 

SIngle sign on (SSO) first try

SIngle sign on (SSO) first try


So, can we use the distributed autentication to sign on from the client machine to the kerberos server using the principal "joe" and the ticket we got? Let's try:

ssh joe@kerberos.redflo.de
Password: 
Password: 
Password: 
Permission denied (publickey,keyboard-interactive).


What's wrong? Let's have a look at the /var/log/messages on the kerberos server:

Jul 21 16:31:27 kerberos sshd[7421]: error: PAM: User not known to the underlying authentication module for illegal user joe 
from clientmachine.redflo.de
Jul 21 16:31:27 kerberos sshd[7421]: Failed keyboard-interactive/pam for invalid user joe from x.x.x.x port 35808 ssh2


What does this mean? Simple: The unix system does not know anything about joe. Later we want to use ldap to make unix know all about joe, but for now we use the classic unix methods. On the kerberos server, edit /etc/passwd:
joe:x:1001:100:Joe Cool:/home/joe:/bin/bash
/etc/shadow:
joe:*K*:12984:0:99999:7:-1::
make a home directory:
mkdir /home/joe
chown joe:100 /home/joe
(or add a user another way). The *K* in /etc/shadow denotes that we want to get the password from the kerberos server.

Let's try again to ssh from the client machine. What happens? You don't get in? Why? Always check the logfiles!

Jul 21 16:41:54 kerberos sshd[7440]: error: PAM: Authentication failure for joe from clientmachine.redflo.de


So we still cannot authenticate. Do we need to tweak pam?


Erstellt von system. Letzte Änderung: Samstag Juli 23, 2005 12:49:27 GMT-0000 by admin.