openldap client

Hi all,

Im setting up a machine with opensuse12.3 as openldap server and openldap client.

Both are set up through yast.

Now the openldap server is running, but there is some issue with the ldap client

When I tried to check user’s group , it only show primary group, in fact the user has few groups.

munters:~ # id calvin
uid=20000(calvin) gid=20000(calvin) groups=20000(calvin)
munters:~ # groups calvin
calvin : calvin

here is the sssd.conf:

[sssd]
config_file_version = 2
services = nss,pam
domains = default

SSSD will not start if you do not configure any domains.

Add new domain configurations as [domain/<NAME>] sections, and

then add the list of domains (in the order you want them to be

queried) to the “domains” attribute below and uncomment it.

; domains = LDAP

[nss]
filter_groups = root
filter_users = root

[pam]

Section created by YaST

[domain/default]
ldap_uri = ldap://192.168.1.134
ldap_search_base = dc=polyscientific,dc=com
ldap_schema = rfc2307bis
id_provider = ldap
ldap_user_uuid = entryuuid
ldap_group_uuid = entryuuid
ldap_id_use_start_tls = False
enumerate = False
cache_credentials = False
chpass_provider = ldap
auth_provider = ldap

Is there something I done it wrongly ?

Thanks.