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
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
|
--
-- Juniper Enterprise Specific MIB: Video Monitoring MIB
--
-- Copyright (c) 2010, Juniper Networks, Inc.
-- All rights reserved.
--
-- The contents of this document are subject to change without notice.
--
JUNIPER-VMON-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Counter64, Integer32, Unsigned32, TimeTicks, IpAddress,
NOTIFICATION-TYPE
FROM SNMPv2-SMI
jnxServices, jnxVmonMibRoot
FROM JUNIPER-SMI
DisplayString, TEXTUAL-CONVENTION
FROM SNMPv2-TC
InetAddress, InetAddressType, InetPortNumber
FROM INET-ADDRESS-MIB
InterfaceIndexOrZero
FROM IF-MIB;
jnxVmonMIB MODULE-IDENTITY
LAST-UPDATED "201312090000Z"
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
"Implementation of enterprise specific MIB
for video monitoring traps."
REVISION "201312090000Z" -- Dec 09, 2013
DESCRIPTION
"Initial version."
::= { jnxVmonMibRoot 1 }
jnxVmonObjects OBJECT IDENTIFIER ::= { jnxVmonMIB 1 }
jnxVmonNotifications OBJECT IDENTIFIER ::= { jnxVmonMIB 0 }
jnxVmonServices OBJECT IDENTIFIER ::= { jnxServices 1 }
--
-- Textual Conventions
--
JnxVmonFlowType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This data type is to indication which type of flow we
are talking about i.e. if it is a mpeg flow or rtp flow"
SYNTAX OCTET STRING (SIZE (0..30))
JnxVmonTrapLevel ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"This data type is to indicate what is the level of trap
being generated."
SYNTAX INTEGER {
critical(2),
warning(4),
info(6),
clear(8)
}
JnxVmonFlowDirection ::=TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This data type is to indication direction of the flow
i.e. if it is a input or output"
SYNTAX OCTET STRING (SIZE (6))
--
-- Global VMON counters Table
--
jnxmdiStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxmdiStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table lists mdi stats counters."
::= { jnxVmonServices 1 }
jnxmdiStatsEntry OBJECT-TYPE
SYNTAX JnxmdiStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry representing mdi stats counters."
INDEX { jnxmdiFPCSlotNo }
::= { jnxmdiStatsTable 1 }
JnxmdiStatsEntry ::= SEQUENCE {
jnxmdiFPCSlotNo Unsigned32,
jnxmdiActiveFlowsCount Counter64,
jnxmdiInsertedFlowsCount Counter64,
jnxmdiDeletedFlowsCount Counter64,
jnxmdiTotalPktsCount Counter64,
jnxmdiTotalBytesCount Counter64,
jnxmdiDFTotalAlarmCount Counter64,
jnxmdiDFInfoAlarmCount Counter64,
jnxmdiDFWarningAlarmCount Counter64,
jnxmdiDFCriticalAlarmCount Counter64,
jnxmdiMLRTotalAlarmCount Counter64,
jnxmdiMLRInfoAlarmCount Counter64,
jnxmdiMLRWarningAlarmCount Counter64,
jnxmdiMLRCriticalAlarmCount Counter64,
jnxmdiMRVTotalAlarmCount Counter64,
jnxmdiMRVInfoAlarmCount Counter64,
jnxmdiMRVWarningAlarmCount Counter64,
jnxmdiMRVCriticalAlarmCount Counter64
}
jnxmdiFPCSlotNo OBJECT-TYPE
SYNTAX Unsigned32(0..255)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"FPC Slot Number"
::= { jnxmdiStatsEntry 1 }
jnxmdiActiveFlowsCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total Active Flows."
::= { jnxmdiStatsEntry 2 }
jnxmdiInsertedFlowsCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total Flows Inserted."
::= { jnxmdiStatsEntry 3 }
jnxmdiDeletedFlowsCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total Flows Deleted."
::= { jnxmdiStatsEntry 4 }
jnxmdiTotalPktsCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total Number of Packets."
::= { jnxmdiStatsEntry 5 }
jnxmdiTotalBytesCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total Number of Bytes."
::= { jnxmdiStatsEntry 6 }
jnxmdiDFTotalAlarmCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total Number of Alarm Generated for DF."
::= { jnxmdiStatsEntry 7 }
jnxmdiDFInfoAlarmCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total Number of Info Alarm Generated for DF."
::= { jnxmdiStatsEntry 8 }
jnxmdiDFWarningAlarmCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total Number of Warning Alarm Generated for DF."
::= { jnxmdiStatsEntry 9 }
jnxmdiDFCriticalAlarmCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total Number of Critical Alarm Generated for DF."
::= { jnxmdiStatsEntry 10 }
jnxmdiMLRTotalAlarmCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total Number of Alarm Generated for MLR."
::= { jnxmdiStatsEntry 11 }
jnxmdiMLRInfoAlarmCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total Number of Info Alarm Generated for MLR."
::= { jnxmdiStatsEntry 12 }
jnxmdiMLRWarningAlarmCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total Number of Warning Alarm Generated for MLR."
::= { jnxmdiStatsEntry 13 }
jnxmdiMLRCriticalAlarmCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total Number of Critical Alarm Generated for MLR."
::= { jnxmdiStatsEntry 14 }
jnxmdiMRVTotalAlarmCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total Number of Alarm Generated for MRV."
::= { jnxmdiStatsEntry 15 }
jnxmdiMRVInfoAlarmCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total Number of Info Alarm Generated for MRV."
::= { jnxmdiStatsEntry 16 }
jnxmdiMRVWarningAlarmCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total Number of Warning Alarm Generated for MRV."
::= { jnxmdiStatsEntry 17 }
jnxmdiMRVCriticalAlarmCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total Number of Critical Alarm Generated for MRV."
::= { jnxmdiStatsEntry 18 }
--
-- Error Counter Table
--
jnxmdiErrsTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxmdiErrsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table lists mdi errors counters."
::= { jnxVmonServices 2 }
jnxmdiErrsEntry OBJECT-TYPE
SYNTAX JnxmdiErrsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry representing mdi errors counters."
INDEX { jnxmdiFPCSlotNo }
::= { jnxmdiErrsTable 1 }
JnxmdiErrsEntry ::= SEQUENCE {
jnxmdiFPCSlotNo Unsigned32,
jnxmdiErrsFlowInsertErr Counter64,
jnxmdiErrsPolicerDrop Counter64,
jnxmdiErrsPIDLimitExceed Counter64,
jnxmdiErrsUnsupportedMediaPkts Counter64,
jnxmdiErrsFragmentedPkts Counter64,
jnxmdiErrsMaxLabelsExceed Counter64,
jnxmdiErrsOptionPkt Counter64
}
jnxmdiErrsFlowInsertErr OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total Number of Flow Insert Errors."
::= { jnxmdiErrsEntry 1 }
jnxmdiErrsPolicerDrop OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total Number of Policer Drop."
::= { jnxmdiErrsEntry 2 }
jnxmdiErrsPIDLimitExceed OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total Number of PID Limit Exceed."
::= { jnxmdiErrsEntry 3 }
jnxmdiErrsUnsupportedMediaPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Unsupported media packets."
::= { jnxmdiErrsEntry 4 }
jnxmdiErrsFragmentedPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Fragmented packets."
::= { jnxmdiErrsEntry 5 }
jnxmdiErrsMaxLabelsExceed OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Max Labels exceeded count."
::= { jnxmdiErrsEntry 6 }
jnxmdiErrsOptionPkt OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Option header packet count."
::= { jnxmdiErrsEntry 7 }
--
-- Flow Table
--
jnxmdiFlowTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxmdiFlowEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table lists mdi flows."
::= { jnxVmonServices 3 }
jnxmdiFlowEntry OBJECT-TYPE
SYNTAX JnxmdiFlowEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry representing mdi stats counters."
INDEX {
jnxmdiFPCSlotNo,
jnxmdiFlowIdentifier
}
::= { jnxmdiFlowTable 1 }
JnxmdiFlowEntry ::= SEQUENCE {
jnxmdiFlowIdentifier Unsigned32,
jnxmdiFlowSrcAddr InetAddress,
jnxmdiFlowDstAddr InetAddress,
jnxmdiFlowAddrFamily InetAddressType,
jnxmdiFlowSrcPort InetPortNumber,
jnxmdiFlowDstPort InetPortNumber,
jnxmdiFlowInterfaceName DisplayString,
jnxmdiFlowInterfaceSNMPIndex InterfaceIndexOrZero,
jnxmdiFlowDirection JnxVmonFlowDirection,
jnxmdiFlowType JnxVmonFlowType,
jnxmdiFlowLastDF DisplayString,
jnxmdiFlowLastMLR Unsigned32,
jnxmdiFlowLastMRV DisplayString,
jnxmdiFlowAvgDF DisplayString,
jnxmdiFlowAvgMLR Unsigned32,
jnxmdiFlowAvgMRV DisplayString,
jnxmdiFlowTemplateName DisplayString,
jnxmdiFlowMDIRecCount Integer32,
jnxmdiFlowPIDCount Integer32,
jnxmdiFlowMPLSLabel0 Unsigned32,
jnxmdiFlowMPLSLabel1 Unsigned32,
jnxmdiFlowMPLSLabel2 Unsigned32
}
jnxmdiFlowIdentifier OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Flow Identifier for the flow"
::= { jnxmdiFlowEntry 1 }
jnxmdiFlowSrcAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Source IP address for the flow"
::= { jnxmdiFlowEntry 2 }
jnxmdiFlowDstAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Destination IP address for the flow"
::= { jnxmdiFlowEntry 3 }
jnxmdiFlowAddrFamily OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Address family for the flow"
::= { jnxmdiFlowEntry 4 }
jnxmdiFlowSrcPort OBJECT-TYPE
SYNTAX InetPortNumber
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Source Port Number for the flow"
::= { jnxmdiFlowEntry 5 }
jnxmdiFlowDstPort OBJECT-TYPE
SYNTAX InetPortNumber
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Destination Port Number for the flow"
::= { jnxmdiFlowEntry 6 }
jnxmdiFlowInterfaceName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Interface Name for the flow"
::= { jnxmdiFlowEntry 7 }
jnxmdiFlowInterfaceSNMPIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Interface SNMP Index for the flow"
::= { jnxmdiFlowEntry 8 }
jnxmdiFlowDirection OBJECT-TYPE
SYNTAX JnxVmonFlowDirection
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Direction for the flow"
::= { jnxmdiFlowEntry 9 }
jnxmdiFlowType OBJECT-TYPE
SYNTAX JnxVmonFlowType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of the flow"
::= { jnxmdiFlowEntry 10 }
jnxmdiFlowLastDF OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Last DF Value for the flow"
::= { jnxmdiFlowEntry 11 }
jnxmdiFlowLastMLR OBJECT-TYPE
SYNTAX Unsigned32(0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Last MLR Value for the flow"
::= { jnxmdiFlowEntry 12 }
jnxmdiFlowLastMRV OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Last MRV Value for the flow"
::= { jnxmdiFlowEntry 13 }
jnxmdiFlowAvgDF OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average DF Value for the flow"
::= { jnxmdiFlowEntry 14 }
jnxmdiFlowAvgMLR OBJECT-TYPE
SYNTAX Unsigned32(0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average MLR Value for the flow"
::= { jnxmdiFlowEntry 15 }
jnxmdiFlowAvgMRV OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average MRV Value for the flow"
::= { jnxmdiFlowEntry 16 }
jnxmdiFlowTemplateName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Template Name of the Flow "
::= { jnxmdiFlowEntry 17 }
jnxmdiFlowMDIRecCount OBJECT-TYPE
SYNTAX Integer32(0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"MDI Record Count for the flow"
::= { jnxmdiFlowEntry 18 }
jnxmdiFlowPIDCount OBJECT-TYPE
SYNTAX Integer32(0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"PID Count for the flow"
::= { jnxmdiFlowEntry 19 }
jnxmdiFlowMPLSLabel0 OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"MPLS Label-0 "
::= { jnxmdiFlowEntry 20 }
jnxmdiFlowMPLSLabel1 OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"MPLS Label-1 "
::= { jnxmdiFlowEntry 21 }
jnxmdiFlowMPLSLabel2 OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"MPLS Label-2 "
::= { jnxmdiFlowEntry 22 }
--
-- Flow MDI Record Table
--
jnxmdiFlowMDIRecTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxmdiFlowMDIRecEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table lists mdi flow records."
::= { jnxVmonServices 4 }
jnxmdiFlowMDIRecEntry OBJECT-TYPE
SYNTAX JnxmdiFlowMDIRecEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry representing mdi flow record."
INDEX {
jnxmdiFPCSlotNo,
jnxmdiFlowIdentifier,
jnxmdiFlowMDIRecIndex
}
::= { jnxmdiFlowMDIRecTable 1 }
JnxmdiFlowMDIRecEntry ::= SEQUENCE {
jnxmdiFPCSlotNo Unsigned32,
jnxmdiFlowIdentifier Unsigned32,
jnxmdiFlowMDIRecIndex Unsigned32,
jnxmdiFlowMDIRecDF DisplayString,
jnxmdiFlowMDIRecMLR Unsigned32,
jnxmdiFlowMDIRecMRV DisplayString
}
jnxmdiFlowMDIRecIndex OBJECT-TYPE
SYNTAX Unsigned32(0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"MDI Flow Record Index"
::= { jnxmdiFlowMDIRecEntry 1 }
jnxmdiFlowMDIRecDF OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DF Value of the Flow Record Index"
::= { jnxmdiFlowMDIRecEntry 2 }
jnxmdiFlowMDIRecMLR OBJECT-TYPE
SYNTAX Unsigned32(0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"MLR Value of the Flow Record Index"
::= { jnxmdiFlowMDIRecEntry 3 }
jnxmdiFlowMDIRecMRV OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"MRV Value of the Flow Record Index"
::= { jnxmdiFlowMDIRecEntry 4 }
--
-- Flow PID Table
--
jnxmdiFlowPIDTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxmdiFlowPIDEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table lists mdi flow PID."
::= { jnxVmonServices 5 }
jnxmdiFlowPIDEntry OBJECT-TYPE
SYNTAX JnxmdiFlowPIDEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry representing mdi flow PID."
INDEX {
jnxmdiFPCSlotNo,
jnxmdiFlowIdentifier,
jnxmdiFlowMDIRecIndex,
jnxmdiFlowPIDValue
}
::= { jnxmdiFlowPIDTable 1 }
JnxmdiFlowPIDEntry ::= SEQUENCE {
jnxmdiFPCSlotNo Unsigned32,
jnxmdiFlowIdentifier Unsigned32,
jnxmdiFlowMDIRecIndex Unsigned32,
jnxmdiFlowPIDValue Unsigned32,
jnxmdiFlowPIDMLR Unsigned32
}
jnxmdiFlowPIDValue OBJECT-TYPE
SYNTAX Unsigned32(0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"PID Value of the Flow Record Index"
::= { jnxmdiFlowPIDEntry 1 }
jnxmdiFlowPIDMLR OBJECT-TYPE
SYNTAX Unsigned32(0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"PID MLR Value of the Flow Record Index"
::= { jnxmdiFlowPIDEntry 2 }
--
-- Video Monitoring Objects for DF, MLR, MRV Alarm
--
jnxVmonFlowIdentifier OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Flow Identifier of the flow for SNMP trap"
::= { jnxVmonObjects 1 }
jnxVmonSourceIP OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Source IP address of the flow for SNMP trap"
::= { jnxVmonObjects 2 }
jnxVmonDestinationIP OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Destination IP address of the flow for SNMP trap"
::= { jnxVmonObjects 3 }
jnxVmonIPFamily OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IP address family of the flow for SNMP trap"
::= { jnxVmonObjects 4 }
jnxVmonSourcePort OBJECT-TYPE
SYNTAX InetPortNumber
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Source Port number of the flow for SNMP trap"
::= { jnxVmonObjects 5 }
jnxVmonDestinationPort OBJECT-TYPE
SYNTAX InetPortNumber
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Source Port number of the flow for SNMP trap"
::= { jnxVmonObjects 6 }
jnxVmonFlowType OBJECT-TYPE
SYNTAX JnxVmonFlowType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Flow type for SNMP trap"
::= { jnxVmonObjects 7 }
jnxVmonTrapLevel OBJECT-TYPE
SYNTAX JnxVmonTrapLevel
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Level of the SNMP Trap "
::= { jnxVmonObjects 8 }
jnxVmonFPCSlot OBJECT-TYPE
SYNTAX Integer32(0..127)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Chassis FPC Slot "
::= { jnxVmonObjects 9 }
jnxVmonInterfaceName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Interface Name for the Flow "
::= { jnxVmonObjects 10 }
jnxVmonInterfaceSNMPIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" SNMP Index of the Flow "
::= { jnxVmonObjects 11 }
jnxVmonTemplateName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Template Name of the Flow "
::= { jnxVmonObjects 12 }
jnxVmonFlowDirection OBJECT-TYPE
SYNTAX JnxVmonFlowDirection
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Flow of the direction "
::= { jnxVmonObjects 13 }
jnxVmonExpectedVal OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Expected value for the flow "
::= { jnxVmonObjects 14 }
jnxVmonComputedVal OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Computed value for the flow "
::= { jnxVmonObjects 15 }
jnxVmonMDIRecIdx OBJECT-TYPE
SYNTAX Unsigned32(0..15)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" MDIRecIdx for which the trap is being generated "
::= { jnxVmonObjects 16 }
jnxVmonAlarmMode OBJECT-TYPE
SYNTAX Unsigned32(0..3)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Alarm mode "
::= { jnxVmonObjects 17 }
-- ********************************************************************
-- define branches for jnx vmon traps
-- ********************************************************************
jnxVmonMDIDFAlarm NOTIFICATION-TYPE
OBJECTS {
jnxVmonFlowIdentifier,
jnxVmonSourceIP,
jnxVmonDestinationIP,
jnxVmonIPFamily,
jnxVmonSourcePort,
jnxVmonDestinationPort,
jnxVmonFlowType,
jnxVmonTrapLevel,
jnxVmonFPCSlot,
jnxVmonInterfaceName,
jnxVmonInterfaceSNMPIndex,
jnxVmonTemplateName,
jnxVmonFlowDirection,
jnxVmonExpectedVal,
jnxVmonComputedVal,
jnxVmonMDIRecIdx,
jnxVmonAlarmMode
}
STATUS current
DESCRIPTION
"The SNMP trap for the DF Alarm "
::= { jnxVmonNotifications 1 }
jnxVmonMDIMLRAlarm NOTIFICATION-TYPE
OBJECTS {
jnxVmonFlowIdentifier,
jnxVmonSourceIP,
jnxVmonDestinationIP,
jnxVmonIPFamily,
jnxVmonSourcePort,
jnxVmonDestinationPort,
jnxVmonFlowType,
jnxVmonTrapLevel,
jnxVmonFPCSlot,
jnxVmonInterfaceName,
jnxVmonInterfaceSNMPIndex,
jnxVmonTemplateName,
jnxVmonFlowDirection,
jnxVmonExpectedVal,
jnxVmonComputedVal,
jnxVmonMDIRecIdx,
jnxVmonAlarmMode
}
STATUS current
DESCRIPTION
"The SNMP trap for the MLR Alarm "
::= { jnxVmonNotifications 2 }
jnxVmonMDIMRVAlarm NOTIFICATION-TYPE
OBJECTS {
jnxVmonFlowIdentifier,
jnxVmonSourceIP,
jnxVmonDestinationIP,
jnxVmonIPFamily,
jnxVmonSourcePort,
jnxVmonDestinationPort,
jnxVmonFlowType,
jnxVmonTrapLevel,
jnxVmonFPCSlot,
jnxVmonInterfaceName,
jnxVmonInterfaceSNMPIndex,
jnxVmonTemplateName,
jnxVmonFlowDirection,
jnxVmonExpectedVal,
jnxVmonComputedVal,
jnxVmonMDIRecIdx,
jnxVmonAlarmMode
}
STATUS current
DESCRIPTION
"The SNMP trap for the MRV Alarm "
::= { jnxVmonNotifications 3 }
jnxVmonMDIFlowInsertAlarm NOTIFICATION-TYPE
OBJECTS {
jnxVmonFlowIdentifier,
jnxVmonSourceIP,
jnxVmonDestinationIP,
jnxVmonIPFamily,
jnxVmonSourcePort,
jnxVmonDestinationPort,
jnxVmonFlowType,
jnxVmonFPCSlot,
jnxVmonInterfaceName,
jnxVmonInterfaceSNMPIndex,
jnxVmonTemplateName,
jnxVmonFlowDirection
}
STATUS current
DESCRIPTION
"The SNMP trap for the New Flow Alarm "
::= { jnxVmonNotifications 4 }
jnxVmonMDIFlowDeleteAlarm NOTIFICATION-TYPE
OBJECTS {
jnxVmonFlowIdentifier,
jnxVmonSourceIP,
jnxVmonDestinationIP,
jnxVmonIPFamily,
jnxVmonSourcePort,
jnxVmonDestinationPort,
jnxVmonFlowType,
jnxVmonFPCSlot,
jnxVmonInterfaceName,
jnxVmonInterfaceSNMPIndex,
jnxVmonTemplateName,
jnxVmonFlowDirection
}
STATUS current
DESCRIPTION
"The SNMP trap for the New Flow Alarm "
::= { jnxVmonNotifications 5 }
END
|