Dear gentlemen/mamdam, i have managed to get my openbsd kerberos server working. It is working almost 100%. When i try to log in into a server by its name, no password is requested; and that's what i am expecting. It is like in:
$ kinit [EMAIL PROTECTED]'s Password: $ ssh -l grios foo Last login: Mon Mar 12 14:23:23 2007 from 10.0.0.250 Could not chdir to home directory /home/grios: No such file or directory $ But when i try to log on the same server but by means of its ip address, i am requested to provide a password, like in: $ ssh -l grios 10.0.0.1 [EMAIL PROTECTED]'s password: Last login: Mon Mar 12 15:04:19 2007 from 10.0.0.250 Could not chdir to home directory /home/grios: No such file or directory $ I would like that sshd should only accept incoming connection authenticated by means of the ticket, and not by means of the password itself. So i have done the following configuration (only relevant parts) GSSAPIAuthentication yes KerberosAuthentication no KerberosGetAFSToken no KerberosOrLocalPasswd no KerberosTicketCleanup yes What i am doing wrong? I am really confused PS: Of course, /etc/passwd user grios entry's password is "*". THANK YOU A LOT FOR YOUR TIME AND COOPERATION.