summaryrefslogtreecommitdiff
path: root/MIBS/comware/HH3C-DOT11-WLANEXT-MIB
blob: 3466bed1ec73ffde499c745d2b0b9109306e0337 (plain)
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
-- =============================================================================
-- Copyright (C) 2006-2007 New H3C Tech. Co., Ltd. All rights reserved.
--
-- Description:
--   The file defines a MIB to provide more information for WLAN network.
-- Reference:
-- Version: V1.0
-- History:
--   V1.0 2007-06-08 Initial version, created by wanghao (Kumar)
-- =============================================================================
HH3C-DOT11-WLANEXT-MIB DEFINITIONS ::= BEGIN

IMPORTS
        MODULE-IDENTITY,
        OBJECT-TYPE,
        Integer32,
        Counter32
    FROM SNMPv2-SMI
        hh3cDot11,
        Hh3cDot11ObjectIDType,
        Hh3cDot11RadioScopeType,
        Hh3cDot11QosAcType
    FROM HH3C-DOT11-REF-MIB;

hh3cDot11WLANEXT MODULE-IDENTITY
    LAST-UPDATED "200706082000Z"            -- Jun. 08, 2007 at 20:00 GMT
    ORGANIZATION
        "New H3C Technologies Co., Ltd."
    CONTACT-INFO
        "Platform Team New H3C Technologies Co., Ltd.
         Hai-Dian District Beijing P.R. China
         http://www.h3c.com
         Zip: 100085"
    DESCRIPTION
        "This MIB provides more information for WLAN network.

        GLOSSARY

        IEEE 802.11
        Standard to encourage interoperability among
        wireless networking equipment.

        IEEE 802.11e
        Standard to define the MAC procedures to support
        LAN applications with Quality of Service (QoS) requirements,
        including the transport of voice, audio and video over
        IEEE 802.11 wireless LANs.

        Access point (AP)
        Transmitter/receiver (transceiver) device
        that commonly connects and transports data
        between a wireless network and a wired network.

        Access control (AC)
        To control and manage multi-APs, it will bridge
        wireless and wired network.

        Radio
        The chip set to receive and send wireless signal.

        Fat AP
        Applied in the home, SOHO and so on, and it could
        independently work without help from AC.

        Fit AP
        Applied in the enterprise environment, it will work
        under the control and management from AC.

        Control And Provisioning of Wireless Access Points Protocol
        The short name of protocol is CAPWAP. AC will control
        and manage AP by CAPWAP tunnel protocol defined by IETF.
        Also, a data tunnel will be set up between AC and AP.

        Basic Service Set
        The IEEE 802.11 BSS of an AP comprises of the
        stations directly associating with the AP. It will
        be identified by BSSID."

    REVISION "200706082000Z"        -- Jun 08, 2007 at 20:00 GMT
    DESCRIPTION
        "The initial revision of this MIB module."
    ::= { hh3cDot11 7 }

-- *****************************************************************************
-- *  Major sections
-- *****************************************************************************
--  RF Management Group
--  DEFINED AS "The group to provide the statistic information
--  for RF management feature.
hh3cDot11RFGroup OBJECT IDENTIFIER   ::= { hh3cDot11WLANEXT 1 }

--  The RF Management Group has the following children:
--  hh3cDot11RFSignalStatisTable  ::= { hh3cDot11RFGroup 1 }

--  Qos Group
--  DEFINED AS "The group to provide the statistic information
--  for Qos feature."
hh3cDot11QosGroup OBJECT IDENTIFIER  ::= { hh3cDot11WLANEXT 2 }

--  The Qos Group has the following children:
--  hh3cDot11QosStatisTable    ::= { hh3cDot11QosGroup 1 }
--  hh3cDot11QosAcStatisTable  ::= { hh3cDot11QosGroup 2 }

-- *****************************************************************************
-- *  hh3cDot11RFSignalStatisticTable Definition
-- *****************************************************************************
hh3cDot11RFSignalStatisTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF Hh3cDot11RFSignalStatisEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The table will describe statistic information of signal strength
        for AP radio."
    ::= { hh3cDot11RFGroup 1 }

hh3cDot11RFSignalStatisEntry OBJECT-TYPE
    SYNTAX      Hh3cDot11RFSignalStatisEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "Each entry contains the signal of each signal strength information of
        a specific AP."
    INDEX
        {
            hh3cDot11RFAPID,
            hh3cDot11RFRadioID
        }
    ::= { hh3cDot11RFSignalStatisTable 1 }

Hh3cDot11RFSignalStatisEntry ::= SEQUENCE
    {
        hh3cDot11RFAPID                     Hh3cDot11ObjectIDType,
        hh3cDot11RFRadioID                  Hh3cDot11RadioScopeType,
        hh3cDot11RFSignalStatisInterv       Integer32,
        hh3cDot11RFAverageSignalStrength    Integer32,
        hh3cDot11RFMaxSignalStrength        Integer32,
        hh3cDot11RFMinSignalStrength        Integer32
    }

hh3cDot11RFAPID OBJECT-TYPE
    SYNTAX      Hh3cDot11ObjectIDType
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "To identify each AP, and AP is running status."
    ::= { hh3cDot11RFSignalStatisEntry 1 }

hh3cDot11RFRadioID OBJECT-TYPE
    SYNTAX      Hh3cDot11RadioScopeType
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "Represents each radio."
    ::= { hh3cDot11RFSignalStatisEntry 2 }

hh3cDot11RFSignalStatisInterv OBJECT-TYPE
    SYNTAX      Integer32
    UNITS       "second"
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Represents the interval of statistic."
    ::= { hh3cDot11RFSignalStatisEntry 3 }

hh3cDot11RFAverageSignalStrength OBJECT-TYPE
    SYNTAX      Integer32
    UNITS       "dBm"
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Represents the average value of signal strength
        for stations on a specific radio."
    ::= { hh3cDot11RFSignalStatisEntry 4 }

hh3cDot11RFMaxSignalStrength OBJECT-TYPE
    SYNTAX      Integer32
    UNITS       "dBm"
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Represents the maximum value of signal strength
        for stations on a specific radio."
    ::= { hh3cDot11RFSignalStatisEntry 5 }

hh3cDot11RFMinSignalStrength OBJECT-TYPE
    SYNTAX      Integer32
    UNITS       "dBm"
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Represents the minimum value of signal strength
        for stations on a specific radio."
    ::= { hh3cDot11RFSignalStatisEntry 6 }
-- *****************************************************************************
-- *  End of hh3cDot11RFSignalStatisTable Definition
-- *****************************************************************************

-- *****************************************************************************
-- *  hh3cDot11QosStatisTable Definition
-- *****************************************************************************
hh3cDot11QosStatisTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF Hh3cDot11QosStatisEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The table defines the attributes for the Qos feature of radio."
    ::= { hh3cDot11QosGroup 1 }

hh3cDot11QosStatisEntry OBJECT-TYPE
    SYNTAX      Hh3cDot11QosStatisEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "Each entry contains information of the Qos attribute of each radio."
    INDEX
        {
            hh3cDot11QosAPID,
            hh3cDot11QosRadioID
        }
    ::= { hh3cDot11QosStatisTable 1 }

Hh3cDot11QosStatisEntry ::= SEQUENCE
    {
        hh3cDot11QosAPID               Hh3cDot11ObjectIDType,
        hh3cDot11QosRadioID            Hh3cDot11RadioScopeType,
        hh3cDot11QosAverageQueLen      Integer32,
        hh3cDot11QosDropFrameRatio     Integer32,
        hh3cDot11QosAverageDataRate    Integer32
    }

hh3cDot11QosAPID OBJECT-TYPE
    SYNTAX      Hh3cDot11ObjectIDType
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "To uniquely identify a AP in running status."
    ::= { hh3cDot11QosStatisEntry 1 }

hh3cDot11QosRadioID OBJECT-TYPE
    SYNTAX      Hh3cDot11RadioScopeType
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "Represents each radio."
    ::= { hh3cDot11QosStatisEntry 2 }

hh3cDot11QosAverageQueLen OBJECT-TYPE
    SYNTAX      Integer32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The average frame numbers to be sent out in the queue."
    ::= { hh3cDot11QosStatisEntry 3 }

hh3cDot11QosDropFrameRatio OBJECT-TYPE
    SYNTAX      Integer32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The ratio of dropped frames in a minute because of full queue."
    ::= { hh3cDot11QosStatisEntry 4 }

hh3cDot11QosAverageDataRate OBJECT-TYPE
    SYNTAX      Integer32
    UNITS       "Kbps"
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The average transmit data rate of radio."
    ::= { hh3cDot11QosStatisEntry 5 }
-- *****************************************************************************
-- *  End of hh3cDot11QosStatisTable Definition
-- *****************************************************************************

-- *****************************************************************************
-- *  hh3cDot11QosAcAttributeTable Definition
-- *****************************************************************************
hh3cDot11QosAcStatisTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF Hh3cDot11QosAcStatisEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The table defines the parameters for Qos access category."
    ::= { hh3cDot11QosGroup 2 }

hh3cDot11QosAcStatisEntry OBJECT-TYPE
    SYNTAX      Hh3cDot11QosAcStatisEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "Each entry contains information of each Qos access category."
    INDEX
        {
            hh3cDot11QosAPID,
            hh3cDot11QosRadioID,
            hh3cDot11QosAcType
        }
    ::= { hh3cDot11QosAcStatisTable 1 }

Hh3cDot11QosAcStatisEntry ::= SEQUENCE
    {
        hh3cDot11QosAcType         Hh3cDot11QosAcType,
        hh3cDot11AcDropFrameCnt    Counter32
    }

hh3cDot11QosAcType OBJECT-TYPE
    SYNTAX      Hh3cDot11QosAcType
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The access category type."
    ::= { hh3cDot11QosAcStatisEntry 1 }

hh3cDot11AcDropFrameCnt OBJECT-TYPE
    SYNTAX      Counter32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of dropped frames in a minute for one specific access
        category because of full queue."
    ::= { hh3cDot11QosAcStatisEntry 2 }
-- *****************************************************************************
-- *  End of hh3cDot11AcAttributeTable Definition
-- *****************************************************************************
END