1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
|
Test2 DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
TimeTicks, Counter32, snmpModules, mib-2, enterprises, IpAddress,
Integer32, OBJECT-IDENTITY
FROM SNMPv2-SMI
DisplayString, TestAndIncr, TimeStamp, RowStatus, TruthValue,
TEXTUAL-CONVENTION
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF;
snmpMIB MODULE-IDENTITY
LAST-UPDATED "9511090000Z"
ORGANIZATION ""
CONTACT-INFO
""
DESCRIPTION
"Test mib, used to test processing of requests."
::= { snmpModules 1 }
test2 OBJECT IDENTIFIER ::= { mib-2 16 }
test3 OBJECT IDENTIFIER ::= { mib-2 17 }
xDescr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Outside mibview"
::= { test3 1 }
xDescr2 OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
""
::= { test3 2 }
tDescr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Outside mibview"
::= { test2 1 }
tDescr2 OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
""
::= { test2 2 }
tDescr3 OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { test2 3 }
tDescr4 OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
""
::= { test2 4 }
tTable OBJECT-TYPE
SYNTAX SEQUENCE OF TEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The (conceptual) table listing the capabilities of the
local SNMPv2 entity acting in an agent role with respect to
various MIB modules. SNMPv2 entities having dynamically-
configurable support of MIB modules will have a
dynamically-varying number of conceptual rows."
::= { test2 5 }
tEntry OBJECT-TYPE
SYNTAX TEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the sysORTable."
INDEX { tIndex }
::= { tTable 1 }
TEntry ::= SEQUENCE {
tIndex DisplayString,
tDescrX DisplayString,
tCnt Counter32
}
tIndex OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The auxiliary variable used for identifying instances of
the columnar objects in the sysORTable."
::= { tEntry 1 }
tDescrX OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A textual description of the capabilities identified by the
corresponding instance of sysORID."
::= { tEntry 2 }
tCnt OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A textual description of the capabilities identified by the
corresponding instance of sysORID."
::= { tEntry 3 }
testErr OBJECT-IDENTITY
STATUS current
DESCRIPTION
""
::= { test2 6 }
tTooBig OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object will generate a tooBig error"
::= { testErr 1 }
tGenErr1 OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object will generate a genErr error"
::= { testErr 2 }
tGenErr2 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object will generate a genErr error"
::= { testErr 3 }
tGenErr3 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object will generate a genErr error"
::= { testErr 4 }
tStr OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..4))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
""
::= { test2 7 }
tInt1 OBJECT-TYPE
SYNTAX INTEGER (1..4)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
""
::= { test2 8 }
tInt2 OBJECT-TYPE
SYNTAX INTEGER { v1(1), v2(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
""
::= { test2 9 }
tInt3 OBJECT-TYPE
SYNTAX INTEGER (1..7) -- (1..4 | 6..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
""
::= { test2 10 }
tTable2 OBJECT-TYPE
SYNTAX SEQUENCE OF TEntry2
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The (conceptual) table listing the capabilities of the
local SNMPv2 entity acting in an agent role with respect to
various MIB modules. SNMPv2 entities having dynamically-
configurable support of MIB modules will have a
dynamically-varying number of conceptual rows."
::= { snmpModules 99 }
tEntry2 OBJECT-TYPE
SYNTAX TEntry2
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the sysORTable."
INDEX { tIndex2 }
::= { tTable2 1 }
TEntry2 ::= SEQUENCE {
tIndex2 DisplayString,
tCnt2 Counter32
}
tIndex2 OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The auxiliary variable used for identifying instances of
the columnar objects in the sysORTable."
::= { tEntry2 1 }
tCnt2 OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A textual description of the capabilities identified by the
corresponding instance of sysORID."
::= { tEntry2 2 }
END
|