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

Buch teilen
  1. 15 Seiten
  2. English
  3. ePUB (handyfreundlich)
  4. Über iOS und Android verfügbar
eBook - ePub

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

Dr. Hidaia Mahmood Alassouli

Angaben zum Buch
Buchvorschau
Inhaltsverzeichnis
Quellenangaben

Über dieses Buch

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.

Häufig gestellte Fragen

Wie kann ich mein Abo kündigen?
Gehe einfach zum Kontobereich in den Einstellungen und klicke auf „Abo kündigen“ – ganz einfach. Nachdem du gekündigt hast, bleibt deine Mitgliedschaft für den verbleibenden Abozeitraum, den du bereits bezahlt hast, aktiv. Mehr Informationen hier.
(Wie) Kann ich Bücher herunterladen?
Derzeit stehen all unsere auf Mobilgeräte reagierenden ePub-Bücher zum Download über die App zur Verfügung. Die meisten unserer PDFs stehen ebenfalls zum Download bereit; wir arbeiten daran, auch die übrigen PDFs zum Download anzubieten, bei denen dies aktuell noch nicht möglich ist. Weitere Informationen hier.
Welcher Unterschied besteht bei den Preisen zwischen den Aboplänen?
Mit beiden Aboplänen erhältst du vollen Zugang zur Bibliothek und allen Funktionen von Perlego. Die einzigen Unterschiede bestehen im Preis und dem Abozeitraum: Mit dem Jahresabo sparst du auf 12 Monate gerechnet im Vergleich zum Monatsabo rund 30 %.
Was ist Perlego?
Wir sind ein Online-Abodienst für Lehrbücher, bei dem du für weniger als den Preis eines einzelnen Buches pro Monat Zugang zu einer ganzen Online-Bibliothek erhältst. Mit über 1 Million Büchern zu über 1.000 verschiedenen Themen haben wir bestimmt alles, was du brauchst! Weitere Informationen hier.
Unterstützt Perlego Text-zu-Sprache?
Achte auf das Symbol zum Vorlesen in deinem nächsten Buch, um zu sehen, ob du es dir auch anhören kannst. Bei diesem Tool wird dir Text laut vorgelesen, wobei der Text beim Vorlesen auch grafisch hervorgehoben wird. Du kannst das Vorlesen jederzeit anhalten, beschleunigen und verlangsamen. Weitere Informationen hier.
Ist Quick Configuration of Openldap and Kerberos In Linux and Authenicating Linux to Active Directory als Online-PDF/ePub verfügbar?
Ja, du hast Zugang zu Quick Configuration of Openldap and Kerberos In Linux and Authenicating Linux to Active Directory von Dr. Hidaia Mahmood Alassouli im PDF- und/oder ePub-Format sowie zu anderen beliebten Büchern aus Informatica & Amministrazione di sistemi. Aus unserem Katalog stehen dir über 1 Million Bücher zur Verfügung.

Information

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...

Inhaltsverzeichnis