1--
2-- CDDL HEADER START
3--
4-- The contents of this file are subject to the terms of the
5-- Common Development and Distribution License, Version 1.0 only
6-- (the "License").  You may not use this file except in compliance
7-- with the License.
8--
9-- You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10-- or http://www.opensolaris.org/os/licensing.
11-- See the License for the specific language governing permissions
12-- and limitations under the License.
13--
14-- When distributing Covered Code, include this CDDL HEADER in each
15-- file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16-- If applicable, add the following below this CDDL HEADER, with the 
17-- fields enclosed by brackets "[]" replaced with your own identifying
18-- information: Portions Copyright [yyyy] [name of copyright owner]
19--
20-- CDDL HEADER END
21--
22-- Copyright 1996 Sun Microsystems, Inc.  All rights reserved.
23-- Use is subject to license terms.
24--
25-- #ident	"%Z%%M%	%I%	%E% SMI"
26--
27
28   X5DSA-MIB DEFINITIONS ::= BEGIN
29
30   IMPORTS
31       OBJECT-TYPE, Counter32, Gauge32
32         FROM SNMPv2-SMI
33       DisplayString
34         FROM SNMPv2-TC
35       DistinguishedName
36         FROM APPLICATION-MIB;
37
38   x5dsa MODULE-IDENTITY
39       LAST-UPDATED "9508170000Z"
40       ORGANIZATION "SunSoft"
41       CONTACT-INFO
42         "        Olivier Reisacher
43
44          Postal: ICNC SunSoft, Inc.
45                  32 chemin du vieux chene
46                  38240 MEYLAN
47                  France
48
49          Tel: (33) 76 41 42 46
50          Fax: (33) 76 41 42 41
51
52          E-Mail: oreisach@france.sun.com"
53       DESCRIPTION
54         "This MIB module is used to monitor the Solstice X.500 DSA."
55       ::= { private-mibs 4 }
56
57
58--
59--	x5dsaReferenceTable
60--
61
62   x5dsaReferenceTable OBJECT-TYPE
63       SYNTAX SEQUENCE OF X5dsaReferenceEntry
64       MAX-ACCESS not-accessible
65       STATUS current
66       DESCRIPTION
67         "The table of references of the Solstice X.500 DSA."
68       ::= {x5dsa 1}
69
70   x5dsaReferenceEntry OBJECT-TYPE
71       SYNTAX X5dsaReferenceEntry
72       MAX-ACCESS not-accessible
73       STATUS current
74       DESCRIPTION
75         "A reference."
76       INDEX {x5dsaReferenceIndex}
77       ::= {x5dsaReferenceTable 1}
78
79   X5dsaReferenceEntry ::= SEQUENCE {
80       x5dsaReferenceIndex
81         INTEGER,
82       x5dsaReferenceType
83         INTEGER,
84       x5dsaReferenceNamingContext
85         DistinguishedName,
86       x5dsaReferenceSubordinate
87         DistinguishedName,
88       x5dsaReferenceName
89         DisplayString
90   }
91
92   x5dsaReferenceIndex OBJECT-TYPE
93       SYNTAX INTEGER
94       MAX-ACCESS not-accessible
95       STATUS current
96       DESCRIPTION
97         "A integer that uniquely identifies a reference."
98       ::= {x5dsaReferenceEntry 1}
99
100   x5dsaReferenceType OBJECT-TYPE
101       SYNTAX INTEGER {
102         superior(1),
103         cross(2),
104         subordinate(3),
105         non-specific-subordinate(4)
106       }
107       MAX-ACCESS read-only
108       STATUS current
109       DESCRIPTION
110         "The type of the reference."
111       ::= {x5dsaReferenceEntry 2}
112
113   x5dsaReferenceNamingContext OBJECT-TYPE
114       SYNTAX DistinguishedName
115       MAX-ACCESS read-only
116       STATUS current
117       DESCRIPTION
118         "The naming context of the reference.
119          This field is valid for the following reference types:
120          - cross(2),
121          - subordinate(3),
122          - non-specific-subordinate(4)"
123       ::= {x5dsaReferenceEntry 3}
124
125   x5dsaReferenceSubordinate OBJECT-TYPE
126       SYNTAX DistinguishedName
127       MAX-ACCESS read-only
128       STATUS current
129       DESCRIPTION
130         "The subordinate of the reference.
131          This field is valid for the following reference types:
132          - subordinate(3)"
133       ::= {x5dsaReferenceEntry 4}
134
135   x5dsaReferenceName OBJECT-TYPE
136       SYNTAX DisplayString
137       MAX-ACCESS read-only
138       STATUS current
139       DESCRIPTION
140         "The name of the MTA:
141         example: DSA $DSANAME on IP = $HOSTNAME"
142       ::= {x5dsaReferenceEntry 5}
143
144
145   END
146
147