Hello,
We are running several Solaris servers configured on a very old Sun Directory Server. This server is about to die, that's why we're preparing a migration to a new OpenLDAP server.
The new server also deserve Linux systems. This mean we already have an automount objectClass, and thus used the old nis Schema for the Solaris systems.
As explained in the Solaris 10 documentation, we initialized ldapclient with the AttributeMap and ObjectClassMap parameters.
It works fine with ldaplist, but automount seems to ignore the mapping.
Here are a few config files and command outputs :
*LDAP Client configuration*
root@testldapc01 # ldapclient list
NS_LDAP_FILE_VERSION= 2.0
NS_LDAP_BINDDN= cn=nisRead,ou=Special Users,ou=nis,o=hefr
NS_LDAP_BINDPASSWD= xxxxxxxxxxx
NS_LDAP_SERVERS= xxxxxxxxx.hefr.ch
NS_LDAP_SEARCH_BASEDN= ou=nis,o=hefr
NS_LDAP_AUTH= simple
NS_LDAP_SEARCH_REF= FALSE
NS_LDAP_SEARCH_SCOPE= sub
NS_LDAP_SEARCH_TIME= 30
NS_LDAP_CACHETTL= 43200
NS_LDAP_CREDENTIAL_LEVEL= proxy
NS_LDAP_SERVICE_SEARCH_DESC= passwd: ou=People,ou=nis,o=hefr?sub
NS_LDAP_SERVICE_SEARCH_DESC= group: ou=Groups,ou=nis,o=hefr?sub
NS_LDAP_SERVICE_SEARCH_DESC= auto.master: nisMapName=auto_master,ou=solaris,ou=automount,ou=nis,o=hefr?sub
NS_LDAP_SERVICE_SEARCH_DESC= auto.home: nisMapName=auto_home,ou=solaris,ou=automount,ou=nis,o=hefr?sub
NS_LDAP_SERVICE_SEARCH_DESC= auto_home: nisMapName=auto_home,ou=solaris,ou=automount,ou=nis,o=hefr?sub
NS_LDAP_SERVICE_SEARCH_DESC= auto_master: nisMapName=auto_master,ou=solaris,ou=automount,ou=nis,o=hefr?sub
NS_LDAP_SERVICE_SEARCH_DESC= shadow:ou=People,ou=nis,o=hefr?sub
NS_LDAP_BIND_TIME= 10
NS_LDAP_ATTRIBUTEMAP= automount: automountInformation=nisMapEntry
NS_LDAP_ATTRIBUTEMAP= automount: automountKey=cn
NS_LDAP_ATTRIBUTEMAP= automount: automountMapName=nisMapName
NS_LDAP_OBJECTCLASSMAP= automount: automount=nisObject
NS_LDAP_OBJECTCLASSMAP= automount: automountMap=nisMap
*LDAP tests for automount informations*
root@testldapc01 # ldaplist -l auto.master
dn: nisMapName=auto_master,ou=solaris,ou=automount,ou=nis,o=hefr
nisMapName: auto_master
objectClass: nisMap
dn: cn=/home,nisMapName=auto_master,ou=solaris,ou=automount,ou=nis,o=hefr
objectClass: nisObject
objectClass: top
cn: /home
nisMapEntry: auto_home -nosuid,nobrowse
nisMapName: auto_master
root@testldapc01 # ldaplist -l auto.home beytriso
dn: cn=beytriso,nisMapName=auto_home,ou=solaris,ou=automount,ou=nis,o=hefr
nisMapName: auto_home
cn: beytriso
objectClass: top
objectClass: nisObject
nisMapEntry: 160.98.2.27:/vol/vol_pers_sofr/qt_home_sofr/&
*/etc/nsswitch.conf for automount*
root@testldapc01 # grep automount /etc/nsswitch.conf
automount: ldap
*Packet capture when automountd starts :*
Frame 20 (183 bytes on wire, 183 bytes captured)
Lightweight-Directory-Access-Protocol
LDAPMessage searchRequest(2) " nisMapName=auto_master,ou=solaris,ou=automount,ou=nis,o=hefr" wholeSubtree
messageID: 2
protocolOp: searchRequest (3)
searchRequest
baseObject: nisMapName=auto_master,ou=solaris,ou=automount,ou=nis,o=hefr
scope: wholeSubtree (2)
derefAliases: derefAlways (3)
sizeLimit: 0
timeLimit: 30
typesOnly: False
Filter: (&(objectClass=automount)(automountKey=*))
attributes: 0 items
[Response In: 21]
Frame 21 (68 bytes on wire, 68 bytes captured)
Lightweight-Directory-Access-Protocol
LDAPMessage searchResDone(2) success [0 results]
messageID: 2
protocolOp: searchResDone (5)
searchResDone
resultCode: success (0)
matchedDN:
errorMessage:
[Response To: 20]
[Time: 0.002397000 seconds]
As you can see in the capture, it sends a filter containing the objectClass=automount and the attribute automountKey (&(objectClass=automount)(automountKey=*)).
*The current version of the autofs package *
root@testldapc01 # pkginfo -l SUNWatfsr
PKGINST: SUNWatfsr
NAME: AutoFS, (Root)
CATEGORY: system
ARCH: sparc
VERSION: 11.10.0,REV=2005.01.21.15.53
BASEDIR: /
VENDOR: Sun Microsystems, Inc.
DESC: configuration and start-up files for the AutoFS filesystem
PSTAMP: on10ptchfeat20090317035816
INSTDATE: Jun 26 2009 08:04
HOTLINE: Please contact your local service provider
STATUS: completely installed
FILES: 15 installed pathnames
10 shared pathnames
10 directories
1 executables
13 blocks used (approx)
*System version*
root@testldapc01 # showrev -w
OpenWindows version:
Solaris X11 Version 6.6.2 20 May 2009
Anyone already encountered this kind of problems ? How did you solve it ?