Bogdan B. Rudas wrote:

Хочется создать свою схему для хранения настроек tc & iptables. Где
можно почитать про создание схем? Как я понимаю, OID выбирается
неслучаным образом. В гугле сколь-нибудь толковой доки пока не нашел.

OpenLDAP 2.1 Administrator's Guide:
"...For private experiments, OIDs under 1.1 may be used.
The OID 1.1 arc is regarded as dead name space..."

Я делаю так:

=== my.schema ===

objectIdentifier localOID 1.1.1073.1

objectIdentifier ldapentryAT localOID:100.1
objectIdentifier ldapentryOC localOID:100.2

objectclass ( ldapentryOC:1 NAME 'ldapEntry'
        DESC 'Root structural objectclass'
        SUP top STRUCTURAL )

=== myconf.schema ===

objectIdentifier confAT localOID:101.1
objectIdentifier confOC localOID:101.2

attributetype ( confAT:1 NAME 'confName'
        DESC 'Configuration name'
        EQUALITY caseIgnoreMatch
        SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 )

attributetype ( confAT:2 NAME 'confValue'
        DESC 'Configuration related value'
        EQUALITY caseIgnoreMatch
        SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 )

objectclass ( confOC:1 NAME 'conf'
        DESC 'Configuration' SUP top AUXILIARY
        MUST ( confName )
        MAY ( confValue $ description ) )

===

--
Not all men who drink are poets. Some of us drink because we aren't poets.

Ответить