forked from AlexandreYang/snmp-mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
A3COM-HUAWEI-EPON-UNI-MIB
executable file
·2052 lines (1877 loc) · 60.6 KB
/
A3COM-HUAWEI-EPON-UNI-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) 2003 by HUAWEI-3Com TECHNOLOGIES. All rights reserved.
--
-- Description: HUAWEI LAN Switch huawei-3com epon MIB
-- Reference: IF-MIB
-- Version: V1.7
-- History:
-- V1.0 created by liuhongxu.
-- Initial version 2006-01-10
-- V1.1 Updated by chenzhaojie
-- Add enumeration values to h3cEponUniVlanType
-- V1.2 Updated by chenzhaojie 2006-08-02
-- Add h3cEponUniOutDroppedFrames
-- V1.3 Updated by chenzhaojie 2007-05-21
-- Add h3cEponUniScalarGroup
-- Add enumeration values to h3cEponUniVlanType
-- Add h3cEponUniPortIsolate, h3cEponUniVlanConfiguration
-- h3cEponUniAutoNegotiation, h3cEponUniRestartAutoNeg,
-- h3cEponUniLinkStatus, h3cEponUniInterfaceType
-- to h3cEponUniSysManTable.
-- Add h3cEponUniPortPolicyTable, h3cEponUniMulticastTable.
-- Add h3cEponUniMulticastControlTable, h3cEponUniQosConfIndexNextTable,
-- h3cEponUniQosConfTable, h3cEponUniQosRuleTable.
-- V1.4 Updated by liuhongxu,andapeng 2007-10-13
-- Add h3cEponUniMulticastFastleave to h3cEponUniMulticastTable
-- Add h3cEponUniMulticastIndex to h3cEponUniMulticastControlTable
-- Add h3cEponUniVitualCableTest to h3cEponUniSysManTable
-- Add h3cEponUniMirrorGroupTable, h3cEponUniMirrorGroupIdNextTable
-- Add h3cEponUniMulticastCtrlInfoTable
-- Add h3cEponUniPortPolicyInboundCir,h3cEponUniPortPolicyInboundBucketDepth,
-- h3cEponUniPortPolicyInboundExtraBurst,h3cEponUniPortPolicyOutboundCir
-- to h3cEponUniPortPolicyTable.
-- Add h3cEponUniMulticastIndexNextTable
-- Modify h3cEponUniInterfaceType
-- V1.5 Updated by maguoqiang,wangke,zhaodan 2008-1-14
-- Deleted default values of these leaves:
-- h3cEponUniMdi,h3cEponUniPriority, h3cEponUniVlanType, h3cEponUniFlowControl,
-- h3cEponUniDuplex, h3cEponUniVlanVPNStatus, h3cEponUniPortIsolate,
-- h3cEponUniAutoNegotiation, h3cEponUniVitualCableTest
-- Add h3cEponUniMulticastSourceIpList to h3cEponUniMulticastControlTable
-- Add h3cEponUniMulticastResetInterval to h3cEponUniMulticastControlTable
-- Modify h3cEponUniVCTCableStatus and add 9 nodes:
-- Add h3cEponUniVCTCableLength
-- h3cEponUniVCTImpedanceMismatch
-- h3cEponUniVCTPairSkew
-- h3cEponUniVCTPairSwap
-- h3cEponUniVCTPolaritySwap
-- h3cEponUniVCTInsertionLoss
-- h3cEponUniVCTReturnLoss
-- h3cEponUniVCTNearendCrosstalk to h3cEponUniSysManTable
-- V1.6 Updated by zoudian 2008-3-17
-- Add h3cEponUniPortPolicyOutboundPir to h3cEponUniPortPolicyTable
-- Mofify h3cEponUniPortPolicyOutboundCir
-- V1.7 Updated by zhaodan 2008-06-04
-- Add h3cEponUniLinkUpTrap and h3cEponUniLinkDownTrap.
-- Modify the MAX-ACCESS of h3cEponUniIndex to accessible-for-notify.
-- =================================================================
A3COM-HUAWEI-EPON-UNI-MIB DEFINITIONS ::= BEGIN
IMPORTS
h3cEpon
FROM A3COM-HUAWEI-OID-MIB
ifIndex, ifDescr
FROM IF-MIB
Integer32, Unsigned32, IpAddress, OBJECT-TYPE, MODULE-IDENTITY,
NOTIFICATION-TYPE
FROM SNMPv2-SMI
MacAddress, TruthValue, RowStatus
FROM SNMPv2-TC;
h3cEponUni MODULE-IDENTITY
LAST-UPDATED "200807281743Z"
ORGANIZATION
"Hangzhou H3C Technologies Co., Ltd."
CONTACT-INFO
"Platform Team Hangzhou 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 UNI (user network interface)
which is based on the ONU(Optical Network Unit)."
::= { h3cEpon 5 }
h3cEponUniSysMan OBJECT IDENTIFIER ::= { h3cEponUni 1 }
h3cEponUniSysManTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cEponUniSysManEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table defines several UNI system parameters."
::= { h3cEponUniSysMan 1 }
h3cEponUniSysManEntry OBJECT-TYPE
SYNTAX H3cEponUniSysManEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry of h3cEponUniSysManTable."
INDEX
{
ifIndex,
h3cEponUniIndex
}
::= { h3cEponUniSysManTable 1 }
H3cEponUniSysManEntry ::= SEQUENCE
{
h3cEponUniIndex Integer32,
h3cEponUniDescr OCTET STRING,
h3cEponUniAdminStatus INTEGER,
h3cEponUniMdi INTEGER,
h3cEponUniPriority Integer32,
h3cEponUniVlanType INTEGER,
h3cEponUniAccessVlan Integer32,
h3cEponUniTrunkPvid INTEGER,
h3cEponUniVLANTrunkAllowListLow OCTET STRING,
h3cEponUniVLANTrunkAllowListHigh OCTET STRING,
h3cEponUniInboundLineRate Integer32,
h3cEponUniOutboundLineRate Integer32,
h3cEponUniFlowControl TruthValue,
h3cEponUniSpeed INTEGER,
h3cEponUniDuplex INTEGER,
h3cEponUniVlanVPNStatus TruthValue,
h3cEponUniCountReset INTEGER,
h3cEponUniPortIsolate INTEGER,
h3cEponUniVlanConfiguration OCTET STRING,
h3cEponUniAutoNegotiation INTEGER,
h3cEponUniRestartAutoNeg INTEGER,
h3cEponUniLinkStatus INTEGER,
h3cEponUniInterfaceType INTEGER,
h3cEponUniVitualCableTest INTEGER,
h3cEponUniVCTCableStatus INTEGER,
h3cEponUniVCTCableLength Integer32,
h3cEponUniVCTImpedanceMismatch INTEGER,
h3cEponUniVCTPairSkew Integer32,
h3cEponUniVCTPairSwap INTEGER,
h3cEponUniVCTPolaritySwap INTEGER,
h3cEponUniVCTInsertionLoss Integer32,
h3cEponUniVCTReturnLoss Integer32,
h3cEponUniVCTNearendCrosstalk Integer32
}
h3cEponUniIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The index value which uniquely identifies the FE(fast Ethernet)
interface of the ONU."
::= { h3cEponUniSysManEntry 1 }
h3cEponUniDescr OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A textual string containing information about the interface. This
string should include the name of the manufacturer, the product name
and the version of the interface hardware and software."
::= { h3cEponUniSysManEntry 2 }
h3cEponUniAdminStatus OBJECT-TYPE
SYNTAX INTEGER
{
up(1),
down(2),
testing(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The desired state of the user network interface. When a managed
system initializes, all user network interfaces start with down(2)
state. The testing(3)state indicates that no operational packets
can be passed. As a result of either explicit management action or
per configuration information retained by the managed system,
h3cEponUniAdminStatus is then changed to either the up(1) or
testing(3) states (or remains in the down(2) state)."
::= { h3cEponUniSysManEntry 3 }
h3cEponUniMdi OBJECT-TYPE
SYNTAX INTEGER
{
mdi-ii(1),
mdi-x(2),
mdi-auto(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Type of the line connected to UNI interface:
mdi-ii(straight-through cable),
mdi-x (crossover cable),
mdi-auto (auto-sensing)."
::= { h3cEponUniSysManEntry 4 }
h3cEponUniPriority OBJECT-TYPE
SYNTAX Integer32(0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The priority of user network interface. If the value is larger,
the priority will be higher."
::= { h3cEponUniSysManEntry 5 }
h3cEponUniVlanType OBJECT-TYPE
SYNTAX INTEGER
{
vlantrunk(1),
access(2),
hybrid(3),
untagged(4),
transparent(5),
doubletagged(6),
tag(7),
translation(8)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"UNI vlan types."
::= { h3cEponUniSysManEntry 6 }
h3cEponUniAccessVlan OBJECT-TYPE
SYNTAX Integer32(1..4094)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The vlan ID assigned to untagged frames or Priority-Tagged
frames received on user network interface."
::= { h3cEponUniSysManEntry 7 }
h3cEponUniTrunkPvid OBJECT-TYPE
SYNTAX INTEGER(1..4094)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"PVID(port vlan ID), the vlan ID assigned to untagged frames or
Priority-Tagged frames received on user network interface."
::= { h3cEponUniSysManEntry 8 }
h3cEponUniVLANTrunkAllowListLow OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Each octet within this value specifies a set of eight vlans,
with the first octet specifying vlans 1 through 8, the second
octet specifying vlans 9 through 16, etc. Within each octet,
the most significant bit represents the highest numbered VLAN,
and the least significant bit represents the lowest numbered VLAN.
Thus, each allowed vlan of the trunk port is represented by a
single bit within the value of this object. If that bit has a value
of '1' then that vlan is allowed in the set of vlans. the vlan
is not allowed if its bit has a value of '0'."
::= { h3cEponUniSysManEntry 9 }
h3cEponUniVLANTrunkAllowListHigh OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Each octet within this value specifies a set of eight vlans,
with the first octet specifying vlans 2049 through 2056, the
second octet specifying vlans 2057 through 2064, etc. Within
each octet, the most significant bit represents the highest
numbered vlan, and the least significant bit represents the
lowest numbered vlan. Thus, each allowed vlan of the trunk port
is represented by a single bit within the value of this object.
If that bit has a value of '1' then that vlan is allowed in the
set of vlans; the vlan is not allowed if its bit has a value of '0'.
"
::= { h3cEponUniSysManEntry 10 }
h3cEponUniInboundLineRate OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the inbound line-rate. measured with kbps.
The upper limit of the line-rate is the value of
h3cEponUniLineRateMax in the entry. It must be multiple
of the value of h3cEponUniLineRateStep. The default value of
h3cEponUniLineRate is the value of h3cEponUniLineRateMax."
::= { h3cEponUniSysManEntry 11 }
h3cEponUniOutboundLineRate OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the outbound line-rate. measured with kbps.
The upper limit of the line-rate is the value of
h3cEponUniLineRateMax in the entry. It must be multiple
of the value of h3cEponUniLineRateStep. The default value of
h3cEponUniLineRate is the value of h3cEponUniLineRateMax."
::= { h3cEponUniSysManEntry 12 }
h3cEponUniFlowControl OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Flow control status.
true(1) - Flow control status enable.
false(2) - Flow control status disable."
::= { h3cEponUniSysManEntry 13 }
h3cEponUniSpeed OBJECT-TYPE
SYNTAX INTEGER
{
auto(0),
s10M(10),
s100M(100),
s1000M(1000),
s10000M(10000),
s24000M(24000)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"User network interface speed."
::= { h3cEponUniSysManEntry 14 }
h3cEponUniDuplex OBJECT-TYPE
SYNTAX INTEGER
{
full(1),
half(2),
auto(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"User network interface mode."
::= { h3cEponUniSysManEntry 15 }
h3cEponUniVlanVPNStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"vlan VPN status.
true(1) - vlan VPN status enable.
false(2) - vlan VPN disable."
::= { h3cEponUniSysManEntry 16 }
h3cEponUniCountReset OBJECT-TYPE
SYNTAX INTEGER
{
reset(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Reset the counter which is about packets of the interface,
then the counter will change to zero. There is no sense in
reading this object."
::= { h3cEponUniSysManEntry 17 }
h3cEponUniPortIsolate OBJECT-TYPE
SYNTAX INTEGER
{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
enable - enable UNI port isolate setting.
disable - disable UNI port isolate setting.
"
::= { h3cEponUniSysManEntry 18 }
h3cEponUniVlanConfiguration OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The vlan configuration of the related vlan mode.
Transparent vlan mode: h3cEponUniVlanConfiguration is a
zero length string.
Tag vlan mode: the first four octets were the tag
assigned to untagged frames received on UNI, including TPID,
VID,CFI and priority.
Translation vlan mode: the first four octets were the old tag
(including TPID, VID, CFI and priority), which is replaced
by the new tag(including TPID, VID, CFI and priority),
the second four octets.
"
::= { h3cEponUniSysManEntry 23 }
h3cEponUniAutoNegotiation OBJECT-TYPE
SYNTAX INTEGER
{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
enable - enable auto negotiation.
disable - disable auto negotiation.
"
::= { h3cEponUniSysManEntry 25 }
h3cEponUniRestartAutoNeg OBJECT-TYPE
SYNTAX INTEGER
{
autoNegotiation(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Force to restart the auto negotiation process.
"
::= { h3cEponUniSysManEntry 26 }
h3cEponUniLinkStatus OBJECT-TYPE
SYNTAX INTEGER
{
up(1),
down(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The link status of UNI.
"
::= { h3cEponUniSysManEntry 29 }
h3cEponUniInterfaceType OBJECT-TYPE
SYNTAX INTEGER
{
gigabitethernetport(1),
fastethernetport(2),
voipport(3),
e1port(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
UNI interface type.
"
::= { h3cEponUniSysManEntry 30 }
-- BEGIN for UNI VCT
h3cEponUniVitualCableTest OBJECT-TYPE
SYNTAX INTEGER{true(1),
false(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
True(1): Virtual cable test enable.
False(2): Virtual cable test disable."
DEFVAL{ false }
::= { h3cEponUniSysManEntry 31 }
h3cEponUniVCTCableStatus OBJECT-TYPE
SYNTAX INTEGER{normal(1),
abnormal(2),
abnormalOpen(3),
abnormalShort(4),
failure(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Get the cable status.
Normal(1),cable is normal.
Abnormal(2),cable is abnormal.
AbnormalOpen(3),cable is abnormal because of open circuit.
AbnormalShort(4),cable is abnormal because of short circuit.
Failure(5),cable is abnormal because of testing failure.
"
::= { h3cEponUniSysManEntry 32 }
h3cEponUniVCTCableLength OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Get the cable length.
When h3cEponUniVCTCableStatus is normal,
the node stands for the length from the UNI port to the port opposite.
When h3cEponUniVCTCableStatus is abnormal,
it stands for the lengh from the UNI port to the failure place.
Unit:meter(m).
"
::= { h3cEponUniSysManEntry 33 }
h3cEponUniVCTImpedanceMismatch OBJECT-TYPE
SYNTAX INTEGER{not-support(1),
true(2),
false(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Get the cable impedance.
Not-support(1),the UNI port does not support this function.
True(2),impedance match.
False(3),impedance mismatch."
::= { h3cEponUniSysManEntry 34 }
h3cEponUniVCTPairSkew OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Get the symmetry of cable.
If the function is not supported ,
the default value 0 will be returned.
Unit:nanosecond(ns).
"
::= { h3cEponUniSysManEntry 35 }
h3cEponUniVCTPairSwap OBJECT-TYPE
SYNTAX INTEGER{notSupport(1),
true(2),
false(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
NotSupport(1),the UNI port does not support this function.
True(2),pair swap.
False(3),not pair swap."
::= { h3cEponUniSysManEntry 36 }
h3cEponUniVCTPolaritySwap OBJECT-TYPE
SYNTAX INTEGER{notSupport(1),
true(2),
false(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
NotSupport(1),the UNI port does not support this function.
True(2),polarity swap.
False(3),not polarity swap."
::= { h3cEponUniSysManEntry 37 }
h3cEponUniVCTInsertionLoss OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
If the function is not supported ,
the default value 0 will be returned.
Unit:decibel(db).
"
::= { h3cEponUniSysManEntry 38 }
h3cEponUniVCTReturnLoss OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
If the function is not supported ,
the default value 0 will be returned.
Unit:decibel(db).
"
::= { h3cEponUniSysManEntry 39 }
h3cEponUniVCTNearendCrosstalk OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
If the function is not supported ,
the default value 0 will be returned.
Unit:decibel(db).
"
::= { h3cEponUniSysManEntry 40 }
-- END for UNI VCT
h3cEponUniCountTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cEponUniCountEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of interface counter about frames entries."
::= { h3cEponUniSysMan 2 }
h3cEponUniCountEntry OBJECT-TYPE
SYNTAX H3cEponUniCountEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing management information applicable
to a particular interface."
INDEX
{
ifIndex,
h3cEponUniIndex
}
::= { h3cEponUniCountTable 1 }
H3cEponUniCountEntry ::= SEQUENCE
{
h3cEponUniInStatsPkts Unsigned32,
h3cEponUniInStatsUnicastPkts Unsigned32,
h3cEponUniInStatsBroadcastPkts Unsigned32,
h3cEponUniInStatsMulticastPkts Unsigned32,
h3cEponUniInPausePkts Unsigned32,
h3cEponUniInTotalErrors Unsigned32,
h3cEponUniInStatsCRCAlignErrors Unsigned32,
h3cEponUniInStatsUndersizePkts Unsigned32,
h3cEponUniInStatsOversizePkts Unsigned32,
h3cEponUniInErrorbyOther Unsigned32,
h3cEponUniOutStatsPkts Unsigned32,
h3cEponUniOutStatsUnicastPkts Unsigned32,
h3cEponUniOutStatsBroadcastPkts Unsigned32,
h3cEponUniOutStatsMulticastPkts Unsigned32,
h3cEponUniOutStatsPausePkts Unsigned32,
h3cEponUniOutTotalErrors Unsigned32,
h3cEponUniOutStatsCollisions Unsigned32,
h3cEponUniOutDelayExceededDiscards Unsigned32,
h3cEponUniOutErrorbyOther Unsigned32,
h3cEponUniOutDroppedFrames Unsigned32
}
h3cEponUniInStatsPkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of frames (including bad frames,
broadcast frames, and multicast frames) received."
::= { h3cEponUniCountEntry 1 }
h3cEponUniInStatsUnicastPkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of good frames received that are
directed to the unicast address. Note that this
does not include multicast and broadcast frames."
::= { h3cEponUniCountEntry 2 }
h3cEponUniInStatsBroadcastPkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of good frames received that are
directed to the broadcast address. Note that this
does not include multicast frames."
::= { h3cEponUniCountEntry 3 }
h3cEponUniInStatsMulticastPkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of good frames received that are
directed to a multicast address. Note that this number
does not include frames directed to the broadcast address."
::= { h3cEponUniCountEntry 4 }
h3cEponUniInPausePkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of MAC Control frames received on this
interface by the pause(flow control) operation.
This counter does not increment when the
interface is in a half-duplex mode.
Discontinuities in the value of this counter can
occur at re-initialization of the management
system."
::= { h3cEponUniCountEntry 5 }
h3cEponUniInTotalErrors OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total count of the error frames received on this interface."
::= { h3cEponUniCountEntry 6 }
h3cEponUniInStatsCRCAlignErrors OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of frames received that
had a length (excluding framing bits, but
including FCS octets) of 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)."
::= { h3cEponUniCountEntry 7 }
h3cEponUniInStatsUndersizePkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of frames received that are
less than 64 octets long (excluding framing bits,
but including FCS octets) and are otherwise well formed."
::= { h3cEponUniCountEntry 8 }
h3cEponUniInStatsOversizePkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of frames received that are
longer than 1518 octets (excluding framing bits,
but including FCS octets) and are otherwise well formed."
::= { h3cEponUniCountEntry 9 }
h3cEponUniInErrorbyOther OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of error frames received on this interface."
::= { h3cEponUniCountEntry 10 }
h3cEponUniOutStatsPkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of frames (including bad frames,
broadcast frames, and multicast frames) sent."
::= { h3cEponUniCountEntry 11 }
h3cEponUniOutStatsUnicastPkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of good frames sent that are
directed to the unicast address. Note that this
does not include multicast and broadcast frames."
::= { h3cEponUniCountEntry 12 }
h3cEponUniOutStatsBroadcastPkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of good frames sent that are
directed to the broadcast address. Note that this
does not include multicast frames."
::= { h3cEponUniCountEntry 13 }
h3cEponUniOutStatsMulticastPkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of good frames sent that are
directed to a multicast address. Note that this number
does not include frames directed to the broadcast address."
::= { h3cEponUniCountEntry 14 }
h3cEponUniOutStatsPausePkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of MAC control frames sent on this
interface by the pause operation. This counter does
not increment when the interface is in a half-duplex mode.
Discontinuities in the value of this counter can
occur at re-initialization of the management system."
::= { h3cEponUniCountEntry 15 }
h3cEponUniOutTotalErrors OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of error frames sent on this interface."
::= { h3cEponUniCountEntry 16 }
h3cEponUniOutStatsCollisions OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The best estimate of the total number of collisions
on this Ethernet segment.
The value returned will depend on the location of the
RMON probe. Section 8.2.1.3 (10BASE-5) and section
10.3.1.3 (10BASE-2) of IEEE standard 802.3 states that a
station must detect a collision, in the receive mode, if
three or more stations are transmitting simultaneously. A
repeater port must detect a collision when two or more
stations are transmitting simultaneously. Thus a probe
placed on a repeater port could record more collisions
than a probe connected to a station on the same segment
could. Probe location plays a much smaller role when considering
10BASE-T. 14.2.1.4 (10BASE-T) of IEEE standard 802.3
defines a collision as the simultaneous presence of signals
on the DO and RD circuits (transmitting and receiving
at the same time). A 10BASE-T station can only detect
collisions when it is transmitting. Thus probes placed on
a station and a repeater, should report the same number of
collisions. Note also that an RMON probe inside a repeater should
ideally report collisions between the repeater and one or
more other hosts (transmit collisions as defined by IEEE
802.3k) plus receiver collisions observed on any coax
segments to which the repeater is connected."
::= { h3cEponUniCountEntry 17 }
h3cEponUniOutDelayExceededDiscards OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of frames discarded by this port due
to excessive transit delay through the bridge. It
is incremented by both transparent and source route bridges."
::= { h3cEponUniCountEntry 18 }
h3cEponUniOutErrorbyOther OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of other error frames sent on this interface.
Other error frames means the error frames out of collision frames
and excessive delayed frames."
::= { h3cEponUniCountEntry 19 }
h3cEponUniOutDroppedFrames OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The total number of frames dropped because of buffer failure.
"
::= { h3cEponUniCountEntry 20 }
h3cEponUniIgmpInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cEponUniIgmpInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table stores igmp information of UNI interface."
::= { h3cEponUniSysMan 3 }
h3cEponUniIgmpInfoEntry OBJECT-TYPE
SYNTAX H3cEponUniIgmpInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry of h3cEponUniIgmpInfoTable."
INDEX
{
ifIndex,
h3cEponUniIndex,
h3cEponUniMacIndex
}
::= { h3cEponUniIgmpInfoTable 1 }
H3cEponUniIgmpInfoEntry ::= SEQUENCE
{
h3cEponUniMacIndex Integer32,
h3cEponUniIgmpMacAddress MacAddress,
h3cEponUniIgmpVlanId Integer32
}
h3cEponUniMacIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index uniquely identifies the igmp information in current
UNI interface."
::= { h3cEponUniIgmpInfoEntry 1 }
h3cEponUniIgmpMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A 6-octet read-only value carrying the individual MAC address
indicates which igmp group the UNI interface belonging to."
::= { h3cEponUniIgmpInfoEntry 2 }
h3cEponUniIgmpVlanId OBJECT-TYPE
SYNTAX Integer32(1..4094)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An integer range from 1 to 4094 indicates the vlan which the igmp
Mac address has joined in."
::= { h3cEponUniIgmpInfoEntry 3 }
h3cEponUniParaMan OBJECT IDENTIFIER ::= { h3cEponUniSysMan 4 }
h3cEponUniLineRateMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum value of the line-rate(kbps) that user network
interface can be set."
::= { h3cEponUniParaMan 1 }
h3cEponUniLineRateStep OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The step of line-rate(kbps)."
::= { h3cEponUniParaMan 2 }
h3cEponUniNumberOnOnu OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The user network interface number on ONU."
::= { h3cEponUniParaMan 3 }
h3cEponUniScalarGroup OBJECT IDENTIFIER ::= { h3cEponUniSysMan 5 }
--
-- h3cEponUniPortPolicyTable
--
h3cEponUniPortPolicyTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cEponUniPortPolicyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
UNI port policy configuration.
"
::= { h3cEponUniSysMan 6 }
h3cEponUniPortPolicyEntry OBJECT-TYPE
SYNTAX H3cEponUniPortPolicyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The entry of h3cEponUniPortPolicyTable.
"
INDEX
{
ifIndex,
h3cEponUniIndex
}
::= { h3cEponUniPortPolicyTable 1 }
H3cEponUniPortPolicyEntry ::= SEQUENCE
{
h3cEponUniPortPolicyStatus INTEGER,
h3cEponUniPortPolicyCir Integer32,
h3cEponUniPortPolicyBucketDepth Integer32,
h3cEponUniPortPolicyExtraBurst Integer32,
h3cEponUniPortPolicyInboundCir Integer32,
h3cEponUniPortPolicyInboundBucketDepth Integer32,
h3cEponUniPortPolicyInboundExtraBurst Integer32,
h3cEponUniPortPolicyOutboundCir Integer32,
h3cEponUniPortPolicyOutboundPir Integer32
}
h3cEponUniPortPolicyStatus OBJECT-TYPE
SYNTAX INTEGER
{