Commit version 24.12.13800
This commit is contained in:
@ -1,9 +1,9 @@
|
||||
-- ============================================================================
|
||||
-- Copyright (C) 2016 by HUAWEI TECHNOLOGIES. All rights reserved.
|
||||
-- Copyright (C) 2017 by HUAWEI TECHNOLOGIES. All rights reserved.
|
||||
-- Description: This MIB is used for defining Huawei's XDSL common management MIB
|
||||
-- objects, which provides XDSL management NMS interfaces.
|
||||
-- Reference:
|
||||
-- Version: V1.32
|
||||
-- Version: V1.35
|
||||
-- ============================================================================
|
||||
|
||||
HUAWEI-XDSL-COMMON-MIB DEFINITIONS ::= BEGIN
|
||||
@ -22,7 +22,7 @@
|
||||
FROM HUAWEI-TC-MIB;
|
||||
|
||||
hwXdslCommon MODULE-IDENTITY
|
||||
LAST-UPDATED "201609260000Z"
|
||||
LAST-UPDATED "201711240000Z"
|
||||
ORGANIZATION "Huawei Technologies Co.,Ltd."
|
||||
CONTACT-INFO
|
||||
"Huawei Industrial Base
|
||||
@ -36,6 +36,16 @@
|
||||
which provides XDSL management NMS interfaces.
|
||||
"
|
||||
-- Revision history
|
||||
|
||||
REVISION "201711240000Z"
|
||||
DESCRIPTION "V1.35, Add the definition of the table hwXdslPortRateChangeReportConfig."
|
||||
|
||||
REVISION "201701120000Z"
|
||||
DESCRIPTION "V1.34, Modified the description of leaf node hwXdslGfastCableOptimizationCableType."
|
||||
|
||||
REVISION "201611020000Z"
|
||||
DESCRIPTION "V1.33, Add leaf node hwXdslAttndrStandardMethod."
|
||||
|
||||
REVISION "201609260000Z"
|
||||
DESCRIPTION "V1.32, Modified the description of the node hwXdslBypassRelayMode."
|
||||
|
||||
@ -203,6 +213,7 @@
|
||||
hwXdslGfastPowerAutoAllocationConfig OBJECT IDENTIFIER ::= { hwXdslCommonMib 17 }
|
||||
hwXdslBypassRelayModeConfig OBJECT IDENTIFIER ::= { hwXdslCommonMib 18 }
|
||||
hwXdslGfastCableOptimizationConfig OBJECT IDENTIFIER ::= { hwXdslCommonMib 19 }
|
||||
hwXdslPortRateChangeReportConfig OBJECT IDENTIFIER ::= { hwXdslCommonMib 20 }
|
||||
hwXdslTrapsVbOids OBJECT IDENTIFIER ::= { hwXdslCommon 2 }
|
||||
hwXdslTraps OBJECT IDENTIFIER ::= { hwXdslCommon 3 }
|
||||
hwXdslCommonTraps OBJECT IDENTIFIER ::= { hwXdslTraps 1 }
|
||||
@ -589,7 +600,8 @@
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This parameter specifies the method to be used for the calculation of the ATTNDR
|
||||
in the downstream and upstream direction. The parameter can take three values 0, 1 and 2.
|
||||
in the downstream and upstream direction. The parameter can take three values 0, 1 and 2.
|
||||
Default values: attndrMethod1.
|
||||
Options:
|
||||
1. attndrMethod0(0) - The basic Attainable Net Data Rate method
|
||||
2. attndrMethod1(1) - The improved Attainable Net Data Rate method, If the control
|
||||
@ -601,10 +613,30 @@
|
||||
3. attndrMethod2(2) - The improved Attainable Net Data Rate method, If the control parameter
|
||||
attndr_method is set to a value of 2, the VTU-O and VTU-R shall use an
|
||||
impulse noise protection limit INP_MIN0 = 0
|
||||
|
||||
Note: When hwXdslAttndrStandardMethod set to no, the VTU-O will use a vendor discretionary algorithm
|
||||
to optimize the ATTNDR.
|
||||
"
|
||||
REFERENCE "ITU-T G.993.2, paragraph 11.4.1.1.7"
|
||||
::= { hwXdslAttndrConfig 1 }
|
||||
|
||||
hwXdslAttndrStandardMethod OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
yes(1),
|
||||
no(2)
|
||||
}
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This parameter specifies whether ATTNDR is calculated based on attndrMethod1 and attndrMethod2 required by the G.993.2 standard.
|
||||
Default values: no.
|
||||
Options:
|
||||
1. yes(1) - ATTNDR is calculated based on attndrMethod1 and attndrMethod2 required by the G.993.2 standard.
|
||||
2. no(2) - ATTNDR is modified based on the calculation of attndrMethod1 and attndrMethod2 required by the G.993.2 standard.
|
||||
"
|
||||
::= { hwXdslAttndrConfig 2 }
|
||||
|
||||
hwXdslADSL1INPAdaption OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
{
|
||||
@ -1130,7 +1162,7 @@
|
||||
DESCRIPTION
|
||||
"
|
||||
Description: Cable type.
|
||||
Default values: TP100
|
||||
Default values: tp100(4)
|
||||
Options:
|
||||
1. atis(1) - ATIS
|
||||
2. quad(2) - Quad
|
||||
@ -1140,6 +1172,60 @@
|
||||
"
|
||||
::= { hwXdslGfastCableOptimizationConfig 2 }
|
||||
|
||||
hwXdslRateChangeReportThresholdDs OBJECT-TYPE
|
||||
SYNTAX Gauge32 (0..500000000)
|
||||
UNITS "bit/s"
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"XDSL rate change report threshold in the downstream direction, default is 500000."
|
||||
::= { hwXdslPortRateChangeReportConfig 1 }
|
||||
|
||||
hwXdslRateChangeReportThresholdUs OBJECT-TYPE
|
||||
SYNTAX Gauge32 (0..500000000)
|
||||
UNITS "bit/s"
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"XDSL rate change report threshold in the upstream direction, default is 500000."
|
||||
::= { hwXdslPortRateChangeReportConfig 2 }
|
||||
|
||||
hwXdslRateChangeReportPeriod OBJECT-TYPE
|
||||
SYNTAX Gauge32 (0..86400)
|
||||
UNITS "seconds"
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"XDSL rate change report period, default is 10."
|
||||
::= { hwXdslPortRateChangeReportConfig 3 }
|
||||
|
||||
hwGfastRateChangeReportThresholdDs OBJECT-TYPE
|
||||
SYNTAX Gauge32 (0..2000000000)
|
||||
UNITS "bit/s"
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"G.fast rate change report threshold in the downstream direction, default is 500000."
|
||||
::= { hwXdslPortRateChangeReportConfig 4 }
|
||||
|
||||
hwGfastRateChangeReportThresholdUs OBJECT-TYPE
|
||||
SYNTAX Gauge32 (0..2000000000)
|
||||
UNITS "bit/s"
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"G.fast rate change report threshold in the upstream direction, default is 500000."
|
||||
::= { hwXdslPortRateChangeReportConfig 5 }
|
||||
|
||||
hwGfastlRateChangeReportPeriod OBJECT-TYPE
|
||||
SYNTAX Gauge32 (0..86400)
|
||||
UNITS "seconds"
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"G.fast rate change report period, default is 60."
|
||||
::= { hwXdslPortRateChangeReportConfig 6 }
|
||||
|
||||
-- Vboids
|
||||
hwXdslDynamicCollectResult OBJECT-TYPE
|
||||
SYNTAX INTEGER
|
||||
|
Reference in New Issue
Block a user