私は LDAP を初めて使用しobjectclass
ます。以下のように新しく作成しました。
attributetype ( 1.3.6.1.4.1.42.2.27.4.1.7
NAME 'functions'
DESC 'Admin functions'
EQUALITY caseExactIA5Match
SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 )
objectclass ( 1.3.6.1.4.1.42.2.27.4.2.3
NAME 'adminFunctionsGroup'
DESC 'Admin functions group'
SUP top
STRUCTURAL
MUST ( cn ) )
この場合、両方の兄弟がobjectclass
親`top.attributetype
adminFunctionsGroup
以下のように作成しようとしましたが、エラーが発生しました。
AttributeType not found: adminFunctionsGroup
試み:
attributetype ( 1.3.6.1.4.1.42.2.27.4.1.8
NAME 'adminFunctions'
DESC 'Admin functions'
EQUALITY caseExactIA5Match
SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 )
attributetype ( 1.3.6.1.4.1.42.2.27.4.1.9
NAME 'adminGroups'
DESC 'Admin groups'
EQUALITY caseExactIA5Match
SUP adminFunctionsGroup
SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 )
objectclass ( 1.3.6.1.4.1.42.2.27.4.2.1
NAME 'User'
DESC 'user object'
SUP top
STRUCTURAL
MUST ( cn $ adminGroups )
MAY adminFunctions )
objectclass
定義で兄弟を参照する他の方法はありますか?