--
-- CDDL HEADER START
--
-- The contents of this file are subject to the terms of the
-- Common Development and Distribution License, Version 1.0 only
-- (the "License").  You may not use this file except in compliance
-- with the License.
--
-- You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
-- or http://www.opensolaris.org/os/licensing.
-- See the License for the specific language governing permissions
-- and limitations under the License.
--
-- When distributing Covered Code, include this CDDL HEADER in each
-- file and include the License file at usr/src/OPENSOLARIS.LICENSE.
-- If applicable, add the following below this CDDL HEADER, with the 
-- fields enclosed by brackets "[]" replaced with your own identifying
-- information: Portions Copyright [yyyy] [name of copyright owner]
--
-- CDDL HEADER END
--
-- Copyright 1996 Sun Microsystems, Inc.  All rights reserved.
-- Use is subject to license terms.
--
-- #ident	"%Z%%M%	%I%	%E% SMI"
--

   X5DSA-MIB DEFINITIONS ::= BEGIN

   IMPORTS
       OBJECT-TYPE, Counter32, Gauge32
         FROM SNMPv2-SMI
       DisplayString
         FROM SNMPv2-TC
       DistinguishedName
         FROM APPLICATION-MIB;

   x5dsa MODULE-IDENTITY
       LAST-UPDATED "9508170000Z"
       ORGANIZATION "SunSoft"
       CONTACT-INFO
         "        Olivier Reisacher

          Postal: ICNC SunSoft, Inc.
                  32 chemin du vieux chene
                  38240 MEYLAN
                  France

          Tel: (33) 76 41 42 46
          Fax: (33) 76 41 42 41

          E-Mail: oreisach@france.sun.com"
       DESCRIPTION
         "This MIB module is used to monitor the Solstice X.500 DSA."
       ::= { private-mibs 4 }


--
--	x5dsaReferenceTable
--

   x5dsaReferenceTable OBJECT-TYPE
       SYNTAX SEQUENCE OF X5dsaReferenceEntry
       MAX-ACCESS not-accessible
       STATUS current
       DESCRIPTION
         "The table of references of the Solstice X.500 DSA."
       ::= {x5dsa 1}

   x5dsaReferenceEntry OBJECT-TYPE
       SYNTAX X5dsaReferenceEntry
       MAX-ACCESS not-accessible
       STATUS current
       DESCRIPTION
         "A reference."
       INDEX {x5dsaReferenceIndex}
       ::= {x5dsaReferenceTable 1}

   X5dsaReferenceEntry ::= SEQUENCE {
       x5dsaReferenceIndex
         INTEGER,
       x5dsaReferenceType
         INTEGER,
       x5dsaReferenceNamingContext
         DistinguishedName,
       x5dsaReferenceSubordinate
         DistinguishedName,
       x5dsaReferenceName
         DisplayString
   }

   x5dsaReferenceIndex OBJECT-TYPE
       SYNTAX INTEGER
       MAX-ACCESS not-accessible
       STATUS current
       DESCRIPTION
         "A integer that uniquely identifies a reference."
       ::= {x5dsaReferenceEntry 1}

   x5dsaReferenceType OBJECT-TYPE
       SYNTAX INTEGER {
         superior(1),
         cross(2),
         subordinate(3),
         non-specific-subordinate(4)
       }
       MAX-ACCESS read-only
       STATUS current
       DESCRIPTION
         "The type of the reference."
       ::= {x5dsaReferenceEntry 2}

   x5dsaReferenceNamingContext OBJECT-TYPE
       SYNTAX DistinguishedName
       MAX-ACCESS read-only
       STATUS current
       DESCRIPTION
         "The naming context of the reference.
          This field is valid for the following reference types:
          - cross(2),
          - subordinate(3),
          - non-specific-subordinate(4)"
       ::= {x5dsaReferenceEntry 3}

   x5dsaReferenceSubordinate OBJECT-TYPE
       SYNTAX DistinguishedName
       MAX-ACCESS read-only
       STATUS current
       DESCRIPTION
         "The subordinate of the reference.
          This field is valid for the following reference types:
          - subordinate(3)"
       ::= {x5dsaReferenceEntry 4}

   x5dsaReferenceName OBJECT-TYPE
       SYNTAX DisplayString
       MAX-ACCESS read-only
       STATUS current
       DESCRIPTION
         "The name of the MTA:
         example: DSA $DSANAME on IP = $HOSTNAME"
       ::= {x5dsaReferenceEntry 5}


   END

