ldapifying applications - humbugquark.humbug.org.au/publications/ldap/ldap-apps.pdf · microsoft...

162
LDAPifying Applications Brad Marshall [email protected] SAGE-AU Conf 2003 – p. 1

Upload: others

Post on 10-Jul-2020

2 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

LDAPifying ApplicationsBrad Marshall

[email protected]

SAGE-AU Conf 2003 – p. 1

Page 2: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Contents

LDAP Servers

OpenLDAP

Linux Authentication

PAM and Name Service Switch (NSS)

System Authentication

Sendmail and LDAP

Apache and LDAP

Squid and LDAP

Netscape Addressbook and LDAP

Active Directory and LDAP

LDAP GUIs

Perl and LDAP SAGE-AU Conf 2003 – p. 2

Page 3: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

LDAP Servers

SlapdUniversity of MichiganOpenldap

iPlanet/SunONE Directory Server

Microsoft Active Directory (AD)

Novell eDirectory

Oracle Internet Directory

IBM SecureWay Directory

Critical Path InJoin Directory Server

Data Connection Directory

OctetString Virtual Directory Engine

SAGE-AU Conf 2003 – p. 3

Page 4: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Openldap

Based on UMich ldap server

Available from http://www.openldap.org/

Versions:Historic: 1.2.13 - implements LDAPv2Stable: 2.0.27 - implements LDAPv3Release: 2.1.21 - implements LDAPv3 and otherfeatures

SAGE-AU Conf 2003 – p. 4

Page 5: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Openldap 2.1 features

OpenLDAP 2.1 was released June 2002 Functionalenhancements and improved stability (from web site):

Transaction oriented database backend

Improved Unicode/DN Handling

SASL authentication/authorization mapping

SASL in-directory storage of authentication secrets

Enhanced administrative limits / access controls

Enhanced system schema checking

LDAP C++ API

Updated LDAP C & TCL APIs

SAGE-AU Conf 2003 – p. 5

Page 6: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Openldap 2.1 features cont

LDAPv3 extensions:Enhanced Language Tag/Range option supportobjectClass-based attribute listsLDAP Who ami I? Extended OperationLDAP no-op ControlMatched Values ControlMisc LDAP Feature ExtensionsDNS-based service location

Meta Backend

Monitor Backend

Virtual Context "glue" Backend

SAGE-AU Conf 2003 – p. 6

Page 7: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Openldap LDAPv3 Support

OpenLDAP LDAPv3 support includes:

SASL Bind (RFC 2829)

Start TLS (RFC 2830)

LDIFv1 (RFC 2849)

LDAPv3 supported extensions include:

Language Tag Options (RFC 2596)

Language Range Options

DNS-based service location (RFC 2247 & RFC 3088)

Password Modify (RFC 3062)

Named Referrals / ManageDSAit (I-D namedref)

Matched Values Control

All Operational Attributes ("+") SAGE-AU Conf 2003 – p. 7

Page 8: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Openldap LDAPv3 Not Supports

Does not support:

DIT Content Rules

DIT Structure Rules

Name Forms

Schema updates (using LDAP)

Subtree rename

LDAPv3 unsupported extensions include:

Dynamic Directory Services (RFC 2589)

Operational Signatures (RFC 2649)

Simple Paged Result Control (RFC 2696)

Server Side Sorting of Search Results (RFC 2891)

SAGE-AU Conf 2003 – p. 8

Page 9: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Openldap Platforms

Runs on:FreeBSDLinuxNetBSDOpenBSDMost commercial UNIX systems

Ports in progress:BeOSMacOSMicrosoft Windows NT/2000

SAGE-AU Conf 2003 – p. 9

Page 10: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

LDAP slapd architecture

LDAP daemon called slapdChoice of backend databases - see next slideMultiple database instancesAccess control - via ACLs and tcp wrappersThreadedReplicationSecurity - privacy via TLS, authentication via SASLInternationalization

SAGE-AU Conf 2003 – p. 10

Page 11: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

slapd backend databases

BDB - Sleepycat Berkeley DB backend - standard inOpenLDAP 2.1

DNSSRV - dns based backend to serve referrals fromSRV records

LDAP - ldap proxy backend

LDBM - high performance disk based db - usesBerkeleyDB, GNU DBM, MDBM or NDBM

META - ldap proxy backend for multiple servers andnaming context masq - similar to LDAP

NULL - null backend db, similar to /dev/null

SAGE-AU Conf 2003 – p. 11

Page 12: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

slapd backend databases cont

SHELL - shell interpreter embedded backend

PERL - perl interpreter embedded backend

TCL - tcl interpreter embedded backend

PASSWD - simple password file db - serves up useraccount info from /etc/passwd style files

SQL - mapping sql to ldap to present information fromlegacy RDBMS (in OpenLDAP 2.x)

SAGE-AU Conf 2003 – p. 12

Page 13: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

LDAP slapd architecture

LDAPClient

TCP/IPquery

slapd

Directory

Reads

info

SAGE-AU Conf 2003 – p. 13

Page 14: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

LDAP slurpd architecture

Replication daemon called slurpdFrees slapd from worrying about hosts being downetcCommunicates with slapd through text file

Clientslapd

replicationlog slurpd

slaveslapd

slaveslapd

LDAPquerywrites

outchanges

readsin

logfile

LDAPquery

SAGE-AU Conf 2003 – p. 14

Page 15: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Slurpd Replication Log File

Slapd writes out a replication log file containing:

Replication host

Timestamp

DN of entry being modified

List of changes to make

SAGE-AU Conf 2003 – p. 15

Page 16: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Slurpd Replication Log File Example

replica: slave.pisoftware.com:389time: 93491423dn: uid=bmarshal,ou=People,

dc=pisoftware,dc=comchangetype: modifyreplace: multiLineDescriptiondescription: There once was a sysadmin...-replace: modifiersNamemodifiersName: uid=bmarshal,ou=People,

dc=pisoftware,dc=com-replace: modifyTimestampmodifyTimestamp: 20010606122901Z-

SAGE-AU Conf 2003 – p. 16

Page 17: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Slapd.conf Example

## See slapd.conf(5) for details# on configuration options.# This file should NOT be world readable.#include /etc/openldap/slapd.at.confinclude /etc/openldap/slapd.oc.confschemacheck off

pidfile /var/run/slapd.pidargsfile /var/run/slapd.args

defaultaccess read

SAGE-AU Conf 2003 – p. 17

Page 18: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Slapd.conf Example cont

access to attr=userpasswordby self writeby * read

access to *by self writeby dn=".+" readby * read

SAGE-AU Conf 2003 – p. 18

Page 19: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Slapd.conf Example cont

####################################### ldbm database definitions######################################database ldbmsuffix "dc=pisoftware, dc=com"rootdn "cn=Manager,dc=pisoftware,dc=com"rootpw {crypt}lAn4J@KmNp9replica host=replica.bne.pisoftware.com:389

binddn="cn=Manager,dc=pisoftware,dc=com"bindmethod=simple credentials=secretreplogfile /path/to/replication.log

# cleartext passwords, especially for# the rootdn, should be avoid. See# slapd.conf(5) for details.directory /var/lib/openldap/

SAGE-AU Conf 2003 – p. 19

Page 20: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

ACL for who

Can restrict by:

Distinguished Name

Filter that matches some attributes

Attributes

SAGE-AU Conf 2003 – p. 20

Page 21: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

ACL for what

Can restrict with:

Anonymous users

Authenticated users

Self - ie, user who owns the entry

Distinguished name

IP address or DNS entry

SAGE-AU Conf 2003 – p. 21

Page 22: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

ACL permissions

Permissions are:

none

auth

compare

search

read

write

SAGE-AU Conf 2003 – p. 22

Page 23: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

ACL Priority

Access control priority:

Local database

Global rules

Runs thru in order the rules appear in the config file

First checks what is being requested, then who

First matching rule is used

This means ordering is important

SAGE-AU Conf 2003 – p. 23

Page 24: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

ACL examples

access to attribute=userpasswordby dn="cn=Manager,dc=pisoftware,

dc=com" writeby self writeby * read

access to dn="(.*,)?dc=pisoftware,dc=com"attr=homePhone

by self writeby dn="(.*,)?dc=pisoftware,dc=com" searchby domain=.*\.pisoftware\.com readby anonymous auth

SAGE-AU Conf 2003 – p. 24

Page 25: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

OpenLDAP and SASL

SASL - Simple Authentication and Security Layer(RFC2222)

Offers several industry standard authenticationmechanisms

PLAIN, LOGINDIGEST-MD5KERBEROS_V4GSSAPIEXTERNAL

SAGE-AU Conf 2003 – p. 25

Page 26: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

SASL Authentication

Basic steps:Configure slapd to communicate with client program(service key, public key, shared secret)Map authentications identities to LDAP DN

Authentication IDIf realm is the default, can leave that section outcompletely

uid=<username>,cn=<realm>,cn=<mechanism>,cn=auth

SAGE-AU Conf 2003 – p. 26

Page 27: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Mapping Auth Id to LDAP Entries

Not intended that cn=auth exists, use mapping toexisting users

Use sasl-regexp directives to define maps

sasl-regexp <search pattern> <replacement pattern>

Search pattern uses regex as per regex(7). = any char* = zero or more of previous char+ = one or more of previous char? = zero or one of previous char() = store match in $n, where n is the n’th paren set

Replacement pattern is users DN, or LDAP URL

SAGE-AU Conf 2003 – p. 27

Page 28: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

sasl-regex examples

sasl-regex uid=(.*),cn=digest-md5,cn=authuid=$1,ou=People,dc=pisoftware,dc=com

sasl-regex uid=(.*),cn=pisoftware.com,cn=kerberos_v4,cn=auth

uid=$1,ou=People,dc=pisoftware,dc=com

sasl-regex uid=(.*),cn=digest-md5,cn=authldap:///ou=People,dc=pisoftware,dc=com

??sub?(uid=$1)

SAGE-AU Conf 2003 – p. 28

Page 29: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

sasl-regex Recommendations

Don’t set search pattern too leniently - easy to allowaccess when shouldn’t

Allow for realm being omitted, as well as explicit realmentry

List explicit realm entry first

If users are spread over multiple ou’s, use a LDAP URL

If LDAP URL returns more than one or zero entries,authentication fails

SAGE-AU Conf 2003 – p. 29

Page 30: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

SASL DIGEST-MD5

Client and server share a secret

Server generates challenge, client response proving itknows the secret

Stores secrets either in directory (Cyrus SASL 2.1) orseperate database (sasldb)

Obviously important to protect passwords - either ACLsor file permissions

Shared secrets needs access to plain text password

SAGE-AU Conf 2003 – p. 30

Page 31: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

DIGEST-MD5 Passwords

Secrets stored in sasldb (Cyrus SASL 2.1)

$ slaslpasswd2 -c <username>

Secrets stored in LDAP directoryPassword stored in userPassword in clear textslapd.conf needs:

password-hash {CLEARTEXT}

Authentication id form:

uid=<username>,cn=<realm>,cn=digest-md5,cn=auth

SAGE-AU Conf 2003 – p. 31

Page 32: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Slapd and TLS

To generate a certificate:$ openssl req -newkey rsa:1024 -keyout

server.pem -nodes -x509 -days 365-out server.pem

Assuming that the slapd.conf file is properly configured, thefollowing additions are required:TLSCertificateFile /usr/lib/ssl/misc/server.pemTLSCertificateKeyFile /usr/lib/ssl/misc/server.pemTLSCACertificateFile /usr/lib/ssl/misc/server.pemreplica host=hostname:389

tls=yesbinddn="normal bind parameters"bindmethod=simplecredentials=password

SAGE-AU Conf 2003 – p. 32

Page 33: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Slapd and TLS cont

Configure your slapd init scripts to run with the followingoptions:slapd -h "ldap:/// ldaps:///"

To confirm that it is listening, run the following:$ sudo netstat --inet --l -p | grep slapdtcp 0 0 *:ldap *:* LISTEN 17706/slapdtcp 0 0 *:ldaps *:* LISTEN 17706/slapdTo check the certificate:$ openssl s_client -connect localhost:636 \

-showcerts

SAGE-AU Conf 2003 – p. 33

Page 34: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Referral - Subordinate

To delegate a subtree to another server, use the refattribute to specify the ldap url to follow.dn: dc=subtree, dc=example, dc=netobjectClass: referralobjectClass: extensibleObjectdc: subtreeref: ldap://b.example.net/dc=subtree,

dc=example,dc=net/

SAGE-AU Conf 2003 – p. 34

Page 35: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Referral - Superior

To specify another ldap server to go to if the current requestis outside the servers naming context, use the referraldirective.referral ldap://root.openldap.org:389/

SAGE-AU Conf 2003 – p. 35

Page 36: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Referral - ManageDsaIT

Managing referral objects is done using a tool whichsupports the ManageDsaIT control

Tells the server that you want to manage the referralobject as an entry

Stops server from sending a referral result

Use the -M option to ldapmodify or ldapsearch

SAGE-AU Conf 2003 – p. 36

Page 37: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

OpenLDAP Schemas

Schema Usecore OpenLDAP core

cosine Cosine and Internet X.500 (RFC 1274)inetorgperson InetOrgPerson

misc Assortednis Network Information Services (RFC 2307)

openldap OpenLDAP Projectjava Java Object (RFC 2714)

corba Corba Object References (RFC 2714)krb5-kdc Kerberos KDC

netscape-profile Netscape Roaming Profilessendmail Sendmail LDAP Routing

SAGE-AU Conf 2003 – p. 37

Page 38: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

RootDSE

To discover what the server supports, use something like:$ ldapsearch -s base -b "" +dn:namingContexts: dc=pisoftware,dc=comsupportedControl: 2.16.840.1.113730.3.4.2supportedExtension: 1.3.6.1.4.1.4203.1.11.1supportedExtension: 1.3.6.1.4.1.1466.20037supportedFeatures: 1.3.6.1.4.1.4203.1.5.1supportedLDAPVersion: 2supportedLDAPVersion: 3supportedSASLMechanisms: CRAM-MD5supportedSASLMechanisms: DIGEST-MD5subschemaSubentry: cn=Subschema

SAGE-AU Conf 2003 – p. 38

Page 39: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Schema Discovery

To discover what schemas etc the server supports, usesomething like:$ ldapsearch -s base -b "cn=Subschema" +It will return:

ldapSyntaxes

matchingRules

attributeTypes

objectClasses

SAGE-AU Conf 2003 – p. 39

Page 40: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Server Monitoring

Compile slapd with –enable-monitor

Added the following to slapd.conf:

modulepath /usr/lib/ldapmoduleload back_monitor# The backend typedatabase monitor# Access controlsaccess to *

by dn="cn=admin,dc=gumby" writeby * read

SAGE-AU Conf 2003 – p. 40

Page 41: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Server Monitoring

To search do the following:

$ ldapsearch -x -b ’cn=Monitor’

Top level output:

dn: cn=MonitorobjectClass: topobjectClass: monitorobjectClass: extensibleObjectcn: Monitordescription: @(#) $OpenLDAP: slapd 2.1.17

(May 17 2003 22:02:20) $

SAGE-AU Conf 2003 – p. 41

Page 42: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

SunONE Directory Server

Originally based on U.Mich LDAP server

Was Netscape Directory Server, then Iplanet, thenSunONE

Available from http://www.sun.com/

Current version is 5.2

Platforms supported:SolarisLinuxWindows 2000HP-UXAIX

SAGE-AU Conf 2003 – p. 42

Page 43: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

SunONE Directory Companion Products

Directory Proxy ServerProvides a firewall for the directory - can routerequests

Identity ServerHelp manage secure access to web-basedresources

Identity Synchronization for WindowsHelps synchronize authentication data betweenWindows NT, Active Directory and SunONE

MetadirectoryConsolidates information from disparate sources, egdirectorys and databases

SAGE-AU Conf 2003 – p. 43

Page 44: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

SunONE Directory Server Components

Directory server

Admin server

Server console for remote management

Command line tools

SNMP agent

Migration tools for previous versions

Client tools

SAGE-AU Conf 2003 – p. 44

Page 45: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

SunONE Directory Server Architecture

Core server to process requests

Directory server console for managing server

Frontends for LDAP, DSML and SNMP

Plugins for access control, replication etc

Initial directory tree, for server config etc

SAGE-AU Conf 2003 – p. 45

Page 46: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

SunONE Directory Server features

LDAPv3 - RFC2251Search filters - RFC2254Search references (smart referrals)LDAP URL - RFC2255LDIF - RFC2849

DSMLv2HTTP and SOAP transportsNative DSML support, not gatewayAllows non-LDAP clients access to dataAllows interfacing using XMLDSML front end is restricted HTTP server

All access controls apply to both

SAGE-AU Conf 2003 – p. 46

Page 47: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

SunONE Directory Server features cont

Multiplatform - including 64 bit systems

Multidatabase design

Large cache support - can support > 4GB caches

Improved update performanceGroup flushIndex compressionReplication compressionImproved checkpointing

Improved searching64 bit server processImproved algorithms for reading caches

SAGE-AU Conf 2003 – p. 47

Page 48: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

SunONE Directory Server features cont

Supports Sun Cluster

Advanced replicationSimple replicationCascading replicationMulti-master replicationFractional replication

Indexes

SSL, TLS and SASL encrytion and authentication

Dynamic groups

Schema and ACL replication

SAGE-AU Conf 2003 – p. 48

Page 49: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

SunONE Server Console

SAGE-AU Conf 2003 – p. 49

Page 50: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

SunONE Admin Tasks

SAGE-AU Conf 2003 – p. 50

Page 51: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

SunONE Admin Config

SAGE-AU Conf 2003 – p. 51

Page 52: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

SunONE Directory Server Tasks

SAGE-AU Conf 2003 – p. 52

Page 53: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

SunONE Directory Server Config

SAGE-AU Conf 2003 – p. 53

Page 54: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

SunONE Directory Server Directory

SAGE-AU Conf 2003 – p. 54

Page 55: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

SunONE Directory Server Status

SAGE-AU Conf 2003 – p. 55

Page 56: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Security Considerations

Slapd defaults to binding to all IPv4 and IPv6 interfaces,consider binding to only the required ones - eg, listenjust on localhost

Firewall the port to restrict access

Use tcp wrappers to restrict at application level

Use TLS or SSL if possible

Consider VPN / other encryption techniques

SAGE-AU Conf 2003 – p. 56

Page 57: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Using LDAP in Applications

LDAP ClientLibrary

LDAP API

LDAPApplication

LDAP EnabledApplication

LDAPServer

LDAPQuery

SAGE-AU Conf 2003 – p. 57

Page 58: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Using Multiple Applications

Squid Apache Sendmail

Application clients

LDAP queries

LDAPServer

SAGE-AU Conf 2003 – p. 58

Page 59: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Linux Authentication

Consists of two main partsPAM - Pluggable Authentication ModulesNSS - Name Service Switch

SAGE-AU Conf 2003 – p. 59

Page 60: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

PAM

Allows sysadmin to choose how applicationsauthenticate

Consists of dynamically loadable object files - seedlopen(3)

Modules stored in /lib/security/pam_modulename.so

Seperates development of applications from developingof authentication schemes

Allows changing of authentication schema withoutmodifying applications

SAGE-AU Conf 2003 – p. 60

Page 61: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

PAM cont

Remember in early days when Linux changed toshadow passwords

Used to have hard coded authentication method -/etc/passwdNeeded to recompile any programs thatauthenticatedVery frustrating for most users

Can have different apps auth against differentdatabases

Can also do restrictions on various things - eg logintime, resources used

SAGE-AU Conf 2003 – p. 61

Page 62: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

PAM Config files

Each application has a (hard coded) service type

Config files can be kept in:/etc/pam.conf/etc/pam.d, with a seperate file per service type

Format for /etc/pam.conf:

service module-type control-flagmodule-path arguments

Format for /etc/pam.d/service:

module-type control-flagmodule-path arguments

Can have multiple entries for each module-type - knownas stacking modules SAGE-AU Conf 2003 – p. 62

Page 63: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

PAM Module Types

AuthenticationEstablishes the users is who they say they are byasking for password (or some other kind ofauthencation token)Can grant other privileges (such as groupmembership) via credential granting

AccountPerforms non-authentication based accountmanagementRestrict access based on time of day, see if accountshave expired, check user and process limits etc

SAGE-AU Conf 2003 – p. 63

Page 64: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

PAM Module Types cont

SessionDeals with things that have to be done before andafter giving a user accessDisplaying motd, mounting directories, showing if auser has mail, last login, updating login histories etc

PasswordUpdating users authentication details - ie, changingpasswords

SAGE-AU Conf 2003 – p. 64

Page 65: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Name Service Switch (NSS)

Provides access to user information after authentication

Provides more information than just username andpassword

Originally done by changing the C library

Now done using dynamic loadable modules

Follows design from Sun Microsystems

Can get this information from places such as LDAP

Modules stored in /lib/libnss_name.so

Configuration file is /etc/nsswitch.conf

SAGE-AU Conf 2003 – p. 65

Page 66: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Name Service Caching Daemon - NSCD

Caches name service lookups

Part of glibc

Config file is /etc/nscd.conf

Useful for not requiring an ldap lookup for everything

SAGE-AU Conf 2003 – p. 66

Page 67: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

System Authentication

Uses RFC2307

Provides a mapping from TCP/IP and unix entities intoLDAP

Gives a centrally maintained db of users

Can create own tools to maintain, or use ready madeones

Could dump out to locally files - not ideal

Use PADL’s nss_ldap and pam_ldap tools

SAGE-AU Conf 2003 – p. 67

Page 68: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

System Authentication Migration

Used PADLs MigrationToolsScript Migratesmigrate_fstab.pl /etc/fstabmigrate_group.pl /etc/groupmigrate_hosts.pl /etc/hostsmigrate_networks.pl /etc/networksmigrate_passwd.pl /etc/passwdmigrate_protocols.pl /etc/protocolsmigrate_rpc.pl /etc/rpcmigrate_services.pl /etc/services

SAGE-AU Conf 2003 – p. 68

Page 69: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

System Authentication Migration cont

These scripts are called on the appropriate file in /etc in thefollowing manner:# ./migrate_passwd.pl /etc/passwd

./passwd.ldifThe migration tools also provide scripts to automaticallymigrate all configuration to LDAP, usingmigrate_all_online,offline.sh. See the README distributedwith the package for more details.

SAGE-AU Conf 2003 – p. 69

Page 70: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

System Auth - Usage

ldappasswd

ldappasswd -W -D ’uid=bmarshal,ou=People,dc=pisoftware,dc=com’ ’uid=bmarshal’

ldapsearch

ldapsearch -L ’uid=*’ldapsearch -L ’objectclass=posixGroup’ldapsearch -L ’objectclass=posixAccount’ldapsearch -D ’uid=bmarshal,ou=People,

dc=pisoftware,dc=com’ -W -L’uid=bmarshal’

ldapmodify (where bmarshal.ldif is ldapsearch -L’uid=bmarshal’)

ldapmodify -W -r -D "cn=Manager,c=pisoftware,dc=com" < bmarshal.ldif

SAGE-AU Conf 2003 – p. 70

Page 71: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Example user LDIF

dn: uid=bmarshal,ou=People,dc=pisoftware,dc=com

uid: bmarshalcn: Brad Marshallobjectclass: accountobjectclass: posixAccountobjectclass: toploginshell: /bin/bashuidnumber: 500gidnumber: 120homedirectory: /mnt/home/bmarshalgecos: Brad Marshall,,,,userpassword: {crypt}aknbKIfeaxs

SAGE-AU Conf 2003 – p. 71

Page 72: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Example group LDIF

dn: cn=sysadmin,ou=Group,dc=pisoftware,dc=com

objectclass: posixGroupobjectclass: topcn: sysadmingidnumber: 160memberuid: bmarshalmemberuid: dwoodmemberuid: jparker

SAGE-AU Conf 2003 – p. 72

Page 73: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Server Configuration

/etc/openldap/slapd.confinclude /etc/openldap/slapd.at.confinclude /etc/openldap/slapd.oc.confschemacheck off

pidfile /var/run/slapd.pidargsfile /var/run/slapd.args

defaultaccess read

SAGE-AU Conf 2003 – p. 73

Page 74: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Server Configuration cont

access to attr=userpasswordby self writeby * read

access to *by self writeby dn=".+" readby * read

SAGE-AU Conf 2003 – p. 74

Page 75: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Server Configuration cont

############################# ldbm database definitions############################

database ldbmsuffix "dc=pisoftware, dc=com"rootdn "cn=Manager, dc=pisoftware, dc=com"rootpw {crypt}lAn4J@KmNp9replica host=replica.pisoftware.com:389

binddn="cn=Manager,dc=pisoftware,dc=com"bindmethod=simple credentials=secretreplogfile /var/lib/openldap/replication.log

# cleartext passwords, especially for the# rootdn, should be avoid. See slapd.conf(5)# for details.directory /var/lib/openldap/

SAGE-AU Conf 2003 – p. 75

Page 76: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

PAM Configuration

/etc/pam_ldap.conf - See actual file for more details# Your LDAP server.# Must be resolvable without using LDAP.host 127.0.0.1

# The distinguished name of the search base.base dc=pisoftware,dc=com

# The LDAP version to use (defaults to 3# if supported by client library)ldap_version 3

# The port.# Optional: default is 389.#port 389

SAGE-AU Conf 2003 – p. 76

Page 77: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

PAM Configuration cont

# Hash password locally; required for# University of Michigan LDAP server,# and works with Netscape Directory# Server if you’re using the UNIX-Crypt# hash mechanism and not using the NT# Synchronization service. This is the# default.pam_password crypt

# Use nds for Novell Directory# Use ad for Active Directory# Use exop for Openldap password# change extended operations

SAGE-AU Conf 2003 – p. 77

Page 78: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

pam.d configuration

/etc/pam.d/ssh#%PAM-1.0auth required pam_nologin.soauth sufficient pam_ldap.soauth required pam_unix.so try_first_passauth required pam_env.so # [1]

account sufficient pam_ldap.soaccount required pam_unix.so

SAGE-AU Conf 2003 – p. 78

Page 79: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

pam.d configuration cont

session sufficient pam_ldap.sosession required pam_unix.sosession optional pam_lastlog.so # [1]session optional pam_motd.so # [1]session optional pam_mail.so standard noenv # [1]session required pam_limits.so

password sufficient pam_ldap.sopassword required pam_unix.so try_first_pass

SAGE-AU Conf 2003 – p. 79

Page 80: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

NSS configuration

/etc/libnss_ldap.conf - see local file for more details# Your LDAP server.# Must be resolvable without using LDAP.host 127.0.0.1

# The distinguished name of the search base.base dc=pisoftware,dc=com

# The LDAP version to use (defaults to 2)ldap_version 3

# The port.# Optional: default is 389.#port 389

SAGE-AU Conf 2003 – p. 80

Page 81: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

NSS configuration - nsswitch.conf

/etc/nsswitch.confpasswd: compat ldapgroup: compat ldapshadow: compat ldapNote that the order of the nss sources will modify whichsource is canonical. That is, if you list ldap first, it will bechecked first.

SAGE-AU Conf 2003 – p. 81

Page 82: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Redhat 7.3 Install Config

SAGE-AU Conf 2003 – p. 82

Page 83: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

RH7.3 Authconfig - Text

SAGE-AU Conf 2003 – p. 83

Page 84: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

RH7.3 Authconfig - GTK User

SAGE-AU Conf 2003 – p. 84

Page 85: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

RH7.3 Authconfig - GTK Authentication

SAGE-AU Conf 2003 – p. 85

Page 86: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

RH7.3 Authconfig - GTK LDAP

SAGE-AU Conf 2003 – p. 86

Page 87: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Windows LDAP Auth - pGina

Replacement for domain auth in Windows

GINA (Graphical Identification and Authentication)module

Inserts itself between Winlogon and MS’s GINA module

Handles certain operations, passes rest ontransparently

Winlogon loads pGina which then loads plugin

If plugin allows user to login, willCreate account for userAdd to specified groupsMap drivesOther config options

SAGE-AU Conf 2003 – p. 87

Page 88: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

pGina Config

Download and install pGina from http://pgina.sf.net/

Install ldapauth.dll into c:pginaplugins

Run regedit and create a new key called ldapauth inHKey_Local_MachineSoftwarepGina

ldapServer ldap.example.comldapPrepend uid=ldapMethod 0ldapContext0 ou=People,dc=example,dc=com

SAGE-AU Conf 2003 – p. 88

Page 89: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

pGina Registry Entries

Key ValueldapMethod 1 = Multimap, 2 = search, 3 = mapuseSSL Use SSLldapPrePend For map and multimap

what it puts before the usernameldapAppend For map, what goes after the usernameldapContext0-255 For multimap, different contexts to tryldapAdminUsername User to bind asldapAdminPassword Password for ldapAdminUsernameuserOK0-255 LDAP Group(s) user must be inadminOK0-255 LDAP Group(s) user must be a

member to be in Admin group

SAGE-AU Conf 2003 – p. 89

Page 90: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

pGina Config

SAGE-AU Conf 2003 – p. 90

Page 91: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

pGina ldapauth Regedit

SAGE-AU Conf 2003 – p. 91

Page 92: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

pGina Login

SAGE-AU Conf 2003 – p. 92

Page 93: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Sendmail and LDAP

Sendmail traditionally uses flat files stored on the server

Reduces need to manually sync data across multipleservers

Allows cross-platform, standardised, centralisedrepository of user data

Can use data in multiple applications - internal emaildirectory etc

SAGE-AU Conf 2003 – p. 93

Page 94: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Sendmail and LDAP compiling

To check that sendmail has LDAP support, run:sendmail -d0.1 -bv rootThe output should contain:Compiled with: LDAPMAPTo compile sendmail with LDAP support:APPENDDEF(‘confMAPDEF’, ‘-DLDAPMAP’)APPENDDEF(‘confINCDIRS’,

‘-I/path/to/openldap-1.2.11/include’)APPENDDEF(‘confLIBSDIRS’,

‘-L/path/to/openldap-1.2.11/libraries’)APPENDDEF(‘confLIBS’, ‘-lldap -llber’)Now you can rebuild as normal.

SAGE-AU Conf 2003 – p. 94

Page 95: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Sendmail and LDAP config

The base config that you need to add to sendmail.mc is:LDAPROUTE_DOMAIN(’example.com’)dnldefine(confLDAP_DEFAULT_SPEC,

-h ldap.example.com-b dc=example.com)

To define a group of hosts, use:define(‘confLDAP_CLUSTER’, ‘Servers’)To enable LDAP aliases:define(‘ALIAS_FILE’, ‘ldap:’)To enable other lookups, use:FEATURE(‘access_db’, ‘LDAP’)FEATURE(‘virtusertable’, ‘LDAP’)To enable classes:RELAY_DOMAIN_FILE(‘@LDAP’)

SAGE-AU Conf 2003 – p. 95

Page 96: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Sendmail LDAP Map Values

FEATURE() sendmailMTAMapNameaccess_db access

authinfo authinfobitdomain bitdomain

domaintable domaingenericstable generics

mailertable maileruucpdomain uucpdomainvirtusertable virtuser

SAGE-AU Conf 2003 – p. 96

Page 97: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Sendmail Alias LDIF example

dn: sendmailMTAKey=postmaster,dc=pisoftware, dc=com

objectClass: sendmailMTAobjectClass: sendmailMTAAliasobjectClass: sendmailMTAAliasObjectsendmailMTAAliasGrouping: aliasessendmailMTACluster: ServerssendmailMTAKey: postmastersendmailMTAAliasValue: bmarshal

SAGE-AU Conf 2003 – p. 97

Page 98: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Sendmail Mailertable LDIF example

Group LDIF:dn: sendmailMTAMapName=mailer,

dc=pisoftware, dc=comobjectClass: sendmailMTAobjectClass: sendmailMTAMapsendmailMTACluster: ServerssendmailMTAMapName: mailer

SAGE-AU Conf 2003 – p. 98

Page 99: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Sendmail Mailertable LDIF example cont

Entry LDIF:dn: sendmailMTAKey=example.com,

sendmailMTAMapName=mailer,dc=pisoftware, dc=com

objectClass: sendmailMTAobjectClass: sendmailMTAMapobjectClass: sendmailMTAMapObjectsendmailMTAMapName: mailersendmailMTACluster: ServerssendmailMTAKey: example.comsendmailMTAMapValue: \

relay:[smtp.example.com]

SAGE-AU Conf 2003 – p. 99

Page 100: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Sendmail LDAP Classes Values

Command sendmailMTAClassNameCANONIFY_DOMAIN_FILE() Canonify

EXPOSED_USER_FILE() EGENERICS_DOMAIN_FILE() G

LDAPROUTE_DOMAIN_FILE() LDAPRouteLDAPROUTE_EQUIVALENT_FILE() LDAPRouteEquiv

LOCAL_USER_FILE() LMASQUERADE_DOMAIN_FILE() M

MASQUERADE_EXCEPTION_FILE() NRELAY_DOMAIN_FILE() R

VIRTUSER_DOMAIN_FILE() VirtHost

SAGE-AU Conf 2003 – p. 100

Page 101: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Sendmail Classes LDIF example

dn: sendmailMTAClassName=R,dc=pisoftware, dc=com

objectClass: sendmailMTAobjectClass: sendmailMTAClasssendmailMTACluster: ServerssendmailMTAClassName: RsendmailMTAClassValue: pisoftware.comsendmailMTAClassValue: example.comsendmailMTAClassValue: 10.56.23

SAGE-AU Conf 2003 – p. 101

Page 102: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Exim

system_aliases:driver = aliasfilesearch_type = ldaphide query = \

user = "cn=admin,dc=example,dc=com" \pass = mypasswd \ldap:/// \cn=${quote_ldap:$local_part},dc=example,\dc=com?mailbox?base?

Use ldapm for search_type to return multiple entries

SAGE-AU Conf 2003 – p. 102

Page 103: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Bind and LDAP

Uses a sdb ldap backend

Available from http://www.venaas.no/ldap/bind-sdb/

Uses schema called dNSZone

Build bind9 with the sdb backend, see the instructionsincluded

Add the following to named.conf:

zone "example.com" {type master;database "ldap ldap://ldap.example.com/ \

dc=example,dc=com,o=DNS,dc=example,dc=com 172800";};

SAGE-AU Conf 2003 – p. 103

Page 104: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Bind and LDAP LDIF

dn: relativeDomainName=@, dc=example, dc=com, \o=DNS, dc=example, dc=com

objectClass: dNSZonerelativeDomainName: @zoneName: example.comdNSTTL: 3600dNSClass: INsOARecord: ns.example.com. hostmaster.example.com. \

2002052201 3600 1800 604800 86400nSRecord: ns.example.com.nSRecord: ns.other-domain.com.mXRecord: 10 mail.example.com.mXRecord: 20 mail.other-domain.com.

SAGE-AU Conf 2003 – p. 104

Page 105: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Bind and LDAP LDIF cont

Equivalent to:@ 3600 IN SOA ns.example.com. hostmaster.example.com. (

2002052201 3600 1800 604800 86400 )NS ns.example.com.NS ns.other-domain.com.MX 10 mail.example.com.MX 20 mail.other-domain.com.

SAGE-AU Conf 2003 – p. 105

Page 106: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Bind and LDAP LDIF cont

dn: relativeDomainName=my-hosta, dc=example,dc=com, o=DNS, dc=example, dc=com

objectClass: dNSZonerelativeDomainName: my-hostazoneName: example.comdNSTTL: 86400dNSClass: INaRecord: 10.10.10.10mXRecord: 10 mail.example.com.mXRecord: 20 mail.other-domain.com.

SAGE-AU Conf 2003 – p. 106

Page 107: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Bind and LDAP LDIF

Equivalent to:my-hosta A 10.10.10.10

MX 10 mail.example.com.MX 20 mail.other-domain.com.

SAGE-AU Conf 2003 – p. 107

Page 108: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Apache and LDAP

Allows you to restrict access to a webpage with datafrom LDAP

Download mod_auth_ldap.tar.gz fromhttp://www.muquit.com/muquit/software/mod_auth_ldap/mod_auth_ldap.html

Install either as a DSO or by compiling in - seewebpage for more details

SAGE-AU Conf 2003 – p. 108

Page 109: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Apache and LDAP cont

Add the following to httpd.conf:

<Directory "/var/www/foo">Options Indexes FollowSymLinksAllowOverride Noneorder allow,denyallow from allAuthName "RCS Staff only"AuthType Basic

SAGE-AU Conf 2003 – p. 109

Page 110: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Apache and LDAP cont

LDAP_Server ldap.server.comLDAP_Port 389Base_DN "dc=server,dc=com"UID_Attr uid#require valid-userrequire user foo bar doe#require roomnumber "C119 Center Building"#require group# cn=sysadmin,ou=Group,dc=server,dc=com</Directory>

SAGE-AU Conf 2003 – p. 110

Page 111: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Squid and LDAP

Allows you to restrict access to Squid via ldap

Add the following to the configure line:–enable-auth-modules=LDAP

See documentation at http://orca.cisti.nrc.ca/ gnewton/opensource/squid_ldap_auth/

Add the following to squid.conf:

authenticate_program /path/to/ldap_auth \-b dc=yourdomain,dc=com ldap.domain.com

acl ldapauth proxy_auth REQUIRED#acl ldapauth proxy_auth bmarshal pag

Restart squid

SAGE-AU Conf 2003 – p. 111

Page 112: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Samba and winbind

Install winbind from Samba

Add the following to /etc/samba/smb.conf

security = domainworkgroup = DOMAINwinbind separator = +winbind cache time = 10template shell = /bin/bashtemplate homedir = /home/%D/%Uwinbind uid = 10000-20000winbind gid = 10000-20000password server = ip.ad.dr.eswins server = ip.ad.dr.es

SAGE-AU Conf 2003 – p. 112

Page 113: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Samba and winbind cont

/etc/nsswitch.conf (under debian)

passwd: compat winbindgroup: compat winbindshadow: compat winbind

Addition to /etc/pam.d/login

auth sufficient pam_winbind.soaccount sufficient pam_winbind.sosession sufficient pam_winbind.so

SAGE-AU Conf 2003 – p. 113

Page 114: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Samba and winbind cont

Create a machine account for the workstation in ActiveDirectory in Programs | Administrative Tools | ActiveDirectory Users and Computers

Join the domain by the following

$ sudo smbpasswd -j <domainname> \-r <domainservername> -U Administrator

Restart samba and winbind

Login as DOMAIN+username

SAGE-AU Conf 2003 – p. 114

Page 115: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Samba and LDAP

Install OpenLDAP 2.0.x

Compile samba 2.2.3 or later with –with-ldapsam

Download and install smbldap-tools fromwww.idealx.org

Copy samba.schema into OpenLDAP schema dir

Configure slapd.conf as below

Import base.ldif

Configure smb.conf as below

As root, run:

# smbpasswd -w secret# smbldap-useradd.pl -a -m \

-g 200 administrator\item Get the local system authing off LDAP

SAGE-AU Conf 2003 – p. 115

Page 116: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Samba and LDAP - slapd.conf

# Schema and objectClass definitionsinclude /etc/ldap/schema/core.schemainclude /etc/ldap/schema/cosine.schemainclude /etc/ldap/schema/nis.schemainclude /etc/ldap/schema/inetorgperson.schemainclude /etc/ldap/schema/misc.schemainclude /etc/ldap/schema/samba.schema

SAGE-AU Conf 2003 – p. 116

Page 117: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Samba and LDAP - slapd.conf cont

database ldbm# The base of your directorysuffix "dc=gumby"# Where the database file are physically storeddirectory "/var/lib/ldap"# Root userrootdn "cn=Manager,dc=gumby"rootpw secret# Indexing optionsindex objectClass,rid,uid, \uidNumber,gidNumber,memberUID eqindex cn,mail,surname, \givenname eq,subinitial

SAGE-AU Conf 2003 – p. 117

Page 118: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Samba and LDAP - smb.conf

[global]workgroup = GROUPsecurity = userwins support = yesos level = 80domain master = truedomain logons = yeslocal master = yespreferred master = truepasswd program = /usr/local/sbin/ \

smbldap-passwd.pl -o %u

SAGE-AU Conf 2003 – p. 118

Page 119: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Samba and LDAP - smb.conf cont

ldap suffix = dc=gumbyldap admin dn = cn=Manager,dc=gumbyldap port = 389ldap server = 127.0.0.1ldap ssl = Noadd user script = /usr/local/sbin/ \

smbldap-useradd.pl -w %udomain admin group = @"Domain Admins"logon path = \\%N\profiles\%ulogon drive = H:logon home = \\homesrv\%ulogon script = logon.cmd

SAGE-AU Conf 2003 – p. 119

Page 120: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Samba and LDAP - smb.conf cont

[netlogon]comment = Network Logon Servicepath = /data/samba/netlogonguest ok = yeswritable = noshare modes = no

; share for storing user profiles[profiles]

path = /data/samba/profilesread only = nocreate mask = 0600directory mask = 0700

SAGE-AU Conf 2003 – p. 120

Page 121: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Samba and LDAP - Example ldif

dn: uid=administrator,ou=Users,dc=gumbycn: administratorsn: administratoruid: administratorgidNumber: 200homeDirectory: /home/administratorloginShell: /bin/bashgecos: System Userdescription: System UserobjectClass: inetOrgPersonobjectClass: posixAccountobjectClass: sambaAccountpwdLastSet: 0logonTime: 0logoffTime: 2147483647

SAGE-AU Conf 2003 – p. 121

Page 122: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Samba and LDAP - Example ldif cont

kickoffTime: 2147483647pwdCanChange: 0pwdMustChange: 2147483647displayName: System UseracctFlags: [UX]primaryGroupID: 1401homeDrive: H:smbHome: \\muon\homesprofilePath: \\muon\profiles\administratorscriptPath: administrator.cmdlmPassword: 81CBCEA8A9AF93BBAAD3B435B51404EEntPassword: 561CBDAE13ED5ABD30AA94DDEB3CF52DuidNumber: 0rid: 1000

SAGE-AU Conf 2003 – p. 122

Page 123: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Samba and LDAP - Joining Domains

WinNTGo to Control Panel | Network | IdentificationClick on Change, then choose Member Of Domain,and enter the domainClick on Create Computer Account in the Domain,then enter a domain admin username and passwordReboot

SAGE-AU Conf 2003 – p. 123

Page 124: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Samba and LDAP - Joining Domains cont

Win2kRight click on My Computers | PropertiesGo to Network Identification | PropertiesClick on Member Of Domain, and input the domainyou want to joinEnter a username / password combination for adomain administratorReboot

SAGE-AU Conf 2003 – p. 124

Page 125: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Samba and LDAP - Joining Domains cont

Win95Go to Control Panel | Network | ConfigurationClick on Client for Microsoft Network | PropertiesIn the General tab, tick the box in Logon Validationfor Logon to Windows NT Domain and put thedomain in the Windows NT Domain textboxGo to Control Panel | Passwords | User ProfilesSelect the setting that says users can customizetheir own profilesReboot

SAGE-AU Conf 2003 – p. 125

Page 126: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Netscape Addressbook and LDAP

Go to:

Edit | Mail & Newsgroup Account Setup | Addressing

Click on Edit Directories | Add

Fill out hostname, base DN etc

Now when you compose a message, it will search your ldapserver.

SAGE-AU Conf 2003 – p. 126

Page 127: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Netscape Addressbook Adding

SAGE-AU Conf 2003 – p. 127

Page 128: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Netscape Addressbook Editing

SAGE-AU Conf 2003 – p. 128

Page 129: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Netscape Addressbook Editing cont

SAGE-AU Conf 2003 – p. 129

Page 130: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Netscape Addressbook Editing cont

SAGE-AU Conf 2003 – p. 130

Page 131: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Outlook Express Addressbook

Go to Tools | Accounts

Click on Add | Directory Service

Enter the hostname in the Internet Directory Serverfield, click on Next

Click yes to using the directory to check addresses,then Next, then Finish

Select the Account you just created, click on Properties

Click on Advanced, then enter the search base

SAGE-AU Conf 2003 – p. 131

Page 132: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Outlook Express Directory

SAGE-AU Conf 2003 – p. 132

Page 133: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Outlook Express Directory

SAGE-AU Conf 2003 – p. 133

Page 134: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Outlook Express Directory

SAGE-AU Conf 2003 – p. 134

Page 135: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Outlook Express Directory

SAGE-AU Conf 2003 – p. 135

Page 136: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Outlook Express Directory

SAGE-AU Conf 2003 – p. 136

Page 137: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Outlook Express Addressbook - Composing

Click on New Mail, then click on To | Find

Pull down the Look in menu and select your directory

Type in what who you’re looking for in the Name field,then hit Find Now

SAGE-AU Conf 2003 – p. 137

Page 138: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Outlook Express Addressbook - Composing

SAGE-AU Conf 2003 – p. 138

Page 139: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Outlook Express Addressbook - Composing

SAGE-AU Conf 2003 – p. 139

Page 140: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Outlook Express Addressbook - Composing

SAGE-AU Conf 2003 – p. 140

Page 141: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Address Book LDIF

dn: cn=Brad Marshall, ou=addressbook, dc=gumbyobjectClass: topobjectClass: personobjectClass: organizationalPersonobjectClass: inetOrgPersoncn: Brad MarshallgivenName: Bradsn: Marshallmail: [email protected]

SAGE-AU Conf 2003 – p. 141

Page 142: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Address Book LDIF cont

physicalDeliveryOfficeName: Plugged In SoftwarepostalAddress: PO BOX 1818l: Miltonou: addressbookst: QldpostalCode: 4064telephoneNumber: (07) 38762188facsimileTelephoneNumber: (07) 38764899pager: 1800-PAGERmobile: 1800-MOBILEhomePhone: 1800-HOME

SAGE-AU Conf 2003 – p. 142

Page 143: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Active Directory and LDAP

Provides a directory for a Microsoft network:

Centrally manage

Central security

Central user administration

Integrates with DNS

Information replication

Provides all the services a domain controller did

SAGE-AU Conf 2003 – p. 143

Page 144: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

LDAP GUIs

There are many LDAP administration GUIs, such as:

directory administrator: Manages users and groups

gq: Browse and search LDAP schemas and data

ldapexplorer: PHP based administration tools

vlad: LDAP visualisation tools (browse and editattributes)

eudc: Emacs Unified Directory Client - commoninterface to LDAP, bbdb etc

SAGE-AU Conf 2003 – p. 144

Page 145: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

LDAP GUIs - GQ View People

SAGE-AU Conf 2003 – p. 145

Page 146: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

LDAP GUIs - GQ View User

SAGE-AU Conf 2003 – p. 146

Page 147: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

LDAP GUIs - GQ Search

SAGE-AU Conf 2003 – p. 147

Page 148: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

LDAP GUIs - Directory Admin Group

SAGE-AU Conf 2003 – p. 148

Page 149: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

LDAP GUIs - Directory Admin New User

SAGE-AU Conf 2003 – p. 149

Page 150: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

LDAP GUIs - Directory Admin New User

SAGE-AU Conf 2003 – p. 150

Page 151: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

LDAP GUIs - Directory Admin New User

SAGE-AU Conf 2003 – p. 151

Page 152: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

LDAP GUIs - Directory Admin New User

SAGE-AU Conf 2003 – p. 152

Page 153: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

LDAP GUIs - Directory Admin New User

SAGE-AU Conf 2003 – p. 153

Page 154: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

LDAP GUIs - Directory Admin New User

SAGE-AU Conf 2003 – p. 154

Page 155: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Perl and LDAP - Basic Query

use Net::LDAP;my($ldap) = Net::LDAP->new(’ldap.example.com’)

or die "Can’t bind to ldap: $!\n";$ldap->bind;my($mesg) = $ldap->search(base => "dc=pisoftware,dc=com",

filter => ’(objectclass=*)’);$mesg->code && die $mesg->error;map { $_->dump } $mesg->all_entries;# ORforeach $entry ($mesg->all_entries)

{ $entry->dump; }$ldap->unbind;

SAGE-AU Conf 2003 – p. 155

Page 156: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Perl and LDAP - Adding

$ldap->bind(dn => $manager,password => $password,

);

$result = $ldap->add( dn => $groupdn,attr => [ ’cn’ => ’Test User’,

’sn’ => ’User’,’uid’ => ’test’,

];$ldap->unbind;

SAGE-AU Conf 2003 – p. 156

Page 157: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Perl and LDAP - Deleting

$ldap->bind(dn => $manager,password => $password,

);

$ldap->delete( $groupdn );$ldap->unbind;

SAGE-AU Conf 2003 – p. 157

Page 158: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Perl and LDAP - Modifying

$ldap->modify( $dn,changes => [

# Add sn=Useradd => [ sn => ’User’ ],

# Delete all fax numbersdelete => [ faxNumber => []],

# Delete phone number 911delete => [ telephoneNumber =>

[’911’]],# Change email address

replace => [ email =>’[email protected]’]

]);$ldap->unbind;

SAGE-AU Conf 2003 – p. 158

Page 159: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

PHP and LDAP - Binding

$ds=ldap_connect($hostname);if ($ds) {ldap_set_option($ds, LDAP_OPT_PROTOCOL_VERSION, 3)

$r=ldap_bind($ds, $ldaprdn, $ldappass);

ldap_close($ds);}

SAGE-AU Conf 2003 – p. 159

Page 160: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

PHP and LDAP - Searching

$sr=ldap_search($ds,"dc=example,dc=com", "objectclass=*");

$info = ldap_get_entries($ds, $sr);for ($i=0; $i<$info["count"]; $i++) {

echo "dn is: ". $info[$i]["dn"] ."<br>";echo "first objectclass entry is: ".

$info[$i]["objectclass"][0] ."<br>";}See http://www.php.net/manual/en/ref.ldap.php

SAGE-AU Conf 2003 – p. 160

Page 161: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

Questions?

Any Questions ?

SAGE-AU Conf 2003 – p. 161

Page 162: LDAPifying Applications - HUMBUGquark.humbug.org.au/publications/ldap/ldap-apps.pdf · Microsoft Windows NT/2000 SAGE-AU Conf 2003 – p. 9. LDAP slapd architecture ... NULL - null

References

Understanding and Deploying LDAP Directory ServicesTimothy A. Howes, Mark C. Smith and Gordon S. GoodMacmillan Network Architecture and Development Series

Implementing LDAPMark WilcoxWrox Press Ltd

Perl for System AdministrationDavid N. Blank-EdelmanO’Reilly

http://samba.idealx.org/dist/samba-ldap-howto.pdf

SAGE-AU Conf 2003 – p. 162