I'm trying to set up on a openldap server running on debian 6 the ssh authentication on a ldap-client host named ldap_client.
Here is what ldapsearch returns on server:
dn: dc=localnet,dc=lan
objectClass: dcObject
objectClass: organization
dc: localnet
o: Some_Enterprise
description: localnet.lan
dn: ou=people,dc=localnet,dc=lan
objectClass: top
objectClass: organizationalUnit
ou: people
dn: ou=groups,dc=localnet,dc=lan
objectClass: top
objectClass: organizationalUnit
ou: groups
dn: uid=joe,ou=people,dc=localnet,dc=lan
objectClass: account
objectClass: posixAccount
cn: joe
uid: joe
uidNumber: 10001
gidNumber: 2000
homeDirectory: /home/joe
loginShell: /bin/sh
gecos: joe
description: joe
On the client side, I have configured libnss-ldap and nsswitch.conf as follow;
passwd: files ldap
group: files ldap
shadow: files ldap
So that the unix command id on the client (id joe) returns its uid/gid. So the user is recognized by ldap.
But after hours goofing around google, I have not been able to set up the authentication on the client with ssh.
I have these lines at /etc/pam.d/commun-account, commun-auth and commun-password
auth sufficient pam_ldap.so
auth required pam_unix.so nullok_secure
And these on /etc/pam.d/ssh
auth sufficient /lib/security/pam_ldap.so no_warn
auth required pam_unix.so no_warn try_first_pass
account required /lib/security/pam_ldap.so no_warn ignore_authinfo_unavail ignore_unknown_user
account required pam_unix.so
I have the usePam=yes on /etc/ssh/sshd.conf.
Here are the output of auth.log on the client:
==> /var/log/auth.log <==
Dec 7 17:39:06 versionning sshd[3898]: pam_ldap: error trying to bind (Invalid credentials)
Dec 7 17:39:06 versionning sshd[3898]: pam_unix(sshd:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=xxx.kimsufi.com user=joe
Dec 7 17:39:08 versionning sshd[3898]: Failed password for joe from a.b.c.d port 58191 ssh2
On the server: ==> /var/log/syslog <== Dec 7 16:42:43 ldap slapd[963]: <= bdb_equality_candidates: (uid) not indexed
and with tshark
LDAP bindResponse(1) invalidCredentials
I don't understand where and how I have to configure the joe's password. Not on the local unix account of the client, so on the server; I don't know where to do that