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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
|
--
-- Juniper Enterprise Specific MIB: Utility MIB
--
-- Copyright (c) 2007, Juniper Networks, Inc.
-- All rights reserved.
--
-- The contents of this document are subject to change without notice.
--
JUNIPER-UTIL-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Counter32, Counter64, Integer32, Unsigned32
FROM SNMPv2-SMI
DisplayString, DateAndTime
FROM SNMPv2-TC
jnxUtilMibRoot
FROM JUNIPER-SMI;
jnxUtil MODULE-IDENTITY
LAST-UPDATED "200701010000Z" -- Mon Jan 1 00:00:00 2007 UTC
ORGANIZATION "Juniper Networks, Inc."
CONTACT-INFO
" Juniper Technical Assistance Center
Juniper Networks, Inc.
1133 Innovation Way
Sunnyvale, CA 94089
E-mail: support@juniper.net"
DESCRIPTION
"This MIB module provides a generic means for exposing junos
data via SNMP. There are separate tables for each type of data,
and specific instances of each type are identified by its
corresponding name."
REVISION "200701010000Z"
DESCRIPTION
"Initial revision."
::= { jnxUtilMibRoot 1 }
--
-- Define a branch for data objects
--
jnxUtilData OBJECT IDENTIFIER ::= { jnxUtil 1 }
--
-- This table exposes 32 bit counter valued objects
--
jnxUtilCounter32Table OBJECT-TYPE
SYNTAX SEQUENCE OF JnxUtilCounter32Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table exposes generic Counter valued objects. Each
counter instance, which can be populated via an internal junos
interface, is identified by its corresponding name."
::= { jnxUtilData 1 }
jnxUtilCounter32Entry OBJECT-TYPE
SYNTAX JnxUtilCounter32Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry exposes a separate Counter instance."
INDEX { IMPLIED jnxUtilCounter32Name }
::= { jnxUtilCounter32Table 1 }
JnxUtilCounter32Entry ::=
SEQUENCE {
jnxUtilCounter32Name DisplayString,
jnxUtilCounter32Value Counter32,
jnxUtilCounter32Time DateAndTime
}
jnxUtilCounter32Name OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..80))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name assigned to this Counter instance."
::= { jnxUtilCounter32Entry 1 }
jnxUtilCounter32Value OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of this generic, utility counter instance."
::= { jnxUtilCounter32Entry 2 }
jnxUtilCounter32Time OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time at which this instance was last populated."
::= { jnxUtilCounter32Entry 3 }
--
-- This table exposes 64 bit counter valued objects
--
jnxUtilCounter64Table OBJECT-TYPE
SYNTAX SEQUENCE OF JnxUtilCounter64Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table exposes generic Counter64 valued objects. Each
counter instance, which can be populated via an internal junos
interface, is identified by its corresponding name."
::= { jnxUtilData 2 }
jnxUtilCounter64Entry OBJECT-TYPE
SYNTAX JnxUtilCounter64Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry exposes a separate Counter64 instance."
INDEX { IMPLIED jnxUtilCounter64Name }
::= { jnxUtilCounter64Table 1 }
JnxUtilCounter64Entry ::=
SEQUENCE {
jnxUtilCounter64Name DisplayString,
jnxUtilCounter64Value Counter64,
jnxUtilCounter64Time DateAndTime
}
jnxUtilCounter64Name OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..80))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name assigned to this object instance."
::= { jnxUtilCounter64Entry 1 }
jnxUtilCounter64Value OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of this generic, utility object instance."
::= { jnxUtilCounter64Entry 2 }
jnxUtilCounter64Time OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time at which this instance was last populated."
::= { jnxUtilCounter64Entry 3 }
--
-- This table exposes integer valued objects
--
jnxUtilIntegerTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxUtilIntegerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table exposes generic Integer32 valued objects. Each
integer instance, which can be populated via an internal junos
interface, is identified by its corresponding name."
::= { jnxUtilData 3 }
jnxUtilIntegerEntry OBJECT-TYPE
SYNTAX JnxUtilIntegerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry exposes a separate Integer32 instance."
INDEX { IMPLIED jnxUtilIntegerName }
::= { jnxUtilIntegerTable 1 }
JnxUtilIntegerEntry ::=
SEQUENCE {
jnxUtilIntegerName DisplayString,
jnxUtilIntegerValue Integer32,
jnxUtilIntegerTime DateAndTime
}
jnxUtilIntegerName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..80))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name assigned to this object instance."
::= { jnxUtilIntegerEntry 1 }
jnxUtilIntegerValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of this generic, utility object instance."
::= { jnxUtilIntegerEntry 2 }
jnxUtilIntegerTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time at which this instance was last populated."
::= { jnxUtilIntegerEntry 3 }
--
-- This table exposes unsigned integer valued objects
--
jnxUtilUintTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxUtilUintEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table exposes generic Unsigned32 valued objects. Each
integer instance, which can be populated via an internal junos
interface, is identified by its corresponding name."
::= { jnxUtilData 4 }
jnxUtilUintEntry OBJECT-TYPE
SYNTAX JnxUtilUintEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry exposes a separate Unsigned32 instance."
INDEX { IMPLIED jnxUtilUintName }
::= { jnxUtilUintTable 1 }
JnxUtilUintEntry ::=
SEQUENCE {
jnxUtilUintName DisplayString,
jnxUtilUintValue Unsigned32,
jnxUtilUintTime DateAndTime
}
jnxUtilUintName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..80))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name assigned to this object instance."
::= { jnxUtilUintEntry 1 }
jnxUtilUintValue OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of this generic, utility object instance."
::= { jnxUtilUintEntry 2 }
jnxUtilUintTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time at which this instance was last populated."
::= { jnxUtilUintEntry 3 }
--
-- This table exposes string valued objects
--
jnxUtilStringTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxUtilStringEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table exposes generic OCTET STRING valued objects. Each
string instance, which can be populated via an internal junos
interface, is identified by its corresponding name."
::= { jnxUtilData 5 }
jnxUtilStringEntry OBJECT-TYPE
SYNTAX JnxUtilStringEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry exposes a separate OCTET STRING instance."
INDEX { IMPLIED jnxUtilStringName }
::= { jnxUtilStringTable 1 }
JnxUtilStringEntry ::=
SEQUENCE {
jnxUtilStringName DisplayString,
jnxUtilStringValue OCTET STRING,
jnxUtilStringTime DateAndTime
}
jnxUtilStringName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..80))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name assigned to this object instance."
::= { jnxUtilStringEntry 1 }
jnxUtilStringValue OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..256))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of this generic, utility object instance."
::= { jnxUtilStringEntry 2 }
jnxUtilStringTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time at which this instance was last populated."
::= { jnxUtilStringEntry 3 }
END
|