The branch, master has been updated
       via  8d87c0a... s4-drs: added two more SPNs in addentry
       via  ad11deb... s4-schema: fixes for W2K8-R2 schema
       via  ebec499... s4-schema: added msDS-NcType to schema container
       via  ce21151... s4-schema: fixed attributes of aggregate schema
       via  38909a4... s4-schema: switch to W2K8-R2 schema
       via  d371b0e... s4-schema: added adminDisplayName and adminDescription
       via  c93a182... s4-schema: added some debug for bad attributes
       via  9d296e6... s4-provision: added W2K8-R2 schema as provided by WSPP
      from  5ccf8ae... s4-samba3samtest: we need to force netbios name as well

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 8d87c0a0c32ca49ae7b68953e4313c7313a68871
Author: Andrew Tridgell <[email protected]>
Date:   Fri Jan 8 18:03:09 2010 +1100

    s4-drs: added two more SPNs in addentry
    
    w2k8r2 wants these after a DCPROMO
    
    Pair-Programmed-With: Andrew Bartlett <[email protected]>

commit ad11deb9bd825d699e2b6799b40d98c28c95910e
Author: Andrew Tridgell <[email protected]>
Date:   Fri Jan 8 17:58:26 2010 +1100

    s4-schema: fixes for W2K8-R2 schema
    
    The schema from WSPP had a number of typos that prevented it from
    working. These changes allow it to work with Samba, and allow w2k8r2
    to run DCPROMO against Samba successfully
    
    Pair-Programmed-With: Andrew Bartlett <[email protected]>

commit ebec49965b70795d610be70fe1bab91ac2c19765
Author: Andrew Tridgell <[email protected]>
Date:   Fri Jan 8 17:01:32 2010 +1100

    s4-schema: added msDS-NcType to schema container
    
    Pair-Programmed-With: Andrew Bartlett <[email protected]>

commit ce21151d226829a33b2b7f6524f36b7d7f04c50e
Author: Andrew Tridgell <[email protected]>
Date:   Fri Jan 8 17:00:54 2010 +1100

    s4-schema: fixed attributes of aggregate schema
    
    Pair-Programmed-With: Andrew Bartlett <[email protected]>

commit 38909a4ae5a2dc3b18a797933586d35cc679d667
Author: Andrew Tridgell <[email protected]>
Date:   Fri Jan 8 17:00:28 2010 +1100

    s4-schema: switch to W2K8-R2 schema
    
    Pair-Programmed-With: Andrew Bartlett <[email protected]>

commit d371b0eabe360f7c184a10282f63a64b0cfc550f
Author: Andrew Tridgell <[email protected]>
Date:   Fri Jan 8 16:59:27 2010 +1100

    s4-schema: added adminDisplayName and adminDescription
    
    These are missing from the WSPP schemas
    
    Pair-Programmed-With: Andrew Bartlett <[email protected]>

commit c93a182a0d14862d960aee57f9af4baabe518549
Author: Andrew Tridgell <[email protected]>
Date:   Fri Jan 8 16:57:56 2010 +1100

    s4-schema: added some debug for bad attributes

commit 9d296e6776c96401f2285602f939256d9cbe7c48
Author: Andrew Tridgell <[email protected]>
Date:   Fri Jan 8 16:56:01 2010 +1100

    s4-provision: added W2K8-R2 schema as provided by WSPP

-----------------------------------------------------------------------

Summary of changes:
 source4/dsdb/schema/schema_init.c                  |    8 +
 source4/rpc_server/drsuapi/addentry.c              |   45 +-
 source4/scripting/python/samba/ms_schema.py        |    2 +
 source4/scripting/python/samba/schema.py           |    4 +-
 .../ad-schema/MS-AD_Schema_2K8_R2_Attributes.txt   |16060 ++++++++++++++++++++
 .../ad-schema/MS-AD_Schema_2K8_R2_Classes.txt      | 3577 +++++
 source4/setup/aggregate_schema.ldif                |    2 +
 source4/setup/provision_schema_basedn.ldif         |    1 +
 8 files changed, 19684 insertions(+), 15 deletions(-)
 create mode 100644 source4/setup/ad-schema/MS-AD_Schema_2K8_R2_Attributes.txt
 create mode 100644 source4/setup/ad-schema/MS-AD_Schema_2K8_R2_Classes.txt


Changeset truncated at 500 lines:

diff --git a/source4/dsdb/schema/schema_init.c 
b/source4/dsdb/schema/schema_init.c
index 99d4106..77b4e2a 100644
--- a/source4/dsdb/schema/schema_init.c
+++ b/source4/dsdb/schema/schema_init.c
@@ -619,10 +619,14 @@ WERROR dsdb_attribute_from_ldb(struct ldb_context *ldb,
 
        attr->syntax = dsdb_syntax_for_attribute(attr);
        if (!attr->syntax) {
+               DEBUG(0,(__location__ ": Unknown schema syntax for %s\n",
+                        attr->lDAPDisplayName));
                return WERR_DS_ATT_SCHEMA_REQ_SYNTAX;
        }
 
        if (dsdb_schema_setup_ldb_schema_attribute(ldb, attr) != LDB_SUCCESS) {
+               DEBUG(0,(__location__ ": Unknown schema syntax for %s\n",
+                        attr->lDAPDisplayName));
                return WERR_DS_ATT_SCHEMA_REQ_SYNTAX;
        }
 
@@ -1064,10 +1068,14 @@ WERROR dsdb_attribute_from_drsuapi(struct ldb_context 
*ldb,
 
        attr->syntax = dsdb_syntax_for_attribute(attr);
        if (!attr->syntax) {
+               DEBUG(0,(__location__ ": Unknown schema syntax for %s\n",
+                        attr->lDAPDisplayName));
                return WERR_DS_ATT_SCHEMA_REQ_SYNTAX;
        }
 
        if (dsdb_schema_setup_ldb_schema_attribute(ldb, attr) != LDB_SUCCESS) {
+               DEBUG(0,(__location__ ": Unknown schema syntax for %s\n",
+                        attr->lDAPDisplayName));
                return WERR_DS_ATT_SCHEMA_REQ_SYNTAX;
        }
 
diff --git a/source4/rpc_server/drsuapi/addentry.c 
b/source4/rpc_server/drsuapi/addentry.c
index ac94daa..f63a967 100644
--- a/source4/rpc_server/drsuapi/addentry.c
+++ b/source4/rpc_server/drsuapi/addentry.c
@@ -43,13 +43,15 @@ static WERROR drsuapi_add_SPNs(struct drsuapi_bind_state 
*b_state,
        for (obj = first_object; obj; obj=obj->next_object) {
                const char *dn_string = obj->object.identifier->dn;
                struct ldb_dn *dn = ldb_dn_new(mem_ctx, b_state->sam_ctx, 
dn_string);
-               struct ldb_result *res;
+               struct ldb_result *res, *res2;
                struct ldb_dn *ref_dn;
                struct GUID ntds_guid;
                struct ldb_message *msg;
                struct ldb_message_element *el;
                const char *ntds_guid_str;
                const char *dom_string;
+               const char *attrs2[] = { "dNSHostName", "cn", NULL };
+               const char *dNSHostName, *cn;
 
                DEBUG(6,(__location__ ": Adding SPNs for %s\n", 
                         ldb_dn_get_linearized(dn)));
@@ -78,6 +80,18 @@ static WERROR drsuapi_add_SPNs(struct drsuapi_bind_state 
*b_state,
 
                dom_string = lp_dnsdomain(dce_call->conn->dce_ctx->lp_ctx);
 
+               /* get the dNSHostName and cn */
+               ret = ldb_search(b_state->sam_ctx, mem_ctx, &res2,
+                                ref_dn, LDB_SCOPE_BASE, attrs2, NULL);
+               if (ret != LDB_SUCCESS) {
+                       DEBUG(0,(__location__ ": Failed to find ref_dn '%s'\n",
+                                ldb_dn_get_linearized(ref_dn)));
+                       return WERR_DS_DRA_INTERNAL_ERROR;
+               }
+
+               dNSHostName = ldb_msg_find_attr_as_string(res2->msgs[0], 
"dNSHostName", NULL);
+               cn = ldb_msg_find_attr_as_string(res2->msgs[0], "cn", NULL);
+
                /*
                 * construct a modify request to add the new SPNs to
                 * the machine account
@@ -94,20 +108,25 @@ static WERROR drsuapi_add_SPNs(struct drsuapi_bind_state 
*b_state,
                        return WERR_NOMEM;
                }
 
-               el->num_values = 2;
-               el->values = talloc_array(msg->elements, struct ldb_val, 2);
-               if (el->values == NULL) {
+
+               ldb_msg_add_steal_string(msg, "servicePrincipalName",
+                                        talloc_asprintf(el->values,
+                                                        
"E3514235-4B06-11D1-AB04-00C04FC2DCD2/%s/%s",
+                                                        ntds_guid_str, 
dom_string));
+               ldb_msg_add_steal_string(msg, "servicePrincipalName",
+                                        talloc_asprintf(el->values, 
"ldap/%s._msdcs.%s",
+                                                        ntds_guid_str, 
dom_string));
+               if (cn) {
+                       ldb_msg_add_steal_string(msg, "servicePrincipalName",
+                                                talloc_asprintf(el->values, 
"ldap/%s", cn));
+               }
+               if (dNSHostName) {
+                       ldb_msg_add_steal_string(msg, "servicePrincipalName",
+                                                talloc_asprintf(el->values, 
"ldap/%s", dNSHostName));
+               }
+               if (el->num_values < 2) {
                        return WERR_NOMEM;
                }
-               /* the magic constant is the GUID of the DRSUAPI RPC
-                  interface */
-               el->values[0].data = (uint8_t *)talloc_asprintf(el->values, 
-                                                               
"E3514235-4B06-11D1-AB04-00C04FC2DCD2/%s/%s", 
-                                                               ntds_guid_str, 
dom_string);
-               el->values[0].length = strlen((char *)el->values[0].data);
-               el->values[1].data = (uint8_t *)talloc_asprintf(el->values, 
"ldap/%s._msdcs.%s", 
-                                                               ntds_guid_str, 
dom_string);
-               el->values[1].length = strlen((char *)el->values[1].data);
 
                ret = ldb_modify(b_state->sam_ctx, msg);
                if (ret != LDB_SUCCESS) {
diff --git a/source4/scripting/python/samba/ms_schema.py 
b/source4/scripting/python/samba/ms_schema.py
index a4eed58..9f5ebcf 100644
--- a/source4/scripting/python/samba/ms_schema.py
+++ b/source4/scripting/python/samba/ms_schema.py
@@ -229,6 +229,8 @@ def __transform_entry(entry, objectClass):
     entry.insert(1, ["objectClass", ["top", objectClass]])
     entry.insert(2, ["cn", cn])
     entry.insert(2, ["objectGUID", str(uuid.uuid4())])
+    entry.insert(2, ["adminDescription", cn])
+    entry.insert(2, ["adminDisplayName", cn])
     
     for l in entry:
         key = l[0].lower()
diff --git a/source4/scripting/python/samba/schema.py 
b/source4/scripting/python/samba/schema.py
index 8913e53..67c48e8 100644
--- a/source4/scripting/python/samba/schema.py
+++ b/source4/scripting/python/samba/schema.py
@@ -64,8 +64,8 @@ class Schema(object):
 
         self.schemadn = schemadn
         self.ldb = Ldb()
-        self.schema_data = 
read_ms_schema(setup_path('ad-schema/MS-AD_Schema_2K8_Attributes.txt'),
-                                          
setup_path('ad-schema/MS-AD_Schema_2K8_Classes.txt'))
+        self.schema_data = 
read_ms_schema(setup_path('ad-schema/MS-AD_Schema_2K8_R2_Attributes.txt'),
+                                          
setup_path('ad-schema/MS-AD_Schema_2K8_R2_Classes.txt'))
 
         if files is not None:
             for file in files:
diff --git a/source4/setup/ad-schema/MS-AD_Schema_2K8_R2_Attributes.txt 
b/source4/setup/ad-schema/MS-AD_Schema_2K8_R2_Attributes.txt
new file mode 100644
index 0000000..fef1347
--- /dev/null
+++ b/source4/setup/ad-schema/MS-AD_Schema_2K8_R2_Attributes.txt
@@ -0,0 +1,16060 @@
+#Intellectual Property Rights Notice for Protocol Documentation
+#•   Copyrights. This protocol documentation is covered by Microsoft 
copyrights. Regardless of any other terms that are contained in the terms of 
use for the Microsoft website that hosts this documentation, you may make 
copies of it in order to develop implementations of the protocols, and may 
distribute portions of it in your implementations of the protocols or your 
documentation as necessary to properly document the implementation. You may 
also distribute in your implementation, with or without modification, any 
schema, IDL’s, or code samples that are included in the documentation. This 
permission also applies to any documents that are referenced in the protocol 
documentation.
+#•   No Trade Secrets. Microsoft does not claim any trade secret rights in 
this documentation.
+#•   Patents. Microsoft has patents that may cover your implementations of 
the protocols. Neither this notice nor Microsoft's delivery of the 
documentation grants any licenses under those or any other Microsoft patents. 
However, the protocols may be covered by Microsoft’s Open Specification 
Promise (available here: http://www.microsoft.com/interop/osp). If you would 
prefer a written license, or if the protocols are not covered by the OSP, 
patent licenses are available by contacting [email protected].
+#•   Trademarks. The names of companies and products contained in this 
documentation may be covered by trademarks or similar intellectual property 
rights. This notice does not grant any licenses under those rights.
+#Reservation of Rights. All other rights are reserved, and this notice does 
not grant any rights other than specifically described above, whether by 
implication, estoppel, or otherwise.
+#Tools. This protocol documentation is intended for use in conjunction with 
publicly available standard specifications and network programming art, and 
assumes that the reader either is familiar with the aforementioned material or 
has immediate access to it. A protocol specification does not require the use 
of Microsoft programming tools or programming environments in order for you to 
develop an implementation. If you have access to Microsoft programming tools 
and environments you are free to take advantage of them.
+#
+
+
+cn: Account-Expires
+ldapDisplayName: accountExpires
+attributeId: 1.2.840.113556.1.4.159
+attributeSyntax: 2.5.5.16
+omSyntax: 65
+isSingleValued: TRUE
+schemaIdGuid: bf967915-0de6-11d0-a285-00aa003049e2
+systemOnly: FALSE
+searchFlags: fCOPY
+attributeSecurityGuid: 4c164200-20c0-11d0-a768-00aa006e0529
+systemFlags: FLAG_SCHEMA_BASE_OBJECT
+schemaFlagsEx: FLAG_ATTR_IS_CRITICAL
+
+cn: Account-Name-History
+ldapDisplayName: accountNameHistory
+attributeId: 1.2.840.113556.1.4.1307
+attributeSyntax: 2.5.5.12
+omSyntax: 64
+isSingleValued: FALSE
+schemaIdGuid: 031952ec-3b72-11d2-90cc-00c04fd91ab1
+systemOnly: FALSE
+searchFlags: 0
+systemFlags: FLAG_SCHEMA_BASE_OBJECT
+
+cn: ACS-Aggregate-Token-Rate-Per-User
+ldapDisplayName: aCSAggregateTokenRatePerUser
+attributeId: 1.2.840.113556.1.4.760
+attributeSyntax: 2.5.5.16
+omSyntax: 65
+isSingleValued: TRUE
+schemaIdGuid: 7f56127d-5301-11d1-a9c5-0000f80367c1
+systemOnly: FALSE
+searchFlags: 0
+systemFlags: FLAG_SCHEMA_BASE_OBJECT
+
+cn: ACS-Allocable-RSVP-Bandwidth
+ldapDisplayName: aCSAllocableRSVPBandwidth
+attributeId: 1.2.840.113556.1.4.766
+attributeSyntax: 2.5.5.16
+omSyntax: 65
+isSingleValued: TRUE
+schemaIdGuid: 7f561283-5301-11d1-a9c5-0000f80367c1
+systemOnly: FALSE
+searchFlags: 0
+systemFlags: FLAG_SCHEMA_BASE_OBJECT
+
+cn: ACS-Cache-Timeout
+ldapDisplayName: aCSCacheTimeout
+attributeId: 1.2.840.113556.1.4.779
+attributeSyntax: 2.5.5.9
+omSyntax: 2
+isSingleValued: TRUE
+schemaIdGuid: 1cb355a1-56d0-11d1-a9c6-0000f80367c1
+systemOnly: FALSE
+searchFlags: 0
+systemFlags: FLAG_SCHEMA_BASE_OBJECT
+
+cn: ACS-Direction
+ldapDisplayName: aCSDirection
+attributeId: 1.2.840.113556.1.4.757
+attributeSyntax: 2.5.5.9
+omSyntax: 2
+isSingleValued: TRUE
+schemaIdGuid: 7f56127a-5301-11d1-a9c5-0000f80367c1
+systemOnly: FALSE
+searchFlags: 0
+systemFlags: FLAG_SCHEMA_BASE_OBJECT
+
+cn: ACS-DSBM-DeadTime
+ldapDisplayName: aCSDSBMDeadTime
+attributeId: 1.2.840.113556.1.4.778
+attributeSyntax: 2.5.5.9
+omSyntax: 2
+isSingleValued: TRUE
+schemaIdGuid: 1cb355a0-56d0-11d1-a9c6-0000f80367c1
+systemOnly: FALSE
+searchFlags: 0
+systemFlags: FLAG_SCHEMA_BASE_OBJECT
+
+cn: ACS-DSBM-Priority
+ldapDisplayName: aCSDSBMPriority
+attributeId: 1.2.840.113556.1.4.776
+attributeSyntax: 2.5.5.9
+omSyntax: 2
+isSingleValued: TRUE
+schemaIdGuid: 1cb3559e-56d0-11d1-a9c6-0000f80367c1
+systemOnly: FALSE
+searchFlags: 0
+systemFlags: FLAG_SCHEMA_BASE_OBJECT
+
+cn: ACS-DSBM-Refresh
+ldapDisplayName: aCSDSBMRefresh
+attributeId: 1.2.840.113556.1.4.777
+attributeSyntax: 2.5.5.9
+omSyntax: 2
+isSingleValued: TRUE
+schemaIdGuid: 1cb3559f-56d0-11d1-a9c6-0000f80367c1
+systemOnly: FALSE
+searchFlags: 0
+systemFlags: FLAG_SCHEMA_BASE_OBJECT
+
+cn: ACS-Enable-ACS-Service
+ldapDisplayName: aCSEnableACSService
+attributeId: 1.2.840.113556.1.4.770
+attributeSyntax: 2.5.5.8
+omSyntax: 1
+isSingleValued: TRUE
+schemaIdGuid: 7f561287-5301-11d1-a9c5-0000f80367c1
+systemOnly: FALSE
+searchFlags: 0
+systemFlags: FLAG_SCHEMA_BASE_OBJECT
+
+cn: ACS-Enable-RSVP-Accounting
+ldapDisplayName: aCSEnableRSVPAccounting
+attributeId: 1.2.840.113556.1.4.899
+attributeSyntax: 2.5.5.8
+omSyntax: 1
+isSingleValued: TRUE
+schemaIdGuid: f072230e-aef5-11d1-bdcf-0000f80367c1
+systemOnly: FALSE
+searchFlags: 0
+systemFlags: FLAG_SCHEMA_BASE_OBJECT
+
+cn: ACS-Enable-RSVP-Message-Logging
+ldapDisplayName: aCSEnableRSVPMessageLogging
+attributeId: 1.2.840.113556.1.4.768
+attributeSyntax: 2.5.5.8
+omSyntax: 1
+isSingleValued: TRUE
+schemaIdGuid: 7f561285-5301-11d1-a9c5-0000f80367c1
+systemOnly: FALSE
+searchFlags: 0
+systemFlags: FLAG_SCHEMA_BASE_OBJECT
+
+cn: ACS-Event-Log-Level
+ldapDisplayName: aCSEventLogLevel
+attributeId: 1.2.840.113556.1.4.769
+attributeSyntax: 2.5.5.9
+omSyntax: 2
+isSingleValued: TRUE
+schemaIdGuid: 7f561286-5301-11d1-a9c5-0000f80367c1
+systemOnly: FALSE
+searchFlags: 0
+systemFlags: FLAG_SCHEMA_BASE_OBJECT
+
+cn: ACS-Identity-Name
+ldapDisplayName: aCSIdentityName
+attributeId: 1.2.840.113556.1.4.784
+attributeSyntax: 2.5.5.12
+omSyntax: 64
+isSingleValued: FALSE
+schemaIdGuid: dab029b6-ddf7-11d1-90a5-00c04fd91ab1
+systemOnly: FALSE
+searchFlags: 0
+systemFlags: FLAG_SCHEMA_BASE_OBJECT
+
+cn: ACS-Max-Aggregate-Peak-Rate-Per-User
+ldapDisplayName: aCSMaxAggregatePeakRatePerUser
+attributeId: 1.2.840.113556.1.4.897
+attributeSyntax: 2.5.5.16
+omSyntax: 65
+isSingleValued: TRUE
+schemaIdGuid: f072230c-aef5-11d1-bdcf-0000f80367c1
+systemOnly: FALSE
+searchFlags: 0
+systemFlags: FLAG_SCHEMA_BASE_OBJECT
+
+cn: ACS-Max-Duration-Per-Flow
+ldapDisplayName: aCSMaxDurationPerFlow
+attributeId: 1.2.840.113556.1.4.761
+attributeSyntax: 2.5.5.9
+omSyntax: 2
+isSingleValued: TRUE
+schemaIdGuid: 7f56127e-5301-11d1-a9c5-0000f80367c1
+systemOnly: FALSE
+searchFlags: 0
+systemFlags: FLAG_SCHEMA_BASE_OBJECT
+
+cn: ACS-Maximum-SDU-Size
+ldapDisplayName: aCSMaximumSDUSize
+attributeId: 1.2.840.113556.1.4.1314
+attributeSyntax: 2.5.5.16
+omSyntax: 65
+isSingleValued: TRUE
+schemaIdGuid: 87a2d8f9-3b90-11d2-90cc-00c04fd91ab1
+systemOnly: FALSE
+searchFlags: 0
+systemFlags: FLAG_SCHEMA_BASE_OBJECT
+
+cn: ACS-Max-No-Of-Account-Files
+ldapDisplayName: aCSMaxNoOfAccountFiles
+attributeId: 1.2.840.113556.1.4.901
+attributeSyntax: 2.5.5.9
+omSyntax: 2
+isSingleValued: TRUE
+schemaIdGuid: f0722310-aef5-11d1-bdcf-0000f80367c1
+systemOnly: FALSE
+searchFlags: 0
+systemFlags: FLAG_SCHEMA_BASE_OBJECT
+
+cn: ACS-Max-No-Of-Log-Files
+ldapDisplayName: aCSMaxNoOfLogFiles
+attributeId: 1.2.840.113556.1.4.774
+attributeSyntax: 2.5.5.9
+omSyntax: 2
+isSingleValued: TRUE
+schemaIdGuid: 1cb3559c-56d0-11d1-a9c6-0000f80367c1
+systemOnly: FALSE
+searchFlags: 0
+systemFlags: FLAG_SCHEMA_BASE_OBJECT
+
+cn: ACS-Max-Peak-Bandwidth
+ldapDisplayName: aCSMaxPeakBandwidth
+attributeId: 1.2.840.113556.1.4.767
+attributeSyntax: 2.5.5.16
+omSyntax: 65
+isSingleValued: TRUE
+schemaIdGuid: 7f561284-5301-11d1-a9c5-0000f80367c1
+systemOnly: FALSE
+searchFlags: 0
+systemFlags: FLAG_SCHEMA_BASE_OBJECT
+
+cn: ACS-Max-Peak-Bandwidth-Per-Flow
+ldapDisplayName: aCSMaxPeakBandwidthPerFlow
+attributeId: 1.2.840.113556.1.4.759
+attributeSyntax: 2.5.5.16
+omSyntax: 65
+isSingleValued: TRUE
+schemaIdGuid: 7f56127c-5301-11d1-a9c5-0000f80367c1
+systemOnly: FALSE
+searchFlags: 0
+systemFlags: FLAG_SCHEMA_BASE_OBJECT
+
+cn: ACS-Max-Size-Of-RSVP-Account-File
+ldapDisplayName: aCSMaxSizeOfRSVPAccountFile
+attributeId: 1.2.840.113556.1.4.902
+attributeSyntax: 2.5.5.9
+omSyntax: 2
+isSingleValued: TRUE
+schemaIdGuid: f0722311-aef5-11d1-bdcf-0000f80367c1
+systemOnly: FALSE
+searchFlags: 0
+systemFlags: FLAG_SCHEMA_BASE_OBJECT
+
+cn: ACS-Max-Size-Of-RSVP-Log-File
+ldapDisplayName: aCSMaxSizeOfRSVPLogFile
+attributeId: 1.2.840.113556.1.4.775
+attributeSyntax: 2.5.5.9
+omSyntax: 2
+isSingleValued: TRUE
+schemaIdGuid: 1cb3559d-56d0-11d1-a9c6-0000f80367c1
+systemOnly: FALSE
+searchFlags: 0
+systemFlags: FLAG_SCHEMA_BASE_OBJECT
+
+cn: ACS-Max-Token-Bucket-Per-Flow
+ldapDisplayName: aCSMaxTokenBucketPerFlow
+attributeId: 1.2.840.113556.1.4.1313
+attributeSyntax: 2.5.5.16
+omSyntax: 65
+isSingleValued: TRUE
+schemaIdGuid: 81f6e0df-3b90-11d2-90cc-00c04fd91ab1
+systemOnly: FALSE
+searchFlags: 0
+systemFlags: FLAG_SCHEMA_BASE_OBJECT
+
+cn: ACS-Max-Token-Rate-Per-Flow
+ldapDisplayName: aCSMaxTokenRatePerFlow
+attributeId: 1.2.840.113556.1.4.758
+attributeSyntax: 2.5.5.16
+omSyntax: 65
+isSingleValued: TRUE
+schemaIdGuid: 7f56127b-5301-11d1-a9c5-0000f80367c1
+systemOnly: FALSE
+searchFlags: 0
+systemFlags: FLAG_SCHEMA_BASE_OBJECT
+
+cn: ACS-Minimum-Delay-Variation
+ldapDisplayName: aCSMinimumDelayVariation
+attributeId: 1.2.840.113556.1.4.1317
+attributeSyntax: 2.5.5.16
+omSyntax: 65
+isSingleValued: TRUE
+schemaIdGuid: 9c65329b-3b90-11d2-90cc-00c04fd91ab1
+systemOnly: FALSE
+searchFlags: 0
+systemFlags: FLAG_SCHEMA_BASE_OBJECT
+
+cn: ACS-Minimum-Latency
+ldapDisplayName: aCSMinimumLatency
+attributeId: 1.2.840.113556.1.4.1316
+attributeSyntax: 2.5.5.16
+omSyntax: 65
+isSingleValued: TRUE
+schemaIdGuid: 9517fefb-3b90-11d2-90cc-00c04fd91ab1
+systemOnly: FALSE
+searchFlags: 0
+systemFlags: FLAG_SCHEMA_BASE_OBJECT
+
+cn: ACS-Minimum-Policed-Size
+ldapDisplayName: aCSMinimumPolicedSize
+attributeId: 1.2.840.113556.1.4.1315
+attributeSyntax: 2.5.5.16
+omSyntax: 65
+isSingleValued: TRUE
+schemaIdGuid: 8d0e7195-3b90-11d2-90cc-00c04fd91ab1
+systemOnly: FALSE
+searchFlags: 0
+systemFlags: FLAG_SCHEMA_BASE_OBJECT
+
+cn: ACS-Non-Reserved-Max-SDU-Size
+ldapDisplayName: aCSNonReservedMaxSDUSize
+attributeId: 1.2.840.113556.1.4.1320
+attributeSyntax: 2.5.5.16
+omSyntax: 65
+isSingleValued: TRUE
+schemaIdGuid: aec2cfe3-3b90-11d2-90cc-00c04fd91ab1
+systemOnly: FALSE
+searchFlags: 0
+systemFlags: FLAG_SCHEMA_BASE_OBJECT
+
+cn: ACS-Non-Reserved-Min-Policed-Size
+ldapDisplayName: aCSNonReservedMinPolicedSize
+attributeId: 1.2.840.113556.1.4.1321
+attributeSyntax: 2.5.5.16
+omSyntax: 65
+isSingleValued: TRUE
+schemaIdGuid: b6873917-3b90-11d2-90cc-00c04fd91ab1
+systemOnly: FALSE
+searchFlags: 0
+systemFlags: FLAG_SCHEMA_BASE_OBJECT
+
+cn: ACS-Non-Reserved-Peak-Rate
+ldapDisplayName: aCSNonReservedPeakRate
+attributeId: 1.2.840.113556.1.4.1318
+attributeSyntax: 2.5.5.16
+omSyntax: 65
+isSingleValued: TRUE
+schemaIdGuid: a331a73f-3b90-11d2-90cc-00c04fd91ab1
+systemOnly: FALSE
+searchFlags: 0
+systemFlags: FLAG_SCHEMA_BASE_OBJECT
+
+cn: ACS-Non-Reserved-Token-Size


-- 
Samba Shared Repository

Reply via email to