forked from AlexandreYang/snmp-mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathA3COM-HUAWEI-DOT11-RRM-MIB
executable file
·1276 lines (1152 loc) · 39.2 KB
/
A3COM-HUAWEI-DOT11-RRM-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-2010 Hangzhou H3C Tech. Co., Ltd. All rights reserved.
--
-- Description: The purpose of this MIB file is to provide object definition
-- of WLAN radio resource management (RRM).
-- Reference:
-- Version: V1.5
-- History:
-- V1.0 2008-07-16 Initial version, created by ChenWei
-- V1.1 2009-04-16 modified by WangChunsheng
-- Add new table of h3cDot11MonitorDetectedDevTable for h3cDot11MonitorDetectedGroup.
-- Add new table of h3cDot11RRMAPCfgTable for h3cDot11RRMConfigGroup.
-- V1.2 2009-05-07 modified by Wang Shaojie, wangchunsheng
-- Add h3cDot11APInterfNumThreshhd, h3cDot11StaInterfNumThreshhd
-- to h3cDot11GlobeConfigGroup.
-- Modify h3cDot11RRMCfgIntrvl
-- V1.3 2009-05-07 modified by Wang Shaojie
-- Add new node h3cDot11MonitorDevSNR to h3cDot11MonitorDetectedDevTable
-- V1.4 2010-02-22 modified by Wang Chunsheng
-- Add new table h3cDot11RRMSDRadioGroupTable to h3cDot11RRMConfigGroup
-- 2010-03-18 Modified by Wang Lu
-- Add h3cDot11RRMAPCfg2Table
-- V1.5 2010-09-21 Modified by wu xiaopeng
-- Add new node h3cDot11RRMCoChlIntfTrapThhd, h3cDot11RRMAdjChlIntfTrapThhd
-- to h3cDot11RRMAPCfg2Table
-- V1.6 2011-03-23 Modified by NiuJian
-- Add new node h3cDot11RrmNbrSSID
-- to h3cDot11RRMNbrInfoTable
-- ==========================================================================
A3COM-HUAWEI-DOT11-RRM-MIB DEFINITIONS ::= BEGIN
IMPORTS
H3cDot11RadioType, H3cDot11ChannelScopeType, H3cDot11RadioElementIndex,
H3cDot11RadioScopeType, h3cDot11APElementIndex
FROM A3COM-HUAWEI-DOT11-REF-MIB
Integer32, Unsigned32, OBJECT-TYPE, MODULE-IDENTITY,
NOTIFICATION-TYPE
FROM SNMPv2-SMI
TruthValue, MacAddress, DateAndTime, RowStatus
FROM SNMPv2-TC
h3cDot11,
H3cDot11ObjectIDType,
H3cDot11SSIDStringType
FROM A3COM-HUAWEI-DOT11-REF-MIB;
h3cDot11RRM MODULE-IDENTITY
LAST-UPDATED "201009251800Z" -- Sep 25, 2010 at 18:00 GMT
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
"This MIB file is to provide the object definition of
WLAN radio resource management (RRM)."
REVISION "201009251800Z" -- Sep 25, 2010 at 18:00 GMT
DESCRIPTION
"Modified to add new nodes."
REVISION "201002231800Z" -- Feb 23, 2010 at 18:00 GMT
DESCRIPTION
"Modified to add new nodes."
REVISION "200908012000Z" -- Aug 1, 2009 at 20:00 GMT
DESCRIPTION
"Modified to add new nodes and new table."
REVISION "200905072000Z" -- May 7, 2009 at 20:00 GMT
DESCRIPTION
"Modified to add new nodes and new table."
REVISION "200904172000Z" -- April 17, 2009 at 20:00 GMT
DESCRIPTION
"Modified to add new table and new group."
REVISION "200807141429Z"
DESCRIPTION
"The initial revision of this MIB module."
::= { h3cDot11 8 }
--
-- Node definitions
--
h3cDot11RRMConfigGroup OBJECT IDENTIFIER ::= { h3cDot11RRM 1 }
h3cDot11RRMGlobalCfgPara OBJECT IDENTIFIER ::= { h3cDot11RRMConfigGroup 1 }
h3cDot11RRM11nMadtMaxMcs OBJECT-TYPE
SYNTAX Integer32 (0..76 | 255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify the maximum modulation and coding scheme (MCS) index for
802.11n mandatory rates.
The value 255 indicates that no maximum MCS index
is specified. No maximum MCS index is specified for 802.11n
mandatory rates by default.
Besides 255, the specified maximum MCS index for 802.11n supported
rates must be no less than the specified maximum MCS index for 802.11n
mandatory rates."
DEFVAL { 255 }
::= { h3cDot11RRMGlobalCfgPara 1 }
h3cDot11RRM11nSuptMaxMcs OBJECT-TYPE
SYNTAX Integer32 (0..76)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify the maximum Modulation and Coding Scheme (MCS) index for
802.11n supported rates.
The specified maximum MCS index for 802.11n supported rates must be no
less than the specified maximum MCS index for 802.11n mandatory rates."
DEFVAL { 76 }
::= { h3cDot11RRMGlobalCfgPara 2 }
h3cDot11RRM11gProtect OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/Disable dot11g protection."
DEFVAL { false }
::= { h3cDot11RRMGlobalCfgPara 3 }
h3cDot11RRM11aPwrConstrt OBJECT-TYPE
SYNTAX Integer32
UNITS "dBm"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Configure the power constraint for all 802.11a radios.
The configured power constraint is advertised in beacons if spectrum
management is enabled.
The range of power constraint is 0 to MAX-POWER-1 (where the MAX-POWER
is defined by the regulatory domain)."
DEFVAL { 0 }
::= { h3cDot11RRMGlobalCfgPara 4 }
h3cDot11RRM11aSpectrumManag OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/Disable spectrum management for 802.11a radios.
When spectrum management is enabled, the WLAN sub-system advertises
power capabilities of the AP and power constraints applicable to all
devices in the BSS based on regulatory domain specification."
DEFVAL { false }
::= { h3cDot11RRMGlobalCfgPara 5 }
h3cDot11RRMAutoChlAvoid11h OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Configure the auto-channel set as non-dot11h channels, this is,
only the non-dot11h channels belonging to the country code are scanned
during initial channel selection and one of them is selected."
DEFVAL { false }
::= { h3cDot11RRMGlobalCfgPara 6 }
h3cDot11RRMScanChl OBJECT-TYPE
SYNTAX INTEGER
{
auto(1),
all(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set the scan mode.
auto: When this option is set, all channels of the country code being
set are scanned.
all: When this option is set, all the channels of the radio band are
scanned."
DEFVAL { auto }
::= { h3cDot11RRMGlobalCfgPara 7 }
h3cDot11RRMScanRptIntvel OBJECT-TYPE
SYNTAX Integer32 (5..120)
UNITS "second"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set the scan report interval."
DEFVAL { 10 }
::= { h3cDot11RRMGlobalCfgPara 8 }
h3cDot11APInterfNumThreshhd OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Represents threshold of AP interference .
If the value of AP interference exceeds this threshold,
AP interference trap will be sent. If the value of this node
is zero, AP interference trap will be sent immediately."
DEFVAL { 0 }
::= { h3cDot11RRMGlobalCfgPara 9 }
h3cDot11StaInterfNumThreshhd OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Represents threshold of STA interference.
If the value of STA interference exceeds this threshold,
STA interference trap will be sent. If the value of this
node is zero, STA interference trap will be sent immediately.
"
DEFVAL { 0 }
::= { h3cDot11RRMGlobalCfgPara 10 }
h3cDot11RRMRadioCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cDot11RRMRadioCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Configure WLAN RRM based radio type.
When 802.11b parameter is modified, 802.11g parameter will be
changed at the same time.
In the same way, when 802.11g parameter is modified, 802.11b parameter
will be changed at the same time."
::= { h3cDot11RRMConfigGroup 2 }
h3cDot11RRMRadioCfgEntry OBJECT-TYPE
SYNTAX H3cDot11RRMRadioCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Configure WLAN RRM based radio type.
When 802.11b parameter is modified, 802.11g parameter will be
changed at the same time.
In the same way, when 802.11g parameter is modified, 802.11b parameter
will be changed at the same time."
INDEX { h3cDot11RRMRadioType }
::= { h3cDot11RRMRadioCfgTable 1 }
H3cDot11RRMRadioCfgEntry ::=
SEQUENCE {
h3cDot11RRMRadioType
H3cDot11RadioType,
h3cDot11RRMCfgChlState
TruthValue,
h3cDot11RRMCfgChlMode
INTEGER,
h3cDot11RRMChlProntoRadioElmt
Unsigned32,
h3cDot11RRMCfgPwrState
TruthValue,
h3cDot11RRMCfgPwrMode
INTEGER,
h3cDot11RRMPwrProntoRadioElmt
Unsigned32,
h3cDot11RRMCfgIntrvl
Integer32,
h3cDot11RRMCfgIntrfThres
Integer32,
h3cDot11RRMCfgNoiseThres
Integer32,
h3cDot11RRMCfgPERThres
Integer32,
h3cDot11RRMCfgToleranceFctr
Integer32,
h3cDot11RRMCfgAdjacencyFctr
Integer32
}
h3cDot11RRMRadioType OBJECT-TYPE
SYNTAX H3cDot11RadioType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"802.11 radio type."
::= { h3cDot11RRMRadioCfgEntry 1 }
h3cDot11RRMCfgChlState OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/Disable dynamic channel selection."
DEFVAL { false }
::= { h3cDot11RRMRadioCfgEntry 2 }
h3cDot11RRMCfgChlMode OBJECT-TYPE
SYNTAX INTEGER
{
selfDecisive(1),
userTriggered(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Configure the mode of channel selection.
This node can be configured only when dynamic channel selection
is enabled."
DEFVAL { userTriggered }
::= { h3cDot11RRMRadioCfgEntry 3 }
h3cDot11RRMChlProntoRadioElmt OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify the AP and radio that will change channel at next
calibration cycle.
0 is returned when getting the value of this node.
This node can be configured only when the mode of channel selection
control is user-triggered.
When configuring, the higher 24 bits stand for the AP index,
and the last 8 bits stand for the radio index.
4294967295 stand for configuring each radio on all APs."
DEFVAL { 0 }
::= { h3cDot11RRMRadioCfgEntry 4 }
h3cDot11RRMCfgPwrState OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/Disable dynamic power selection for the band."
DEFVAL { false }
::= { h3cDot11RRMRadioCfgEntry 5 }
h3cDot11RRMCfgPwrMode OBJECT-TYPE
SYNTAX INTEGER
{
selfDecisive(1),
userTriggered(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Configure the mode of transmit power control.
This node can be configured only when dynamic power selection
is enabled."
DEFVAL { userTriggered }
::= { h3cDot11RRMRadioCfgEntry 6 }
h3cDot11RRMPwrProntoRadioElmt OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify the AP and radio that will change power at next
calibration cycle.
0 is returned when getting the value of this node.
This node can be configured only when the mode of transmit power
control is user-triggered.
When configuring, the higher 24 bits stand for the AP index,
and the last 8 bits stand for the radio index.
4294967295 stand for configuring each radio on all APs."
DEFVAL { 0 }
::= { h3cDot11RRMRadioCfgEntry 7 }
h3cDot11RRMCfgIntrvl OBJECT-TYPE
SYNTAX Integer32
UNITS "minute"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Configure the calibration interval."
DEFVAL { 8 }
::= { h3cDot11RRMRadioCfgEntry 8 }
h3cDot11RRMCfgIntrfThres OBJECT-TYPE
SYNTAX Integer32 (40..100)
UNITS "percent"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Configure the interface threshold.
By default, interference observed on an operating channel is considered
during dynamic frequency selection and transmit power control. If the
interference percentage on the channel reaches the set threshold, RRM
will perform resource adjustment to control the situation."
DEFVAL { 50 }
::= { h3cDot11RRMRadioCfgEntry 9 }
h3cDot11RRMCfgNoiseThres OBJECT-TYPE
SYNTAX Integer32 (-127..127)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Configure the noise threshold."
DEFVAL { -70 }
::= { h3cDot11RRMRadioCfgEntry 10 }
h3cDot11RRMCfgPERThres OBJECT-TYPE
SYNTAX Integer32 (10..100)
UNITS "percent"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Configure the CRC error threshold.
If the percentage of CRC errors reaches the threshold, RRM will perform
resource adjustment to control the situation."
DEFVAL { 20 }
::= { h3cDot11RRMRadioCfgEntry 11 }
h3cDot11RRMCfgToleranceFctr OBJECT-TYPE
SYNTAX Integer32 (15..45)
UNITS "percent"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Configure the tolerance level.
During dynamic frequency selection (DFS), the channel will be changed
only if there is a better channel having lesser interference and packet
error rate than those specified by the user."
DEFVAL { 20 }
::= { h3cDot11RRMRadioCfgEntry 12 }
h3cDot11RRMCfgAdjacencyFctr OBJECT-TYPE
SYNTAX Integer32 (1..16)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Configure the adjacency factor for the band.
If transmit power control (TPC) is configured, power will be adjusted
when the nth neighbor is detected. The value n is the adjacency factor."
DEFVAL { 3 }
::= { h3cDot11RRMRadioCfgEntry 13 }
h3cDot11RRMAPCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cDot11RRMAPCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table defines the RRM parameters for AP."
::= { h3cDot11RRMConfigGroup 3 }
h3cDot11RRMAPCfgEntry OBJECT-TYPE
SYNTAX H3cDot11RRMAPCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry contains information of RRM parameters for AP."
INDEX { h3cDot11APElementIndex }
::= { h3cDot11RRMAPCfgTable 1 }
H3cDot11RRMAPCfgEntry ::=
SEQUENCE {
h3cDot11RRMAPWorkMode
INTEGER
}
h3cDot11RRMAPWorkMode OBJECT-TYPE
SYNTAX INTEGER
{
normal(1),
monitor(2),
hybrid(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"AP work mode."
::= { h3cDot11RRMAPCfgEntry 1 }
h3cDot11RRMSDRadioGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cDot11RRMSDRadioGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table defines RRM self-decisive radio group."
::= { h3cDot11RRMConfigGroup 4 }
h3cDot11RRMSDRadioGroupEntry OBJECT-TYPE
SYNTAX H3cDot11RRMSDRadioGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry contains information of one RRM self-decisive radio group."
INDEX
{
h3cDot11RRMSDRadioGroupId
}
::= { h3cDot11RRMSDRadioGroupTable 1 }
H3cDot11RRMSDRadioGroupEntry ::= SEQUENCE
{
h3cDot11RRMSDRadioGroupId Unsigned32,
h3cDot11RRMSDRadioGroupDesc OCTET STRING,
h3cDot11RRMSDRdGrpChlHolddownTm Unsigned32,
h3cDot11RRMSDRdGrpPwrHolddownTm Unsigned32,
h3cDot11RRMSDRdGroupRowStatus RowStatus
}
h3cDot11RRMSDRadioGroupId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Represents RRM self-decisive radio group ID."
::= { h3cDot11RRMSDRadioGroupEntry 1 }
h3cDot11RRMSDRadioGroupDesc OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Represents the description of RRM self-decisive radio group."
::= { h3cDot11RRMSDRadioGroupEntry 2 }
h3cDot11RRMSDRdGrpChlHolddownTm OBJECT-TYPE
SYNTAX Unsigned32
UNITS "minute"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Represents the channel holddown time of RRM self-decisive radio group."
::= { h3cDot11RRMSDRadioGroupEntry 3 }
h3cDot11RRMSDRdGrpPwrHolddownTm OBJECT-TYPE
SYNTAX Unsigned32
UNITS "minute"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Represents the power holddown time of RRM self-decisive radio group."
::= { h3cDot11RRMSDRadioGroupEntry 4 }
h3cDot11RRMSDRdGroupRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status of this table entry."
::= { h3cDot11RRMSDRadioGroupEntry 5 }
h3cDot11RRMAPCfg2Table OBJECT-TYPE
SYNTAX SEQUENCE OF H3cDot11RRMAPCfg2Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table defines the RRM parameters for AP."
::= { h3cDot11RRMConfigGroup 5 }
h3cDot11RRMAPCfg2Entry OBJECT-TYPE
SYNTAX H3cDot11RRMAPCfg2Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry contains information of RRM parameters for AP."
INDEX { h3cDot11RRMAPSerialID }
::= { h3cDot11RRMAPCfg2Table 1 }
H3cDot11RRMAPCfg2Entry ::=
SEQUENCE {
h3cDot11RRMAPSerialID
H3cDot11ObjectIDType,
h3cDot11RRMAPIntfThreshold
Integer32,
h3cDot11RRMStaIntfThreshold
Integer32,
h3cDot11RRMCoChlIntfTrapThhd
Integer32,
h3cDot11RRMAdjChlIntfTrapThhd
Integer32
}
h3cDot11RRMAPSerialID OBJECT-TYPE
SYNTAX H3cDot11ObjectIDType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Serial ID of the AP."
::= { h3cDot11RRMAPCfg2Entry 1 }
h3cDot11RRMAPIntfThreshold OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Represents threshold of AP interference .
If the number of AP interference exceeds this threshold,
AP interference trap will be sent."
::= { h3cDot11RRMAPCfg2Entry 2 }
h3cDot11RRMStaIntfThreshold OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Represents threshold of STA interference.
If the number of STA interference exceeds this threshold,
station interference trap will be sent."
::= { h3cDot11RRMAPCfg2Entry 3 }
h3cDot11RRMCoChlIntfTrapThhd OBJECT-TYPE
SYNTAX Integer32
UNITS "dbm"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Represents threshold of interference trap with current ap.
If signal strength of the device exceeds this threshold,
corresponding trap will be sent."
::= { h3cDot11RRMAPCfg2Entry 4 }
h3cDot11RRMAdjChlIntfTrapThhd OBJECT-TYPE
SYNTAX Integer32
UNITS "dbm"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Represents threshold of adjacent interference trap with current ap.
If signal strength of the device exceeds this threshold,
corresponding trap will be sent."
::= { h3cDot11RRMAPCfg2Entry 5 }
h3cDot11RRMDetectGroup OBJECT IDENTIFIER ::= { h3cDot11RRM 2 }
h3cDot11RRMChlRptTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cDot11RRMChlRptEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table shows the RRM channel information of each radio
on all APs."
::= { h3cDot11RRMDetectGroup 1 }
h3cDot11RRMChlRptEntry OBJECT-TYPE
SYNTAX H3cDot11RRMChlRptEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry contains information of RRM channel information
of the radio on the AP."
INDEX { h3cDot11RRMRadioIndex, h3cDot11RRMChlRptChlNum }
::= { h3cDot11RRMChlRptTable 1 }
H3cDot11RRMChlRptEntry ::=
SEQUENCE {
h3cDot11RRMRadioIndex
H3cDot11RadioElementIndex,
h3cDot11RRMChlRptChlNum
Integer32,
h3cDot11RRMChlRptChlType
INTEGER,
h3cDot11RRMChlRptChlQlty
INTEGER,
h3cDot11RRMChlRptNbrCnt
Integer32,
h3cDot11RRMChlRptLoad
Integer32,
h3cDot11RRMChlRptUtlz
Integer32,
h3cDot11RRMChlRptIntrf
Integer32,
h3cDot11RRMChlRptPER
Integer32,
h3cDot11RRMChlRptRetryRate
Integer32,
h3cDot11RRMChlRptNoise
Integer32,
h3cDot11RRMChlRptRadarIndtcr
INTEGER
}
h3cDot11RRMRadioIndex OBJECT-TYPE
SYNTAX H3cDot11RadioElementIndex
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Represents index of the radio."
::= { h3cDot11RRMChlRptEntry 1 }
h3cDot11RRMChlRptChlNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Channel number."
::= { h3cDot11RRMChlRptEntry 2 }
h3cDot11RRMChlRptChlType OBJECT-TYPE
SYNTAX INTEGER
{
primeChannel(1),
offChannel(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Channel type."
::= { h3cDot11RRMChlRptEntry 3 }
h3cDot11RRMChlRptChlQlty OBJECT-TYPE
SYNTAX INTEGER
{
good(1),
bad(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Channel quality."
::= { h3cDot11RRMChlRptEntry 4 }
h3cDot11RRMChlRptNbrCnt OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of neighbors found on the channel."
::= { h3cDot11RRMChlRptEntry 5 }
h3cDot11RRMChlRptLoad OBJECT-TYPE
SYNTAX Integer32 (0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Load observed on the channel in percentage."
::= { h3cDot11RRMChlRptEntry 6 }
h3cDot11RRMChlRptUtlz OBJECT-TYPE
SYNTAX Integer32 (0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Utilization of the channel in percentage."
::= { h3cDot11RRMChlRptEntry 7 }
h3cDot11RRMChlRptIntrf OBJECT-TYPE
SYNTAX Integer32 (0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Interference observed on the channel in percentage."
::= { h3cDot11RRMChlRptEntry 8 }
h3cDot11RRMChlRptPER OBJECT-TYPE
SYNTAX Integer32 (0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packet error rate observed on the channel in percentage."
::= { h3cDot11RRMChlRptEntry 9 }
h3cDot11RRMChlRptRetryRate OBJECT-TYPE
SYNTAX Integer32 (0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Percentage of retransmission happened on the channel."
::= { h3cDot11RRMChlRptEntry 10 }
h3cDot11RRMChlRptNoise OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Noise observed on the channel."
::= { h3cDot11RRMChlRptEntry 11 }
h3cDot11RRMChlRptRadarIndtcr OBJECT-TYPE
SYNTAX INTEGER
{
detected(1),
notDetected(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Radar detection status."
::= { h3cDot11RRMChlRptEntry 12 }
h3cDot11RRMNbrInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cDot11RRMNbrInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table shows the RRM neighbor information of each radio
on all APs."
::= { h3cDot11RRMDetectGroup 2 }
h3cDot11RRMNbrInfoEntry OBJECT-TYPE
SYNTAX H3cDot11RRMNbrInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry contains information of RRM neighbor information
of the radio on an AP."
INDEX { h3cDot11RRMRadioIndex, h3cDot11RrmNbrBSSID }
::= { h3cDot11RRMNbrInfoTable 1 }
H3cDot11RRMNbrInfoEntry ::=
SEQUENCE {
h3cDot11RrmNbrBSSID
MacAddress,
h3cDot11RrmNbrChl
H3cDot11ChannelScopeType,
h3cDot11RRMNbrIntrf
Integer32,
h3cDot11RrmNbrRSSI
Integer32,
h3cDot11RrmNbrType
INTEGER,
h3cDot11RrmNbrSSID
H3cDot11SSIDStringType
}
h3cDot11RrmNbrBSSID OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"MAC address of the AP."
::= { h3cDot11RRMNbrInfoEntry 1 }
h3cDot11RrmNbrChl OBJECT-TYPE
SYNTAX H3cDot11ChannelScopeType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Channel number on which the neighbor was found."
::= { h3cDot11RRMNbrInfoEntry 2 }
h3cDot11RRMNbrIntrf OBJECT-TYPE
SYNTAX Integer32 (0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Interference observed on the channel in percentage by neighbor."
::= { h3cDot11RRMNbrInfoEntry 3 }
h3cDot11RrmNbrRSSI OBJECT-TYPE
SYNTAX Integer32
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Signal strength of the AP in dBm."
::= { h3cDot11RRMNbrInfoEntry 4 }
h3cDot11RrmNbrType OBJECT-TYPE
SYNTAX INTEGER
{
managed(1),
unmanaged(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of the AP, managed or unmanaged."
::= { h3cDot11RRMNbrInfoEntry 5 }
h3cDot11RrmNbrSSID OBJECT-TYPE
SYNTAX H3cDot11SSIDStringType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"SSID of the Neighbor."
::= { h3cDot11RRMNbrInfoEntry 6 }
h3cDot11RRMHistoryTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cDot11RRMHistoryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table shows the details of the latest three channel changes
and power changes applied on all APs, including time of change,
reason of the change and the channel, power, interference parameters."
::= { h3cDot11RRMDetectGroup 3 }
h3cDot11RRMHistoryEntry OBJECT-TYPE
SYNTAX H3cDot11RRMHistoryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry shows the details of channel and power changes."
INDEX { h3cDot11RRMRadioIndex,
h3cDot11RRMHistoryId,
h3cDot11RRMHistoryRecIndctr }
::= { h3cDot11RRMHistoryTable 1 }
H3cDot11RRMHistoryEntry ::=
SEQUENCE {
h3cDot11RRMHistoryId
Integer32,
h3cDot11RRMHistoryRecIndctr
INTEGER,
h3cDot11RRMHistoryChl
H3cDot11ChannelScopeType,
h3cDot11RRMHistoryPwr
Integer32,
h3cDot11RRMHistoryLoad
Integer32,
h3cDot11RRMHistoryUtlz
Integer32,
h3cDot11RRMHistoryIntrf
Integer32,
h3cDot11RRMHistoryNoise
Integer32,
h3cDot11RRMHistoryPER
Integer32,
h3cDot11RRMHistoryRetryRate
Integer32,
h3cDot11RRMHistoryChgReason
BITS,
h3cDot11RRMHistoryChgDateTime
DateAndTime
}
h3cDot11RRMHistoryId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"History number of the change."
::= { h3cDot11RRMHistoryEntry 1 }
h3cDot11RRMHistoryRecIndctr OBJECT-TYPE
SYNTAX INTEGER
{
before(1),
after(2)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"History record type of the change."
::= { h3cDot11RRMHistoryEntry 2 }
h3cDot11RRMHistoryChl OBJECT-TYPE
SYNTAX H3cDot11ChannelScopeType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Channel on which the radio operates before/after the change
of channel or power."
::= { h3cDot11RRMHistoryEntry 3 }
h3cDot11RRMHistoryPwr OBJECT-TYPE
SYNTAX Integer32
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Power of the radio before/after the change of channel or
power."
::= { h3cDot11RRMHistoryEntry 4 }
h3cDot11RRMHistoryLoad OBJECT-TYPE
SYNTAX Integer32 (0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Load observed on the radio in percentage before/after the
change of channel or power."
::= { h3cDot11RRMHistoryEntry 5 }
h3cDot11RRMHistoryUtlz OBJECT-TYPE
SYNTAX Integer32 (0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Utilization of the radio in percentage before/after the
change of channel or power."
::= { h3cDot11RRMHistoryEntry 6 }
h3cDot11RRMHistoryIntrf OBJECT-TYPE
SYNTAX Integer32 (0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Interference observed on the radio in percentage
before/after the change of channel or power."
::= { h3cDot11RRMHistoryEntry 7 }
h3cDot11RRMHistoryNoise OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Noise observed on the radio before/after the change
of channel or power."
::= { h3cDot11RRMHistoryEntry 8 }
h3cDot11RRMHistoryPER OBJECT-TYPE
SYNTAX Integer32 (0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packet error rate observed on the radio in percentage
before/after the change of channel or power."