akm77 / ldapcomputers

LDAP computers - GLPI plugin
GNU General Public License v3.0
7 stars 6 forks source link

How to help #4

Open orderman opened 4 years ago

orderman commented 4 years ago

glpi 9.4.5 / ladpcomputers 0.4

Bonjour,

Où peut on trouver quelques ligne explicative sur ce plugin je l'ai découvert et installé car il me sert pour pour consolider l'inventaire GLPI

Par contre Je n'ai pas trouvé de doc même minime pour expliquer comment gérer les vues Je l'ai configuré et créé une vue il fonctionne mais je ne sais pas par exemple combien de temps la vue que j'ai créé est disponible…. et surtout ou sont stockées les vues une fois créés je ne les trouve pas elles n'apparaissent pas Quand je clique sur View LADP Computer j'ai un tableau et je ne peux pas retrouver et modifier, supprimer la vue que je viens de faire

Dans la config du plugin le rôle des paramètres: Traitement des alias LDAP
How long to keep outdated computers

Merci

Hello,

Where can we find some explanations about this plugin I discovered and installed it because it is used to consolidate the GLPI inventory

But I have not found any documents that explain how to manage the views I configured it and created a view … it works but I don't know for example how long the view that I created is available…. and where the views are stored once created I can't find them and they don't appear When I click on View LADP Computer menu, I have a table and I can't find ,modify or delete the view I just made

In the plugin config the role of this parameters:

LDAP alias processing How long to keep outdated computers

Thanks

Cdt

Philippe

akm77 commented 4 years ago

Hello

  1. Setup domain controller on Setup->LDAP computers config LDAP alias processing is

The following flags are valid integer values for the LDAP_OPT_DEREF (as taken from the documentation for ldap_read()):

LDAP_DEREF_NEVER (int 0) - (default) aliases are never dereferenced.

LDAP_DEREF_SEARCHING (int 1) - aliases should be dereferenced during the search but not when locating the base object of the search.

LDAP_DEREF_FINDING (int 2) - aliases should be dereferenced when locating the base object but not during the search.

LDAP_DEREF_ALWAYS (int 3) - aliases should be dereferenced always.

How long to keep outdated computers

On each retrieving computer list from LDAP plugin check existance already imported computer. If it can't found on current retrieval it mark computer Not found. This is mean that computer was deleted in LDAP. Then plugin will clean such computers after number day, stored in this setting.

When you did setup domain controller (don't forget test connection), go to Administration->View Ldap computers There press an icon rectangle with arrow on the top, after magnifier glass to get computers list from ldap.

This is manual method but you can setup automatic task in Setup->Automatic actions There are two tasks

  1. LdapComputersGetComputers
  2. LdapComputersDeleteOutdatedComputers

On the Assets->Computers you can set your own view by clicking wrench icon.

Select items to show what you need. For example you can add Plugins->LDAP computers-Distinguished Name

Also, on the computer form near bottom you can see tab named Ldap info

That's all

Regards