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
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
|
-- *****************************************************************
-- Ethernet Module MIB
-- *****************************************************************
SL-ETH-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Integer32,
NOTIFICATION-TYPE, Gauge32,
Counter64 FROM SNMPv2-SMI
DisplayString, TruthValue,
DateAndTime FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP,
NOTIFICATION-GROUP FROM SNMPv2-CONF
InterfaceIndex FROM IF-MIB
PerfCurrentCount, PerfIntervalCount,
PerfTotalCount FROM PerfHist-TC-MIB
slService FROM SL-NE-MIB;
slEthernet MODULE-IDENTITY
LAST-UPDATED "200508171200Z" -- 17 Jan. 2005 12:00:00 EST
ORGANIZATION "PacketLight Networks Ltd."
CONTACT-INFO
"Omri_Viner@PacketLight.com"
DESCRIPTION
"This MIB module describes the Ethernet Service"
::= { slService 1 }
-- The Ethernet MIB consists of the following groups:
-- Configuration
-- Current
-- Interval
-- Total
-- Traps
ethTraps OBJECT IDENTIFIER ::= { slEthernet 7 }
-- Textual Conventions
--
-- The Ethernet Configuration Table
--
ethConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF EthConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Ethernet Configuration table."
::= { slEthernet 1 }
ethConfigEntry OBJECT-TYPE
SYNTAX EthConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the Ethernet Configuration table."
INDEX { ethLineIndex }
::= { ethConfigTable 1 }
EthConfigEntry ::=
SEQUENCE {
ethLineIndex InterfaceIndex,
ethTimeElapsed INTEGER,
ethValidIntervals INTEGER,
ethResetPm INTEGER,
ethAutoNegSupported TruthValue,
ethAutoNegAdminStatus INTEGER,
ethConfigStatus INTEGER,
ethTransceiverType INTEGER, -- deprecated
ethPauseTime INTEGER, -- deprecated
ethPauseEnable TruthValue, -- deprecated
ethResetPmCounters INTEGER,
ethTransceiverMedia INTEGER
}
ethLineIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object should be made equal to ifIndex."
::= { ethConfigEntry 1 }
ethTimeElapsed OBJECT-TYPE
SYNTAX INTEGER (0..899)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of seconds that have elapsed since
the beginning of the near end current error-
measurement period. If, for some reason, such
as an adjustment in the system's time-of-day
clock, the current interval exceeds the maximum
value, the agent will return the maximum value."
::= { ethConfigEntry 2 }
ethValidIntervals OBJECT-TYPE
SYNTAX INTEGER (0..96)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of previous near end intervals for
which data was collected. The value will be
96 unless the interface was brought online within
the last 24 hours, in which case the value will be
the number of complete 15 minute near end
intervals since the interface has been online. In
the case where the agent is a proxy, it is
possible that some intervals are unavailable. In
this case, this interval is the maximum interval
number for which data is available."
::= { ethConfigEntry 3 }
ethResetPm OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Writing to this object cause a Reset to the current
PM counters of the corresponding Ethernet interface."
::= { ethConfigEntry 4 }
ethAutoNegSupported OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the AutoNeg oper status.
TRUE - meanse that ethAutoNegAdminStatus is enabled(1)
and the Remote interface supports AutoNeg.
FALSE - Otherwise."
::= { ethConfigEntry 5 }
ethAutoNegAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting this object to enabled(1) will cause
the interface auto-negotiation function capability
to be enabled."
::= { ethConfigEntry 6 }
ethConfigStatus OBJECT-TYPE
SYNTAX INTEGER (1..16)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable indicates the Line Status of the
Ethrenet interface.
The ethConfigStatus is a bit map represented as a
sum, therefore, it can represent multiple failures (alarms)
simultaneously.
ethConfigNoAlarm must be set if and only if no other
flag is set.
The various bit positions are:
1 ethConfigNoAlarm No alarm present
2 ethConfigTransmitFault Optical GbE transceiver transmit fault
4 ethConfigLossOfSignal Optical GbE transceiver signal detect failed
8 ethConfigLinkFail Mac Layer Link failed"
::= { ethConfigEntry 7 }
ethTransceiverType OBJECT-TYPE
SYNTAX INTEGER {
none(1), --
base1000SX(2), --
base1000LX(3) --
}
MAX-ACCESS read-only
STATUS current -- deprecated
DESCRIPTION
"The GBIC Type."
::= { ethConfigEntry 8 }
ethPauseTime OBJECT-TYPE
SYNTAX INTEGER (50..16383)
MAX-ACCESS read-write -- deprecated
STATUS current
DESCRIPTION
"This object indicate how much time the other mac
device should pause after it receive a pause frame.
The unit are of 512 ns."
::= { ethConfigEntry 9 }
ethPauseEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current -- deprecated
DESCRIPTION
"This object indicates whether or not
we want to use the flow control mechanism."
::= { ethConfigEntry 10 }
ethResetPmCounters OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting this object to 1 reset the current interval PM
counters of the port."
::= { ethConfigEntry 11 }
ethTransceiverMedia OBJECT-TYPE
SYNTAX INTEGER {
none(1), --
copper(2), -- BaseT Copper
fiber(3) -- BaseX Fiber
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The thernet port tranceiver media.
Used to determine which uplink interface to use."
::= { ethConfigEntry 12 }
--
-- The PM Current Table
--
ethCurrentTable OBJECT-TYPE
SYNTAX SEQUENCE OF EthCurrentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Ethernet current table contains various statistics
being collected for the current 15 minute
interval."
::= { slEthernet 2 }
ethCurrentEntry OBJECT-TYPE
SYNTAX EthCurrentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the Ethernet Current table."
INDEX { ethCurrentIndex }
::= { ethCurrentTable 1 }
EthCurrentEntry ::=
SEQUENCE {
ethCurrentIndex InterfaceIndex,
ethCurrentRxDropEvents Counter64,
ethCurrentOctets Counter64,
ethCurrentPkts Counter64,
ethCurrentBroadcastPkts Counter64,
ethCurrentMulticastPkts Counter64,
ethCurrentCRCAlignErrors Counter64,
ethCurrentUndersizePkts Counter64,
ethCurrentOversizePkts Counter64,
ethCurrentFragments Counter64,
ethCurrentJabbers Counter64,
ethCurrentCollisions Counter64,
ethCurrentUtilization Counter64,
ethCurrentTxOctets Counter64,
ethCurrentTxPkts Counter64,
ethCurrentRxPause Counter64,
ethCurrentTxPause Counter64,
ethCurrentTxDropEvents Counter64,
ethCurrentRxPkts64Octets Counter64,
ethCurrentRxPkts65to127Octets Counter64,
ethCurrentRxPkts128to255Octets Counter64,
ethCurrentRxPkts256to511Octets Counter64,
ethCurrentRxPkts512to1023Octets Counter64,
ethCurrentRxPkts1024to1518Octets Counter64,
ethCurrentRxPkts1519to1522Octets Counter64,
ethCurrentTxPkts64Octets Counter64,
ethCurrentTxPkts65to127Octets Counter64,
ethCurrentTxPkts128to255Octets Counter64,
ethCurrentTxPkts256to511Octets Counter64,
ethCurrentTxPkts512to1023Octets Counter64,
ethCurrentTxPkts1024to1518Octets Counter64,
ethCurrentTxPkts1519to1522Octets Counter64,
ethCurrentRxVlanPkts Counter64,
ethCurrentTxVlanPkts Counter64,
ethCurrentRxJumboPkts Counter64,
ethCurrentTxJumboPkts Counter64
}
ethCurrentIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index value which uniquely identifies the
Ethernet interface to which this entry is applicable.
The interface identified by a particular value of
this index is the same interface as identified by
the same value as a ethLineIndex object
instance."
::= { ethCurrentEntry 1 }
ethCurrentRxDropEvents OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of events in which packets were
dropped by the probe due to lack of Ingress resources during
this sampling interval. Note that this number is not
necessarily the number of packets dropped, it is just
the number of times this condition has been detected."
::= { ethCurrentEntry 2 }
ethCurrentOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets of data (including those
in bad packets) received on the network (excluding
framing bits but including FCS octets).
This object can be used as a reasonable estimate of
10-Megabit ethernet utilization. If greater precision is
desired, the etherStatsPkts and etherStatsOctets objects
should be sampled before and after a common interval. The
differences in the sampled values are Pkts and Octets,
respectively, and the number of seconds in the interval is
Interval. These values are used to calculate the Utilization
as follows:
Pkts * (9.6 + 6.4) + (Octets * .8)
Utilization = -------------------------------------
Interval * 10,000
The result of this equation is the value Utilization which
is the percent utilization of the ethernet segment on a
scale of 0 to 100 percent."
::= { ethCurrentEntry 3 }
ethCurrentPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets (including bad packets)
received during this sampling interval."
::= { ethCurrentEntry 4 }
ethCurrentBroadcastPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of good packets received during this
sampling interval that were directed to the broadcast
address."
::= { ethCurrentEntry 5 }
ethCurrentMulticastPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of good packets received during this
sampling interval that were directed to a multicast
address. Note that this number does not include
packets addressed to the broadcast address."
::= { ethCurrentEntry 6 }
ethCurrentCRCAlignErrors OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets received during this
sampling interval that had a length (excluding framing
bits but including FCS octets) between 64 and 1518 octets,
inclusive, but had either a bad Frame Check Sequence (FCS)
with an integral number of octets (FCS Error) or a bad FCS
with a non-integral number of octets (Alignment Error)."
::= { ethCurrentEntry 7 }
ethCurrentUndersizePkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets received during this sampling
interval that were less than 64 octets long (excluding
framing bits but including FCS octets) and were
otherwise well formed."
::= { ethCurrentEntry 8 }
ethCurrentOversizePkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets received during this sampling
interval that were longer than 1518 octets (excluding
framing bits but including FCS octets) but were otherwise
well formed."
::= { ethCurrentEntry 9 }
ethCurrentFragments OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received during this
sampling interval that were less than 64 octets in length
(excluding framing bits but including FCS octets) had
either a bad Frame Check Sequence (FCS) with an integral
number of octets (FCS Error) or a bad FCS with a non-integral
number of octets (Alignment error)."
::= { ethCurrentEntry 10 }
ethCurrentJabbers OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets received during this sampling
interval that were longer than 1518 octets (excluding
framing bits but including FCS octets), and had either a
bad Frame Check Sequence (FCS) with an integral number of
octets (FCS Error) or a bad FCS with a non-integral number
of octets (Alignment Error)."
::= { ethCurrentEntry 11 }
ethCurrentCollisions OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The best estimate of the total number of collisions
on this Ethernet segment during this sampling interval."
::= { ethCurrentEntry 12 }
ethCurrentUtilization OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The best estimate of the mean physical layer network
utilization on this interface during this sampling interval,
in hundredths of a percent (0..10000)."
::= { ethCurrentEntry 13 }
ethCurrentTxOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets of data
transmited during the current interval."
::= { ethCurrentEntry 14 }
ethCurrentTxPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets (including bad packets)
received during the current interval."
::= { ethCurrentEntry 15 }
ethCurrentRxPause OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Pause frames
received during the current interval."
::= { ethCurrentEntry 16 }
ethCurrentTxPause OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Pause farmes
transmitted during the current interval."
::= { ethCurrentEntry 17 }
ethCurrentTxDropEvents OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of events in which packets were
dropped by the probe due to lack of Egress resources during
this sampling interval. Note that this number is not
necessarily the number of packets dropped, it is just
the number of times this condition has been detected."
::= { ethCurrentEntry 18 }
ethCurrentRxPkts64Octets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets (including bad
packets) received that were 64 octets in length
(excluding framing bits but including FCS octets)."
::= { ethCurrentEntry 19 }
ethCurrentRxPkts65to127Octets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets (including bad
packets) received that were between
65 and 127 octets in length inclusive
(excluding framing bits but including FCS octets)."
::= { ethCurrentEntry 20 }
ethCurrentRxPkts128to255Octets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets (including bad
packets) received that were between
128 and 255 octets in length inclusive
(excluding framing bits but including FCS octets)."
::= { ethCurrentEntry 21 }
ethCurrentRxPkts256to511Octets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets (including bad
packets) received that were between
256 and 511 octets in length inclusive
(excluding framing bits but including FCS octets)."
::= { ethCurrentEntry 22 }
ethCurrentRxPkts512to1023Octets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets (including bad
packets) received that were between
512 and 1023 octets in length inclusive
(excluding framing bits but including FCS octets)."
::= { ethCurrentEntry 23 }
ethCurrentRxPkts1024to1518Octets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets (including bad
packets) received that were between
1024 and 1518 octets in length inclusive
(excluding framing bits but including FCS octets)."
::= { ethCurrentEntry 24 }
ethCurrentRxPkts1519to1522Octets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets (including bad
packets) received that were between
1024 and 1518 octets in length inclusive
(excluding framing bits but including FCS octets)."
::= { ethCurrentEntry 25 }
ethCurrentTxPkts64Octets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets transmitted
that were 64 octets in length
(excluding framing bits but including FCS octets)."
::= { ethCurrentEntry 26 }
ethCurrentTxPkts65to127Octets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets transmitted that were between
65 and 127 octets in length inclusive
(excluding framing bits but including FCS octets)."
::= { ethCurrentEntry 27 }
ethCurrentTxPkts128to255Octets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets transmitted that were between
128 and 255 octets in length inclusive
(excluding framing bits but including FCS octets)."
::= { ethCurrentEntry 28 }
ethCurrentTxPkts256to511Octets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets transmitted that were between
256 and 511 octets in length inclusive
(excluding framing bits but including FCS octets)."
::= { ethCurrentEntry 29 }
ethCurrentTxPkts512to1023Octets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets transmitted that were between
512 and 1023 octets in length inclusive
(excluding framing bits but including FCS octets)."
::= { ethCurrentEntry 30 }
ethCurrentTxPkts1024to1518Octets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets transmitted that were between
1024 and 1518 octets in length inclusive
(excluding framing bits but including FCS octets)."
::= { ethCurrentEntry 31 }
ethCurrentTxPkts1519to1522Octets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets transmitted that were between
1519 and 1522 octets in length inclusive
(excluding framing bits but including FCS octets)."
::= { ethCurrentEntry 32 }
ethCurrentRxVlanPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of VLAN packets received."
::= { ethCurrentEntry 33 }
ethCurrentTxVlanPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of VLAN packets transmitted."
::= { ethCurrentEntry 34 }
ethCurrentRxJumboPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Jumbo packets received."
::= { ethCurrentEntry 35 }
ethCurrentTxJumboPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of Jumbo packets transmitted."
::= { ethCurrentEntry 36 }
--
-- The Ethernet Interval Table
--
ethIntervalTable OBJECT-TYPE
SYNTAX SEQUENCE OF EthIntervalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Ethernet Interval Table contains various
statistics collected by each Ethernet Interface over
the previous 24 hours of operation. The past 24
hours are broken into 96 completed 15 minute
intervals. Each row in this table represents one
such interval (identified by ethIntervalNumber)
for one specific instance (identified by
ethIntervalIndex)."
::= { slEthernet 3 }
ethIntervalEntry OBJECT-TYPE
SYNTAX EthIntervalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the Ethernet Interval table."
INDEX { ethIntervalIndex, ethIntervalNumber }
::= { ethIntervalTable 1 }
EthIntervalEntry ::=
SEQUENCE {
ethIntervalIndex InterfaceIndex,
ethIntervalNumber INTEGER,
ethIntervalDropEvents Counter64,
ethIntervalOctets Counter64,
ethIntervalPkts Counter64,
ethIntervalBroadcastPkts Counter64,
ethIntervalMulticastPkts Counter64,
ethIntervalCRCAlignErrors Counter64,
ethIntervalUndersizePkts Counter64,
ethIntervalOversizePkts Counter64,
ethIntervalFragments Counter64,
ethIntervalJabbers Counter64,
ethIntervalCollisions Counter64,
ethIntervalUtilization Counter64,
ethIntervalTxOctets Counter64,
ethIntervalTxPkts Counter64,
ethIntervalRxPause Counter64,
ethIntervalTxPause Counter64,
ethIntervalValidData TruthValue,
ethIntervalTcaFlag TruthValue
}
ethIntervalIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index value which uniquely identifies the Ethernet
interface to which this entry is applicable. The
interface identified by a particular value of this
index is the same interface as identified by the
same value as a ethLineIndex object instance."
::= { ethIntervalEntry 1 }
ethIntervalNumber OBJECT-TYPE
SYNTAX INTEGER (1..96)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A number between 1 and 96, where 1 is the most
recently completed 15 minute interval and 96 is
the 15 minutes interval completed 23 hours and 45
minutes prior to interval 1."
::= { ethIntervalEntry 2 }
ethIntervalDropEvents OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of events in which packets were
dropped by the probe due to lack of resources during
this sampling interval. Note that this number is not
necessarily the number of packets dropped, it is just
the number of times this condition has been detected."
::= { ethIntervalEntry 3 }
ethIntervalOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets of data (including those
in bad packets) received on the network (excluding
framing bits but including FCS octets) in the current
interval."
::= { ethIntervalEntry 4 }
ethIntervalPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets (including bad packets)
received during this sampling interval."
::= { ethIntervalEntry 5 }
ethIntervalBroadcastPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of good packets received during this
sampling interval that were directed to the broadcast
address."
::= { ethIntervalEntry 6 }
ethIntervalMulticastPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of good packets received during this
sampling interval that were directed to a multicast
address. Note that this number does not include
packets addressed to the broadcast address."
::= { ethIntervalEntry 7 }
ethIntervalCRCAlignErrors OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets received during this
sampling interval that had a length (excluding framing
bits but including FCS octets) between 64 and 1518 octets,
inclusive, but had either a bad Frame Check Sequence (FCS)
with an integral number of octets (FCS Error) or a bad FCS
with a non-integral number of octets (Alignment Error)."
::= { ethIntervalEntry 8 }
ethIntervalUndersizePkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets received during this sampling
interval that were less than 64 octets long (excluding
framing bits but including FCS octets) and were
otherwise well formed."
::= { ethIntervalEntry 9 }
ethIntervalOversizePkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets received during this sampling
interval that were longer than 1518 octets (excluding
framing bits but including FCS octets) but were otherwise
well formed."
::= { ethIntervalEntry 10 }
ethIntervalFragments OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received during this
sampling interval that were less than 64 octets in length
(excluding framing bits but including FCS octets) had
either a bad Frame Check Sequence (FCS) with an integral
number of octets (FCS Error) or a bad FCS with a non-integral
number of octets (Alignment error)."
::= { ethIntervalEntry 11 }
ethIntervalJabbers OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets received during this sampling
interval that were longer than 1518 octets (excluding
framing bits but including FCS octets), and had either a
bad Frame Check Sequence (FCS) with an integral number of
octets (FCS Error) or a bad FCS with a non-integral number
of octets (Alignment Error)."
::= { ethIntervalEntry 12 }
ethIntervalCollisions OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The best estimate of the total number of collisions
on this Ethernet segment during this sampling interval."
::= { ethIntervalEntry 13 }
ethIntervalUtilization OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The best estimate of the mean physical layer network
utilization on this interface during this sampling interval,
in hundredths of a percent (0..10000)."
::= { ethIntervalEntry 14 }
ethIntervalTxOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets of data
transmited on the network."
::= { ethIntervalEntry 15 }
ethIntervalTxPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets (including bad packets)
received during this sampling interval."
::= { ethIntervalEntry 16 }
ethIntervalRxPause OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Pause frames
received during this sampling interval."
::= { ethIntervalEntry 17 }
ethIntervalTxPause OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Pause farmes
transmitted during this sampling interval."
::= { ethIntervalEntry 18 }
ethIntervalValidData OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable indicates if the data for this
interval is valid."
::= { ethIntervalEntry 19 }
ethIntervalTcaFlag OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TRUE if one of the counters crossed the threshold during the interval."
::= { ethIntervalEntry 20 }
--
-- The Ethernet Total Table
--
ethTotalTable OBJECT-TYPE
SYNTAX SEQUENCE OF EthTotalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Ethernet Total Table contains the cumulative sum
of the various statistics for the 24 hour period
preceding the current day, starting from startOfDay."
::= { slEthernet 4 }
ethTotalEntry OBJECT-TYPE
SYNTAX EthTotalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the Ethernet Total table."
INDEX { ethTotalIndex, ethTotalDayNumber }
::= { ethTotalTable 1 }
EthTotalEntry ::=
SEQUENCE {
ethTotalIndex InterfaceIndex,
ethTotalDayNumber INTEGER,
ethTotalDropEvents Counter64,
ethTotalOctets Counter64,
ethTotalPkts Counter64,
ethTotalBroadcastPkts Counter64,
ethTotalMulticastPkts Counter64,
ethTotalCRCAlignErrors Counter64,
ethTotalUndersizePkts Counter64,
ethTotalOversizePkts Counter64,
ethTotalFragments Counter64,
ethTotalJabbers Counter64,
ethTotalCollisions Counter64,
ethTotalUtilization Counter64,
ethTotalTxOctets Counter64,
ethTotalTxPkts Counter64,
ethTotalRxPause Counter64,
ethTotalTxPause Counter64,
ethTotalValidData TruthValue
}
ethTotalIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index value which uniquely identifies the Ethernet
interface to which this entry is applicable. The
interface identified by a particular value of this
index is the same interface as identified by the
same value as a ethLineIndex object instance."
::= { ethTotalEntry 1 }
ethTotalDayNumber OBJECT-TYPE
SYNTAX INTEGER (1..33)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A number which identifies the 1-day interval for which the set
of section related statistics is available. The number is
between 1 and n, where n is the number of 1-day intervals
supported by the agent. The interval identified by 1 is the
current 1-day interval, 2 is the previous (most recently
completed) 1-day interval and n is the least recently completed
1-day interval."
::= { ethTotalEntry 2 }
ethTotalDropEvents OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of events in which packets were
dropped by the probe due to lack of resources in the
previous 24 hour interval. Note that this number is not
necessarily the number of packets dropped, it is just
the number of times this condition has been detected."
::= { ethTotalEntry 3 }
ethTotalOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets of data (including those
in bad packets) received on the network (excluding
framing bits but including FCS octets) in the
previous 24 hour interval."
::= { ethTotalEntry 4 }
ethTotalPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The number of packets (including bad packets)
received in the previous 24 hour interval."
::= { ethTotalEntry 5 }
ethTotalBroadcastPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The number of good packets received in the
previous 24 hour interval that were directed
to the broadcast address."
::= { ethTotalEntry 6 }
ethTotalMulticastPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of good packets received in the
previous 24 hour interval that were directed to a
multicast address. Note that this number does not include
packets addressed to the broadcast address."
::= { ethTotalEntry 7 }
ethTotalCRCAlignErrors OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets received in the previous 24
hour interval that had a length (excluding framing
bits but including FCS octets) between 64 and 1518 octets,
inclusive, but had either a bad Frame Check Sequence (FCS)
with an integral number of octets (FCS Error) or a bad FCS
with a non-integral number of octets (Alignment Error)."
::= { ethTotalEntry 8 }
ethTotalUndersizePkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets received in the previous 24 hour
interval that were less than 64 octets long (excluding
framing bits but including FCS octets) and were
otherwise well formed."
::= { ethTotalEntry 9 }
ethTotalOversizePkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets received in the previous 24
hour interval that were longer than 1518 octets (excluding
framing bits but including FCS octets) but were otherwise
well formed."
::= { ethTotalEntry 10 }
ethTotalFragments OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received in the previous 24
hour interval that were less than 64 octets in length
(excluding framing bits but including FCS octets) had
either a bad Frame Check Sequence (FCS) with an integral
number of octets (FCS Error) or a bad FCS with a non-integral
number of octets (Alignment error)."
::= { ethTotalEntry 11 }
ethTotalJabbers OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets received in the previous 24 hour
interval that were longer than 1518 octets (excluding
framing bits but including FCS octets), and had either a
bad Frame Check Sequence (FCS) with an integral number of
octets (FCS Error) or a bad FCS with a non-integral number
of octets (Alignment Error)."
::= { ethTotalEntry 12 }
ethTotalCollisions OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The best estimate of the total number of collisions
on this Ethernet segment in the previous 24 hour interval."
::= { ethTotalEntry 13 }
ethTotalUtilization OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The avarage of the mean physical layer network
utilization on this interface in the previous 24 hour
interval."
::= { ethTotalEntry 14 }
ethTotalTxOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets of data
transmited on the network."
::= { ethTotalEntry 15 }
ethTotalTxPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets (including bad packets)
received during this sampling interval."
::= { ethTotalEntry 16 }
ethTotalRxPause OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Pause frames
received during this sampling interval."
::= { ethTotalEntry 17 }
ethTotalTxPause OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Pause farmes
transmitted during this sampling interval."
::= { ethTotalEntry 18 }
ethTotalValidData OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable indicates if the data for this
day is valid."
::= { ethTotalEntry 19 }
-- ---------------------------------------------
-- Ethernet Traps
-- ---------------------------------------------
ethStatusChange NOTIFICATION-TYPE
OBJECTS { ethLineIndex, ethConfigStatus }
STATUS current
DESCRIPTION
"A ethStatusChange trap is sent when the
value of an instance ethConfigStatus changes. It
can be utilized by an NMS to trigger polls."
::= { ethTraps 1 }
END
|