我需要使用ldap为我们环境中的特定位置创建一个自动挂载映射,因为我们有" ldap + nis"集成设置。我对ldap + NIS了解不多,因此需要你帮助才能理解它... 我从env示例中得到的ldif文件格式如下..
dn: cn=/depot,nisMapName=auto_master_lnx_noida,ou=automount,ou=Default,ou=noida,
ou=services,o=example.com
nisMapName: auto_master
objectClass: nisObject
objectClass: top
cn: /depot
nisMapEntry: ldap:automountMapName=auto_depot,ou=automount,ou=Default,ou=noida,o
u=services,o=example.com
同样我需要创建以下auto.master,我们正在使用sun ldap
/lan/ttv auto_lan_ttv
答案 0 :(得分:0)
通常,它们看起来像:
dn:automountMapName=auto_direct,dc=nishpind
objectClass: top
objectClass: automountMap
automountMapName: auto_direct
dn:automountKey=/mnt_direct/test1,automountMapname=auto_direct, dc=nishpind
objectClass: top
objectClass: automount
automountInformation:hostA:/tmp
automountKey: /mnt_direct/test1
dn:automountKey=/mnt_direct/test2,automountMapname=auto_direct, dc=nishpind
objectClass: top
objectClass: automount
automountInformation:hostB:/tmp
automountKey:/mnt_direct/test2
虽然有点过时,但有一些信息在: https://ldapwiki.com/wiki/LDAPAutomountInformation
-Jim