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
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
|
--===========================================================
-- Copyright (C) 2003 New H3C Tech. Co., Ltd. All rights reserved.
-- Description: This MIB is excerpted from the draft-ietf-hubmib-efm-epon-mib-02 directly
--- only changed the object name,added the hh3c as prefix.
-- Reference:
-- Version: V1.0
-- History:
-- V1.0 created by liyue.
-- Define MODULE-IDENTITY for hh3cEponDeviceMIB
--=================================================================
HH3C-EPON-DEVICE-MIB DEFINITIONS ::= BEGIN
IMPORTS
hh3cEpon
FROM HH3C-OID-MIB
MODULE-IDENTITY, mib-2, OBJECT-TYPE, Counter32,
Unsigned32, Integer32, zeroDotZero
FROM SNMPv2-SMI
TruthValue, DateAndTime, RowStatus, MacAddress
FROM SNMPv2-TC
ifIndex
FROM IF-MIB
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB;
hh3cEponDeviceMIB MODULE-IDENTITY
LAST-UPDATED "200409210000Z" -- September 21, 2004
ORGANIZATION
"New H3C Tech. Co., Ltd."
CONTACT-INFO
"Platform Team New H3C Tech. Co., Ltd.
Hai-Dian District Beijing P.R. China
http://www.h3c.com
Zip:100085
"
DESCRIPTION
"The objects in this MIB module are used to manage
Ethernet Passive Optical Network (EPON) devices which
are based on the Ethernet in the First Mile (EFM) PON
as defined in IEEE Draft P802.3ah/D3.0 clause 60,64,65.
This MIB is excerpted from the draft files directly,only
changed the object name,added the hh3c as prefix.
The following reference is used throughout this MIB
module:
[802.3ah] refers to:
IEEE Draft P802.3ah/D3.3: 'Draft amendment to -
Information technology - Telecommunications and
information exchange between systems - Local and
metropolitan area networks - Specific requirements -
Part 3: Carrier sense multiple access with collision
detection (CSMA/CD) access method and physical layer
specifications - Media Access Control Parameters,
Physical Layers and Management Parameters for subscriber
access networks', 22 April 2004.
Of particular interest are Clause 64(MPCP) 65(P2mP RS)
and 60 (PON PMDs). Clause 30, 'Management', and Clause
45,'Management Data Input/Output (MDIO) Interface'.
Copyright (C) The Internet Society (2004). This version
of this MIB module is part of XXXX see the RFC itself
for full legal notices."
-- Editor's Note: Replace XXXX with the actual RFC number
-- assigned by RFC Editor and remove this note
REVISION "200409210000Z" -- September 21, 2004
DESCRIPTION "Initial version, published as RFC XXXX."
::= { hh3cEpon 4 }
-- Editor's Note: Replace XXX with a real OID once it is
-- assigned by IANA and remove this note.
hh3cEponDeviceObjectMIB OBJECT IDENTIFIER ::= { hh3cEponDeviceMIB 1 }
hh3cEponDeviceObjects OBJECT IDENTIFIER ::= { hh3cEponDeviceObjectMIB 1 }
hh3cEponDeviceConformance OBJECT IDENTIFIER ::= { hh3cEponDeviceObjectMIB 2 }
hh3cEponDeviceControlObjects OBJECT IDENTIFIER ::= { hh3cEponDeviceObjects 1 }
hh3cEponDeviceStatObjects OBJECT IDENTIFIER ::= { hh3cEponDeviceObjects 2 }
hh3cEponDeviceEventObjects OBJECT IDENTIFIER ::= { hh3cEponDeviceObjects 3 }
hh3cEponDeviceControlTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cEponDeviceControlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table for EPON device MIB modules."
::= { hh3cEponDeviceControlObjects 1 }
hh3cEponDeviceControlEntry OBJECT-TYPE
SYNTAX Hh3cEponDeviceControlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the EPON device Control table."
INDEX { ifIndex }
::= { hh3cEponDeviceControlTable 1 }
Hh3cEponDeviceControlEntry ::=
SEQUENCE {
hh3cEponDeviceObjectReset INTEGER,
hh3cEponDeviceObjectModes INTEGER,
hh3cEponDeviceObjectFecEnabled INTEGER,
hh3cEponDeviceObjectOamMode INTEGER,
hh3cEponDeviceObjectDeviceReadyMode INTEGER,
hh3cEponDeviceObjectPowerDown TruthValue,
hh3cEponDeviceObjectNumberOfLLIDs Integer32,
hh3cEponDeviceObjectReportThreshold Integer32,
hh3cEponDeviceRemoteMACAddressLLIDControl INTEGER
}
hh3cEponDeviceObjectReset OBJECT-TYPE
SYNTAX INTEGER {
running(1),
reset(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable is used to reset the EPON device. The
interface may be unavailable while the reset occurs and
data may be lost. During reading operation it returns
the state of the EPON device. running(1) indicates and
operates normal operation, reset(2) indicates and
operates reset mode. Writing can be done all the time."
DEFVAL { 1 }
::= { hh3cEponDeviceControlEntry 1 }
hh3cEponDeviceObjectModes OBJECT-TYPE
SYNTAX INTEGER {
olt(1),
onu(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable defines the mode of the EPON device. When
an olt(1) it is an Optical Line Terminal device (server)
and when an onu(2) and Optical Network Unit device
(client)"
::= { hh3cEponDeviceControlEntry 2 }
hh3cEponDeviceObjectFecEnabled OBJECT-TYPE
SYNTAX INTEGER {
noFecEnabled (1),
fecTxEnabled (2),
fecRxEnabled (3),
fecTxRxEnabled (4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable defines and provides information whether the
EPON device uses FEC as defined in the [802.3ah] clause
65.2 for EPON. When noFECEnabled(1) the device does not
support FEC mode When fecTxEnabled(2) the device supports
the FEC transmission mode. When fecRxEnabled(3) the device
supports the FEC Receive mode. When fecTxRxEnabled(4) the
device supports the FEC transmission and receive mode.
Writing can be done all the time.
This attribute is relevant for an OLT and an ONU."
DEFVAL { 1 }
::= { hh3cEponDeviceControlEntry 4 }
hh3cEponDeviceObjectOamMode OBJECT-TYPE
SYNTAX INTEGER {
noOam (1),
oamServer (2),
oamclient (3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable defines and provides information on the
Operation Administration and Maintenance (OAM) mode of
an EPON device as defined by the [802.3ah] clause 57.
When noOam(1) the device does not supports the OAM mode.
When oamServer(2) the device supports the OAM mode as a
server unit. When oamClient(3) the device supports the
OAM mode as a client unit.
Writing can be done during initialization,
hh3cEponDeviceObjectDeviceReadyMode is in notReady(1) or
inProcess(2).
This attribute is relevant for an OLT and an ONU."
DEFVAL { 1 }
::= { hh3cEponDeviceControlEntry 5 }
hh3cEponDeviceObjectDeviceReadyMode OBJECT-TYPE
SYNTAX INTEGER {
notReady (1),
inProcess (2),
ready (3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable defines the mode of an EPON device and
provides information on the mode in initialization -
ready for registration as defined by the [802.3ah]
clause 64.
When notReady(1) the device is not ready for operation.
When inProcess(2) the device is in initialization
process.
When ready(3) the device is ready for registration.
Writing can be done all the time.
This attribute is relevant for an OLT and an ONU."
DEFVAL { 1 }
::= { hh3cEponDeviceControlEntry 6 }
hh3cEponDeviceObjectPowerDown OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting this variable to True(1) will cause Device to be
entered into Power down mode where no registration is
allowed and only receiving data from the link.
Writing can be done all the time.
This attribute is relevant for an OLT and an ONU."
DEFVAL { false }
::= { hh3cEponDeviceControlEntry 7 }
hh3cEponDeviceObjectNumberOfLLIDs OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read only variable which defines the number of
registered LLIDs (as defined by the [802.3ah] clause 65)
in a EPON network for an OLT and an ONU. Initialization
value is 0.
This attribute is relevant for an OLT and an ONU."
::= { hh3cEponDeviceControlEntry 8 }
hh3cEponDeviceObjectReportThreshold OBJECT-TYPE
SYNTAX Integer32
UNITS "TQ (16nsec)"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A set of 8 integers, for each LLID, that defines the
threshold reporting for each Queue in the REPORT
message, as defined in [802.3ah] 64. First Queue set
reporting will provide information on the queue
occupancy of frames below this Threshold. The value
returned shall be in Time quanta (TQ) which is 16nsec or
2 octets increments.
Writing can be done all the time.
This attribute is relevant for an OLT and an ONU."
DEFVAL { 0 }
::= { hh3cEponDeviceControlEntry 9 }
hh3cEponDeviceRemoteMACAddressLLIDControl OBJECT-TYPE
SYNTAX INTEGER {
none(1),
resetLog(2),
useDefaultReporting(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates and controls the resetting of the LLID MAC
address log. Setting this object to none(1) has no
action resetLog(2) empties the LLID MAC address log. All
data is deleted. Setting it to useDefaultReporting(3)
returns all entries priorities to their factory-default
reporting. Reading this object always returns
useDefaultReporting(3)."
DEFVAL { 3 }
::= { hh3cEponDeviceControlEntry 10 }
hh3cEponDeviceRemoteMACAddressLLIDTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cEponDeviceRemoteMACAddressLLIDEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of read-only value that identifies the
source_address and LLIDs parameter of the remote devices
in the network. This MacAddress value, as defined in
[802.3ah], 30.3.5.1.5, is updated on reception of a
valid frame with a unicast destination Field or
(1) a destination Field equal to the reserved multicast
address for MAC Control specified in [802.3ah] Annex
31A, (2) lengthOrType field value equal to the reserved
Type for MAC Control as specified in [802.3ah] Annex
31A. (3)an MPCP subtype value equal to the subtype
reserved for MPCP as specified in [802.3ah] Annex 31A,
and an LLID as allocated by the OLT. The table is
defined as Remote MAC address - LLID (RMadL)
The table is relevant only for an OLT device, and is
equivalent from a bridge emulation to the bridge
port-MAC address table where the LLIDs are equivalent to
virtual bridge ports."
::= { hh3cEponDeviceControlObjects 2 }
hh3cEponDeviceRemoteMACAddressLLIDEntry OBJECT-TYPE
SYNTAX Hh3cEponDeviceRemoteMACAddressLLIDEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A group of entries. Applications create and delete
entries using hh3cEponDeviceRMadlEntryStatus.
When adding objects to an LLID they are added in the
persistent order of their index in this table."
INDEX {ifIndex }
::= { hh3cEponDeviceRemoteMACAddressLLIDTable 1 }
Hh3cEponDeviceRemoteMACAddressLLIDEntry ::=
SEQUENCE {
hh3cEponDeviceRemoteMACAddressLLIDName SnmpAdminString,
hh3cEponDeviceRMadlLLID Unsigned32,
hh3cEponDeviceRMadlLogID OBJECT IDENTIFIER,
hh3cEponDeviceRMadlRemoteAddress MacAddress,
hh3cEponDeviceRMadlType INTEGER,
hh3cEponDeviceRMadlAction INTEGER,
hh3cEponDeviceRMadlEntryStatus RowStatus
}
hh3cEponDeviceRemoteMACAddressLLIDName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A locally-unique, administratively assigned name for a
group of entries."
::= { hh3cEponDeviceRemoteMACAddressLLIDEntry 1 }
hh3cEponDeviceRMadlLLID OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"An arbitrary integer for the purpose of identifying the
LLID. Writing can be done all the time."
DEFVAL { 1 }
::= { hh3cEponDeviceRemoteMACAddressLLIDEntry 2 }
hh3cEponDeviceRMadlLogID OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The object identifier of a MIB module object to add to
an entry, indicating the entry ID in the table. Writing
can be done all the time."
DEFVAL { zeroDotZero }
::= { hh3cEponDeviceRemoteMACAddressLLIDEntry 3 }
hh3cEponDeviceRMadlRemoteAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The remote MAC address of the LLID.
Writing can be done all the time."
::= { hh3cEponDeviceRemoteMACAddressLLIDEntry 4 }
hh3cEponDeviceRMadlType OBJECT-TYPE
SYNTAX INTEGER {
notRegister (1),
registered (2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A list of types for entries - LLIDs. Indicates and
defines the state of registration. notRegister(1) marks
a non registered LID, registered(2) marks a registered
LLID. Writing can be done all the time."
DEFVAL { 1 }
::= { hh3cEponDeviceRemoteMACAddressLLIDEntry 5 }
hh3cEponDeviceRMadlAction OBJECT-TYPE
SYNTAX INTEGER {
none (1),
register (2),
deregister (3),
reregister (4)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A list of actions for an entry - LLID. Indicates and
defines the state of registration for the remote device.
none(1) marks no action, register(2) marks to register
an LLID, deregister(3) marks to deregister an LLID,
reregister(4) marks reregistered LLID.
Writing can be done all the time."
DEFVAL { 1 }
::= { hh3cEponDeviceRemoteMACAddressLLIDEntry 6 }
hh3cEponDeviceRMadlEntryStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The control that allows creation and deletion of
entries. Once made active an entry MAY not be modified
except to delete it."
::= { hh3cEponDeviceRemoteMACAddressLLIDEntry 7 }
--Statistics tables
hh3cEponDeviceStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cEponDeviceStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table defines the list of statistics counters of
EPON devices. The attributes are relevant for an OLT and
an ONU."
::= { hh3cEponDeviceStatObjects 1 }
hh3cEponDeviceStatEntry OBJECT-TYPE
SYNTAX Hh3cEponDeviceStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table entries for Table of statistics counters of EPON
devices."
INDEX { ifIndex }
::= { hh3cEponDeviceStatTable 1 }
Hh3cEponDeviceStatEntry ::=
SEQUENCE {
hh3cEponDeviceStatTxFramesQueue0 Counter32,
hh3cEponDeviceStatTxFramesQueue1 Counter32,
hh3cEponDeviceStatTxFramesQueue2 Counter32,
hh3cEponDeviceStatTxFramesQueue3 Counter32,
hh3cEponDeviceStatTxFramesQueue4 Counter32,
hh3cEponDeviceStatTxFramesQueue5 Counter32,
hh3cEponDeviceStatTxFramesQueue6 Counter32,
hh3cEponDeviceStatTxFramesQueue7 Counter32,
hh3cEponDeviceStatRxFramesQueue0 Counter32,
hh3cEponDeviceStatRxFramesQueue1 Counter32,
hh3cEponDeviceStatRxFramesQueue2 Counter32,
hh3cEponDeviceStatRxFramesQueue3 Counter32,
hh3cEponDeviceStatRxFramesQueue4 Counter32,
hh3cEponDeviceStatRxFramesQueue5 Counter32,
hh3cEponDeviceStatRxFramesQueue6 Counter32,
hh3cEponDeviceStatRxFramesQueue7 Counter32,
hh3cEponDeviceStatDroppedFramesQueue0 Counter32,
hh3cEponDeviceStatDroppedFramesQueue1 Counter32,
hh3cEponDeviceStatDroppedFramesQueue2 Counter32,
hh3cEponDeviceStatDroppedFramesQueue3 Counter32,
hh3cEponDeviceStatDroppedFramesQueue4 Counter32,
hh3cEponDeviceStatDroppedFramesQueue5 Counter32,
hh3cEponDeviceStatDroppedFramesQueue6 Counter32,
hh3cEponDeviceStatDroppedFramesQueue7 Counter32
}
hh3cEponDeviceStatTxFramesQueue0 OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times a -Queue-0- frames
transmission occurs. Increment the counter by one for
each frame transmitted which is an output of -Queue-0-.
The -Queue-0- marking matched the REPORT MPCP message
Queue-0 field, as defined in [802.3ah] clause 64. This
counter is mandatory for an ONU."
::= { hh3cEponDeviceStatEntry 1 }
hh3cEponDeviceStatTxFramesQueue1 OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times a -Queue-1- frames
transmission occurs. Increment the counter by one for
each frame transmitted which is an output of -Queue-1-.
The -Queue-1- marking matched the REPORT MPCP message
Queue-1 field, as defined in [802.3ah] clause 64. This
counter is mandatory for an ONU."
::= { hh3cEponDeviceStatEntry 2 }
hh3cEponDeviceStatTxFramesQueue2 OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times a -Queue-2- frames
transmission occurs. Increment the counter by one for
each frame transmitted which is an output of -Queue-2-.
The -Queue-2- marking matched the REPORT MPCP message
Queue-2 field, as defined in [802.3ah] clause 64. This
counter is mandatory for an ONU."
::= { hh3cEponDeviceStatEntry 3 }
hh3cEponDeviceStatTxFramesQueue3 OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times a -Queue-3- frames
transmission occurs. Increment the counter by one for
each frame transmitted which is an output of -Queue-3-.
The -Queue-3- marking matched the REPORT MPCP message
Queue-3 field, as defined in [802.3ah] clause 64.
This counter is mandatory for an ONU."
::= { hh3cEponDeviceStatEntry 4 }
hh3cEponDeviceStatTxFramesQueue4 OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times a -Queue-4- frames
transmission occurs. Increment the counter by one for
each frame transmitted which is an output of -Queue-4-.
The -Queue-4- marking matched the REPORT MPCP message
Queue-4 field, as defined in [802.3ah] clause 64.
This counter is mandatory for an ONU."
::= { hh3cEponDeviceStatEntry 5 }
hh3cEponDeviceStatTxFramesQueue5 OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times a -Queue-5- frames
transmission occurs. Increment the counter by one for
each frame transmitted which is an output of -Queue-5-.
The -Queue-5- marking matched the REPORT MPCP message
Queue-5 field, as defined in [802.3ah] clause 64.
This counter is mandatory for an ONU."
::= { hh3cEponDeviceStatEntry 6 }
hh3cEponDeviceStatTxFramesQueue6 OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times a -Queue-6- frames
transmission occurs. Increment the counter by one for
each frame transmitted which is an output of -Queue-6-.
The -Queue-6- marking matched the REPORT MPCP message
Queue-6 field, as defined in [802.3ah] clause 64.
This counter is mandatory for an ONU."
::= { hh3cEponDeviceStatEntry 7 }
hh3cEponDeviceStatTxFramesQueue7 OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times a -Queue-7- frames
transmission occurs. Increment the counter by one for
each frame transmitted which is an output of -Queue-7-.
The -Queue-7- marking matched the REPORT MPCP message
Queue-7 field, as defined in [802.3ah] clause 64.
This counter is mandatory for an ONU."
::= { hh3cEponDeviceStatEntry 8 }
hh3cEponDeviceStatRxFramesQueue0 OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times a -Queue-0- frames
reception occurs. A single counter at the ONU and a set
of counters, one for each LLID, at the OLT. Increment
the counter by one for each frame received for each
LLID, which is an output of -Queue-0-. The -Queue-0-
marking matched the REPORT MPCP message Queue-0 field,
as defined in [802.3ah] clause 64.
This counter is mandatory for an ONU and an OLT."
::= { hh3cEponDeviceStatEntry 9 }
hh3cEponDeviceStatRxFramesQueue1 OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times a -Queue-1- frames
reception occurs. A single counter at the ONU and a set
of counters, one for each LLID, at the OLT. Increment
the counter by one for each frame received for each
LLID, which is an output of -Queue-1-. The -Queue-1-
marking matched the REPORT MPCP message Queue-1 field,
as defined in [802.3ah] clause 64.
This counter is mandatory for an ONU and an OLT."
::= { hh3cEponDeviceStatEntry 10 }
hh3cEponDeviceStatRxFramesQueue2 OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times a -Queue-2- frames
reception occurs. A single counter at the ONU and a set
of counters, one for each LLID, at the OLT. Increment
the counter by one for each frame received for each
LLID, which is an output of -Queue-2-. The -Queue-2-
marking matched the REPORT MPCP message Queue-2 field,
as defined in [802.3ah] clause 64.
This counter is mandatory for an ONU and an OLT."
::= { hh3cEponDeviceStatEntry 11 }
hh3cEponDeviceStatRxFramesQueue3 OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times a -Queue-3- frames
reception occurs. A single counter at the ONU and a set
of counters, one for each LLID, at the OLT. Increment
the counter by one for each frame received for each
LLID, which is an output of -Queue-3-. The -Queue-3-
marking matched the REPORT MPCP message Queue-3 field,
as defined in [802.3ah] clause 64.
This counter is mandatory for an ONU and an OLT."
::= { hh3cEponDeviceStatEntry 12 }
hh3cEponDeviceStatRxFramesQueue4 OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times a -Queue-4- frames
reception occurs. A single counter at the ONU and a set
of counters, one for each LLID, at the OLT. Increment
the counter by one for each frame received for each
LLID, which is an output of -Queue-4-. The -Queue-4-
marking matched the REPORT MPCP message Queue-4 field,
as defined in [802.3ah] clause 64.
This counter is mandatory for an ONU and an OLT."
::= { hh3cEponDeviceStatEntry 13 }
hh3cEponDeviceStatRxFramesQueue5 OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times a -Queue-5- frames
reception occurs. A single counter at the ONU and a set
of counters, one for each LLID, at the OLT. Increment
the counter by one for each frame received for each
LLID, which is an output of -Queue-5-. The -Queue-5-
marking matched the REPORT MPCP message Queue-5 field,
as defined in [802.3ah] clause 64.
This counter is mandatory for an ONU and an OLT."
::= { hh3cEponDeviceStatEntry 14 }
hh3cEponDeviceStatRxFramesQueue6 OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times a -Queue-6- frames
reception occurs. A single counter at the ONU and a set
of counters, one for each LLID, at the OLT. Increment
the counter by one for each frame received for each
LLID, which is an output of -Queue-6-. The -Queue-6-
marking matched the REPORT MPCP message Queue-6 field,
as defined in [802.3ah] clause 64.
This counter is mandatory for an ONU and an OLT."
::= { hh3cEponDeviceStatEntry 15 }
hh3cEponDeviceStatRxFramesQueue7 OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times a -Queue-7- frames
reception occurs. A single counter at the ONU and a set
of counters, one for each LLID, at the OLT. Increment
the counter by one for each frame received for each
LLID, which is an output of -Queue-7-. The -Queue-7-
marking matched the REPORT MPCP message Queue-7 field,
as defined in [802.3ah] clause 64.
This counter is mandatory for an ONU and an OLT."
::= { hh3cEponDeviceStatEntry 16 }
hh3cEponDeviceStatDroppedFramesQueue0 OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times a -Queue-0- frames drops
occurs. Increment the counter by one for each frame
dropped from -Queue-0-. The -Queue-0- marking matched
the REPORT MPCP message Queue-0 field, as defined in
[802.3ah] clause 64.
This counter is mandatory for an ONU."
::= { hh3cEponDeviceStatEntry 17 }
hh3cEponDeviceStatDroppedFramesQueue1 OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times a -Queue-1- frames drops
occurs. Increment the counter by one for each frame
dropped from -Queue-1-. The -Queue-1- marking matched
the REPORT MPCP message Queue-1 field, as defined in
[802.3ah] clause 64.
This counter is mandatory for an ONU."
::= { hh3cEponDeviceStatEntry 18 }
hh3cEponDeviceStatDroppedFramesQueue2 OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times a -Queue-2- frames drops
occurs. Increment the counter by one for each frame
dropped from -Queue-2-. The -Queue-2- marking matched
the REPORT MPCP message Queue-2 field, as defined in
[802.3ah] clause 64.
This counter is mandatory for an ONU."
::= { hh3cEponDeviceStatEntry 19 }
hh3cEponDeviceStatDroppedFramesQueue3 OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times a -Queue-3- frames drops
occurs. Increment the counter by one for each frame
dropped from -Queue-3-. The -Queue-3- marking matched
the REPORT MPCP message Queue-3 field, as defined in
[802.3ah] clause 64.
This counter is mandatory for an ONU."
::= { hh3cEponDeviceStatEntry 20}
hh3cEponDeviceStatDroppedFramesQueue4 OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times a -Queue-4- frames drops
occurs. Increment the counter by one for each frame
dropped from -Queue-4-. The -Queue-4- marking matched
the REPORT MPCP message Queue-4 field, as defined in
[802.3ah] clause 64.
This counter is mandatory for an ONU."
::= { hh3cEponDeviceStatEntry 21 }
hh3cEponDeviceStatDroppedFramesQueue5 OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times a -Queue-5- frames drops
occurs. Increment the counter by one for each frame
dropped from -Queue-5-. The -Queue-5- marking matched
the REPORT MPCP message Queue-5 field, as defined in
[802.3ah] clause 64.
This counter is mandatory for an ONU."
::= { hh3cEponDeviceStatEntry 22 }
hh3cEponDeviceStatDroppedFramesQueue6 OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times a -Queue-6- frames drops
occurs. Increment the counter by one for each frame
dropped from -Queue-6-. The -Queue-6- marking matched
the REPORT MPCP message Queue-6 field, as defined in
[802.3ah] clause 64.
This counter is mandatory for an ONU."
::= { hh3cEponDeviceStatEntry 23 }
hh3cEponDeviceStatDroppedFramesQueue7 OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of the number of times a -Queue-7- frames drops
occurs. Increment the counter by one for each frame
dropped from -Queue-7-. The -Queue-7- marking matched
the REPORT MPCP message Queue-7 field, as defined in
[802.3ah] clause 64.
This counter is mandatory for an ONU."
::= { hh3cEponDeviceStatEntry 24 }
--Editor's Note use reference to event MIB modules [RFC2981] and
--docsis MIB modules [RFC2669]
hh3cEponDeviceEventObjectTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cEponDeviceEventObjectEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table defines the Event Objects for EPON devices.
The attributes are relevant for an OLT and an ONU."
::= { hh3cEponDeviceEventObjects 1 }
hh3cEponDeviceEventObjectEntry OBJECT-TYPE
SYNTAX Hh3cEponDeviceEventObjectEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table entries for Table of Event objects for EPON
devices."
INDEX { ifIndex }
::= { hh3cEponDeviceEventObjectTable 1 }
Hh3cEponDeviceEventObjectEntry ::=
SEQUENCE {
hh3cEponDeviceSampleMinimum Integer32,
hh3cEponDeviceDyingGaspAlarmState TruthValue,
hh3cEponDeviceDyingGaspAlarmEnabled TruthValue,
hh3cEponDeviceCriticalEventState TruthValue,
hh3cEponDeviceCriticalEventEnabled TruthValue,
hh3cEponDeviceLocalLinkFaultAlarmState TruthValue,
hh3cEponDeviceLocalLinkFaultAlarmEnabled TruthValue,
hh3cEponDeviceTemperatureEventIndicationState TruthValue,
hh3cEponDeviceTemperatureEventIndicationEnabled TruthValue,
hh3cEponDevicePowerVoltageEventIndicationState TruthValue,
hh3cEponDevicePowerVoltageEventIndicationEnabled TruthValue,
hh3cEponDeviceGlobalEventState TruthValue,
hh3cEponDeviceGlobalEventEnabled TruthValue,
hh3cEponDeviceErroredSymbolPeriodEventState TruthValue,
hh3cEponDeviceErroredSymbolPeriodEventEnabled TruthValue,
hh3cEponDeviceErroredFrameEventState TruthValue,
hh3cEponDeviceErroredFrameEventEnabled TruthValue,
hh3cEponDeviceErroredFramePeriodEventState TruthValue,
hh3cEponDeviceErroredFramePeriodEventEnabled TruthValue,
hh3cEponDeviceErroredFrameSecondsSummaryEventState TruthValue,
hh3cEponDeviceErroredFrameSecondsSummaryEventEnabled TruthValue,
hh3cEponDeviceOrganizationSpecificEventState TruthValue,
hh3cEponDeviceOrganizationSpecificEventEnabled TruthValue,
hh3cEponDeviceEventControl INTEGER
}
hh3cEponDeviceSampleMinimum OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The minimum Frequency of events this system will accept.
A system may use the larger values of this minimum to
lessen the impact of constant sampling. For larger
sampling intervals the system samples less often and
suffers less overhead.
Unless explicitly resource limited, a system's value for
this object SHOULD be 1, allowing as small as a 1 second
interval for ongoing trigger sampling.
Writing of the value can be done all the time."
DEFVAL { 1 }
::= { hh3cEponDeviceEventObjectEntry 1 }
hh3cEponDeviceDyingGaspAlarmState OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only variable, which defines the state of the
Dying Gasp indication of the OAM alarm indications as
described in the [802.3ah] clause 57. When true the
device has a dying gasp alarm asserted. When false the
dying gasp alarm is reset "
::= { hh3cEponDeviceEventObjectEntry 2 }
hh3cEponDeviceDyingGaspAlarmEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A control to allow DyingGaspAlarm event to be used.
When the value is true the event is sampled. When the
value is false the event is not sampled.
Writing can be done all the time."
DEFVAL { false }
::= { hh3cEponDeviceEventObjectEntry 3 }
hh3cEponDeviceCriticalEventState OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only variable, which defines the state of the
Critical Event indication of the OAM alarm indications
as described in the [802.3ah] clause 57. When true the
device has a Critical Event asserted. When false the
Critical Event is reset."
::= { hh3cEponDeviceEventObjectEntry 4 }
hh3cEponDeviceCriticalEventEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A control to allow CriticalEvent event to be used. When
the value is true the event is sampled. When the value
is false the event is not sampled.
Writing can be done all the time."
DEFVAL { false }
::= { hh3cEponDeviceEventObjectEntry 5 }
hh3cEponDeviceLocalLinkFaultAlarmState OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only variable, which defines the state of the
Local Link Fault indication of the OAM alarm indications
as described in the [802.3ah] clause 57. When true the
device has a Local Link Fault alarm asserted. When
false the Local Link Fault alarm is reset."
::= { hh3cEponDeviceEventObjectEntry 6 }
hh3cEponDeviceLocalLinkFaultAlarmEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A control to allow LocalLinkFaultAlarm event to be used.
When the value is true the event is sampled. When the
value is false the event is not sampled.
Writing can be done all the time."
DEFVAL { false }
::= { hh3cEponDeviceEventObjectEntry 7 }
hh3cEponDeviceTemperatureEventIndicationState OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only variable, which defines the state of the
Temperature Event indication of an EPON device. When
condition of box temperature is above the threshold
defined the alarm is asserted. When the condition is
below that threshold the alarm is de-asserted. When true
the device has a Temperature Event Indication asserted.
When false the Temperature Event Indication is reset."
::= { hh3cEponDeviceEventObjectEntry 8 }
hh3cEponDeviceTemperatureEventIndicationEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A control to allow TemperatureEventIndication event to
be used. When the value is true the event is sampled.
When the value is false the event is not sampled.
Writing can be done all the time."
DEFVAL { false }
::= { hh3cEponDeviceEventObjectEntry 9 }
hh3cEponDevicePowerVoltageEventIndicationState OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only variable, which defines the state of the
Power/Voltage Event Indication of an EPON device. When
condition of box Power/voltage is above the threshold
defined the alarm is asserted. When the condition is
below that threshold the alarm is de-asserted. When true
the device has a Power/Voltage Event Indication
asserted. When false the Power/Voltage Event Indication
is reset. "
::= { hh3cEponDeviceEventObjectEntry 10 }
hh3cEponDevicePowerVoltageEventIndicationEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A control to allow PowerVoltageEventIndication event to
be used. When the value is true the event is sampled.
When the value is false the event is not sampled.
Writing can be done all the time."
DEFVAL { false }
::= { hh3cEponDeviceEventObjectEntry 11 }
hh3cEponDeviceGlobalEventState OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only variable, which defines the state of the
Global Event indication of an EPON device. When the
indication of the event input occurs the event is
asserted. When the input is removed that event is
de-asserted. When true the device has a Global Event
asserted. When false the Global Event Indication is
reset."
::= { hh3cEponDeviceEventObjectEntry 12 }
hh3cEponDeviceGlobalEventEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A control to allow GlobalEvent event to be used. When
the value is true the event is sampled. When the value
is false the event is not sampled. Writing can be done
all the time."
DEFVAL { false }
::= { hh3cEponDeviceEventObjectEntry 13 }
hh3cEponDeviceErroredSymbolPeriodEventState OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only variable, which defines the state of the
Errored Symbol Period Event indication of the OAM alarm
TLV indications as described in the [802.3ah]
clause 57.5.3. When true the device has an Errored
Symbol Period Event asserted. When false the Errored
Symbol Period Event is reset."
::= { hh3cEponDeviceEventObjectEntry 14 }
hh3cEponDeviceErroredSymbolPeriodEventEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A control to allow ErroredSymbolPeriodEvent event to be
used. When the value is true the event is sampled. When
the value is false the event is not sampled. Writing can
be done all the time."
DEFVAL { false }
::= { hh3cEponDeviceEventObjectEntry 15 }
hh3cEponDeviceErroredFrameEventState OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only variable, which defines the state of the
Errored Frame Event indication of the OAM alarm TLV
indications as described in the [802.3ah] clause 57.5.3.
When true the device has an Errored Frame Event
asserted. When false the Errored Frame Event is reset."
::= { hh3cEponDeviceEventObjectEntry 16 }
hh3cEponDeviceErroredFrameEventEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A control to allow ErroredFrameEvent event to be used.
When the value is true the event is sampled. When the
value is false the event is not sampled.
Writing can be done all the time."
DEFVAL { false }
::= { hh3cEponDeviceEventObjectEntry 17 }
hh3cEponDeviceErroredFramePeriodEventState OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only variable, which defines the state of the
Errored Frame Period Event indication of the OAM alarm
TLV indications as described in the [802.3ah] clause
57.5.3. When true the device has an Errored Frame Period
Event asserted. When false the Errored Frame Period
Event is reset."
::= { hh3cEponDeviceEventObjectEntry 18 }
hh3cEponDeviceErroredFramePeriodEventEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A control to allow ErroredFramePeriodEvent event to be
used. When the value is true the event is sampled. When
the value is false the event is not sampled. Writing can
be done all the time."
DEFVAL { false }
::= { hh3cEponDeviceEventObjectEntry 19 }
hh3cEponDeviceErroredFrameSecondsSummaryEventState OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only variable, which defines the state of the
Errored Frame Seconds Summary Event indication of the
OAM alarm TLV indications as described in the [802.3ah]
clause 57.5.3. When true the device has an Errored Frame
Seconds Summary Event asserted. When false the Errored
Frame Seconds Summary Event is reset."
::= { hh3cEponDeviceEventObjectEntry 20 }
hh3cEponDeviceErroredFrameSecondsSummaryEventEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A control to allow ErroredFrameSecondsSummaryEvent event
to be used. When the value is true the event is sampled.
When the value is false the event is not sampled.
Writing can be done all the time."
DEFVAL { false }
::= { hh3cEponDeviceEventObjectEntry 21 }
hh3cEponDeviceOrganizationSpecificEventState OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only variable, which defines the state of the
Organization Specific Event indication of the OAM alarm
TLV indications as described in the [802.3ah] clause
57.5.3. When true the device has an Organization
Specific Event asserted. When false the Organization
Specific Event is reset."
::= { hh3cEponDeviceEventObjectEntry 22 }
hh3cEponDeviceOrganizationSpecificEventEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A control to allow OrganizationSpecificEvent event to be
used. When the value is true the event is sampled. When
the value is false the event is not sampled.
Writing can be done all the time."
DEFVAL { false }
::= { hh3cEponDeviceEventObjectEntry 23 }
hh3cEponDeviceEventControl OBJECT-TYPE
SYNTAX INTEGER {
none(1),
resetLog(2),
useDefaultReporting(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates and controls the resetting of the Event log.
Setting this object to none(1) has no action resetLog(2)
empties the event log. All data is deleted. Setting it
to useDefaultReporting(3) returns all event priorities
to their factory-default reporting. Reading this object
always returns useDefaultReporting(3)."
DEFVAL { 3 }
::= { hh3cEponDeviceEventObjectEntry 24 }
-- Events Log Table
hh3cEponDeviceEventsLogTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cEponDeviceEventsLogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of objects provides a log of notification based
on the event as pointed to by entries in those tables.
The intent is a MAC level event log (set of events to
when they happened).
This attribute is relevant for an OLT and an ONU."
::= { hh3cEponDeviceEventObjects 2 }
hh3cEponDeviceEventsLogEntry OBJECT-TYPE
SYNTAX Hh3cEponDeviceEventsLogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A group of Events. Applications create and delete
entries using hh3cEponDeviceEventsEntryStatus. When adding
objects to a notification they are added in the lexical
order of their index in this table."
INDEX { hh3cEponDeviceEventsLogName, hh3cEponDeviceEventsLogIndex }
::= { hh3cEponDeviceEventsLogTable 1 }
Hh3cEponDeviceEventsLogEntry ::=
SEQUENCE {
hh3cEponDeviceEventsLogName SnmpAdminString,
hh3cEponDeviceEventsLogIndex Unsigned32,
hh3cEponDeviceEventsLogID OBJECT IDENTIFIER,
hh3cEponDeviceEventsLogFirstTime DateAndTime,
hh3cEponDeviceEventsLogLastTime DateAndTime,
hh3cEponDeviceEventsLogCounts Counter32,
hh3cEponDeviceEventsLogType INTEGER,
hh3cEponDeviceEventsLogEntryStatus RowStatus
}
hh3cEponDeviceEventsLogName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..32))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A locally-unique, administratively assigned name for a
group of Events."
::= { hh3cEponDeviceEventsLogEntry 1 }
hh3cEponDeviceEventsLogIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An arbitrary integer for the purpose of identifying
individual Events within a hh3cEponDeviceEventsLogName
group. Events within a group are placed in the
notification in the numerical order of this index."
::= { hh3cEponDeviceEventsLogEntry 2 }
hh3cEponDeviceEventsLogID OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The object identifier of a MIB module object to add to a
Notification that results from the event.
Writing can be done all the time."
DEFVAL { zeroDotZero }
::= { hh3cEponDeviceEventsLogEntry 3 }
hh3cEponDeviceEventsLogFirstTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time that an entry was created."
::= { hh3cEponDeviceEventsLogEntry 4 }
hh3cEponDeviceEventsLogLastTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If multiple events are reported via the same entry, the
time that the last event for this entry occurred,
otherwise this should have the same value as
hh3cEponDeviceEventsLogFirstTime."
::= { hh3cEponDeviceEventsLogEntry 5 }
hh3cEponDeviceEventsLogCounts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of consecutive event instances reported by
this entry. This starts at 1 with the creation of this
row and increments by 1 for each subsequent duplicate
event."
::= { hh3cEponDeviceEventsLogEntry 6 }
hh3cEponDeviceEventsLogType OBJECT-TYPE
SYNTAX INTEGER {
hh3cEponDeviceDyingGaspAlarmState (1),
hh3cEponDeviceCriticalEventState (2),
hh3cEponDeviceLocalLinkFaultAlarmState (3),
hh3cEponDeviceTemperatureEventIndicationState (4),
hh3cEponDevicePowerVoltageEventIndicationState (5),
hh3cEponDeviceGlobalEventState (6),
hh3cEponDeviceErroredSymbolPeriodEventState (7),
hh3cEponDeviceErroredFrameEventState (8),
hh3cEponDeviceErroredFramePeriodEventState (9),
hh3cEponDeviceErroredFrameSecondsSummaryEventState (10),
hh3cEponDeviceOrganizationSpecificEventState (11)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A list of types for Events. Events are ordered according
to their significance where 1 is the highest severity.
hh3cEponDeviceDyingGaspAlarmState(1) indicates a Dying Gasp
Alarm State,
hh3cEponDeviceCriticalEventState(2) indicates a Critical
Event State,
hh3cEponDeviceLocalLinkFaultAlarmState(3) indicates a Local
Link Fault Alarm State,
hh3cEponDeviceTemperatureEventIndicationState(4) indicates a
Temperature Event Indication State,
hh3cEponDevicePowerVoltageEventIndicationState(5) indicates
a Power Voltage Event Indication State,
hh3cEponDeviceGlobalEventState(6) indicates a Global Event
State,
hh3cEponDeviceErroredSymbolPeriodEventState(7) indicates an
Errored Symbol Period Event State,
hh3cEponDeviceErroredFrameEventState(8) indicates an Errored
Frame Event State,
hh3cEponDeviceErroredFramePeriodEventState(9) indicates an
Errored Frame Period Event State,
hh3cEponDeviceErroredFrameSecondsSummaryEventState(10)
indicates an Errored Frame Seconds Summary Event State,
hh3cEponDeviceOrganizationSpecificEventState(11) indicates
an Organization Specific Event State. "
::= { hh3cEponDeviceEventsLogEntry 7 }
hh3cEponDeviceEventsLogEntryStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The control that allows creation and deletion of
entries. Once made active an entry MAY not be modified
except to delete it."
::= { hh3cEponDeviceEventsLogEntry 8 }
-- Conformance Statements
-- Conformance Groups
hh3cEponDeviceGroups OBJECT IDENTIFIER ::= { hh3cEponDeviceConformance 1 }
hh3cEponDeviceGroupControl OBJECT-GROUP
OBJECTS {
hh3cEponDeviceObjectReset,
hh3cEponDeviceObjectModes,
hh3cEponDeviceObjectFecEnabled,
hh3cEponDeviceObjectOamMode,
hh3cEponDeviceObjectDeviceReadyMode,
hh3cEponDeviceObjectPowerDown,
hh3cEponDeviceObjectNumberOfLLIDs,
hh3cEponDeviceObjectReportThreshold,
hh3cEponDeviceRemoteMACAddressLLIDControl
}
STATUS current
DESCRIPTION
"A collection of objects of hh3cEponDevice control
definition."
::= { hh3cEponDeviceGroups 1 }
hh3cEponDeviceGroupRMadLTable OBJECT-GROUP
OBJECTS {
hh3cEponDeviceRMadlLLID,
hh3cEponDeviceRMadlLogID,
hh3cEponDeviceRMadlRemoteAddress,
hh3cEponDeviceRMadlType,
hh3cEponDeviceRMadlAction,
hh3cEponDeviceRMadlEntryStatus
}
STATUS current
DESCRIPTION
"A collection of objects of hh3cEponDevice remote Mac address
to LLID table."
::= { hh3cEponDeviceGroups 2 }
hh3cEponDeviceGroupStat OBJECT-GROUP
OBJECTS {
hh3cEponDeviceStatTxFramesQueue0,
hh3cEponDeviceStatTxFramesQueue1,
hh3cEponDeviceStatTxFramesQueue2,
hh3cEponDeviceStatTxFramesQueue3,
hh3cEponDeviceStatTxFramesQueue4,
hh3cEponDeviceStatTxFramesQueue5,
hh3cEponDeviceStatTxFramesQueue6,
hh3cEponDeviceStatTxFramesQueue7,
hh3cEponDeviceStatRxFramesQueue0,
hh3cEponDeviceStatRxFramesQueue1,
hh3cEponDeviceStatRxFramesQueue2,
hh3cEponDeviceStatRxFramesQueue3,
hh3cEponDeviceStatRxFramesQueue4,
hh3cEponDeviceStatRxFramesQueue5,
hh3cEponDeviceStatRxFramesQueue6,
hh3cEponDeviceStatRxFramesQueue7,
hh3cEponDeviceStatDroppedFramesQueue0,
hh3cEponDeviceStatDroppedFramesQueue1,
hh3cEponDeviceStatDroppedFramesQueue2,
hh3cEponDeviceStatDroppedFramesQueue3,
hh3cEponDeviceStatDroppedFramesQueue4,
hh3cEponDeviceStatDroppedFramesQueue5,
hh3cEponDeviceStatDroppedFramesQueue6,
hh3cEponDeviceStatDroppedFramesQueue7
}
STATUS current
DESCRIPTION
"A collection of objects of EPON device Statistics"
::= { hh3cEponDeviceGroups 3 }
hh3cEponDeviceGroupEvent OBJECT-GROUP
OBJECTS {
hh3cEponDeviceSampleMinimum,
hh3cEponDeviceDyingGaspAlarmState,
hh3cEponDeviceDyingGaspAlarmEnabled,
hh3cEponDeviceCriticalEventState,
hh3cEponDeviceCriticalEventEnabled,
hh3cEponDeviceLocalLinkFaultAlarmState,
hh3cEponDeviceLocalLinkFaultAlarmEnabled,
hh3cEponDeviceTemperatureEventIndicationState,
hh3cEponDeviceTemperatureEventIndicationEnabled,
hh3cEponDevicePowerVoltageEventIndicationState,
hh3cEponDevicePowerVoltageEventIndicationEnabled,
hh3cEponDeviceGlobalEventState,
hh3cEponDeviceGlobalEventEnabled,
hh3cEponDeviceErroredSymbolPeriodEventState,
hh3cEponDeviceErroredSymbolPeriodEventEnabled,
hh3cEponDeviceErroredFrameEventState,
hh3cEponDeviceErroredFrameEventEnabled,
hh3cEponDeviceErroredFramePeriodEventState ,
hh3cEponDeviceErroredFramePeriodEventEnabled ,
hh3cEponDeviceErroredFrameSecondsSummaryEventState ,
hh3cEponDeviceErroredFrameSecondsSummaryEventEnabled,
hh3cEponDeviceOrganizationSpecificEventState ,
hh3cEponDeviceOrganizationSpecificEventEnabled,
hh3cEponDeviceEventControl
}
STATUS current
DESCRIPTION
"A collection of objects for EPON device Events"
::= { hh3cEponDeviceGroups 4 }
hh3cEponDeviceGroupEventLog OBJECT-GROUP
OBJECTS {
hh3cEponDeviceEventsLogID,
hh3cEponDeviceEventsLogFirstTime,
hh3cEponDeviceEventsLogLastTime,
hh3cEponDeviceEventsLogCounts,
hh3cEponDeviceEventsLogType,
hh3cEponDeviceEventsLogEntryStatus
}
STATUS current
DESCRIPTION
"A collection of objects for EPON device Events log"
::= { hh3cEponDeviceGroups 5 }
-- Compliance
hh3cEponDeviceCompliances OBJECT IDENTIFIER ::= { hh3cEponDeviceConformance 2 }
hh3cEponDeviceCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION "The compliance statement for EPON Devices."
MODULE -- this module
MANDATORY-GROUPS { hh3cEponDeviceGroupControl }
GROUP hh3cEponDeviceGroupRMadLTable
DESCRIPTION " This group is mandatory for all
OLT EPON devices supporting LLID-MAC
address table."
GROUP hh3cEponDeviceGroupStat
DESCRIPTION "This group is mandatory for all EPON devices
supporting interfaces for Statistics collection."
GROUP hh3cEponDeviceGroupEvent
DESCRIPTION "This group is mandatory for all EPON devices
supporting interfaces for event collection."
GROUP hh3cEponDeviceGroupEventLog
DESCRIPTION "This group is mandatory for all EPON devices
supporting interfaces for event log collection."
::= { hh3cEponDeviceCompliances 1 }
END
|