Hello everyone, I'm having some trouble getting my application to authenticate to UCS over LDAP 7386. I'm currently using Zentyal as my AD replacement and trying hard to move to UCS.
I created a Read Only account (works with Apache Directory Studio) and my logs show it is working, but cannot find the username trying to log into the system to authenticate based on them being a member of a specific group
The existing Zentyal configuration is working great but for some reason I cannot make it work with UCS. Here is the structure differences of the directory on Zentyal that is working, and my search filters / query strings.
$LOCAL_DEBUG_LDAP->setLoginAllUsersFilter('(memberOf=cn=SMSCALLOUT__ENABLED,ou=groups,dc=sgvfr,dc=lan)');
$LOCAL_DEBUG_LDAP->setAdminGroupFilter('(memberOf=cn=SMSCALLOUT_ADMIN,ou=Groups,dc=sgvfr,dc=lan)');
$LOCAL_DEBUG_LDAP->setSMSGroupFilter('(|(memberOf=cn=SMSCALLOUT__ENABLED,ou=Groups,dc=sgvfr,dc=lan))');
$LOCAL_DEBUG_LDAP->setGroupMemberOf_Attribute('memberuid');
.
.
.
I have been reading for hours and tried several suggestions such as uniqueMember in the filters but nothing I tried has worked.. I know I must be missing something simple, I just can't figure it out.