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
|
DELL-NETWORKING-IF-EXTENSION-MIB DEFINITIONS ::= BEGIN
-- This module provides authoritative definitions for
-- Dell Networking OS extenstion to the IF MIB.
--
-- This module will be extended, as needed.
--
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
Counter64, Unsigned32
FROM SNMPv2-SMI
TimeStamp, DisplayString, TruthValue
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
ifIndex
FROM IF-MIB
Integer32
FROM SNMPv2-SMI
dellNetMgmt
FROM DELL-NETWORKING-SMI;
dellNetIfExtensionMib MODULE-IDENTITY
LAST-UPDATED "201203061200Z" -- Mar 6, 2012 12:00:00 GMT
ORGANIZATION
"Dell Inc"
CONTACT-INFO
"http://www.dell.com/support"
DESCRIPTION
"Dell Networking OS IF Extenstion MIB. "
REVISION "201408121200Z"
DESCRIPTION
"Added dellNetIfPortListBitPos.Removed dellNetIfDhcpAdminStatus and dellNetIfDhcpOperStatus."
REVISION "201203061200Z"
DESCRIPTION
"Added DHCP Client attributes."
REVISION "201008111200Z"
DESCRIPTION
"Add dellNetIfOutThrottles."
REVISION "201008101200Z"
DESCRIPTION
"Initial version of this mib module."
::= { dellNetMgmt 11 }
-- ### Groups ###
dellNetIfExtensionMibObject OBJECT IDENTIFIER ::={ dellNetIfExtensionMib 1 }
dellNetIfExtensionParams OBJECT IDENTIFIER ::={ dellNetIfExtensionMibObject 1 }
dellNetIfExtensionStats OBJECT IDENTIFIER ::={ dellNetIfExtensionMibObject 2 }
dellNetIfTransceiverData OBJECT IDENTIFIER ::={ dellNetIfExtensionMibObject 3 }
dellNetIfAlarmObjects OBJECT IDENTIFIER ::={ dellNetIfExtensionMibObject 4 }
-- ### Dell Networking OS IF Extenstion Tables
--
-- Interface Table
--
dellNetIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF DellNetIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Dell Networking OS Extension ifTable contains
generic interface parameters."
::= { dellNetIfExtensionParams 1 }
dellNetIfEntry OBJECT-TYPE
SYNTAX DellNetIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" A row defintion of Dell Networking OS Interface
Extension parameters."
INDEX { ifIndex }
::= { dellNetIfTable 1 }
DellNetIfEntry ::=
SEQUENCE {
dellNetIfIpMtu Unsigned32,
dellNetIfDuplexMode INTEGER,
dellNetIfQueueingStrategy DisplayString,
dellNetIfRxFlowCtrl TruthValue,
dellNetIfTxFlowCtrl TruthValue,
dellNetIfDescr OCTET STRING,
dellNetIfAdminStatus INTEGER,
dellNetIfRateInterval Unsigned32,
dellNetIfSpeed INTEGER,
dellNetIfPortListBitPos Integer32
}
dellNetIfIpMtu OBJECT-TYPE
SYNTAX Unsigned32 (594..9252)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP (Internet Protocol), Maximum
Transmission Unit value."
::= { dellNetIfEntry 1 }
dellNetIfDuplexMode OBJECT-TYPE
SYNTAX INTEGER {
half(1),
full(2),
auto(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Duplex mode of the interface.
This will be read-write only for s60"
::= { dellNetIfEntry 2 }
dellNetIfQueueingStrategy OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Queueing strategy used for packets."
::= { dellNetIfEntry 3 }
dellNetIfRxFlowCtrl OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Flow control receive. This will be read-write only for s60"
::= { dellNetIfEntry 4 }
dellNetIfTxFlowCtrl OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Flow Control transmit.This will be read-only only for s60"
::= { dellNetIfEntry 5 }
dellNetIfDescr OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..241))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A textual string containing information about the interface.
This will be read-write only for s60"
::= { dellNetIfEntry 6 }
dellNetIfAdminStatus OBJECT-TYPE
SYNTAX INTEGER{
up (1),
down(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A admin status of any interface.
This will be read-write only for s60"
::= { dellNetIfEntry 7 }
dellNetIfRateInterval OBJECT-TYPE
SYNTAX Unsigned32 (30..299)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The rate info interval for the interface.
This will be read-write only for s60"
::= { dellNetIfEntry 8 }
dellNetIfSpeed OBJECT-TYPE
SYNTAX INTEGER{
auto (1),
tenMbps (10),
hundredMbps (100),
thousandMbps (1000)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The interface's current bandwidth in bits per second.
This will be read-write only for s60"
::= { dellNetIfEntry 9 }
dellNetIfPortListBitPos OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is used for identifying the bit position in PortList Object for a given interface."
::= { dellNetIfEntry 10 }
--
-- Interface Statistics Table
--
dellNetIfStaticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF DellNetIfStaticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The statistcs information of the interfaces for performance monitoring."
::= { dellNetIfExtensionStats 1 }
dellNetIfStaticsEntry OBJECT-TYPE
SYNTAX DellNetIfStaticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row defintion of Dell Networking OS Extension
interface statistics."
INDEX { ifIndex }
::= { dellNetIfStaticsTable 1 }
DellNetIfStaticsEntry ::=
SEQUENCE {
dellNetIfInVlanPkts Counter64,
dellNetIfIn64BytePkts Counter64,
dellNetIfIn65To127BytePkts Counter64,
dellNetIfIn128To255BytePkts Counter64,
dellNetIfIn256To511BytePkts Counter64,
dellNetIfIn512To1023BytePkts Counter64,
dellNetIfInOver1023BytePkts Counter64,
dellNetIfInThrottles Counter64,
dellNetIfInRunts Counter64,
dellNetIfInGiants Counter64,
dellNetIfInCRC Counter64,
dellNetIfInOverruns Counter64,
dellNetIfOutVlanPkts Counter64,
dellNetIfOutUnderruns Counter64,
dellNetIfOutUnicasts Counter64,
dellNetIfOutCollisions Counter64,
dellNetIfOutWredDrops Counter64,
dellNetIfOut64BytePkts Counter64,
dellNetIfOut65To127BytePkts Counter64,
dellNetIfOut128To255BytePkts Counter64,
dellNetIfOut256To511BytePkts Counter64,
dellNetIfOut512To1023BytePkts Counter64,
dellNetIfOutOver1023BytePkts Counter64,
dellNetIfOutThrottles Counter64,
dellNetIfLastDiscontinuityTime TimeStamp,
dellNetIfInCentRate Integer32,
dellNetIfOutCentRate Integer32
}
dellNetIfInVlanPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of valid VLAN Tagged
frames received."
::= { dellNetIfStaticsEntry 1 }
dellNetIfIn64BytePkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of frames (including bad
frames) received that were 64 octets in length
(excluding framing bits but in-cluding FCS octets)."
::= { dellNetIfStaticsEntry 2 }
dellNetIfIn65To127BytePkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of frames (including bad
frames) received that were between 65 and 127
octets in length inclusive (ex-cluding framing
bits but including FCS octets)."
::= { dellNetIfStaticsEntry 3 }
dellNetIfIn128To255BytePkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of frames (including bad
frames) received that were between 128 and 255
octets in length inclusive (excluding framing
bits but including FCS octets)."
::= { dellNetIfStaticsEntry 4 }
dellNetIfIn256To511BytePkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of frames (including bad
frames) received that were between 256 and 511
octets in length inclusive (excluding framing
bits but including FCS octets)."
::= { dellNetIfStaticsEntry 5 }
dellNetIfIn512To1023BytePkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of frames (including bad
frames) received that were between 512 and 1023
octets in length inclusive (excluding framing
bits but including FCS octets)."
::= { dellNetIfStaticsEntry 6 }
dellNetIfInOver1023BytePkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of frames received that
were longer than 1023 (1025 Bytes in case of
VLAN Tag) octets (excluding framing bits, but
including FCS octets) and were otherwise
well formed. This counter is not incremented
for too long frames."
::= { dellNetIfStaticsEntry 7 }
dellNetIfInThrottles OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This counter is incremented when a valid
frame with a length or type field value equal
to 0x8808 (Control Frame) is re-ceived."
::= { dellNetIfStaticsEntry 8 }
dellNetIfInRunts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of frames received that were
less than 64 octets long (excluding framing bits,
but including FCS octets) and were otherwise
well formed."
::= { dellNetIfStaticsEntry 9 }
dellNetIfInGiants OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of frames received that were
longer than 1518 (1522 Bytes in case of VLAN Tag)
octets (excluding framing bits, but including FCS
octets) and were otherwise well formed. This counter
is not incremented for too long frames."
::= { dellNetIfStaticsEntry 10 }
dellNetIfInCRC OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of frames received that had
a length (ex-cluding framing bits, but including
FCS octets) of between 64 and 1518 octets,
inclusive, but had a bad CRC."
::= { dellNetIfStaticsEntry 11 }
dellNetIfInOverruns OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of frames dropped because
of buffer issue."
::= { dellNetIfStaticsEntry 12 }
dellNetIfOutVlanPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Number of Good VLAN Tagged Frames sent
successfully."
::= { dellNetIfStaticsEntry 13 }
dellNetIfOutUnderruns OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of frames dropped because
of buffer underrun."
::= { dellNetIfStaticsEntry 14 }
dellNetIfOutUnicasts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Number of Good Unicast Frames sent successfully."
::= { dellNetIfStaticsEntry 15 }
dellNetIfOutCollisions OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the frames that due to excessive
or late collisions are not transmitted successfully."
::= { dellNetIfStaticsEntry 16 }
dellNetIfOutWredDrops OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the frames that are dropped using
WRED policy because of to excessive traffic."
::= { dellNetIfStaticsEntry 17 }
dellNetIfOut64BytePkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Number of Good Frames sent successfully
whose size was 64 Bytes."
::= { dellNetIfStaticsEntry 18 }
dellNetIfOut65To127BytePkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Number of Good Frames sent successfully
whose size was in the range of 65 to 127 Bytes."
::= { dellNetIfStaticsEntry 19 }
dellNetIfOut128To255BytePkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Number of Good Frames sent successfully
whose size was in the range of 128 to 255 Bytes."
::= { dellNetIfStaticsEntry 20 }
dellNetIfOut256To511BytePkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Number of Good Frames sent successfully
whose size was in the range of 256 to 511 Bytes."
::= { dellNetIfStaticsEntry 21 }
dellNetIfOut512To1023BytePkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Number of Good Frames sent successfully
whose size was in the range of 512 to 1023 Bytes."
::= { dellNetIfStaticsEntry 22 }
dellNetIfOutOver1023BytePkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Number of Good Frames sent successfully
whose size was greater than 1023 Bytes."
::= { dellNetIfStaticsEntry 23 }
dellNetIfOutThrottles OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This counter is incremented when a valid
frame with a length or type field value equal
to 0x8808 (Control Frame) is sent."
::= { dellNetIfStaticsEntry 24 }
dellNetIfLastDiscontinuityTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime on the most recent occasion
at which this interface's counters suffered a
discontinuity via a reset. If no such discontinuities
have occurred since the last reinitialization of
the local management subsystem, then this object
contains a zero value."
::= { dellNetIfStaticsEntry 25 }
dellNetIfInCentRate OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the ingress rate in percentage.
This is an integer value which can go from 0 to 100."
::= { dellNetIfStaticsEntry 26 }
dellNetIfOutCentRate OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the egress rate in percentage.
This is an integer value which can go from 0 to 100."
::= { dellNetIfStaticsEntry 27 }
dellNetIfTransceiverDataTable OBJECT-TYPE
SYNTAX SEQUENCE OF DellNetIfTransceiverDataEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The information to monitor transceiver data."
::= { dellNetIfTransceiverData 1 }
dellNetIfTransceiverDataEntry OBJECT-TYPE
SYNTAX DellNetIfTransceiverDataEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row defintion of Dell Networking OS Extension
transceiver data."
INDEX { ifIndex }
::= { dellNetIfTransceiverDataTable 1 }
DellNetIfTransceiverDataEntry::=
SEQUENCE {
dellNetIfTransDeviceName OCTET STRING,
dellNetIfTransPort OCTET STRING,
dellNetIfTransOpticsPresent TruthValue,
dellNetIfTransOpticsType OCTET STRING,
dellNetIfTransVendorName OCTET STRING,
dellNetIfTransPartNumber OCTET STRING,
dellNetIfTransSerialNumber OCTET STRING,
dellNetIfTransTransmitPowerLane1 OCTET STRING,
dellNetIfTransTransmitPowerLane2 OCTET STRING,
dellNetIfTransTransmitPowerLane3 OCTET STRING,
dellNetIfTransTransmitPowerLane4 OCTET STRING,
dellNetIfTransReceivePowerLane1 OCTET STRING,
dellNetIfTransReceivePowerLane2 OCTET STRING,
dellNetIfTransReceivePowerLane3 OCTET STRING,
dellNetIfTransReceivePowerLane4 OCTET STRING,
dellNetIfTransTemperature OCTET STRING,
dellNetIfTransVoltage OCTET STRING,
dellNetIfTransTransmitBiasCurrentLane1 OCTET STRING,
dellNetIfTransTransmitBiasCurrentLane2 OCTET STRING,
dellNetIfTransTransmitBiasCurrentLane3 OCTET STRING,
dellNetIfTransTransmitBiasCurrentLane4 OCTET STRING
}
dellNetIfTransDeviceName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..241))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TransceiverData - DeviceName"
::= { dellNetIfTransceiverDataEntry 1 }
dellNetIfTransPort OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..241))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TransceiverData - Port"
::= { dellNetIfTransceiverDataEntry 2 }
dellNetIfTransOpticsPresent OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TransceiverData - OpticsPresent shows the presence of optic.
The possible values are 1 when the optic is inserted and 2 when the optic is not inserted."
::= { dellNetIfTransceiverDataEntry 3 }
dellNetIfTransOpticsType OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..241))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TransceiverData - Type"
::= { dellNetIfTransceiverDataEntry 4 }
dellNetIfTransVendorName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..241))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TransceiverData - Name"
::= { dellNetIfTransceiverDataEntry 5 }
dellNetIfTransPartNumber OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..241))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TransceiverData - PartNumber"
::= { dellNetIfTransceiverDataEntry 6 }
dellNetIfTransSerialNumber OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..241))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TransceiverData - SerialNumber"
::= { dellNetIfTransceiverDataEntry 7 }
dellNetIfTransTransmitPowerLane1 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..241))
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TransceiverData - Transmit Power in Lane 1 in unit dBm.
For optics supporting power, valid float value will be
displayed or 'null string' will be displayed."
::= { dellNetIfTransceiverDataEntry 8 }
dellNetIfTransTransmitPowerLane2 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..241))
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TransceiverData - Transmit Power in Lane 2 in unit dBm.
For optics supporting power, valid float value will be
displayed or 'null string' will be displayed."
::= { dellNetIfTransceiverDataEntry 9 }
dellNetIfTransTransmitPowerLane3 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..241))
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TransceiverData - Transmit Power in Lane 3 in unit dBm.
For optics supporting power, valid float value will be
displayed or 'null string' will be displayed."
::= { dellNetIfTransceiverDataEntry 10 }
dellNetIfTransTransmitPowerLane4 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..241))
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TransceiverData - Transmit Power in Lane 4 in unit dBm.
For optics supporting power, valid float value will be
displayed or 'null string' will be displayed."
::= { dellNetIfTransceiverDataEntry 11 }
dellNetIfTransReceivePowerLane1 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..241))
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TransceiverData - Receive Power in Lane 1 in unit dBm.
For optics supporting power, valid float value will be
displayed or 'null string' will be displayed."
::= { dellNetIfTransceiverDataEntry 12 }
dellNetIfTransReceivePowerLane2 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..241))
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TransceiverData - Receive Power in Lane 2 in unit dBm.
For optics supporting power, valid float value will be
displayed or 'null string' will be displayed."
::= { dellNetIfTransceiverDataEntry 13 }
dellNetIfTransReceivePowerLane3 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..241))
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TransceiverData - Receive Power in Lane 3 in unit dBm.
For optics supporting power, valid float value will be
displayed or 'null string' will be displayed."
::= { dellNetIfTransceiverDataEntry 14 }
dellNetIfTransReceivePowerLane4 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..241))
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TransceiverData - Receive Power in Lane 4 in unit dBm.
For optics supporting power, valid float value will be
displayed or 'null string' will be displayed."
::= { dellNetIfTransceiverDataEntry 15 }
dellNetIfTransTemperature OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..241))
UNITS "degree Celsius"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TransceiverData - Temperature in unit degree Celsius.
For optics supporting temperature, valid float value will be
displayed or 'null string' will be displayed."
::= { dellNetIfTransceiverDataEntry 16 }
dellNetIfTransVoltage OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..241))
UNITS "volts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TransceiverData - Voltage in unit volts.
For optics supporting voltage, valid float value will be
displayed or 'null string' will be displayed."
::= { dellNetIfTransceiverDataEntry 17 }
dellNetIfTransTransmitBiasCurrentLane1 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..241))
UNITS "mA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TransceiverData - Transmit Bias Current in Lane 1 in unit mA.
For optics supporting current, valid float value will be
displayed or 'null string' will be displayed."
::= { dellNetIfTransceiverDataEntry 18 }
dellNetIfTransTransmitBiasCurrentLane2 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..241))
UNITS "mA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TransceiverData - Transmit Bias Current in Lane 2 in unit mA.
For optics supporting current, valid float value will be
displayed or 'null string' will be displayed."
::= { dellNetIfTransceiverDataEntry 19 }
dellNetIfTransTransmitBiasCurrentLane3 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..241))
UNITS "mA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TransceiverData - Transmit Bias Current in Lane 3 in unit mA.
For optics supporting current, valid float value will be
displayed or 'null string' will be displayed."
::= { dellNetIfTransceiverDataEntry 20 }
dellNetIfTransTransmitBiasCurrentLane4 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..241))
UNITS "mA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TransceiverData - Transmit Bias Current in Lane 4 in unit mA.
For optics supporting current, valid float value will be
displayed or 'null string' will be displayed."
::= { dellNetIfTransceiverDataEntry 21 }
dellNetIfAlarmMibNotifications OBJECT IDENTIFIER ::= { dellNetIfAlarmObjects 1 }
-- ## Traps
dellNetIfAlarmHighBer NOTIFICATION-TYPE
OBJECTS { ifIndex
}
STATUS current
DESCRIPTION
"The driver/agent generate this trap when the
Bit error rate is high on an interface."
::= { dellNetIfAlarmMibNotifications 1 }
dellNetIfAlarmHighBerClr NOTIFICATION-TYPE
OBJECTS { ifIndex
}
STATUS current
DESCRIPTION
"The driver/agent generate this trap when the
high Bit error rate alarm on an interface is cleared."
::= { dellNetIfAlarmMibNotifications 2 }
dellNetIfAlarmFastRetrain NOTIFICATION-TYPE
OBJECTS { ifIndex
}
STATUS current
DESCRIPTION
"The driver/agent generate this trap when the
retrain event is observed on an interface."
::= { dellNetIfAlarmMibNotifications 3 }
-- ### conformance information ###
dellNetIfExtensionMibConformance OBJECT IDENTIFIER ::= { dellNetIfExtensionMib 2 }
dellNetIfExtensionMibCompliances OBJECT IDENTIFIER ::= { dellNetIfExtensionMibConformance 1 }
dellNetIfExtensionMibGroups OBJECT IDENTIFIER ::= { dellNetIfExtensionMibConformance 2 }
-- ## compliance statements
dellNetIfExtensionMibCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for Dell Networking OS
IF Extension MIB."
MODULE -- this module
MANDATORY-GROUPS {
dellNetIfParamsGroup,
dellNetIfStatsGroup,
dellNetIfTransceiverDataGroup,
dellNetIfNotificationGroup
}
::= { dellNetIfExtensionMibCompliances 1 }
-- ## units of conformance
dellNetIfParamsGroup OBJECT-GROUP
OBJECTS {
dellNetIfIpMtu,
dellNetIfDuplexMode,
dellNetIfQueueingStrategy,
dellNetIfRxFlowCtrl,
dellNetIfTxFlowCtrl,
dellNetIfDescr,
dellNetIfAdminStatus,
dellNetIfRateInterval,
dellNetIfSpeed,
dellNetIfPortListBitPos
}
STATUS current
DESCRIPTION
"A collection of objects providing the
Dell Networking OS IF Extenstion parameters."
::= { dellNetIfExtensionMibGroups 1 }
dellNetIfStatsGroup OBJECT-GROUP
OBJECTS {
dellNetIfInVlanPkts,
dellNetIfIn64BytePkts,
dellNetIfIn65To127BytePkts,
dellNetIfIn128To255BytePkts,
dellNetIfIn256To511BytePkts,
dellNetIfIn512To1023BytePkts,
dellNetIfInOver1023BytePkts,
dellNetIfInThrottles,
dellNetIfInRunts,
dellNetIfInGiants,
dellNetIfInCRC,
dellNetIfInOverruns,
dellNetIfOutVlanPkts,
dellNetIfOutUnderruns,
dellNetIfOutUnicasts,
dellNetIfOutCollisions,
dellNetIfOutWredDrops,
dellNetIfOut64BytePkts,
dellNetIfOut65To127BytePkts,
dellNetIfOut128To255BytePkts,
dellNetIfOut256To511BytePkts,
dellNetIfOut512To1023BytePkts,
dellNetIfOutOver1023BytePkts,
dellNetIfOutThrottles,
dellNetIfLastDiscontinuityTime,
dellNetIfInCentRate,
dellNetIfOutCentRate
}
STATUS current
DESCRIPTION
"A collection of objects providing the
interface statistics."
::= { dellNetIfExtensionMibGroups 2 }
dellNetIfTransceiverDataGroup OBJECT-GROUP
OBJECTS {
dellNetIfTransDeviceName,
dellNetIfTransPort,
dellNetIfTransOpticsPresent,
dellNetIfTransOpticsType,
dellNetIfTransVendorName,
dellNetIfTransPartNumber,
dellNetIfTransSerialNumber,
dellNetIfTransTransmitPowerLane1,
dellNetIfTransTransmitPowerLane2,
dellNetIfTransTransmitPowerLane3,
dellNetIfTransTransmitPowerLane4,
dellNetIfTransReceivePowerLane1,
dellNetIfTransReceivePowerLane2,
dellNetIfTransReceivePowerLane3,
dellNetIfTransReceivePowerLane4,
dellNetIfTransTemperature,
dellNetIfTransVoltage,
dellNetIfTransTransmitBiasCurrentLane1,
dellNetIfTransTransmitBiasCurrentLane2,
dellNetIfTransTransmitBiasCurrentLane3,
dellNetIfTransTransmitBiasCurrentLane4
}
STATUS current
DESCRIPTION
"A collection of objects providing the
Dell Networking OS Transceiver Data."
::= { dellNetIfExtensionMibGroups 3 }
dellNetIfNotificationGroup NOTIFICATION-GROUP
NOTIFICATIONS {
dellNetIfAlarmHighBer,
dellNetIfAlarmHighBerClr,
dellNetIfAlarmFastRetrain
}
STATUS current
DESCRIPTION
"Notifications for Dell Networking OS Interface mib"
::= { dellNetIfExtensionMibGroups 4 }
END
|