-
Notifications
You must be signed in to change notification settings - Fork 3
/
A3COM-HUAWEI-DOT11-CFG-MIB
executable file
·3982 lines (3584 loc) · 136 KB
/
A3COM-HUAWEI-DOT11-CFG-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-2011 Hangzhou H3C Tech. Co., Ltd. All rights reserved.
--
-- Description:
-- The file defines a MIB to provide WLAN configuration information.
-- Reference:
-- Version: V2.8
-- History:
-- V1.0 2006-05-10 Initial version, created by shiyang (Richard)
-- V1.1 2007-02-01 modified by xingjichen(Daniel)
-- Added h3cDot11RadioIntfConfigTable,h3cDot11RadioIntfBindTable,
-- h3cDot11StaKeepALiveTimerIntvl,h3cDot11StaIdleTimerIntvl,
-- h3cDot11BroadcastProbeReply.
-- V1.2 2007-04-27 modified by shiyang(Richard)
-- Replace h3cDot11UnicastCipherKeyIndex, h3cDot11UnicastCipherKey,
-- h3cDot11BroadcastCipherKeyIndex and h3cDot11BroadcastCipherKey
-- with h3cDot11CipherKeyIndex, h3cDot11CipherKey as per CLI change.
-- Delete h3cDot11MaxTxLifetime as per CLI change.
-- Add h3cDot11GlobalCountryCode,h3cDot11APScanMode.
-- h3cDot11ACCtrlTunnelSecSupport and h3cDot11ACDataTunnelSecSupport.
-- Move h3cDot11StaKeepALiveTimerIntvl,h3cDot11StaIdleTimerIntvl
-- and so on to h3cDot11GlobeConfigGroup.
-- Split h3cDot11ServicePolicyTable into h3cDot11ServicePolicyTable
-- and h3cDot11ServicePolicyExtTable.
-- For h3cDot11SecurityCiphers node,update its description for case of
-- value equals to zero.
-- V1.3 2007-06-19 modified by Vikas K
-- Add new table of h3cDot11DataRateConfigTable for AP Configuration
-- Group.
-- Add new node of h3cDot11APName for h3cDot11APTemplateTable.
-- Modify the h3cDot11APScanMode from read-only to read-write.
-- Add undo functionality to node h3cDot11WlanInfBindingID and
-- h3cDot11Description.
-- Add h3cDot11StatisInterv to the h3cDot11APTemplateTable.
-- V1.4 2007-10-9 modified by Jagan K
-- Add new table h3cDot11WlanBssIfTable for WLAN BSS interface
-- configuration.
-- Add new table h3cDot11WlanEssIfTable for WLAN ESS interface
-- configuration.
-- Add new table h3cDot11WlanEthernetIfTable for WLAN Ethernet interface
-- configuration.
-- V1.5 2007-12-21 modified by wanghao (Kumar)
-- Add h3cDot11ACAutoAPSupport, h3cDot11AutoAPName,
-- h3cDot11PersistentName to h3cDot11GlobeConfigGroup
-- Add h3cDot11ClientMaxCount to h3cDot11ServicePolicyTable
-- Add h3cDot11APBroadcastProbeReply, h3cDot11StaIdleTimerInterv,
-- h3cDot11StaKeepAliveTimerInterv, h3cDot11APCir, h3cDot11APCbs
-- to h3cDot11APTemplateTable.
-- V1.6 2008-02-25 modified by wanghao (Kumar)
-- Add h3cDot11RdoClientMaxCount to h3cDot11RadioPolicyTable.
-- V1.7 2008-04-01 modified by wangbin
-- Add h3cDot11PortSecurityTable to h3cDot11InterfaceConfigGroup.
-- Add h3cDot11PortSecurityMode, h3cDot11SecurityUserLoginTxKeyType,
-- h3cDot11SecurityPskKeyMode, h3cDot11SecurityPskKeyString
-- to h3cDot11PortSecurityTable.
-- V1.8 2008-08-01 modified by ChangHuifeng
-- Add h3cDot11ACBackupGroup and
-- h3cDot11RadioElementConfigGroup.
-- Add h3cDot11WlanMeshIfTable to h3cDot11InterfaceConfigGroup.
-- Add h3cDot11APPriorityLevel and h3cDot11APElementID to
-- h3cDot11APTemplateTable.
-- Add h3cDot11CfgRdElementID to h3cDot11RadioToConfigTable.
-- Add h3cDot11APDevDetectEnable to h3cDot11APTemplateEntry.
-- Obsolete h3cDot11StatisInterv
-- Change default value of h3cDot11APScanMode to passive.
-- Change units of h3cDot11BeaconInterval and
-- h3cDot11RadioCfgBeaconIntvl to TU.
-- Remove default value of h3cDot11SSIDEncryptionMode.
-- Change MAC-ACCESS of objects in h3cDot11RadioToConfigTable
-- from read-create to read-write.
-- Change name of h3cDot11IWlanEssRowStatus to h3cDot11WlanEssRowStatus.
-- Change description of h3cDot11PortSecurityTable.
-- V1.9 2008-11-07 modified by Wang Lu and Li Yugang
-- Add h3cDot11IntfTrapThreshold to h3cDot11GlobeConfigGroup
-- Add h3cDot11SPInCirMode, h3cDot11SPInCirValue, h3cDot11SPOutCirMode,
-- h3cDot11SPOutCirValue to h3cDot11ServicePolicyTable
-- Add h3cDot11CfgWorkMode to h3cDot11RadioToConfigTable
-- Add h3cDot11RadioCfgWorkMode to h3cDot11RadioIntfConfigTable.
-- Add new traps h3cDot11CfgCipherChange and h3cDot11CfgPSKChange.
-- Add h3cDot11MonitorInterval, h3cDot11SampleInterval,
-- h3cDot11ChnlSwitChkInterval, h3cDot11APUserUplimit,
-- h3cDot11APL2IsolateEnable to h3cDot11GlobeConfigGroup.
-- Add h3cDot11RadioCfgOnly11gEnable to h3cDot11RadioIntfConfigTable.
-- Add h3cDot11RadioWDSTable to h3cDot11RadioElementConfigGroup.
-- V2.0 2009-03-20 modified by caizibin
-- Add value ext(6) to h3cDot11PortSecurityMode
-- V2.1 2009-05-07 modified by Li Yugang, Wang Shaojie, Jin Yi
-- Add h3cDot11APBSSIDSupportNum, h3cDot11APLastUpdateStatTime,
-- h3cDot11APDoSProtectEnable, h3cDot11MaxAPPerIf to
-- h3cDot11GlobeConfigGroup.
-- Add h3cDot11WlanInfPVID to h3cDot11ServicePolicyTable.
-- Add h3cDot11CipherKeyType to h3cDot11ServicePolicyExtTable.
-- Add h3cDot11CfgPwrAttValue to h3cDot11RadioToConfigTable.
-- Add new table h3cDot11APSysInfoSetTable to h3cDot11APConfigGroup.
-- Add h3cDot11SSIDWepIDConflictTrap to h3cDot11CfgNotifications.
-- Add new table h3cDot11CfgTrapVarObjects to h3cDot11CfgNotifyGroup.
-- V2.2 2009-07-29 modified by Heziqi
-- Add new node h3cDot11ServiceSetVlanId for h3cDot11APServiceSetTable.
-- Add h3cDot11UplinkTrackId to h3cDot11GlobeConfigGroup.
-- Add h3cDot11APLimitTable.
-- Change description of h3cDot11StaKeepALiveTimerIntvl.
-- Add new node h3cDot11RadioTxArithmetic for H3cDot11RadioToConfigTable.
-- V2.3 2009-07-29 modified by Jinyi
-- Add new table h3cDot11APIfSetTable
-- V2.4 2009-12-01 modified by Wang Shaojie
-- Add new node h3cDot11APGetIPMethod for h3cDot11APTemplateTable.
-- Add new group h3cDot11CfgTrapConfigGroup.
-- Add new table h3cDot11CfgSwitchTrapTable to h3cDot11CfgTrapConfigGroup.
-- Add new node h3cDot11BeaconIntervalMs to h3cDot11RadioPolicyTable.
-- Add new node h3cDot11SPInCirStaticValue, h3cDot11SPOutCirStaticValue
-- to h3cDot11ServicePolicyTable.
-- Modify description of h3cDot11SecurityCiphers.
-- Add new node h3cDot11StatisIntervMode to h3cDot11APTemplateTable.
-- Modify SYNTAX of h3cDot11APWorkMode.
-- Modify STATUS of h3cDot11StatisInterv.
-- Add new node h3cDot11SmartRateSet to h3cDot11DataRateConfigTable.
-- 2010-02-22 modified by Wang Chunsheng
-- Add new node h3cDot11CfgChannelLockStat, h3cDot11CfgPowerLockStat,
-- h3cDot11CfgLBRdGroupId, h3cDot11CfgRRMSDRdGroupId to h3cDot11RadioToConfigTable.
-- 2010-03-15 modified by Wang Lu
-- Add h3cDot11RtCollectSwitch, h3cDot11RglCollectIntvl, and
-- h3cDot11RtCollectIntvl to h3cDot11GlobeConfigGroup
-- Add h3cDot11SPIsolate to h3cDot11ServicePolicyTable
-- Add h3cDot11APServiceVlanTable, h3cDot11RadioConfigTable,
-- h3cDot11RadioPolicyExtTable and h3cDot11RadioSSIDCfgTable
-- Remove h3cDot11CfgTrapConfigGroup
-- Add h3cDot11SrvPortSecurityTable
-- 2010-06-01 Modified by Wang Shaojie, Yin Junjie
-- Add h3cDot11RCApPowerLevel, h3cDot11RCDynamicChlState,
-- h3cDot11RCDynamicPowerState to h3cDot11RadioConfigTable.
-- Add h3cDot11APSerialIDTable
-- Add h3cDot11APSTVlanTable
-- 2010-07-08 Modified the index of h3cDot11APSysInfoSetTable by jinyi
-- 2010-08-05 Modified by Yin Junjie
-- Add new table h3cDot11SrvPolicyExtendTable
-- Add h3cDot11SPEnable to h3cDot11SrvPolicyExtendTable
-- 2010-09-02 Modified by Yin Junjie
-- Add new node h3cDot11AdjIntfTrapThreshold
-- to h3cDot11GlobeConfigGroup
-- Add h3cDot11RCRadioStatus to h3cDot11RadioConfigTable
-- V2.5 2010-09-25 Modified by Wu Xiaopeng
-- Remove Size list of h3cDot11APName.
-- V2.6 2011-05-23 Modified by Cui Kai
-- Add new node h3cDot11WAPIAuthServerIP to h3cDot11ServicePolicyTable
-- 2011-07-08 Modified by Niu Jian
-- Change type of h3cDot11CfgSTNASPortID to OCTET STRING
-- V2.7 2011-07-13 Modified by Yu Bo
-- Add new node h3cDot11RCRadioRate to h3cDot11RadioConfigTable
-- Add new node h3cDot11RCPwrAdjustStepLength to h3cDot11RadioConfigTable
-- 2011-08-08 Modified by Xiao Min
-- Add new table h3cDot11nRadioCfg2Table
-- 2011-08-10 Modified by limingjin
-- Add h3cDot11RadioCfgType2 to h3cDot11RadioIntfConfigTable
-- Add h3cDot11RCRadioType2 to h3cDot11RadioConfigTable
-- Add h3cDot11CfgRadioType2 to h3cDot11RadioToConfigTable
-- V2.8 2011-09-28 Modified by zhanghu
-- Add h3cDot11ApTrapEnabled to h3cDot11APTemplateTable
-- Add h3cDot11AllAPMonitorMode to h3cDot11APTemplateTable
-- Add h3cDot11SIDAPTemplateName, h3cDot11SIDModelAlias, h3cDot11SIDAPDescription, h3cDot11SIDRowStatus,
-- h3cDot11SIDAPName, h3cDot11SIDStatisInterv, h3cDot11SIDAPBroadcastProbeReply,
-- h3cDot11SIDAPStaIdleTimerInterv, h3cDot11SIDStaKeepAliveTimerInterv,
-- h3cDot11SIDAPCir, h3cDot11SIDAPCbs, h3cDot11SIDAPPriorityLevel,
-- h3cDot11SIDAPElementID, h3cDot11SIDAPDevDetectEnable, h3cDot11SIDAPStatisIntervMode
-- to h3cDot11APSerialIDTable
-- 2011-08-28 Modified by Wang Lu
-- Add h3cDot11CfgSaEnable, h3cDot11CfgSaBand, h3cDot11CfgIDSEnable,
-- h3cDot11CfgSaCltRtFFTData to h3cDot11RadioToConfigTable
-- =============================================================================
A3COM-HUAWEI-DOT11-CFG-MIB DEFINITIONS ::= BEGIN
IMPORTS
TruthValue,
RowStatus,
DisplayString,
DateAndTime,
MacAddress,
IpAddress
FROM SNMPv2-TC
ifIndex
FROM RFC1213-MIB
MODULE-IDENTITY,
NOTIFICATION-TYPE,
OBJECT-TYPE,
Integer32,
Unsigned32
FROM SNMPv2-SMI
InetAddress
FROM INET-ADDRESS-MIB
h3cDot11,
H3cDot11RadioType,
H3cDot11TxPwrLevelScopeType,
H3cDot11ChannelScopeType,
H3cDot11SSIDStringType,
H3cDot11AuthenType,
H3cDot11RadioScopeType,
H3cDot11SSIDEncryptModeType,
H3cDot11SecIEStatusType,
H3cDot11PreambleType,
H3cDot11ServicePolicyIDType,
H3cDot11TunnelSecSchemType,
H3cDot11RadioElementIndex,
H3cDot11WorkMode,
H3cDot11CirMode,
h3cDot11APElementIndex,
H3cDot11ObjectIDType,
H3cDot11RadioType2
FROM A3COM-HUAWEI-DOT11-REF-MIB;
h3cDot11CFG 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 provides information about WLAN configuration.
GLOSSARY
IEEE 802.11
Standard to encourage interoperability among
wireless networking equipment.
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.
Fat AP
Applied in the home, SOHO and so on, and it could
work independently 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.
BSS
IEEE 802.11 Basic Service Set (Radio Cell). The
BSS of an AP comprises of the stations directly
associating with the AP.
Radio
The chip set to receive and send wireless signal.
Association
The service used to establish access point
or station mapping and enable station invocation
of the distribution system services.
(Wireless clients attempt to connect to
access points.)
Basic Rate
A data rate that is mandatory for client
devices to support in order for them to achieve
successful association.
MSDU
MAC Service Data Unit, it is frame format defined by
802.11.
TU
It is 1,024 microseconds (ms), which is about 1
millisecond.
AKM
The authentication and key management method defined by
802.11i, and which includes 802.1x and pre-shared key."
REVISION "201009251800Z" -- Sep 25, 2010 at 18:00 GMT
DESCRIPTION
"Modified to remove some issue."
REVISION "201009021800Z" -- Sep 2, 2010 at 18:00 GMT
DESCRIPTION
"Modified to add new node."
REVISION "200907291800Z" -- Jul 29, 2009 at 18: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 "200903201530Z" -- Mar 20, 2009 at 15:30 GMT
DESCRIPTION
"Modified to add new value for appointed node."
REVISION "200811071530Z" -- Nov 07, 2008 at 15:30 GMT
DESCRIPTION
"Modified to add new nodes and new table."
REVISION "200807091800Z" -- July 09, 2008 at 18:00 GMT
DESCRIPTION
"Modified to add new groups."
REVISION "200802251800Z" -- Feb 25, 2008 at 18:00 GMT
DESCRIPTION
"Modified to add new nodes."
REVISION "200712211800Z" -- Dec 21, 2007 at 18:00 GMT
DESCRIPTION
"Modified to add new nodes."
REVISION "200710091655Z" -- October 09, 2007 at 16:55 GMT
DESCRIPTION
"changed for new requirements"
REVISION "200706191800Z" -- June 19, 2007 at 18:00 GMT
DESCRIPTION
"Modified to add new table."
REVISION "200704272000Z" -- Apr 27, 2007 at 20:00 GMT
DESCRIPTION
"Modified to fix some issue."
REVISION "200702012000Z" -- February 01, 2007 at 20:00 GMT
DESCRIPTION
"Modified to support fat AP."
REVISION "200605101900Z" -- May 10, 2006 at 19:00 GMT
DESCRIPTION
"The initial revision of this MIB module."
::= { h3cDot11 4 }
-- *****************************************************************************
-- * Major sections
-- *****************************************************************************
-- AP Configuration Group
-- DEFINED AS "The group to provide the configuration information
-- for APs.
h3cDot11GlobeConfigGroup OBJECT IDENTIFIER ::= { h3cDot11CFG 1 }
h3cDot11PolicyConfigGroup OBJECT IDENTIFIER ::= { h3cDot11CFG 2 }
-- Policy Configuration Group has the following children:
-- h3cDot11RadioPolicyTable ::= { h3cDot11PolicyConfigGroup 1 }
-- h3cDot11ServicePolicyTable ::= { h3cDot11PolicyConfigGroup 2 }
-- h3cDot11ServicePolicyExtTable ::= { h3cDot11PolicyConfigGroup 3 }
-- h3cDot11RadioPolicyExtTable ::= { h3cDot11PolicyConfigGroup 4 }
h3cDot11APConfigGroup OBJECT IDENTIFIER ::= { h3cDot11CFG 3 }
-- AP Configuration Group has the following children:
-- h3cDot11APTemplateTable ::= { h3cDot11APConfigGroup 1 }
-- h3cDot11RadioToConfigTable ::= { h3cDot11APConfigGroup 2 }
-- h3cDot11APServiceSetTable ::= { h3cDot11APConfigGroup 3 }
-- h3cDot11APSysInfoSetTable ::= { h3cDot11APConfigGroup 4 }
-- h3cDot11APLimitTable ::= { h3cDot11APConfigGroup 5 }
-- h3cDot11APSerialIDTable ::= { h3cDot11APConfigGroup 10 }
-- h3cDot11APSTVlanTable ::= { h3cDot11APConfigGroup 11 }
h3cDot11RadioIntfConfigGroup OBJECT IDENTIFIER ::= { h3cDot11CFG 4 }
-- Radio Interface Group has the following children:
-- h3cDot11RadioIntfConfigTable ::= { h3cDot11RadioIntfConfigGroup 1 }
-- h3cDot11RadioIntfBindTable ::= { h3cDot11RadioIntfConfigGroup 2 }
h3cDot11DataRateConfigGroup OBJECT IDENTIFIER ::= { h3cDot11CFG 5 }
-- Data Rate Config Group has the following children:
-- h3cDot11DataRateConfigTable ::= { h3cDot11DataRateConfigGroup 1 }
h3cDot11InterfaceConfigGroup OBJECT IDENTIFIER ::= { h3cDot11CFG 6 }
-- Interface Config Group has the following children:
-- h3cDot11WlanEssIfTable ::= { h3cDot11InterfaceConfigGroup 1 }
-- h3cDot11WlanBssIfTable ::= { h3cDot11InterfaceConfigGroup 2 }
-- h3cDot11WLANEthernetIfTable ::= { h3cDot11InterfaceConfigGroup 3 }
-- h3cDot11PortSecurityTable ::= { h3cDot11InterfaceConfigGroup 4 }
-- h3cDot11WlanMeshIfTable ::= { h3cDot11InterfaceConfigGroup 5 }
h3cDot11ACBackupGroup OBJECT IDENTIFIER ::= { h3cDot11CFG 7 }
h3cDot11RadioElementConfigGroup OBJECT IDENTIFIER ::= { h3cDot11CFG 8 }
-- Radio Element Config Group has the following children:
-- h3cDot11nRadioCfgTable ::= { h3cDot11RadioElementConfigGroup 1 }
-- h3cDot11RadioWDSTable ::= { h3cDot11RadioElementConfigGroup 2 }
-- h3cDot11nRadioCfg2Table ::= { h3cDot11RadioElementConfigGroup 3 }
h3cDot11CfgNotifyGroup OBJECT IDENTIFIER ::= { h3cDot11CFG 9 }
-- *****************************************************************************
-- * h3cDot11GlobeConfigGroup Definition
-- *****************************************************************************
h3cDot11GlobalCountryCode OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(3))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Represents the country code for wireless network."
::= { h3cDot11GlobeConfigGroup 1 }
h3cDot11StaKeepALiveTimerIntvl OBJECT-TYPE
SYNTAX Unsigned32
UNITS "second"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Represents the interval of the keep alive requests sent between
AP and STA.
Default value 0 : The keep alive function is disabled."
DEFVAL { 0 }
::= { h3cDot11GlobeConfigGroup 2 }
h3cDot11StaIdleTimerIntvl OBJECT-TYPE
SYNTAX Integer32
UNITS "second"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Represents the interval for which the link between AP and STA
( power-save or awake ) can be idle."
::= { h3cDot11GlobeConfigGroup 3 }
h3cDot11BroadcastProbeReply OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Represents enable the AP to reply broadcast probe or not.
'true' : The AP to reply broadcast probe is enabled.
'false': The AP to reply broadcast probe is disabled"
DEFVAL { true }
::= { h3cDot11GlobeConfigGroup 4 }
h3cDot11APScanMode OBJECT-TYPE
SYNTAX INTEGER
{
active(1),
passive(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Represents the scanning mode for AP.
The following values are supported:
active(1), - AP will actively do scan.
passive(2) - AP will passively do scan."
DEFVAL { passive }
::= { h3cDot11GlobeConfigGroup 5 }
h3cDot11ACCtrlTunnelSecSupport OBJECT-TYPE
SYNTAX H3cDot11TunnelSecSchemType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Represents what security schemes are supported for CAPWAP Control
tunnel."
::= { h3cDot11GlobeConfigGroup 6 }
h3cDot11ACDataTunnelSecSupport OBJECT-TYPE
SYNTAX H3cDot11TunnelSecSchemType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Represents what security schemes are supported for CAPWAP data
tunnel. The cleartxt is the default scheme."
DEFVAL { cleartxt }
::= { h3cDot11GlobeConfigGroup 7 }
h3cDot11ACAutoAPSupport OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Represents enable the auto AP functionality or not.
'true' : The auto AP functionality is enabled.
'false': The auto AP functionality is disabled"
DEFVAL { false }
::= { h3cDot11GlobeConfigGroup 8 }
h3cDot11AutoAPName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..127))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Represents the name of auto AP which need to be made persistent.
When read the value from the node, NULL value be returned."
::= { h3cDot11GlobeConfigGroup 9 }
h3cDot11PersistentName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..127))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Represents the new name of auto AP after being made persistent.
When read the value from the node, NULL value be returned."
::= { h3cDot11GlobeConfigGroup 10 }
h3cDot11IntfTrapThreshold OBJECT-TYPE
SYNTAX Integer32
UNITS "dbm"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Represents threshold of interference trap. If signal strength of
the device exceeds this threshold, corresponding trap will
be sent."
::= { h3cDot11GlobeConfigGroup 11 }
h3cDot11MonitorInterval OBJECT-TYPE
SYNTAX Unsigned32(0 | 5..15)
UNITS "minute"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Represents the monitoring interval.
Default value 0 : The monitoring functionality is changed to
real-time mode."
DEFVAL { 0 }
::= { h3cDot11GlobeConfigGroup 12 }
h3cDot11SampleInterval OBJECT-TYPE
SYNTAX Unsigned32(0 | 10..300)
UNITS "second"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Represents the sampling interval.
Default value 0 : The sampling functionality is disabled."
DEFVAL { 0 }
::= { h3cDot11GlobeConfigGroup 13 }
h3cDot11ChnlSwitChkInterval OBJECT-TYPE
SYNTAX Unsigned32(8..180)
UNITS "minute"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Represents the checking interval of channel switch."
DEFVAL { 8 }
::= { h3cDot11GlobeConfigGroup 14 }
h3cDot11APUserUplimit OBJECT-TYPE
SYNTAX Unsigned32(0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Represents the upper limit of user which has access to this AP."
::= { h3cDot11GlobeConfigGroup 15 }
h3cDot11APL2IsolateEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Represents enable the layer2 isolation or not.
'true' : The layer2 isolation functionality is enabled.
'false': The layer2 isolation functionality is disabled."
DEFVAL { false }
::= { h3cDot11GlobeConfigGroup 16 }
h3cDot11APBSSIDSupportNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Represents the max number of BSSID supported by Current AP."
::= { h3cDot11GlobeConfigGroup 17 }
h3cDot11APLastUpdateStatTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Represents date and time update statistic information lately."
::= { h3cDot11GlobeConfigGroup 18 }
h3cDot11APDoSProtectEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Represents enable the DOS protection or not.
'true' : The DOS protection functionality is enabled.
'false': The DOS protection functionality is disabled."
DEFVAL { false }
::= { h3cDot11GlobeConfigGroup 19 }
h3cDot11MaxAPPerIf OBJECT-TYPE
SYNTAX Unsigned32(0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Represents max AP number that can be connected to AC interface."
::= { h3cDot11GlobeConfigGroup 20 }
h3cDot11SampleTimeStamp OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Represents the start time of current sample period."
::= { h3cDot11GlobeConfigGroup 21 }
h3cDot11UplinkTrackId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Represents the track id of AP.
Default value 0 : The uplink track function for AP is disabled."
DEFVAL { 0 }
::= { h3cDot11GlobeConfigGroup 22 }
h3cDot11RtCollectSwitch OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to turn on/off real-time statistics collection
between AC and AP. If the value is true, h3cDot11RtCollectIntvl will
take effect. Otherwise, h3cDot11RglCollectIntvl will take effect."
DEFVAL { false }
::= { h3cDot11GlobeConfigGroup 23 }
h3cDot11RglCollectIntvl OBJECT-TYPE
SYNTAX Integer32
UNITS "second"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents interval to regularly collect statistics from
AC to AP."
::= { h3cDot11GlobeConfigGroup 24 }
h3cDot11RtCollectIntvl OBJECT-TYPE
SYNTAX Integer32
UNITS "second"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents interval to collect real-time statistics from
AC to AP."
::= { h3cDot11GlobeConfigGroup 25 }
h3cDot11AllAPCpuUsageThreshold OBJECT-TYPE
SYNTAX Integer32(0..100)
UNITS "onepercent"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The CPU usage threshold for all AP."
::= { h3cDot11GlobeConfigGroup 26 }
h3cDot11AllAPMemUsageThreshold OBJECT-TYPE
SYNTAX Integer32(0..100)
UNITS "onepercent"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The memory usage threshold for all AP."
::= { h3cDot11GlobeConfigGroup 27 }
h3cDot11AdjIntfTrapThreshold OBJECT-TYPE
SYNTAX Integer32
UNITS "dbm"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Represents threshold of adjacent interference trap. If signal strength
of the device exceeds this threshold, corresponding trap will be sent."
::= { h3cDot11GlobeConfigGroup 28 }
h3cDot11AllAPMonitorMode OBJECT-TYPE
SYNTAX INTEGER
{
normal(1),
monitor(2),
hybrid(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Represents what work mode for All AP.
The following values are supported:
normal, - AP will supply WLAN service.
monitor - AP will be a monitor to find attack.
hybrid - AP will supply WLAN service and Device detection is
enabled."
DEFVAL { normal }
::= { h3cDot11GlobeConfigGroup 29 }
-- *****************************************************************************
-- * End of h3cDot11GlobeConfigGroup Definition
-- *****************************************************************************
-- *****************************************************************************
-- * h3cDot11RadioPolicyTable Definition
-- *****************************************************************************
h3cDot11RadioPolicyTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cDot11RadioPolicyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table defines the parameters for radio policy, as per
radio policy of CLI.
One radio policy could be assigned to the different radios (AP)."
::= { h3cDot11PolicyConfigGroup 1 }
h3cDot11RadioPolicyEntry OBJECT-TYPE
SYNTAX H3cDot11RadioPolicyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry contains information of each radio policy."
INDEX
{
IMPLIED h3cDot11RadioPolicyName
}
::= { h3cDot11RadioPolicyTable 1 }
H3cDot11RadioPolicyEntry ::= SEQUENCE
{
h3cDot11RadioPolicyName OCTET STRING,
h3cDot11BeaconInterval Integer32,
h3cDot11DtimInterval Integer32,
h3cDot11RtsThreshold Integer32,
h3cDot11FragThreshold Integer32,
h3cDot11ShortRetryThreshold Integer32,
h3cDot11LongRetryThreshold Integer32,
h3cDot11MaxRxLifetime Unsigned32,
h3cDot11RdoPolicyRowStatus RowStatus,
h3cDot11RdoClientMaxCount Integer32,
h3cDot11BeaconIntervalMs Integer32
}
h3cDot11RadioPolicyName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..127))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Represents the name of radio policy."
::= { h3cDot11RadioPolicyEntry 1 }
h3cDot11BeaconInterval OBJECT-TYPE
SYNTAX Integer32
UNITS "TU"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Represents the interval for Beacon management frame."
DEFVAL { 100 }
::= { h3cDot11RadioPolicyEntry 2 }
h3cDot11DtimInterval OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Represents the number of beacon intervals that shall elapse
between transmission of Beacons frames containing a Traffic
Indication Map (TIM) element whose DTIM Count field is 0.
This value is transmitted in the Delivery TIM (DTIM) Period
field of Beacon frames."
DEFVAL { 1 }
::= { h3cDot11RadioPolicyEntry 3 }
h3cDot11RtsThreshold OBJECT-TYPE
SYNTAX Integer32
UNITS "byte"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Represents the current minimum size,in octets,of the MAC
protocol data unit (MPDU), below which a Request to send/Clear
to send (RTS/CTS) handshake shall not be performed."
DEFVAL { 2346 }
::= { h3cDot11RadioPolicyEntry 4 }
h3cDot11FragThreshold OBJECT-TYPE
SYNTAX Integer32
UNITS "byte"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Represents the current maximum size, in octets, of the MPDU that
may be delivered to the PHY. A MSDU shall be broken into
fragments if its size exceeds the value of this attribute after
adding MAC headers and trailers."
DEFVAL { 2346 }
::= { h3cDot11RadioPolicyEntry 5 }
h3cDot11ShortRetryThreshold OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Represents the maximum number of transmission attempts of a
frame, the length of which is less than or equal to
h3cDot11RTSThreshold, that shall be made before a failure
condition is indicated."
DEFVAL { 7 }
::= { h3cDot11RadioPolicyEntry 6 }
h3cDot11LongRetryThreshold OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Represents the maximum number of transmission attempts of a
frame, the length of which is longer than h3cDot11RTSThreshold,
that shall be made before a failure condition is indicated."
DEFVAL { 4 }
::= { h3cDot11RadioPolicyEntry 7 }
h3cDot11MaxRxLifetime OBJECT-TYPE
SYNTAX Unsigned32
UNITS "millisecond"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Represents the elapsed time. After the time specified by
h3cDot11MaxRxLifetime, the further attempts to reassemble the
MSDU shall be terminated."
DEFVAL { 2000 }
::= { h3cDot11RadioPolicyEntry 8 }
h3cDot11RdoPolicyRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this table entry."
::= { h3cDot11RadioPolicyEntry 9 }
h3cDot11RdoClientMaxCount OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Represent the maximum number of stations supported by
this radio policy."
::= { h3cDot11RadioPolicyEntry 10 }
h3cDot11BeaconIntervalMs OBJECT-TYPE
SYNTAX Integer32
UNITS "ms"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Represents the interval for Beacon management frame."
::= { h3cDot11RadioPolicyEntry 11 }
-- *****************************************************************************
-- * End of h3cDot11RadioPolicyTable Definition
-- *****************************************************************************
-- *****************************************************************************
-- * h3cDot11ServicePolicyTable Definition
-- *****************************************************************************
h3cDot11ServicePolicyTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cDot11ServicePolicyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table defines the parameters for ESS, as per service policy
of CLI.
One service policy could be assigned to the different radios
(AP)."
::= { h3cDot11PolicyConfigGroup 2 }
h3cDot11ServicePolicyEntry OBJECT-TYPE
SYNTAX H3cDot11ServicePolicyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry contains information of each service policy."
INDEX
{
h3cDot11ServicePolicyID
}
::= { h3cDot11ServicePolicyTable 1 }
H3cDot11ServicePolicyEntry ::= SEQUENCE
{
h3cDot11ServicePolicyID H3cDot11ServicePolicyIDType,
h3cDot11SSIDName H3cDot11SSIDStringType,
h3cDot11SSIDHidden TruthValue,
h3cDot11AuthenMode H3cDot11AuthenType,
h3cDot11SSIDEncryptionMode H3cDot11SSIDEncryptModeType,
h3cDot11WlanInfBindingType OCTET STRING,
h3cDot11WlanInfBindingID Integer32,
h3cDot11SrvPolicyRowStatus RowStatus,
h3cDot11ClientMaxCount Integer32,
h3cDot11SPInCirMode H3cDot11CirMode,
h3cDot11SPInCirValue Integer32,
h3cDot11SPOutCirMode H3cDot11CirMode,
h3cDot11SPOutCirValue Integer32,
h3cDot11WlanInfPVID Integer32,
h3cDot11SPInCirStaticValue Integer32,
h3cDot11SPOutCirStaticValue Integer32,
h3cDot11SPIsolate TruthValue,
h3cDot11WAPIAuthServerIP IpAddress
}
h3cDot11ServicePolicyID OBJECT-TYPE
SYNTAX H3cDot11ServicePolicyIDType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Represents the ID of each service policy."
::= { h3cDot11ServicePolicyEntry 1 }
h3cDot11SSIDName OBJECT-TYPE
SYNTAX H3cDot11SSIDStringType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Represents the ESS. As per CLI, the value of
service policy name will be SSID."
::= { h3cDot11ServicePolicyEntry 2 }
h3cDot11SSIDHidden OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This attribute controls whether the SSID will be advertised in
the beacon frame.
If it is true, then SSID will not be advertised in the beacon
frame."
DEFVAL { false }
::= { h3cDot11ServicePolicyEntry 3 }
h3cDot11AuthenMode OBJECT-TYPE
SYNTAX H3cDot11AuthenType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Represents the Authentication mode defined by 802.11."
::= { h3cDot11ServicePolicyEntry 4 }
h3cDot11SSIDEncryptionMode OBJECT-TYPE
SYNTAX H3cDot11SSIDEncryptModeType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Represents the encryption mode for this ESS."
::= { h3cDot11ServicePolicyEntry 5 }
h3cDot11WlanInfBindingType OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Represents the service policy will bind to what kind of
data forwarding interface."
DEFVAL { "WLAN-ESS" }
::= { h3cDot11ServicePolicyEntry 6 }
h3cDot11WlanInfBindingID OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Represents the interface ID of the interface that ESS will
bind to.
If the value is set to -1, the binding will be removed."
::= { h3cDot11ServicePolicyEntry 7 }
h3cDot11SrvPolicyRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this table entry."
::= { h3cDot11ServicePolicyEntry 8 }
h3cDot11ClientMaxCount OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Represent the maximum number of stations supported by
this service policy."
::= { h3cDot11ServicePolicyEntry 9 }
h3cDot11SPInCirMode OBJECT-TYPE
SYNTAX H3cDot11CirMode
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
CIR(committed information rate) mode of inbound direction.
This object is useful only when the corresponding CIR is nonzero.
If value of this object is changed, corresponding CIR will be reset."
DEFVAL { static }
::= { h3cDot11ServicePolicyEntry 10 }
h3cDot11SPInCirValue OBJECT-TYPE
SYNTAX Integer32
UNITS "Kbps"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Represents the CIR of inbound direction of this service policy.
If the value is 0, it means that no flow control is applied to
the service policy, and the corresponding CIR mode is meaningless."
DEFVAL { 0 }
::= { h3cDot11ServicePolicyEntry 11 }
h3cDot11SPOutCirMode OBJECT-TYPE
SYNTAX H3cDot11CirMode
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
CIR(committed information rate) mode of outbound direction.