summaryrefslogtreecommitdiff
path: root/MIBS/junose/Juniper-COPS-MIB
blob: 976918bcb88b28dd6c56020beec8c65495a8de68 (plain)
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
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462

-- *****************************************************************************
-- Juniper-COPS-MIB
--
-- Juniper Networks Enterprise MIB
--   Common Open Policy Service (COPS) Protocol Layer MIB
--
-- Copyright (c) 2000, 2002 Unisphere Networks, Inc.
-- Copyright (c) 2002 Juniper Networks, Inc.
--   All Rights Reserved.
-- *****************************************************************************

Juniper-COPS-MIB  DEFINITIONS ::= BEGIN

IMPORTS
    MODULE-IDENTITY, OBJECT-TYPE, Integer32, IpAddress, Counter32
        FROM SNMPv2-SMI
    MODULE-COMPLIANCE, OBJECT-GROUP
        FROM SNMPv2-CONF
    JuniName
        FROM Juniper-TC
    juniMibs
        FROM Juniper-MIBs;

juniCopsProtocolMIB  MODULE-IDENTITY
    LAST-UPDATED "200209162144Z"  -- 16-Sep-02 05:44 PM EDT
    ORGANIZATION "Juniper Networks, Inc."
    CONTACT-INFO
        "       Juniper Networks, Inc.
        Postal: 10 Technology Park Drive
                Westford, MA  01886-3146
                USA
        Tel:    +1 978 589 5800
        Email:  mib@Juniper.net"
    DESCRIPTION
        "The Common Open Policy Service (COPS) Protocol MIB for the Juniper
        Networks enterprise."
    -- Revision History
    REVISION    "200209162144Z"  -- 16-Sep-02 05:44 PM EDT  - JUNOSe 5.0
    DESCRIPTION
        "Replaced Unisphere names with Juniper names."
    REVISION    "200201141901Z"  -- 14-Jan-02 02:01 PM EST  - JUNOSe 4.0
    DESCRIPTION
        "Expanded MIB to include following objects:
            juniCopsProtocolSessionLocalAddress,
            juniCopsProtocolSessionTransportRouterName "
    REVISION    "200002220000Z"  -- 22-Feb-00               - JUNOSe 2.0
    DESCRIPTION
        "Initial version of this MIB module."
    ::= { juniMibs 37 }


-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Managed objects
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
--
--  This MIB contains definitions needed for the COPS Protocol component.
--
juniCopsProtocolObjects    OBJECT IDENTIFIER ::= { juniCopsProtocolMIB 1 }

juniCopsProtocolCfg        OBJECT IDENTIFIER ::= { juniCopsProtocolObjects 1 }
juniCopsProtocolStatus     OBJECT IDENTIFIER ::= { juniCopsProtocolObjects 2 }
juniCopsProtocolStatistics OBJECT IDENTIFIER ::= { juniCopsProtocolObjects 3 }
juniCopsProtocolSession    OBJECT IDENTIFIER ::= { juniCopsProtocolObjects 4 }

--
-- Statistics Objects
--
juniCopsProtocolStatisticsScalars  OBJECT IDENTIFIER
    ::= { juniCopsProtocolStatistics 1 }

juniCopsProtocolSessionsCreated  OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Total number of COPS protocol sessions created."
    ::= { juniCopsProtocolStatisticsScalars 1 }

juniCopsProtocolSessionsDeleted  OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of COPS protocol sessions deleted."
    ::= { juniCopsProtocolStatisticsScalars 2 }

juniCopsProtocolCurrentSessions  OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of current COPS protocol sessions."
    ::= { juniCopsProtocolStatisticsScalars 3 }

juniCopsProtocolBytesReceived  OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of bytes received by the COPS protocol layer."
    ::= { juniCopsProtocolStatisticsScalars 4 }

juniCopsProtocolPacketsReceived  OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of packets received by the COPS protocol layer."
    ::= { juniCopsProtocolStatisticsScalars 5 }

juniCopsProtocolBytesSent  OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of bytes sent by the COPS protocol layer."
    ::= { juniCopsProtocolStatisticsScalars 6 }

juniCopsProtocolPacketsSent  OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of packets sent by the COPS protocol layer."
    ::= { juniCopsProtocolStatisticsScalars 7 }

juniCopsProtocolKeepAlivesReceived  OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number keep alive packets received by the COPS protocol layer."
    ::= { juniCopsProtocolStatisticsScalars 8 }

juniCopsProtocolKeepAlivesSent  OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of keep alive packets sent by the COPS protocol layer."
    ::= { juniCopsProtocolStatisticsScalars 9 }


--
--  Session Information
--
juniCopsProtocolSessionTable  OBJECT-TYPE
    SYNTAX      SEQUENCE OF JuniCopsProtocolSessionEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The COPS protocol session information table."
    ::= { juniCopsProtocolSession 1 }

juniCopsProtocolSessionEntry  OBJECT-TYPE
    SYNTAX      JuniCopsProtocolSessionEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "An entry in the COPS protocol session information table."
    INDEX     { juniCopsProtocolSessionClientType }
    ::= { juniCopsProtocolSessionTable 1 }

JuniCopsProtocolSessionEntry ::= SEQUENCE {
    juniCopsProtocolSessionClientType            Integer32,
    juniCopsProtocolSessionRemoteAddress         IpAddress,
    juniCopsProtocolSessionRemotePort            Integer32,
    juniCopsProtocolSessionBytesReceived         Counter32,
    juniCopsProtocolSessionPacketsReceived       Counter32,
    juniCopsProtocolSessionBytesSent             Counter32,
    juniCopsProtocolSessionPacketsSent           Counter32,
    juniCopsProtocolSessionREQSent               Counter32,
    juniCopsProtocolSessionDECReceived           Counter32,
    juniCopsProtocolSessionRPTSent               Counter32,
    juniCopsProtocolSessionDRQSent               Counter32,
    juniCopsProtocolSessionSSQSent               Counter32,
    juniCopsProtocolSessionOPNSent               Counter32,
    juniCopsProtocolSessionCATReceived           Counter32,
    juniCopsProtocolSessionCCSent                Counter32,
    juniCopsProtocolSessionCCReceived            Counter32,
    juniCopsProtocolSessionSSCSent               Counter32,
    juniCopsProtocolSessionLocalAddress          IpAddress,
    juniCopsProtocolSessionTransportRouterName   JuniName }

juniCopsProtocolSessionClientType  OBJECT-TYPE
    SYNTAX      Integer32 (0..65535)
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The COPS client-type for which this entry information is valid."
    ::= { juniCopsProtocolSessionEntry 1 }

juniCopsProtocolSessionRemoteAddress  OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The IP address of the remote end of this session."
    ::= { juniCopsProtocolSessionEntry 2 }

juniCopsProtocolSessionRemotePort  OBJECT-TYPE
    SYNTAX      Integer32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The remote port for this session."
    ::= { juniCopsProtocolSessionEntry 3 }

juniCopsProtocolSessionBytesReceived  OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of bytes received by this session."
    ::= { juniCopsProtocolSessionEntry 4 }

juniCopsProtocolSessionPacketsReceived  OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of packets received by this session."
    ::= { juniCopsProtocolSessionEntry 5 }

juniCopsProtocolSessionBytesSent  OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of bytes sent on this session."
    ::= { juniCopsProtocolSessionEntry 6 }

juniCopsProtocolSessionPacketsSent  OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of packets sent on this session."
    ::= { juniCopsProtocolSessionEntry 7 }

juniCopsProtocolSessionREQSent  OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of REQ packets sent on this session."
    ::= { juniCopsProtocolSessionEntry 8 }

juniCopsProtocolSessionDECReceived  OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of DEC packets received on this session."
    ::= { juniCopsProtocolSessionEntry 9 }

juniCopsProtocolSessionRPTSent  OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of RPT packets sent on this session."
    ::= { juniCopsProtocolSessionEntry 10 }

juniCopsProtocolSessionDRQSent  OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of DRQ packets sent on this session."
    ::= { juniCopsProtocolSessionEntry 11 }

juniCopsProtocolSessionSSQSent  OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of SSQ packets sent on this session."
    ::= { juniCopsProtocolSessionEntry 12 }

juniCopsProtocolSessionOPNSent  OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of OPN packets sent on this session."
    ::= { juniCopsProtocolSessionEntry 13 }

juniCopsProtocolSessionCATReceived  OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of CAT packets received on this session."
    ::= { juniCopsProtocolSessionEntry 14 }

juniCopsProtocolSessionCCSent  OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of CC packets sent on this session."
    ::= { juniCopsProtocolSessionEntry 15 }

juniCopsProtocolSessionCCReceived  OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of CC packets received on this session."
    ::= { juniCopsProtocolSessionEntry 16 }

juniCopsProtocolSessionSSCSent  OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of SSC packets sent on this session."
    ::= { juniCopsProtocolSessionEntry 17 }


juniCopsProtocolSessionLocalAddress  OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The IP address of the local end of this session."
    ::= { juniCopsProtocolSessionEntry 18 }

juniCopsProtocolSessionTransportRouterName  OBJECT-TYPE
    SYNTAX      JuniName
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The administratively assigned name of the transport router for this
        session."
    ::= { juniCopsProtocolSessionEntry 19 }


-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Notifications
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- No notifications are defined in this MIB.  Placeholders follow.
-- juniCopsProtocolTrapControl  OBJECT IDENTIFIER
--     ::= { juniCopsProtocolMIB 2 }
-- juniCopsProtocolTraps        OBJECT IDENTIFIER
--     ::= { juniCopsProtocolMIB 3 }
-- juniCopsProtocolTrapPrefix   OBJECT IDENTIFIER
--     ::= { juniCopsProtocolTraps 0 }


-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Conformance information
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniCopsProtocolMIBConformance   OBJECT IDENTIFIER
    ::= { juniCopsProtocolMIB 4 }
juniCopsProtocolMIBCompliances   OBJECT IDENTIFIER
    ::= { juniCopsProtocolMIBConformance 1 }
juniCopsProtocolMIBGroups        OBJECT IDENTIFIER
    ::= { juniCopsProtocolMIBConformance 2 }

--
-- compliance statements
--
juniCopsProtocolAuthCompliance  MODULE-COMPLIANCE
    STATUS      obsolete
    DESCRIPTION
        "Current compliance statement for authentication clients implementing
        the Juniper COPS Protocol MIB authentication functionality.  This
        statement became obsolete when the local address and transport router
        name objects were add."
    MODULE   -- this module
        MANDATORY-GROUPS {
            juniCopsProtocolGroup }
    ::= { juniCopsProtocolMIBCompliances 1 }                       -- JUNOSe 2.0

juniCopsProtocolAuthCompliance2  MODULE-COMPLIANCE
    STATUS      current
    DESCRIPTION
        "The compliance statement for authentication clients implementing the
        Juniper COPS Protocol MIB authentication functionality."
    MODULE   -- this module
        MANDATORY-GROUPS {
            juniCopsProtocolGroup2 }
    ::= { juniCopsProtocolMIBCompliances 2 }                       -- JUNOSe 4.0

--
-- units of conformance
--
juniCopsProtocolGroup  OBJECT-GROUP
    OBJECTS {
        juniCopsProtocolSessionsCreated,
        juniCopsProtocolSessionsDeleted,
        juniCopsProtocolCurrentSessions,
        juniCopsProtocolBytesReceived,
        juniCopsProtocolPacketsReceived,
        juniCopsProtocolBytesSent,
        juniCopsProtocolPacketsSent,
        juniCopsProtocolKeepAlivesReceived,
        juniCopsProtocolKeepAlivesSent,

        juniCopsProtocolSessionRemoteAddress,
        juniCopsProtocolSessionRemotePort,
        juniCopsProtocolSessionBytesReceived,
        juniCopsProtocolSessionPacketsReceived,
        juniCopsProtocolSessionBytesSent,
        juniCopsProtocolSessionPacketsSent,
        juniCopsProtocolSessionREQSent,
        juniCopsProtocolSessionDECReceived,
        juniCopsProtocolSessionRPTSent,
        juniCopsProtocolSessionDRQSent,
        juniCopsProtocolSessionSSQSent,
        juniCopsProtocolSessionOPNSent,
        juniCopsProtocolSessionCATReceived,
        juniCopsProtocolSessionCCSent,
        juniCopsProtocolSessionCCReceived,
        juniCopsProtocolSessionSSCSent }
    STATUS      obsolete
    DESCRIPTION
        "Obsolete basic collection of objects providing management of the COPS
        Protocol.  This group became obsolete when the local address and
        transport router name objects were add."
    ::= { juniCopsProtocolMIBGroups 1 }

juniCopsProtocolGroup2  OBJECT-GROUP
    OBJECTS {
        juniCopsProtocolSessionsCreated,
        juniCopsProtocolSessionsDeleted,
        juniCopsProtocolCurrentSessions,
        juniCopsProtocolBytesReceived,
        juniCopsProtocolPacketsReceived,
        juniCopsProtocolBytesSent,
        juniCopsProtocolPacketsSent,
        juniCopsProtocolKeepAlivesReceived,
        juniCopsProtocolKeepAlivesSent,

        juniCopsProtocolSessionRemoteAddress,
        juniCopsProtocolSessionRemotePort,
        juniCopsProtocolSessionBytesReceived,
        juniCopsProtocolSessionPacketsReceived,
        juniCopsProtocolSessionBytesSent,
        juniCopsProtocolSessionPacketsSent,
        juniCopsProtocolSessionREQSent,
        juniCopsProtocolSessionDECReceived,
        juniCopsProtocolSessionRPTSent,
        juniCopsProtocolSessionDRQSent,
        juniCopsProtocolSessionSSQSent,
        juniCopsProtocolSessionOPNSent,
        juniCopsProtocolSessionCATReceived,
        juniCopsProtocolSessionCCSent,
        juniCopsProtocolSessionCCReceived,
        juniCopsProtocolSessionSSCSent,
        juniCopsProtocolSessionLocalAddress,
        juniCopsProtocolSessionTransportRouterName }
    STATUS      current
    DESCRIPTION
        "The basic collection of objects providing management of the COPS
        Protocol."
    ::= { juniCopsProtocolMIBGroups 2 }

END