forked from AlexandreYang/snmp-mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
A3COM-HUAWEI-EPON-MIB
executable file
·5956 lines (5448 loc) · 156 KB
/
A3COM-HUAWEI-EPON-MIB
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
-- ===========================================================
-- Copyright (c) 2004-2009 Hangzhou H3C Tech. Co., Ltd. All rights reserved.
--
-- Description:
-- Reference:
-- Version: V2.4
-- History:
-- V1.0 created by liyue.
-- Define MODULE-IDENTITY for h3cEpon
-- V1.1 2005-12-21 Adjusted the structure of some tables and the value of
-- some objects by liuhongxu
-- Redefined the scope of some objects
-- V1.2 2006-01-09 Updated file by liuhongxu and zoudian.
-- Added h3cEponOnuTypeManTable, h3cOltPortAlarmRegExcessEnabled,
-- h3cOnuBindType, h3cOnuPCBVersion, h3cOnuRtt, h3cOnuEEPROMVersion,
-- h3cOnuRegType, h3cOnuHostType, h3cEponOnuRegExcessTrap,
-- h3cEponOnuRegExcessRecoverTrap, h3cOnuSlaBandWidthStepVal.
-- Changed the description of h3cOnuSlaMaxBandWidth and h3cOnuSlaMinBandWidth.
-- Adjusted the format.
-- V1.3 2006-01-16 Updated file by lichunyan.
-- Added h3cOnuPacketManTable, h3cOnuProtocolTable, h3cOnuMulticastFilterStatus,
-- h3cOnuDot1xTable.
-- Changed the default value of h3cOnuSlaMaxBandWidth.
-- Adjusted the format of this mib.
-- V1.4 2006-06-08 Updated by chenzhaojie
-- Delete default values of h3cOnuSlaMinBandWidth and h3cOnuSlaMaxBandWidth
-- V1.5 2006-08-02 Updated by chenzhaojie
-- Add h3cOnuSlaDelay, h3cOnuDistance, h3cOnuPriorityQueueTable,
-- h3cOnuCountTable, h3cOnuPriorityQueueSizeMinVal, h3cOnuPriorityQueueSizeMaxVal,
-- h3cEponOnuPowerOffTrap, h3cEponOltSwitchoverTrap, h3cEponStatTable.
-- Change DESCRIPTION of h3cOnuSlaMinBandWidthMinVal, h3cOnuSlaMinBandWidthMaxVal.
-- V1.6 2006-09-06 Updated by chenzhaojie
-- Add h3cOnuPriorityQueueBandwidthMinVal, h3cOnuPriorityQueueBandwidthMaxVal,
-- h3cOnuPriorityQueueBurstsizeMinVal, h3cOnuPriorityQueueBurstsizeMaxVal.
-- Add h3cOnuQueueBandwidthTable.
-- V1.7 2007-05-21 Updated by chenzhaojie
-- Add h3cEponSysScalarGroup
-- Add h3cEponSysManTable ,h3cEponAutoUpdateTable,h3cEponOuiTable.
-- Add h3cEponOuiIndexNextTable, h3cEponMulticastControlTable.
-- Add h3cOltPortAlarmDFEEnabled to h3cOltPortAlarmThresholdTable.
-- Add h3cOnuDbaReportQueueSetNumber, h3cOnuRemoteFecStatus,h3cOnuPortBerStatus
-- h3cOnuReset, h3cOnuMulticastControlMode,h3cOnuAccessVlan,h3cOnuEncryptKey
-- to h3cOnuSysManTable
-- Add h3cOnuLlid to h3cOnuInfoTable.
-- Add h3cOnuIpAddressTable, h3cOnuChipSetInfoTable, h3cOnuCapabilityTable,
-- h3cOnuDbaReportTable.
-- Add h3cEponOltDFETrap, h3cEponOltDFERecoverTrap
-- V1.8 2007-10-13 Updated by liuhongxu, andapeng, lihaijun
-- Add h3cOltMaxRtt to h3cOltSysManTable.
-- Add h3cOnuUniUpDownTrapStatus, h3cOnuDhcpsnooping, h3cOnuPppoe,
-- h3cOnuIgmpSnoopingHostAgingT, h3cOnuIgmpSnoopingMaxRespT,
-- h3cOnuIgmpSnoopingRouterAgingT, h3cOnuIgmpSnoopingAggReportS,
-- h3cOnuIgmpSnoopingAggLeaveS, h3cOnuDhcpallocate, h3cOnuManageVID,
-- h3cOnuManageVlanIntfS.
-- Add h3cOnuCosToLocalPrecedenceTable.
-- Add h3cOnuFecStatus to h3cOnuSysManTable.
-- Add h3cOnuIpAddressGateway to h3cOnuIpAddressTable.
-- Changed the default value of h3cEponMonitorCycle.
-- V1.9 2008-1-15 Updated by fengjian, qinlei, lihaijun
-- Add h3cOnuSilentTable.
-- Add h3cOltUsingOnuTable.
-- Add h3cOnuFirmwareUpdateByTypeTable.
-- Add h3cOnuUpdateByTypeNextIndex
-- Add h3cOnuUpdateFileName to h3cOnuFirmwareUpdateTable.
-- Add h3cOnuUpdateResult values.
-- Add h3cOnuSlaFixedBandWidth and h3cOnuSlaPriorityClass to h3cOnuSlaManTable.
-- Add h3cEponOnuRegSilentMac.
-- Add h3cEponOnuSilenceTrap, h3cEponOnuSilenceRecoverTrap.
-- Add h3cEponOnuUpdateResultTrap to report onu update result.
-- V2.0 2008-3-17 Updated by zoudian
-- Add h3cOnuMcastCtrlHostAgingTime, h3cOnuMulticastFastLeaveEnable
-- and h3cOnuPortIsolateEnable to h3cOnuSysManTable.
-- Add h3cOnuIgspFastLeaveSupported and h3cOnuMCtrlFastLeaveSupported
-- to h3cOnuCapabilityTable.
-- Add h3cOnuSlaFixedPacketSize to h3cOnuSlaManTable.
-- V2.1 2008-07-25 updated by zhaodan and zoudian.
-- Add h3cEponOnuAutoBindTrap and h3cEponOperationResult.
-- Add h3cOnuFirmwareVersion and h3cOnuVendorId to h3cOnuInfoTable.
-- Change the description of h3cOnuDistance.
-- V2.2 2009-08-18 updated by zhaodan.
-- Add h3cEponOnuStpPortTable.
-- Add h3cEponOnuPortStpStateTrap to h3cEponTrapPrefix.
-- V2.3 2010-02-25 updated by zhaodan.
-- Add h3cEponOnuLaserState and h3cEponOnuLaserFailedTrap.
-- Add h3cOnuOpticalPowerReceivedByOlt to h3cOnuInfoTable.
-- Add h3cOltOpticalPowerTx and h3cOltOpticalPowerRx to h3cOltInfoTable.
-- Add h3cOnuPhysicalTable and h3cOnuSmlkTable.
-- Add h3cOnuSmlkSwitchoverTrap to h3cEponTrapPrefix.
-- V2.4 2010-12-02 updated by zhaodan.
-- Add h3cOnuRS485PropertiesTable, h3cOnuRS485SessionSummaryTable,
-- h3cOnuRS485SessionTable and h3cOnuRS485SessionErrInfoTable.
-- =================================================================
A3COM-HUAWEI-EPON-MIB DEFINITIONS ::= BEGIN
IMPORTS
h3cEpon
FROM A3COM-HUAWEI-OID-MIB
ifIndex, ifDescr
FROM IF-MIB
hwLswFrameIndex, hwLswSlotIndex
FROM A3COM-HUAWEI-DEVICE-MIB
Integer32, Unsigned32, Counter64, IpAddress, OBJECT-TYPE, MODULE-IDENTITY,
NOTIFICATION-TYPE
FROM SNMPv2-SMI
TruthValue, MacAddress, DateAndTime, RowStatus, DisplayString
FROM SNMPv2-TC
InetAddress, InetAddressType
FROM INET-ADDRESS-MIB;
h3cEponMibObjects MODULE-IDENTITY
LAST-UPDATED "200705221008Z"
ORGANIZATION
"Hangzhou H3C Technologies Co., Ltd."
CONTACT-INFO
"Platform Team H3C Technologies 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 and
display current configuration of Ethernet Passive Optical
Network (EPON) port which are based on the Ethernet in
the First Mile (EFM) Passive Optical Network(PON) as
defined in IEEE Draft P802.3ah/D3.0 clause 60, 64, 65..
"
::= { h3cEpon 1 }
h3cEponSysMan OBJECT IDENTIFIER ::= { h3cEponMibObjects 1 }
h3cEponAutoAuthorize OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
This value determines whether software performs
self-authorization for each Optical Network Unit(ONU)
registering to the network. Setting it to false
means for every ONU registering, software requires
external authorization, and until it's done the
ONU is not authenticated. True value means software
authorizes each ONU registering to the network
automatically.
true - ONUs are always authorized.
false - If 802.1x authorization is enable,
the ONUs have to be authorized by
the protocol.
- If 802.1x authorization is disable,
ONUs are always authorized.
"
DEFVAL { false }
::= { h3cEponSysMan 1 }
h3cEponMonitorCycle OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The cycle of alarm thresholds checking.
Applying to the following types:
Bit Error Rate(BER) alarm, Frame Error Rate(FER),
Logical Link Identity(LLID) mismatch alarm and so on.
The unit is second.
"
::= { h3cEponSysMan 2 }
h3cEponMsgTimeOut OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Timeout waiting for a response from Optical Line Terminal(OLT)
firmware after sending it a message.
The unit is millisecond.
"
DEFVAL { 600 }
::= { h3cEponSysMan 3 }
h3cEponMsgLoseNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The times of messages sending timeouts, after
which OLT will reset (applying to every OLT).
"
DEFVAL { 20 }
::= { h3cEponSysMan 4 }
h3cEponSysHasEPONBoard OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
true(1) - At least an EPON board exists.
false(2) - No EPON board exists.
"
::= { h3cEponSysMan 5 }
h3cEponMonitorCycleEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Stop or continue monitoring.
true(1) - Continue monitoring.
false(2) - Stop monitoring.
"
DEFVAL { true }
::= { h3cEponSysMan 6 }
h3cEponOltSoftwareErrAlmEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Software error alarm behavior of all active OLTs.
true(1) - alarm enable.
false(2) - alarm disable.
"
DEFVAL { true }
::= { h3cEponSysMan 7 }
h3cEponPortLoopBackAlmEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
LoopBack alarm behavior of EPON ports.
true(1) - alarm enable.
false(2) - alarm disable.
"
DEFVAL { true }
::= { h3cEponSysMan 8 }
h3cEponMonitorCycleMinVal OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The lower limit of cycle which be confined to the
h3cEponMonitorCycle.
"
::= { h3cEponSysMan 9 }
h3cEponMonitorCycleMaxVal OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The upper limit of cycle which be confined to the
h3cEponMonitorCycle.
"
::= { h3cEponSysMan 10 }
h3cEponMsgTimeOutMinVal OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The lower limit of timeout which be confined to the
h3cEponMsgTimeOut.
"
::= { h3cEponSysMan 11 }
h3cEponMsgTimeOutMaxVal OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The upper limit of timeout which be confined to the
h3cEponMsgTimeOut.
"
::= { h3cEponSysMan 12 }
h3cEponMsgLoseNumMinVal OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The lower limit of time which be confined to the
h3cEponMsgLoseNum.
"
::= { h3cEponSysMan 13 }
h3cEponMsgLoseNumMaxVal OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The upper limit of time which be confined to the
h3cEponMsgLoseNum.
"
::= { h3cEponSysMan 14 }
h3cEponSysScalarGroup OBJECT IDENTIFIER ::= { h3cEponSysMan 15 }
--
-- h3cEponSysManTable
--
h3cEponSysManTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cEponSysManEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
This table defines system related parameters.
"
::= { h3cEponSysMan 16 }
h3cEponSysManEntry OBJECT-TYPE
SYNTAX H3cEponSysManEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The entry of the table h3cEponSysManTable.
"
INDEX
{
h3cEponSlotIndex
}
::= { h3cEponSysManTable 1 }
H3cEponSysManEntry ::= SEQUENCE
{
h3cEponSlotIndex Integer32,
h3cEponModeSwitch INTEGER,
h3cEponAutomaticMode INTEGER,
h3cEponOamDiscoveryTimeout Integer32,
h3cEponEncryptionNoReplyTimeOut Integer32,
h3cEponEncryptionUpdateTime Integer32,
h3cEponAutoBindStatus INTEGER
}
h3cEponSlotIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Slot Index, the index of h3cEponSysManTable.
"
::= { h3cEponSysManEntry 1 }
h3cEponModeSwitch OBJECT-TYPE
SYNTAX INTEGER
{
cmode(1),
hmode(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
cmode - epon standard mode.
hmode - private mode.
"
DEFVAL { cmode }
::= { h3cEponSysManEntry 2 }
h3cEponAutomaticMode OBJECT-TYPE
SYNTAX INTEGER
{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Automatic mode setting: when enabled - after
new OLT is added, the OLT stack sets its encryption mode
to 'triple churning' and configure the OLT to authorize
ONU MAC addresses according to its table.
enable -enable automatic mode.
disable -disable automatic mode.
"
DEFVAL { enable }
::= { h3cEponSysManEntry 3 }
h3cEponOamDiscoveryTimeout OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Time out parameter for extended OAM discovery
process message, ranging from 0 to 2550,
measured in 100 milliseconds.
"
DEFVAL { 30 }
::= { h3cEponSysManEntry 4 }
h3cEponEncryptionNoReplyTimeOut OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Encryption response timeout,
ranging from 1 to 2550,
measured in 100 milliseconds.
"
DEFVAL { 30 }
::= { h3cEponSysManEntry 5 }
h3cEponEncryptionUpdateTime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Encryption key update timer for all ONUs on slot,
indicated by h3cEponSlotIndex,
ranging from 1 to 255, measured in seconds.
"
DEFVAL { 10 }
::= { h3cEponSysManEntry 6 }
h3cEponAutoBindStatus OBJECT-TYPE
SYNTAX INTEGER
{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
enable - auto bind ONU ID when the ONU registered in the EPON system.
disable - need manual bind ONU ID when the ONU registered in the EPON system.
"
DEFVAL { disable }
::= { h3cEponSysManEntry 7 }
--
-- h3cEponAutoUpdateTable
--
h3cEponAutoUpdateTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cEponAutoUpdateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
EPON auto update ONU application configuration.
"
::= { h3cEponSysMan 17 }
h3cEponAutoUpdateEntry OBJECT-TYPE
SYNTAX H3cEponAutoUpdateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The entry of the table h3cEponAutoUpdateTable.
"
INDEX
{
h3cEponSlotIndex
}
::= { h3cEponAutoUpdateTable 1 }
H3cEponAutoUpdateEntry ::= SEQUENCE
{
h3cEponAutoUpdateFileName DisplayString,
h3cEponAutoUpdateSchedStatus INTEGER,
h3cEponAutoUpdateSchedTime OCTET STRING,
h3cEponAutoUpdateSchedType INTEGER,
h3cEponAutoUpdateRealTimeStatus INTEGER
}
h3cEponAutoUpdateFileName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The name of ONU application file, the file name must be valid
and include the path. It is a zero length string by default.
"
::= { h3cEponAutoUpdateEntry 1 }
h3cEponAutoUpdateSchedStatus OBJECT-TYPE
SYNTAX INTEGER
{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The status of schedule update configuration.
The h3cEponAutoUpdateFileName must be set before enable
h3cEponAutoUpdateSchedStatus.
enable - enable ONU schedule update.
disable - disable ONU schedule update.
"
DEFVAL { disable }
::= { h3cEponAutoUpdateEntry 2 }
h3cEponAutoUpdateSchedTime OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The schedule update timing configuration is related to
the h3cEponAutoUpdateSchedType.
auto update daily: the string format is hhmm
auto update weekly: the string format is hhmmw
'w' means update weekly, it ranges from 0 to 6:
0 - Sunday.
1 - Monday.
2 - Tuesday.
3 - Wednesday.
4 - Thursday.
5 - Friday.
6 - Saturday.
auto update in coming date : the string format is hhmmyyyymmdd.
The configuration will take effect only if h3cEponAutoUpdateSchedStatus
is enabled.
"
::= { h3cEponAutoUpdateEntry 3 }
h3cEponAutoUpdateSchedType OBJECT-TYPE
SYNTAX INTEGER
{
daily(1),
weekly(2),
comingdate(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The update type of auto updating configuration.
daily - update ONU application every day.
weekly - update ONU application every week.
comingdate - update ONU application on coming date.
"
::= { h3cEponAutoUpdateEntry 4 }
h3cEponAutoUpdateRealTimeStatus OBJECT-TYPE
SYNTAX INTEGER
{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The status of real time update configuration.
The h3cEponAutoUpdateFileName must be set before enable
h3cEponAutoUpdateRealTimeStatus.
enable - enable ONU real time update.
disable - disable ONU real time update.
"
DEFVAL { disable }
::= { h3cEponAutoUpdateEntry 5 }
--
-- h3cEponOuiIndexNextTable
--
h3cEponOuiIndexNextTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cEponOuiIndexNextEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Next OUI index table.
"
::= { h3cEponSysMan 18 }
h3cEponOuiIndexNextEntry OBJECT-TYPE
SYNTAX H3cEponOuiIndexNextEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The entry of the table h3cEponOuiIndexNextTable.
"
INDEX
{
h3cEponSlotIndex
}
::= { h3cEponOuiIndexNextTable 1 }
H3cEponOuiIndexNextEntry ::= SEQUENCE
{
h3cEponOuiIndexNext Integer32
}
h3cEponOuiIndexNext OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
This object contains an appropriate value to be used for
h3cEponOuiIndex when creating rows in the
h3cEponOuiTable.
"
::= { h3cEponOuiIndexNextEntry 1 }
--
-- h3cEponOuiTable
--
h3cEponOuiTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cEponOuiEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
List of OUI and OAM supported by OLT.
"
::= { h3cEponSysMan 19 }
h3cEponOuiEntry OBJECT-TYPE
SYNTAX H3cEponOuiEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The entry of the table h3cEponOuiTable.
"
INDEX
{
h3cEponSlotIndex,
h3cEponOuiIndex
}
::= { h3cEponOuiTable 1 }
H3cEponOuiEntry ::= SEQUENCE
{
h3cEponOuiIndex Integer32,
h3cEponOuiValue OCTET STRING,
h3cEponOamVersion OCTET STRING,
h3cEponOuiRowStatus RowStatus
}
h3cEponOuiIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The index of this table.
"
::= { h3cEponOuiEntry 1 }
h3cEponOuiValue OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..512))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
OUI list supported by the extended OAM discovery process.
The OUI is composed of six octets. The first six octets denote the first OUI ,
the second six octets denote the second OUI, and the like.
"
::= { h3cEponOuiEntry 2 }
h3cEponOamVersion OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..255))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
Version of OAM protocol defined by the organization denoted by OUI.
"
::= { h3cEponOuiEntry 3 }
h3cEponOuiRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
The status of this table entry. Only active,
createAndGo and the destory are supported.
"
::= { h3cEponOuiEntry 4 }
--
-- h3cEponMulticastControlTable
--
h3cEponMulticastControlTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cEponMulticastControlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Multicast control global configuration.
"
::= { h3cEponSysMan 20 }
h3cEponMulticastControlEntry OBJECT-TYPE
SYNTAX H3cEponMulticastControlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The entry of the table h3cEponMulticastControlTable.
"
INDEX
{
h3cEponMulticastVlanId
}
::= { h3cEponMulticastControlTable 1 }
H3cEponMulticastControlEntry ::= SEQUENCE
{
h3cEponMulticastVlanId Integer32,
h3cEponMulticastAddressList OCTET STRING,
h3cEponMulticastStatus RowStatus
}
h3cEponMulticastVlanId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The index of this table.
"
::= { h3cEponMulticastControlEntry 1 }
h3cEponMulticastAddressList OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..255))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
The multicast address, each four octets represents a multicast address,
the address section ranging from the first four octets to the second
four octets, and the like.
"
::= { h3cEponMulticastControlEntry 2 }
h3cEponMulticastStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
The status of this table entry. Only active,
createAndGo and the destory are supported.
"
::= { h3cEponMulticastControlEntry 3 }
h3cEponFileName OBJECT IDENTIFIER ::= { h3cEponMibObjects 2 }
h3cEponDbaUpdateFileName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The name of a binary file which is loaded to
the OLT from an external source. Note that the filename
must contain the file path.
"
::= { h3cEponFileName 1 }
h3cEponOnuUpdateFileName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The filename of the ONU firmware to be updated.
Note that the filename must contain the file path.
"
::= { h3cEponFileName 2 }
h3cEponOltMan OBJECT IDENTIFIER ::= { h3cEponMibObjects 3 }
--
-- h3cOltSysManTable
--
h3cOltSysManTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cOltSysManEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
This table defines several OLT system parameters:
(1)laser on time
(2)laser off time
(3)whether multiple copy broadcast
(4)whether discard packet
(5)self test
(6)self test result
"
::= { h3cEponOltMan 1 }
h3cOltSysManEntry OBJECT-TYPE
SYNTAX H3cOltSysManEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The entry of the table h3cOltSysManTable.
"
INDEX
{
ifIndex
}
::= { h3cOltSysManTable 1 }
H3cOltSysManEntry ::= SEQUENCE
{
h3cOltLaserOnTime Integer32,
h3cOltLaserOffTime Integer32,
h3cOltMultiCopyBrdCast TruthValue,
h3cOltEnableDiscardPacket TruthValue,
h3cOltSelfTest INTEGER,
h3cOltSelfTestResult INTEGER,
h3cOltMaxRtt Unsigned32
}
h3cOltLaserOnTime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The laser on time of the ONUs during the
discovery process, measured in Time Quanta(TQ).
"
DEFVAL { 96 }
::= { h3cOltSysManEntry 1 }
h3cOltLaserOffTime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The laser off time of the ONUs during the
discovery process, measured in TQ.
"
DEFVAL { 96 }
::= { h3cOltSysManEntry 2 }
h3cOltMultiCopyBrdCast OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
true/false filtering of tagged multicast frames.
The software avert tagged downstream frames with
multicast or broadcast DA to the PON and not to the
CPU, except for special multicast frames
(link-constraint, IGMP control and ARP) that are
passed to the CPU regardless of this feature.
"
DEFVAL { false }
::= { h3cOltSysManEntry 3 }
h3cOltEnableDiscardPacket OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Forward(false)/discard(true) any frames received from
unlearned source address when the inside address
table of the original ONU entry reach to the limit.
"
DEFVAL { false }
::= { h3cOltSysManEntry 4 }
h3cOltSelfTest OBJECT-TYPE
SYNTAX INTEGER
{
selftest(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
selftest(1): Test OLT to check whether it's OK.
"
::= { h3cOltSysManEntry 5 }
h3cOltSelfTestResult OBJECT-TYPE
SYNTAX INTEGER
{
other(1),
ok(2),
fail(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The self test result of the specific OLT.
other(1): The self test result is another reason.
ok(2): The self test result is OK.
fail(3): The self test result is fail.
"
::= { h3cOltSysManEntry 6 }
h3cOltMaxRtt OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Set the max Round Trip Time of this OLT.
"
::= { h3cOltSysManEntry 7 }
--
-- h3cOltInfoTable
--
h3cOltInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cOltInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Primary status of the specified OLT.
There will be one row in this table for each
information in the system.
(1)Software and hardware versions of the specified OLT
(h3cOltFirmMajorVersion, h3cOltFirmMinorVersion,
h3cOltHardMajorVersion, h3cOltHardMinorVersion)
(2)Several physical capabilities of an OLT device.
(h3cOltAgcLockTime, h3cOltAgcCdrTime)
(3)The operation(activation) status of an OLT.
(h3cOltMacAddress, h3cOltWorkMode)
"
::= { h3cEponOltMan 2 }
h3cOltInfoEntry OBJECT-TYPE
SYNTAX H3cOltInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The entry of the table h3cOltInfoTable.
"
INDEX
{
ifIndex
}
::= { h3cOltInfoTable 1 }
H3cOltInfoEntry ::= SEQUENCE
{
h3cOltFirmMajorVersion OCTET STRING,
h3cOltFirmMinorVersion OCTET STRING,
h3cOltHardMajorVersion OCTET STRING,
h3cOltHardMinorVersion OCTET STRING,
h3cOltAgcLockTime Integer32,
h3cOltAgcCdrTime Integer32,
h3cOltMacAddress MacAddress,
h3cOltWorkMode INTEGER,
h3cOltOpticalPowerTx Integer32,
h3cOltOpticalPowerRx Integer32
}
h3cOltFirmMajorVersion OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
OLT firmware major version. If the object length is
zero, it means the version is unknown.
"
::= { h3cOltInfoEntry 1 }