elhacker.net cabecera Bienvenido(a), Visitante. Por favor Ingresar o Registrarse
¿Perdiste tu email de activación?.

 

 


Tema destacado: Estamos en la red social de Mastodon


+  Foro de elhacker.net
|-+  Comunicaciones
| |-+  Redes
| | |-+  LDAP
0 Usuarios y 1 Visitante están viendo este tema.
Páginas: [1] Ir Abajo Respuesta Imprimir
Autor Tema: LDAP  (Leído 3,137 veces)
<<<-Basura->>>


Desconectado Desconectado

Mensajes: 388



Ver Perfil
LDAP
« en: 2 Mayo 2014, 18:58 pm »

Tengo una pregunta relacionada con LDAP, si alguien conoce donde hay alguna documentacion donde explique que significan las siglas:
CN, O, U, OU y todas las que existen dentro esta configuracion.


En línea

<<<--Basura-->>>
Netlink

Desconectado Desconectado

Mensajes: 42


Ver Perfil
Re: LDAP
« Respuesta #1 en: 2 Mayo 2014, 22:29 pm »

Hola:

Código:
For example, suppose the contacted server (hosta) holds the entry
   <DC=Example,DC=NET> and the entry <CN=Manager,DC=Example,DC=NET>.  It
   knows that both LDAP servers (hostb) and (hostc) hold
   <OU=People,DC=Example,DC=NET> (one is the master and the other server
   a shadow), and that LDAP-capable server (hostd) holds the subtree
   <OU=Roles,DC=Example,DC=NET>.  If a wholeSubtree Search of
   <DC=Example,DC=NET> is requested to the contacted server, it may
   return the following:

     SearchResultEntry for DC=Example,DC=NET
     SearchResultEntry for CN=Manager,DC=Example,DC=NET
     SearchResultReference {
       ldap://hostb/OU=People,DC=Example,DC=NET??sub
       ldap://hostc/OU=People,DC=Example,DC=NET??sub }
     SearchResultReference {
       ldap://hostd/OU=Roles,DC=Example,DC=NET??sub }
     SearchResultDone (success)

   Client implementors should note that when following a
   SearchResultReference, additional SearchResultReference may be
   generated.  Continuing the example, if the client contacted the
   server (hostb) and issued the Search request for the subtree
   <OU=People,DC=Example,DC=NET>, the server might respond as follows:

     SearchResultEntry for OU=People,DC=Example,DC=NET
     SearchResultReference {
       ldap://hoste/OU=Managers,OU=People,DC=Example,DC=NET??sub }
     SearchResultReference {
       ldap://hostf/OU=Consultants,OU=People,DC=Example,DC=NET??sub }
     SearchResultDone (success)

   Similarly, if a singleLevel Search of <DC=Example,DC=NET> is
   requested to the contacted server, it may return the following:

     SearchResultEntry for CN=Manager,DC=Example,DC=NET
     SearchResultReference {
       ldap://hostb/OU=People,DC=Example,DC=NET??base
       ldap://hostc/OU=People,DC=Example,DC=NET??base }
     SearchResultReference {
       ldap://hostd/OU=Roles,DC=Example,DC=NET??base }
     SearchResultDone (success)

Fuente: http://tools.ietf.org/html/rfc4511

Saludos.


En línea

<<<-Basura->>>


Desconectado Desconectado

Mensajes: 388



Ver Perfil
Re: LDAP
« Respuesta #2 en: 21 Mayo 2014, 06:35 am »

No estaba hablando de eso. Ejemplo busco algo asi:

DN = Distinguished Name
CN = Common Name
...
...

Es que exiten unos que no me los se y hay mucha documentacion que no los explica
En línea

<<<--Basura-->>>
Netlink

Desconectado Desconectado

Mensajes: 42


Ver Perfil
Re: LDAP
« Respuesta #3 en: 21 Mayo 2014, 11:32 am »

Hola, en los request for comments (RFC) tienes toda la documentación sobre los protocolos pero hay que perder un poco de tiempo leyendolo.

Creo que lo que buscas es lo que te pongo mas abajo y lo he encontrado a partir del enlace del post anterior:

http://tools.ietf.org/html/rfc4519#section-2.20

Código:
 1. Introduction ....................................................3
      1.1. Relationship with Other Specifications .....................3
      1.2. Conventions ................................................4
      1.3. General Issues .............................................4
   2. Attribute Types .................................................4
      2.1. 'businessCategory' .........................................5
      2.2. 'c' ........................................................5
      2.3. 'cn' .......................................................5
      2.4. 'dc' .......................................................6
      2.5. 'description' ..............................................6
      2.6. 'destinationIndicator' .....................................7
      2.7. 'distinguishedName' ........................................7
      2.8. 'dnQualifier' ..............................................8
      2.9. 'enhancedSearchGuide' ......................................8
      2.10. 'facsimileTelephoneNumber' ................................9
      2.11. 'generationQualifier' .....................................9
      2.12. 'givenName' ...............................................9
      2.13. 'houseIdentifier' .........................................9
      2.14. 'initials' ...............................................10
      2.15. 'internationalISDNNumber' ................................10
      2.16. 'l' ......................................................10
      2.17. 'member' .................................................11
      2.18. 'name' ...................................................11
      2.19. 'o' ......................................................11
      2.20. 'ou' .....................................................12
      2.21. 'owner' ..................................................12
      2.22. 'physicalDeliveryOfficeName' .............................12
      2.23. 'postalAddress' ..........................................13
      2.24. 'postalCode' .............................................13
      2.25. 'postOfficeBox' ..........................................14
      2.26. 'preferredDeliveryMethod' ................................14
      2.27. 'registeredAddress' ......................................14
      2.28. 'roleOccupant' ...........................................15
      2.29. 'searchGuide' ............................................15
      2.30. 'seeAlso' ................................................15
      2.31. 'serialNumber' ...........................................16
      2.32. 'sn' .....................................................16
      2.33. 'st' .....................................................16
      2.34. 'street' .................................................17
      2.35. 'telephoneNumber' ........................................17
      2.36. 'teletexTerminalIdentifier' ..............................17
      2.37. 'telexNumber' ............................................18
      2.38. 'title' ..................................................18
      2.39. 'uid' ....................................................18
      2.40. 'uniqueMember' ...........................................19
      2.41. 'userPassword' ...........................................19

Saludos.
En línea

<<<-Basura->>>


Desconectado Desconectado

Mensajes: 388



Ver Perfil
Re: LDAP
« Respuesta #4 en: 18 Junio 2014, 18:35 pm »

Man es lo que busco!! Grax me voy a leer el RFC
En línea

<<<--Basura-->>>
Páginas: [1] Ir Arriba Respuesta Imprimir 

Ir a:  

Mensajes similares
Asunto Iniciado por Respuestas Vistas Último mensaje
autenticacion con ldap
PHP
esn_1983 0 1,753 Último mensaje 25 Mayo 2010, 18:14 pm
por esn_1983
LDAP
Redes
Kasswed 4 3,629 Último mensaje 13 Octubre 2011, 16:15 pm
por madpitbull_99
Protocolo ldap
Redes
soyloqbuskas 0 1,443 Último mensaje 14 Agosto 2012, 03:26 am
por soyloqbuskas
Servidor LDAP, ayuda por favor
GNU/Linux
estepeño 1 2,076 Último mensaje 18 Junio 2014, 12:37 pm
por Gh057
LDAP v3 ! ASP !
Nivel Web
TrashAmbishion 1 2,655 Último mensaje 29 Noviembre 2017, 06:21 am
por Luis Leon B
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines