xref: /onnv-gate/usr/src/cmd/agents/snmp/mib/snm/mib_X5DSA.snm (revision 0:68f95e015346)
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
39--   x5dsa MODULE-IDENTITY
40--       LAST-UPDATED "9508170000Z"
41--       ORGANIZATION "SunSoft"
42--       CONTACT-INFO
43--         "        Olivier Reisacher
44--
45--          Postal: ICNC SunSoft, Inc.
46--                  32 chemin du vieux chene
47--                  38240 MEYLAN
48--                  France
49--
50--          Tel: (33) 76 41 42 46
51--          Fax: (33) 76 41 42 41
52--
53--          E-Mail: oreisach@france.sun.com"
54--       DESCRIPTION
55--         "This MIB module is used to monitor the Solstice X.500 DSA."
56--       ::= { private-mibs 4 }
57
58internet      OBJECT IDENTIFIER ::= { iso org(3) dod(6) 1 }
59directory     OBJECT IDENTIFIER ::= { internet 1 }
60mgmt          OBJECT IDENTIFIER ::= { internet 2 }
61experimental  OBJECT IDENTIFIER ::= { internet 3 }
62private       OBJECT IDENTIFIER ::= { internet 4 }
63enterprises   OBJECT IDENTIFIER ::= { private 1 }
64mib-2         OBJECT IDENTIFIER ::= { mgmt 1 }
65sun           OBJECT IDENTIFIER ::= { enterprises 42 }
66messaging     OBJECT IDENTIFIER ::= { sun 2 8 }
67private-mibs  OBJECT IDENTIFIER ::= { messaging 2 }
68x5dsa         OBJECT IDENTIFIER ::= { private-mibs 4 }
69
70
71--
72--	x5dsaReferenceTable
73--
74
75   x5dsaReferenceTable OBJECT-TYPE
76       SYNTAX SEQUENCE OF X5dsaReferenceEntry
77       MAX-ACCESS not-accessible
78       STATUS current
79       DESCRIPTION
80         "The table of references of the Solstice X.500 DSA."
81       ::= {x5dsa 1}
82
83   x5dsaReferenceEntry OBJECT-TYPE
84       SYNTAX X5dsaReferenceEntry
85       MAX-ACCESS not-accessible
86       STATUS current
87       DESCRIPTION
88         "A reference."
89       INDEX {x5dsaReferenceIndex}
90       ::= {x5dsaReferenceTable 1}
91
92   X5dsaReferenceEntry ::= SEQUENCE {
93       x5dsaReferenceIndex
94         INTEGER,
95       x5dsaReferenceType
96         INTEGER,
97       x5dsaReferenceNamingContext
98--         DistinguishedName,
99         DisplayString,
100       x5dsaReferenceSubordinate
101--         DistinguishedName,
102         DisplayString,
103       x5dsaReferenceName
104         DisplayString
105   }
106
107   x5dsaReferenceIndex OBJECT-TYPE
108       SYNTAX INTEGER
109       MAX-ACCESS not-accessible
110       STATUS current
111       DESCRIPTION
112         "A integer that uniquely identifies a reference."
113       ::= {x5dsaReferenceEntry 1}
114
115   x5dsaReferenceType OBJECT-TYPE
116       SYNTAX INTEGER {
117         superior(1),
118         cross(2),
119         subordinate(3),
120         non-specific-subordinate(4)
121       }
122       MAX-ACCESS read-only
123       STATUS current
124       DESCRIPTION
125         "The type of the reference."
126       ::= {x5dsaReferenceEntry 2}
127
128   x5dsaReferenceNamingContext OBJECT-TYPE
129--       SYNTAX DistinguishedName
130       SYNTAX DisplayString
131       MAX-ACCESS read-only
132       STATUS current
133       DESCRIPTION
134         "The naming context of the reference.
135          This field is valid for the following reference types:
136          - cross(2),
137          - subordinate(3),
138          - non-specific-subordinate(4)"
139       ::= {x5dsaReferenceEntry 3}
140
141   x5dsaReferenceSubordinate OBJECT-TYPE
142--       SYNTAX DistinguishedName
143       SYNTAX DisplayString
144       MAX-ACCESS read-only
145       STATUS current
146       DESCRIPTION
147         "The subordinate of the reference.
148          This field is valid for the following reference types:
149          - subordinate(3)"
150       ::= {x5dsaReferenceEntry 4}
151
152   x5dsaReferenceName OBJECT-TYPE
153       SYNTAX DisplayString
154       MAX-ACCESS read-only
155       STATUS current
156       DESCRIPTION
157         "The name of the MTA:
158         example: DSA $DSANAME on IP = $HOSTNAME"
159       ::= {x5dsaReferenceEntry 5}
160
161
162   END
163
164