-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
MYIP.txt
658 lines (574 loc) · 16.1 KB
/
MYIP.txt
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
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
MYIP-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Integer32, enterprises FROM SNMPv2-SMI
OBJECT-GROUP, MODULE-COMPLIANCE FROM SNMPv2-CONF
;
vanheusdendotcom MODULE-IDENTITY
LAST-UPDATED "202212180000Z"
ORGANIZATION "www.vanheusden.com"
CONTACT-INFO
"email: [email protected]"
DESCRIPTION
"MIB for the MyIP IP stack"
REVISION "202212180000Z"
DESCRIPTION
"First version"
::= { enterprises 57850 }
myipObject OBJECT IDENTIFIER ::= { vanheusdendotcom 1 }
myipHttpTable OBJECT IDENTIFIER ::= { myipObject 1 }
myipHttpGroup OBJECT-GROUP
OBJECTS {
myipHttpObjectRequestCount,
myipHttpObject200Count,
myipHttpObject404Count,
myipHttpObject500Count,
myipHttpObjectErrorCount
}
STATUS current
DESCRIPTION
"A collection of objects providing basic instrumentation and
control of an MyIP HTTP entity."
::= { myipHttpTable 999 }
myipHttpObjectRequestCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total HTTP request count"
::= { myipHttpTable 1 }
myipHttpObject200Count OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total HTTP request with 200 result count"
::= { myipHttpTable 2 }
myipHttpObject404Count OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total HTTP request with 404 result count"
::= { myipHttpTable 3 }
myipHttpObject500Count OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total HTTP request with 500 result count"
::= { myipHttpTable 4 }
myipHttpObjectErrorCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total HTTP request with error result count"
::= { myipHttpTable 5 }
myipVNCTable OBJECT IDENTIFIER ::= { myipObject 2 }
myipVNCGroup OBJECT-GROUP
OBJECTS {
myipVNCObjectRequestCount,
myipVNCObjectErrors,
myipVNCObjectDuratrion
}
STATUS current
DESCRIPTION
"A collection of objects providing basic instrumentation and
control of an MyIP VNC entity."
::= { myipVNCTable 999 }
myipVNCObjectRequestCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of VNC sessions"
::= { myipVNCTable 1 }
myipVNCObjectErrors OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of errors during VNC sessions"
::= { myipVNCTable 2 }
myipVNCObjectDuratrion OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total duration of all VNC sessions"
::= { myipVNCTable 3 }
myipSIPTable OBJECT IDENTIFIER ::= { myipObject 3 }
myipSIPGroup OBJECT-GROUP
OBJECTS {
myipSIPObjectRequestCount,
myipSIPObjectUnknownRequestCount,
myipSIPObjectSessionCount,
myipSIPObjectCodec8Count,
myipSIPObjectCodec11Count,
myipSIPObjectCodec97Count,
myipSIPObjectTotSesDuration
}
STATUS current
DESCRIPTION
"A collection of objects providing basic instrumentation and
control of an MyIP SIP entity."
::= { myipSIPTable 999 }
myipSIPObjectRequestCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of SIP requests"
::= { myipSIPTable 1 }
myipSIPObjectUnknownRequestCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of unknown SIP requests"
::= { myipSIPTable 2 }
myipSIPObjectSessionCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of SIP sessions"
::= { myipSIPTable 3 }
myipSIPObjectCodec8Count OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of SIP sessions with CODEC 8"
::= { myipSIPTable 4 }
myipSIPObjectCodec11Count OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of SIP sessions with CODEC 11"
::= { myipSIPTable 5 }
myipSIPObjectCodec97Count OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of SIP sessions with CODEC 97"
::= { myipSIPTable 6 }
myipSIPObjectTotSesDuration OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total duration of all SIP sessions"
::= { myipSIPTable 7 }
myipNTPTable OBJECT IDENTIFIER ::= { myipObject 4 }
myipNTPGroup OBJECT-GROUP
OBJECTS {
myipNTPObjectRequestCount,
myipNTPObjectInvReqCount,
myipNTPObjectTimeReqCount,
myipNTPObjectBroadCastCount
}
STATUS current
DESCRIPTION
"A collection of objects providing basic instrumentation and
control of an MyIP NTP entity."
::= { myipNTPTable 999 }
myipNTPObjectRequestCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of NTP requests."
::= { myipNTPTable 1 }
myipNTPObjectInvReqCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of invalid NTP requests."
::= { myipNTPTable 2 }
myipNTPObjectTimeReqCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of NTP time requests."
::= { myipNTPTable 3 }
myipNTPObjectBroadCastCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of NTP broadcasts."
::= { myipNTPTable 4 }
myipNTPProtCTable OBJECT IDENTIFIER ::= { myipNTPTable 5 }
myipNTPProtCGroup OBJECT-GROUP
OBJECTS {
myipNTPObjectVer1Count,
myipNTPObjectVer2Count,
myipNTPObjectVer3Count,
myipNTPObjectVer4Count,
myipNTPObjectVer5Count,
myipNTPObjectVer6Count,
myipNTPObjectVer7Count,
myipNTPObjectVer8Count
}
STATUS current
DESCRIPTION
"A collection of objects providing basic instrumentation and
control of an MyIP NTP protocol count entity."
::= { myipNTPProtCTable 999 }
myipNTPObjectVer1Count OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of NTP protocol version 1 packets."
::= { myipNTPProtCTable 1 }
myipNTPObjectVer2Count OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of NTP protocol version 2 packets."
::= { myipNTPProtCTable 2 }
myipNTPObjectVer3Count OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of NTP protocol version 3 packets."
::= { myipNTPProtCTable 3 }
myipNTPObjectVer4Count OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of NTP protocol version 4 packets."
::= { myipNTPProtCTable 4 }
myipNTPObjectVer5Count OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of NTP protocol version 5 packets."
::= { myipNTPProtCTable 5 }
myipNTPObjectVer6Count OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of NTP protocol version 6 packets."
::= { myipNTPProtCTable 6 }
myipNTPObjectVer7Count OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of NTP protocol version 7 packets."
::= { myipNTPProtCTable 7 }
myipNTPObjectVer8Count OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of NTP protocol version 8 packets."
::= { myipNTPProtCTable 8 }
myipSNMPTable OBJECT IDENTIFIER ::= { myipObject 5 }
myipSNMPGroup OBJECT-GROUP
OBJECTS {
myipSNMPObjectRequestCount,
myipSNMPObjectErrors
}
STATUS current
DESCRIPTION
"A collection of objects providing basic instrumentation and
control of an MyIP SNMP entity."
::= { myipSNMPTable 999 }
myipSNMPObjectRequestCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of SNMP requests"
::= { myipSNMPTable 1 }
myipSNMPObjectErrors OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of invalid SNMP requests"
::= { myipSNMPTable 2 }
myipSYSLOGTable OBJECT IDENTIFIER ::= { myipObject 6 }
myipSYSLOGGroup OBJECT-GROUP
OBJECTS {
myipSYSLOGObjectRequestCount
}
STATUS current
DESCRIPTION
"A collection of objects providing basic instrumentation and
control of an MyIP SYSLOG entity."
::= { myipSYSLOGTable 999 }
myipSYSLOGObjectRequestCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of SYSLOG packets"
::= { myipSYSLOGTable 1 }
myipACTable OBJECT IDENTIFIER ::= { myipObject 7 }
myipACGroup OBJECT-GROUP
OBJECTS {
myipACObjectRequestCount,
myipACObjectRequestForMeCount,
myipACObjectRequestReqCount,
myipACObjectRequestHitCount,
myipACObjectRequestStoreCount,
myipACObjectRequestUpdateCount
}
STATUS current
DESCRIPTION
"A collection of objects providing basic instrumentation and
control of an MyIP AC (address cache) entity."
::= { myipACTable 999 }
myipACObjectRequestCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of AC packets"
::= { myipACTable 1 }
myipACObjectRequestForMeCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of AC packets for me"
::= { myipACTable 2 }
myipACObjectRequestReqCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of AC REQ-packets"
::= { myipACTable 3 }
myipACObjectRequestHitCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of AC cache hit packets"
::= { myipACTable 4 }
myipACObjectRequestStoreCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of AC cache store packets"
::= { myipACTable 5 }
myipACObjectRequestUpdateCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of AC cache update packets"
::= { myipACTable 6 }
myipPhysTable OBJECT IDENTIFIER ::= { myipObject 8 }
myipPhysGroup OBJECT-GROUP
OBJECTS {
myipPhysObjectReceivedCount,
myipPhysObjectInvalidCount,
myipPhysObjectIgnoredCount
}
STATUS current
DESCRIPTION
"A collection of objects providing basic instrumentation and
control of an MyIP Phys entity."
::= { myipPhysTable 999 }
myipPhysObjectReceivedCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of frames received"
::= { myipPhysTable 1 }
myipPhysObjectInvalidCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of invalid frames received"
::= { myipPhysTable 2 }
myipPhysObjectIgnoredCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of ignored frames"
::= { myipPhysTable 3 }
myipNDPTable OBJECT IDENTIFIER ::= { myipObject 9 }
myipNDPGroup OBJECT-GROUP
OBJECTS {
myipNDPObjectCacheReq,
myipNDPObjectCacheHit
}
STATUS current
DESCRIPTION
"A collection of objects providing basic instrumentation and
control of an MyIP NDP entity."
::= { myipNDPTable 999 }
myipNDPObjectCacheReq OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of NDP cache requests"
::= { myipNDPTable 1 }
myipNDPObjectCacheHit OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of NDP cache hits"
::= { myipNDPTable 2 }
myipFirewallTable OBJECT IDENTIFIER ::= { myipObject 10 }
myipFirewallGroup OBJECT-GROUP
OBJECTS {
myipFirewallObjectDrops
}
STATUS current
DESCRIPTION
"A collection of objects providing basic instrumentation and
control of an MyIP firewall entity."
::= { myipFirewallTable 999 }
myipFirewallObjectDrops OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of firewall drops"
::= { myipFirewallTable 1 }
myipARPTable OBJECT IDENTIFIER ::= { myipObject 11 }
myipARPGroup OBJECT-GROUP
OBJECTS {
myipARPObjectMessages,
myipARPObjectForMe
}
STATUS current
DESCRIPTION
"A collection of objects providing basic instrumentation and
control of an MyIP ARP entity."
::= { myipARPTable 999 }
myipARPObjectMessages OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of ARP messages"
::= { myipARPTable 1 }
myipARPObjectForMe OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of ARP messages for me"
::= { myipARPTable 2 }
myipDNSTable OBJECT IDENTIFIER ::= { myipObject 12 }
myipDNSGroup OBJECT-GROUP
OBJECTS {
myipDNSObjectQueries,
myipDNSObjectQueriesHit,
myipDNSObjectQueriesMiss,
myipDNSObjectQueriesAlienReply,
myipDNSObjectQueriesTo
}
STATUS current
DESCRIPTION
"A collection of objects providing basic instrumentation and
control of an MyIP DNS entity."
::= { myipDNSTable 999 }
myipDNSObjectQueries OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of DNS messages"
::= { myipDNSTable 1 }
myipDNSObjectQueriesHit OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of DNS messages hits"
::= { myipDNSTable 2 }
myipDNSObjectQueriesMiss OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of DNS messages miss"
::= { myipDNSTable 3 }
myipDNSObjectQueriesAlienReply OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of DNS messages alien replies"
::= { myipDNSTable 4 }
myipDNSObjectQueriesTo OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of DNS messages to"
::= { myipDNSTable 5 }
myipNRPETable OBJECT IDENTIFIER ::= { myipObject 13 }
myipNRPEGroup OBJECT-GROUP
OBJECTS {
myipNRPEObjectRequests,
myipNRPEObjectRequestErrors
}
STATUS current
DESCRIPTION
"A collection of objects providing basic instrumentation and
control of an MyIP NRPE entity."
::= { myipNRPETable 999 }
myipNRPEObjectRequests OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of NRPE requests"
::= { myipNRPETable 1 }
myipNRPEObjectRequestErrors OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of errors during NRPE request errors"
::= { myipNRPETable 2 }
myipCompliances MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"Compliance statement for the the entities in this (myipObject) MIB."
MODULE
MANDATORY-GROUPS {
myipHttpGroup,
myipVNCGroup,
myipSIPGroup,
myipNTPGroup,
myipNTPProtCGroup,
myipSNMPGroup,
myipACGroup,
myipSYSLOGGroup,
myipPhysGroup,
myipNDPGroup,
myipFirewallGroup,
myipARPGroup,
myipDNSGroup,
myipNRPEGroup
}
::= { myipObject 999 }
END