Hi all,
I have installed WebWork on a RHEL 5.5 box. I can get one part of our ldap setup working (student auth) but I am having trouble figuring out how to get WebWork to recognize two distinct trees and authenticate to them using different users.
I.e.,
I have two unique urls with unique base and bind names. Ideally what I'd like is for WebWork to try
student auth info first, if fail, try fac/staff auth info (unique from stu) if fail try local.
# tried
net_ldap_hosts => [
ldaps://auth-student..,
"ldaps://auth-office..",
],
net_ldap_base => ["OU=STUDENTinfo,DC=STUDENTinfo",
"OU=facstaffinfo,DC=facstaffinfo",
],
searchDN => ["CN=binduser,OU=our,DC=info",
"CN=bindfacstaff,OU=our,DC=inf"
],
bindPassword => "password", # same for both above
# end
The above does not work... one or the other individually works but can't
seem to find how to be able to have both
Has anyone figured out a way to do this?