Search found 17 matches

by dmhp
Wed Apr 04, 2018 3:11 am
Forum: Nagios XI
Topic: LDAP 0 users to import
Replies: 23
Views: 5552

Re: LDAP 0 users to import

cdienger wrote:Thank you for the update. As I mentioned before, ldap setups can be tricky and this turned out to be especially true here. Sorry we couldn't get to the root of it but fortunately we found a work around that works for you.
Thanks for the help.
by dmhp
Tue Apr 03, 2018 8:18 am
Forum: Nagios XI
Topic: LDAP 0 users to import
Replies: 23
Views: 5552

Re: LDAP 0 users to import

The latest changes didn't make a visual difference.
We'll just stick to the manual method, as access based on ldap groups is not available, its less important.
by dmhp
Tue Mar 27, 2018 3:20 am
Forum: Nagios XI
Topic: LDAP 0 users to import
Replies: 23
Views: 5552

Re: LDAP 0 users to import

cdienger wrote:Is the 1...100 folder an object that can be selected? What are the properties on that folder object?
No, looks to be just a way to organize the listing of entry's, possibly an Apache directory studio method for making navigation easier.
by dmhp
Mon Mar 26, 2018 4:51 am
Forum: Nagios XI
Topic: LDAP 0 users to import
Replies: 23
Views: 5552

Re: LDAP 0 users to import

try changing the ldap container to OU Didn't make a difference. try adding 'person' to at least one account found under groups as a test Not sure what you mean? i can't modify Data on the LDAP server. the import tool isn't needed to get create an account with an ldap users. Yea this works, but unfo...
by dmhp
Fri Mar 23, 2018 9:56 am
Forum: Nagios XI
Topic: LDAP 0 users to import
Replies: 23
Views: 5552

Re: LDAP 0 users to import

Would these help with your questions on attributes?
1.png
2.png
by dmhp
Wed Mar 21, 2018 6:20 am
Forum: Nagios XI
Topic: LDAP 0 users to import
Replies: 23
Views: 5552

Re: LDAP 0 users to import

apologies for the delayed response, workload and holidays below is the update code, it does not change our results, it remains the same as the last screenshot. I've tried it with just the no if section too $item = grab_array_var($obj, "uid"); if (!empty($item)) { return grab_array_var($ite...
by dmhp
Wed Mar 07, 2018 9:41 am
Forum: Nagios XI
Topic: LDAP 0 users to import
Replies: 23
Views: 5552

Re: LDAP 0 users to import

Well that certainly is interesting output. I believe part of the problem lies with: if (strpos($namingContexts[$i], 'dc=') !== false) { It's expecting to see dc= in the naming context but in this case o= is used. Revert the code and try just changing the line to: if (strpos($namingContexts[$i], 'o=...
by dmhp
Mon Mar 05, 2018 5:37 am
Forum: Nagios XI
Topic: LDAP 0 users to import
Replies: 23
Views: 5552

Re: LDAP 0 users to import

This sounds similar to an issue we've seen before with ldap environments with mulitple naming contexts. This has gotten a baby step further, below is the code i added (other values for x did not work) $namingContext = $this->getRootDse(array('namingcontexts')); var_dump($namingContext); return $nam...
by dmhp
Fri Mar 02, 2018 11:38 am
Forum: Nagios XI
Topic: LDAP 0 users to import
Replies: 23
Views: 5552

Re: LDAP 0 users to import

Would you be able to disable tls temporarily as a test? If so, we could run a tcpdump and see the exact communication between the ldap server and XI. Unfortunately not, unencrypted connections are denied (even though anon auth will work fine) and i have no control. Would the debug log help in some ...
by dmhp
Wed Feb 28, 2018 9:56 am
Forum: Nagios XI
Topic: LDAP 0 users to import
Replies: 23
Views: 5552

Re: LDAP 0 users to import

try adding additional user types to line 700 of /usr/local/nagiosxi/html/includes/components/ldap_ad_integration/index.php I've modified the line to be like this (rebooted server): $units = array('person', 'account', 'inetorgperson', 'organizationalperson', 'shadowaccount', 'posixaccount', 'ntUser'...