⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ieee802dot11mib.mib

📁 vworks 下wlan的实现代码
💻 MIB
📖 第 1 页 / 共 5 页
字号:
        MAX-ACCESS read-only        STATUS current        DESCRIPTION        "There are different operating temperature requirements        dependent on the anticipated environmental conditions. This        attribute describes the current PHY's operating temperature        range capability. Currently defined values and their        corresponding temperature ranges are:        Type 1 = X'01'-Commercial range of 0 to 40 degrees C,        Type 2 = X'02'-Industrial range of -30 to 70 degrees C."    ::= {   dot11PhyOperationEntry 3 }-- **********************************************************************-- *    End of dot11PhyOperation  TABLE-- **********************************************************************-- **********************************************************************-- *    dot11PhyAntenna  TABLE-- **********************************************************************dot11PhyAntennaTable OBJECT-TYPE        SYNTAX SEQUENCE OF Dot11PhyAntennaEntry        MAX-ACCESS not-accessible        STATUS current        DESCRIPTION            "Group of attributes for PhyAntenna.  Implemented as a            table indexed on ifIndex to allow for multiple instances on            an agent."    ::= {  dot11phy 2}dot11PhyAntennaEntry OBJECT-TYPE        SYNTAX Dot11PhyAntennaEntry        MAX-ACCESS not-accessible        STATUS current        DESCRIPTION            "An entry in the dot11PhyAntenna Table.            ifIndex - Each 802.11 interface is represented by an            ifEntry.  Interface tables in this MIB module are indexed            by ifIndex."        INDEX {ifIndex}    ::= {  dot11PhyAntennaTable 1 }Dot11PhyAntennaEntry ::= SEQUENCE {             dot11CurrentTxAntenna  Integer32,             dot11DiversitySupport  INTEGER,	     dot11CurrentRxAntenna  Integer32 }dot11CurrentTxAntenna OBJECT-TYPE        SYNTAX Integer32 (1..255)        MAX-ACCESS read-write        STATUS current        DESCRIPTION            "The current antenna being used to transmit.  This value        is one of the values appearing in        dot11SupportedTxAntenna. This may be used by a management agent to control which antenna is used for transmission. "    ::= {  dot11PhyAntennaEntry 1 }dot11DiversitySupport OBJECT-TYPE        SYNTAX INTEGER {fixedlist(1), notsupported(2), dynamic(3)}        MAX-ACCESS read-only        STATUS current        DESCRIPTION        "This implementation's support for diversity, encoded as:        X'01'-diversity is available and is performed over the fixed            list of antennas defined in dot11DiversitySelectionRx.        X'02'-diversity is not supported.        X'03'-diversity is supported and control of diversity is also            available, in which case the attribute             dot11DiversitySelectionRx can be dynamically modified by the            LME."    ::= {  dot11PhyAntennaEntry 2 }dot11CurrentRxAntenna OBJECT-TYPE        SYNTAX Integer32 (1..255)        MAX-ACCESS read-write        STATUS current        DESCRIPTION"The current antenna being used to receive, if the dot11 DiversitySupport indicates that diversity is not supported.  The selected antenna shall be one of the antennae marked for receive in the dot11AntennasListTable. "    ::= {  dot11PhyAntennaEntry 3 }-- **********************************************************************-- *    End of dot11PhyAntenna  TABLE-- **********************************************************************-- **********************************************************************-- *    dot11PhyTxPower  TABLE-- **********************************************************************dot11PhyTxPowerTable OBJECT-TYPE        SYNTAX SEQUENCE OF Dot11PhyTxPowerEntry        MAX-ACCESS not-accessible        STATUS current        DESCRIPTION            "Group of attributes for dot11PhyTxPowerTable.  Implemented            as a table indexed on STA ID to allow for multiple            instances on an Agent."    ::= {  dot11phy 3}dot11PhyTxPowerEntry OBJECT-TYPE        SYNTAX Dot11PhyTxPowerEntry        MAX-ACCESS not-accessible        STATUS current        DESCRIPTION            "An entry in the dot11PhyTxPower Table.            ifIndex - Each 802.11 interface is represented by an            ifEntry.  Interface tables in this MIB module are indexed            by ifIndex."        INDEX {ifIndex}    ::= {  dot11PhyTxPowerTable 1 }Dot11PhyTxPowerEntry ::= SEQUENCE {            dot11NumberSupportedPowerLevels  INTEGER,            dot11TxPowerLevel1               INTEGER,            dot11TxPowerLevel2               INTEGER,            dot11TxPowerLevel3               INTEGER,            dot11TxPowerLevel4               INTEGER,            dot11TxPowerLevel5               INTEGER,            dot11TxPowerLevel6               INTEGER,            dot11TxPowerLevel7               INTEGER,            dot11TxPowerLevel8               INTEGER,            dot11CurrentTxPowerLevel         INTEGER}dot11NumberSupportedPowerLevels OBJECT-TYPE        SYNTAX INTEGER (1..8)        MAX-ACCESS read-only        STATUS current        DESCRIPTION            "The number of power levels supported by the PMD.            This attribute can have a value of 1 to 8."    ::= {  dot11PhyTxPowerEntry 1 }dot11TxPowerLevel1 OBJECT-TYPE        SYNTAX INTEGER (0..10000)        MAX-ACCESS read-only        STATUS current        DESCRIPTION            "The transmit output power for LEVEL1 in mW.            This is also the default power level."    ::= {   dot11PhyTxPowerEntry 2 }dot11TxPowerLevel2 OBJECT-TYPE        SYNTAX INTEGER (0..10000)        MAX-ACCESS read-only        STATUS current        DESCRIPTION            "The transmit output power for LEVEL2 in mW."    ::= {   dot11PhyTxPowerEntry 3 }dot11TxPowerLevel3 OBJECT-TYPE        SYNTAX INTEGER (0..10000)        MAX-ACCESS read-only        STATUS current        DESCRIPTION            "The transmit output power for LEVEL3 in mW."    ::= {   dot11PhyTxPowerEntry 4 }dot11TxPowerLevel4 OBJECT-TYPE        SYNTAX INTEGER (0..10000)        MAX-ACCESS read-only        STATUS current        DESCRIPTION            "The transmit output power for LEVEL4 in mW."    ::= {   dot11PhyTxPowerEntry 5 }dot11TxPowerLevel5 OBJECT-TYPE        SYNTAX INTEGER (0..10000)        MAX-ACCESS read-only        STATUS current        DESCRIPTION            "The transmit output power for LEVEL5 in mW."    ::= {   dot11PhyTxPowerEntry 6 }dot11TxPowerLevel6 OBJECT-TYPE        SYNTAX INTEGER (0..10000)        MAX-ACCESS read-only        STATUS current        DESCRIPTION            "The transmit output power for LEVEL6 in mW."    ::= {   dot11PhyTxPowerEntry 7 }dot11TxPowerLevel7 OBJECT-TYPE        SYNTAX INTEGER (0..10000)        MAX-ACCESS read-only        STATUS current        DESCRIPTION            "The transmit output power for LEVEL7 in mW."    ::= {   dot11PhyTxPowerEntry 8 }dot11TxPowerLevel8 OBJECT-TYPE        SYNTAX INTEGER (0..10000)        MAX-ACCESS read-only        STATUS current        DESCRIPTION            "The transmit output power for LEVEL8 in mW."    ::= {   dot11PhyTxPowerEntry 9 }dot11CurrentTxPowerLevel OBJECT-TYPE        SYNTAX INTEGER (1..8)        MAX-ACCESS read-write        STATUS current        DESCRIPTION            "The TxPowerLevel N currently being used to transmit data.            Some PHYs also use this value to determine the receiver            sensitivity requirements for CCA."    ::= {   dot11PhyTxPowerEntry 10 }-- **********************************************************************-- *    End of dot11PhyTxPower  TABLE-- **********************************************************************-- **********************************************************************-- *    dot11PhyFHSS  TABLE-- **********************************************************************dot11PhyFHSSTable OBJECT-TYPE        SYNTAX SEQUENCE OF Dot11PhyFHSSEntry        MAX-ACCESS not-accessible        STATUS current        DESCRIPTION            "Group of attributes for dot11PhyFHSSTable.  Implemented as a            table indexed on STA ID to allow for multiple instances on            an Agent."    ::= {  dot11phy 4 }dot11PhyFHSSEntry OBJECT-TYPE        SYNTAX Dot11PhyFHSSEntry        MAX-ACCESS not-accessible        STATUS current        DESCRIPTION            "An entry in the dot11PhyFHSS Table.            ifIndex - Each 802.11 interface is represented by an            ifEntry.  Interface tables in this MIB module are indexed            by ifIndex."        INDEX {ifIndex}    ::= {  dot11PhyFHSSTable 1 }Dot11PhyFHSSEntry ::= SEQUENCE {             dot11HopTime   		INTEGER,             dot11CurrentChannelNumber  INTEGER,             dot11MaxDwellTime  	INTEGER,             dot11CurrentDwellTime  	INTEGER,             dot11CurrentSet    	INTEGER,             dot11CurrentPattern    	INTEGER,             dot11CurrentIndex  	INTEGER}dot11HopTime OBJECT-TYPE        SYNTAX INTEGER (224)        MAX-ACCESS read-only        STATUS current        DESCRIPTION            "The time in microseconds for the PMD to change from            channel 2 to channel 80"    ::= {   dot11PhyFHSSEntry 1 }dot11CurrentChannelNumber OBJECT-TYPE        SYNTAX INTEGER (0..99)        MAX-ACCESS read-write        STATUS current        DESCRIPTION        "The current channel number of the frequency output by the RF        synthesizer"    ::= {   dot11PhyFHSSEntry 2 }dot11MaxDwellTime OBJECT-TYPE        SYNTAX INTEGER (1..65535)        MAX-ACCESS read-only        STATUS current        DESCRIPTION            "The maximum time in TU that the transmitter            is permitted to operate on a single channel."    ::= {   dot11PhyFHSSEntry 3 }dot11CurrentDwellTime OBJECT-TYPE        SYNTAX INTEGER (1..65535)        MAX-ACCESS read-write        STATUS current        DESCRIPTION            "The current time in TU that the transmitter shall operate            on a single channel, as set by the MAC.  Default is 19 TU."    ::= {   dot11PhyFHSSEntry 4 }dot11CurrentSet OBJECT-TYPE        SYNTAX INTEGER (1..255)        MAX-ACCESS read-write        STATUS current        DESCRIPTION            "The current set of patterns the PHY            LME is using to determine the hopping sequence. "    ::= {   dot11PhyFHSSEntry 5 }dot11CurrentPattern OBJECT-TYPE        SYNTAX INTEGER (0..255)        MAX-ACCESS read-write        STATUS current        DESCRIPTION            "The current pattern the PHY LME is            using to determine the hop sequence."    ::= {   dot11PhyFHSSEntry 6 }dot11CurrentIndex OBJECT-TYPE        SYNTAX INTEGER (1..255)        MAX-ACCESS read-write        STATUS current        DESCRIPTION            "The current index value the PHY LME is using to determine            the CurrentChannelNumber."    ::= {   dot11PhyFHSSEntry 7 }-- **********************************************************************-- *    End of dot11PhyFHSS  TABLE-- **********************************************************************-- **********************************************************************-- *    dot11PhyDSSSEntry  TABLE-- **********************************************************************dot11PhyDSSSTable OBJECT-TYPE        SYNTAX SEQUENCE OF Dot11PhyDSSSEntry        MAX-ACCESS not-accessible        STATUS current        DESCRIPTION            "Entry of attributes for dot11PhyDSSSEntry.  Implemented as a            table indexed on ifIndex allow for multiple instances on            an Agent."    ::= {  dot11phy 5 }dot11PhyDSSSEntry OBJECT-TYPE        SYNTAX Dot11PhyDSSSEntry        MAX-ACCESS not-accessible        STATUS current        DESCRIPTION            "An entry in the dot11PhyDSSSEntry Table.            ifIndex - Each 802.11 interface is represented by an            ifEntry.  Interface tables in this MIB module are indexed            by ifIndex."        I

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -