Quick Configuration of Openldap and Kerberos In Linux and Authenicating Linux to Active Directory
eBook - ePub

Quick Configuration of Openldap and Kerberos In Linux and Authenicating Linux to Active Directory

Dr. Hidaia Mahmood Alassouli

Compartir libro
  1. 15 páginas
  2. English
  3. ePUB (apto para móviles)
  4. Disponible en iOS y Android
eBook - ePub

Quick Configuration of Openldap and Kerberos In Linux and Authenicating Linux to Active Directory

Dr. Hidaia Mahmood Alassouli

Detalles del libro
Vista previa del libro
Índice
Citas

Información del libro

This paper is a step-by-step how to guide for configuring of Openldap server, Kerberos server and shows the procedure for authentication of Linux Machine to Active Directory. The paper provides an installation guide for, 1.OpenLDAP server and client.2.Kerberos server and client.3.Procedure for authenticating Linux Machine to Active Directory.

Preguntas frecuentes

¿Cómo cancelo mi suscripción?
Simplemente, dirígete a la sección ajustes de la cuenta y haz clic en «Cancelar suscripción». Así de sencillo. Después de cancelar tu suscripción, esta permanecerá activa el tiempo restante que hayas pagado. Obtén más información aquí.
¿Cómo descargo los libros?
Por el momento, todos nuestros libros ePub adaptables a dispositivos móviles se pueden descargar a través de la aplicación. La mayor parte de nuestros PDF también se puede descargar y ya estamos trabajando para que el resto también sea descargable. Obtén más información aquí.
¿En qué se diferencian los planes de precios?
Ambos planes te permiten acceder por completo a la biblioteca y a todas las funciones de Perlego. Las únicas diferencias son el precio y el período de suscripción: con el plan anual ahorrarás en torno a un 30 % en comparación con 12 meses de un plan mensual.
¿Qué es Perlego?
Somos un servicio de suscripción de libros de texto en línea que te permite acceder a toda una biblioteca en línea por menos de lo que cuesta un libro al mes. Con más de un millón de libros sobre más de 1000 categorías, ¡tenemos todo lo que necesitas! Obtén más información aquí.
¿Perlego ofrece la función de texto a voz?
Busca el símbolo de lectura en voz alta en tu próximo libro para ver si puedes escucharlo. La herramienta de lectura en voz alta lee el texto en voz alta por ti, resaltando el texto a medida que se lee. Puedes pausarla, acelerarla y ralentizarla. Obtén más información aquí.
¿Es Quick Configuration of Openldap and Kerberos In Linux and Authenicating Linux to Active Directory un PDF/ePUB en línea?
Sí, puedes acceder a Quick Configuration of Openldap and Kerberos In Linux and Authenicating Linux to Active Directory de Dr. Hidaia Mahmood Alassouli en formato PDF o ePUB, así como a otros libros populares de Informatica y Amministrazione di sistemi. Tenemos más de un millón de libros disponibles en nuestro catálogo para que explores.

Información

Año
2020
ISBN
9783969448182

1. Abstract:

 
This paper is a step-by-step “how to” guide for configuring of Openldap server, Kerberos server and shows the procedure for authentication of Linux Machine to Active Directory. The paper provides an installation guide for,
  1. OpenLDAP server and client.
  2. Kerberos server and client.
  3. Procedure for authenticating Linux Machine to Active Directory.
 
Keywords: OpenLDAP, Kerberos, Active Directory, Authentication, Linux.
 


2. Openldap Configuration:

Full documentation of OpenLDAP exists in www.openldap.org. The general procedure for configuration of OpenLDAP server and client that I tried to follow on RedHat 9,
1. I installed the openldap RPMS, openldap-2.0.7-14.i386.rpm, openldap-servers-2.0.7- 14.i386.rpm and openldap-clients-2.0.7-14.i386.rpm from the CD for RedHat 9.
  1. Using LDAP will almost certainly require you to install the PAM libraries for LDAP. These are packaged in with the nss_ldap package, so I just installed it.
2. Configuration of OpenLDAP is done through the /etc/openldap/slapd.conf file. In this work I used the following simple configuration file:
#
# See slapd.conf(5) for details on configuration options.
# This file should NOT be world readable.
#
include /etc/openldap/schema/core.schema
include /etc/openldap/schema/cosine.schema include /etc/openldap/schema/inetorgperson.schema include /etc/openldap/schema/nis.schema
include /etc/openldap/schema/rfc822-MailMember.schema include /etc/openldap/schema/autofs.schema
include /etc/openldap/schema/kerberosobject.schema
######################################################################
#
# ldbm database definitions
######################################################################
#
database ldbm
suffix "o=MyCompany,c=AU"
rootdn "uid=root,ou=People,o=MyCompany,c=AU" rootpw secret
directory /var/lib/ldap
# Indices to maintain
index objectClass,uid,uidNumber,gidNumber eq index cn,mail,surname,givenname eq,subinitial
#
# ACLs
#
access to dn=".*,ou=People,o=MyCompany,c=AU" attr=userPassword
by self write
by dn="uid=root,ou=People,o=MyCompany,c=AU" write by * auth
access to dn=".*,o=MyCompany,c=AU" by self write
by dn="uid=root,ou=People,o=MyCompany,c=AU" write by * read
access to dn=".*,o=MyCompany,c=AU" by * read
defaultaccess read
4. One thing that should be noted in the configuration file above: users should replace "o=MyCompany,c=AU" throughout the file with a Base DN which represents their organization. Note that I prefer to use the X.500 style specification above, but you could use the DNS specification which i...

Índice