-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathCISCO-LWAPP-QOS-MIB-V1SMI.my
1714 lines (1550 loc) · 56.6 KB
/
CISCO-LWAPP-QOS-MIB-V1SMI.my
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
-- MIB file created 22-Jul-2010 13:05:09, by
-- SMICng version 2.2.11-beta(PRO)(Solaris), January 20, 2001. Enterprise key cisco.com
CISCO-LWAPP-QOS-MIB DEFINITIONS ::= BEGIN
-- From file: "CISCO-LWAPP-QOS-MIB.my"
-- Compile options "4 7 F H N W 03 06 0B 0G 0N 0T"
IMPORTS
TruthValue
FROM SNMPv2-TC-v1
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
TimeIntervalSec
FROM CISCO-TC
cldcClientMacAddress
FROM CISCO-LWAPP-DOT11-CLIENT-MIB
cLApSysMacAddress, cLApDot11IfSlotId, cLApName, cLApDot11IfType
FROM CISCO-LWAPP-AP-MIB
cLWlanIndex
FROM CISCO-LWAPP-WLAN-MIB
ciscoMgmt
FROM CISCO-SMI
Counter, Gauge
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
TRAP-TYPE
FROM RFC-1215;
ciscoLwappQosMIB OBJECT IDENTIFIER ::= { ciscoMgmt 524 }
-- MODULE-IDENTITY
-- LastUpdated
-- 201007210000Z
-- OrgName
-- Cisco Systems Inc.
-- ContactInfo
-- Cisco Systems,
-- Customer Service
-- Postal: 170 West Tasman Drive
-- San Jose, CA 95134
-- USA
-- Tel: +1 800 553-NETS
--
-- Email: [email protected]
-- Descr
-- This MIB is intended to be implemented on all those
-- devices operating as Central controllers, that
-- terminate the Light Weight Access Point Protocol
-- tunnel from Cisco Light-weight LWAPP Access Points.
--
-- Information provided by this MIB is used to study
-- the quality of service in the voice and video traffic
-- on the WLAN.
--
-- The relationship between CC and the LWAPP APs
-- can be depicted as follows:
--
-- +......+ +......+ +......+
-- + + + + + +
-- + CC + + CC + + CC +
-- + + + + + +
-- +......+ +......+ +......+
-- .. . .
-- .. . .
-- . . . .
-- . . . .
-- . . . .
-- . . . .
-- +......+ +......+ +......+ +......+
-- + + + + + + + +
-- + AP + + AP + + AP + + AP +
-- + + + + + + + +
-- +......+ +......+ +......+ +......+
-- . . .
-- . . . .
-- . . . .
-- . . . .
-- . . . .
-- +......+ +......+ +......+ +......+
-- + + + + + + + +
-- + MN + + MN + + MN + + MN +
-- + + + + + + + +
-- +......+ +......+ +......+ +......+
--
--
-- The LWAPP tunnel exists between the controller and
-- the APs. The MNs communicate with the APs through
-- the protocol defined by the 802.11 standard.
--
-- LWAPP APs, upon bootup, discover and join one of the
-- controllers and the controller pushes the configuration,
-- that includes the WLAN parameters, to the LWAPP APs.
-- The APs then encapsulate all the 802.11 frames from
-- wireless clients inside LWAPP frames and forward
-- the LWAPP frames to the controller.
--
-- GLOSSARY
--
-- Access Point ( AP )
--
-- An entity that contains an 802.11 medium access
-- control ( MAC ) and physical layer ( PHY ) interface
-- and provides access to the distribution services via
-- the wireless medium for associated clients.
--
-- LWAPP APs encapsulate all the 802.11 frames in
-- LWAPP frames and sends them to the controller to which
-- it is logically connected.
--
-- Gratuitous Probe Response (GPR)
--
-- The Gratuitous Probe Response feature aids in conserving
-- battery power of WLAN-enabled cell phones by providing
-- a high rate packet on the order of tens of milliseconds
-- such that these kind of phones can wake up and wait at
-- predefined intervals, to reduce battery power. The
-- GPR packet is transmitted from the AP at a predefined
-- time interval.
--
--
-- Light Weight Access Point Protocol ( LWAPP )
--
-- This is a generic protocol that defines the
-- communication between the Access Points and the
-- Central Controller.
--
-- Mobile Node ( MN )
--
-- A roaming 802.11 wireless device in a wireless
-- network associated with an access point. Mobile Node
-- and client are used interchangeably.
--
-- TU
--
-- A measurement of time in units of 1024 microseconds.
--
-- User Priority ( UP )
--
-- Specifies a the priority rules in QOS for handling user
-- priority.
--
-- EDCA
--
-- As defined in 802.11e standard, Enhanced distributed
-- channel access(EDCA) parameter set element is used
-- by the AP to establish policy, to change policy when
-- accepting new clients, or to adapt to changes in
-- offered load.
--
-- REFERENCE
--
-- [1] Wireless LAN Medium Access Control ( MAC ) and
-- Physical Layer ( PHY ) Specifications
--
-- [2] Draft-obara-capwap-lwapp-00.txt, IETF Light
-- Weight Access Point Protocol
-- RevDate
-- 201007210000Z
-- RevDescr
-- Added the following groups:
-- ciscoLwappQosMIBComplianceRev2,
-- ciscoLwappQosDot11aConfigGroupSup2,
-- ciscoLwappQosDot11bConfigGroupSup2,
-- ciscoLwappQosDot11SipCacStatsGroup,
-- ciscoLwappQosDot11SipConfigGroup,
-- ciscoLwappQosDot11VoiceStatsGroup,
-- ciscoLwappQosDot11VoiceConfigGroup,
-- ciscoLwappQosConfigGroup,
-- ciscoLwappQosDot11VoiceNotifGroup
--
-- Deprecated ciscoLwappQosMIBComplianceRev1 and
-- replaced it with ciscoLwappQosMIBComplianceRev2.
-- RevDate
-- 200701070000Z
-- RevDescr
-- Added ciscoLwappQosDot11aConfigGroupSup1 and
-- ciscoLwappQosDot11bConfigGroupSup1 objects.
-- RevDate
-- 200604130000Z
-- RevDescr
-- Initial version of this MIB module.
ciscoLwappQosMIBNotifs OBJECT IDENTIFIER ::= { ciscoLwappQosMIB 0 }
ciscoLwappQosMIBObjects OBJECT IDENTIFIER ::= { ciscoLwappQosMIB 1 }
ciscoLwappQosMIBConform OBJECT IDENTIFIER ::= { ciscoLwappQosMIB 2 }
cLQd11aCACConfig OBJECT IDENTIFIER ::= { ciscoLwappQosMIBObjects 1 }
cLQd11bCACConfig OBJECT IDENTIFIER ::= { ciscoLwappQosMIBObjects 2 }
cLQd11GprConfig OBJECT IDENTIFIER ::= { ciscoLwappQosMIBObjects 3 }
cLQd11CACStats OBJECT IDENTIFIER ::= { ciscoLwappQosMIBObjects 4 }
cLQEntConfConfig OBJECT IDENTIFIER ::= { ciscoLwappQosMIBObjects 5 }
cLQd11VoiceStats OBJECT IDENTIFIER ::= { ciscoLwappQosMIBObjects 6 }
cLQVoiceWlanConfig OBJECT IDENTIFIER ::= { ciscoLwappQosMIBObjects 7 }
cLQVoiceClient OBJECT IDENTIFIER ::= { ciscoLwappQosMIBObjects 8 }
cLQd11SipCacConfig OBJECT IDENTIFIER ::= { ciscoLwappQosMIBObjects 9 }
cLQConfigObjects OBJECT IDENTIFIER ::= { ciscoLwappQosMIBObjects 10 }
ciscoLwappQosMIBCompliances OBJECT IDENTIFIER ::= { ciscoLwappQosMIBConform 1 }
ciscoLwappQosMIBGroups OBJECT IDENTIFIER ::= { ciscoLwappQosMIBConform 2 }
cLQd11aVoiceAdmCtrlSupport OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to enable or disable admission
control for voice traffic flowing through the 802.11a
interfaces in the controller.
When set to 'true', controller will reserve and manage
max-bandwidth (cLQd11aVoiceMaxAdmBandwidth)
and roaming-bandwidth
(cLQd11aVoiceMaxRoamBandwidth) as per user
configured values.
When disabled, admission control will not be enforced.
This may delay voice traffic depending on load on
the WLAN."
DEFVAL { true }
::= { cLQd11aCACConfig 1 }
cLQd11aVoiceMaxAdmBandwidth OBJECT-TYPE
SYNTAX Gauge(0..100)
-- Units
-- Percent
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object denotes the maximum bandwidth
that can be allocated by controller for voice
traffic when admission control is enabled for
for 802.11a interfaces in the controller.
Please note that the write operation on this
object will be successful only if the 802.11a
network is not operational and the total
value populated for this object for all the
admission control attributes (voice, video)
together does not exceed 100%."
::= { cLQd11aCACConfig 2 }
cLQd11aVoiceMaxRoamBandwidth OBJECT-TYPE
SYNTAX Gauge(0..100)
-- Units
-- Percent
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object represents the bandwidth relative
to the maximum allocated bandwidth indicated by
cLQd11aVoiceMaxAdmBandwidth, that can be
allocated to roaming clients for voice traffic,
when admission control is enabled for 802.11a
interfaces in the controller.
Please note that the write operation on this
object will be successful only if the 802.11a
network is disabled and not operational. The
value configured through this object takes
effect when the 802.11a network is enabled."
DEFVAL { 0 }
::= { cLQd11aCACConfig 3 }
cLQd11aVideoAdmCtrlSupport OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to enable or disable admission
control for video traffic flowing through the 802.11a
interfaces in the controller.
When set to 'true', controller will reserve and manage
max-bandwidth (cLQd11aVideoMaxAdmBandwidth)
and roaming-bandwidth
(cLQd11aVideoMaxRoamBandwidth) as per user
configured values.
When disabled, admission control will not be enforced.
This may delay video traffic depending on load on
the WLAN."
DEFVAL { true }
::= { cLQd11aCACConfig 4 }
cLQd11aVideoMaxAdmBandwidth OBJECT-TYPE
SYNTAX Gauge(0..100)
-- Units
-- Percent
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object denotes the maximum bandwidth
that can be allocated by controller for video traffic
when admission control is enabled for 802.11a
interfaces in the controller. When set to 0, all
available bandwidth in 802.11a interfaces can be
allocated to video traffic.
Please note that the write operation on this
object will be successful only if the 802.11a
network is not operational and the total
value populated for this object for all the
admission control attributes (voice, video)
together does not exceed 100%."
DEFVAL { 0 }
::= { cLQd11aCACConfig 5 }
cLQd11aVideoMaxRoamBandwidth OBJECT-TYPE
SYNTAX Gauge(0..100)
-- Units
-- Percent
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object represents the bandwidth relative
to the maximum allocated bandwidth indicated by
cLQd11aVideoMaxAdmBandwidth, that can be
allocated to roaming clients for video traffic,
when admission control is enabled for 802.11a
interfaces in the controller.
Please note that the write operation on this
object will be successful only if the 802.11a
network is disabled and not operational. The
value configured through this object takes effect
when the 802.11a network is enabled and
operational."
DEFVAL { 0 }
::= { cLQd11aCACConfig 6 }
cLQd11bVoiceAdmCtrlSupport OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to enable or disable admission
control for voice traffic flowing through the
802.11b/g interfaces in the controller.
When set to 'true', controller will reserve and manage
max-bandwidth (cLQd11bVoiceMaxAdmBandwidth)
and roaming-bandwidth
(cLQd11bVoiceMaxRoamingBandwidth) as per user
configured values.
When disabled, admission control will not be enforced.
This may delay voice traffic depending on load on the
WLAN."
DEFVAL { true }
::= { cLQd11bCACConfig 1 }
cLQd11bVoiceMaxAdmBandwidth OBJECT-TYPE
SYNTAX Gauge(0..100)
-- Units
-- Percent
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object denotes the maximum bandwidth that
can be allocated by controller for voice traffic
when admission control is enabled for 802.11b/g
interfaces in the controller.
Please note that the write operation on this
object will be successful only if the 802.11b/g
network is not operational and the total
value populated for this object for all the
admission control attributes (voice, video)
together does not exceed 100%."
::= { cLQd11bCACConfig 2 }
cLQd11bVoiceMaxRoamBandwidth OBJECT-TYPE
SYNTAX Gauge(0..100)
-- Units
-- Percent
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object represents the bandwidth relative
to the maximum allocated bandwidth indicated by
cLQd11bVoiceMaxAdmBandwidth, that can be
allocated to roaming clients for voice traffic,
when admission control is enabled for 802.11b
interfaces in the controller.
Please note that the write operation on this
object will be successful only if the 802.11b/g
network is not operational. The value configured
through this object takes effect when the 802.11b/g
network is enabled and operational."
DEFVAL { 0 }
::= { cLQd11bCACConfig 3 }
cLQd11bVideoAdmCtrlSupport OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to enable or disable admission
control for video traffic flowing through the
802.11b/g interfaces in the controller.
When set to 'true', controller will reserve and manage
max-bandwidth (cLQd11bVideoMaxAdmBandwidth)
and roaming-bandwidth
(cLQd11bVideoMaxRoamBandwidth) as per user
configured values.
When disabled, admission control will not be enforced.
This may delay video traffic depending on load on the
WLAN."
DEFVAL { true }
::= { cLQd11bCACConfig 4 }
cLQd11bVideoMaxAdmBandwidth OBJECT-TYPE
SYNTAX Gauge(0..100)
-- Units
-- Percent
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object denotes the maximum bandwidth that
can be allocated by controller for video traffic when
admission control is enabled for 802.11b/g interfaces
in the controller. When set to 0, all available
bandwidth in 802.11b/g interfaces can be allocated
to video traffic.
Please note that the write operation on this
object will be successful only if the 802.11b/g
network is not operational and the total
value populated for this object for all the
admission control attributes (voice, video)
together does not exceed 100%."
DEFVAL { 0 }
::= { cLQd11bCACConfig 5 }
cLQd11bVideoMaxRoamBandwidth OBJECT-TYPE
SYNTAX Gauge(0..100)
-- Units
-- Percent
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This objects represents the bandwidth relative
to the maximum allocated bandwidth indicated by
cLQd11bVideoMaxAdmBandwidth, that can be
allocated to roaming clients for video traffic,
when admission control is enabled for 802.11b
interfaces in the controller.
Please note that the write operation on this
object will be successful only if the 802.11b/g
network is not operational. The value configured
through this object takes effect when the 802.11b/g
network is enabled and operational."
DEFVAL { 0 }
::= { cLQd11bCACConfig 6 }
cLQd11aGprProbeInterval OBJECT-TYPE
SYNTAX Gauge(10..100)
-- Units
-- TU
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to set GPR probe interval
period to be used by all 802.11a interfaces in the
controller, when the radios are advertising any
WLAN with GPR support enabled.
Please note that the write operation on this
object will be successful only if the 802.11a
network is not operational. The value configured
through this object takes effect when the 802.11a
network is enabled and operational."
DEFVAL { 10 }
::= { cLQd11aCACConfig 7 }
cLQd11aVoiceCtrl OBJECT-TYPE
SYNTAX INTEGER {
loadBased(1),
static(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"When admission control is enabled these parameters
can be modified.
loadBased - controller will reserve and manage
max-bandwidth and roaming-bandwidth
based on the load on the WLAN.
static - controller will reserve and
manage max-bandwidth
(cLQd11aVoiceMaxAdmBandwidth)
and roaming-bandwidth
(cLQd11aVoiceMaxRoamBandwidth)
as per user configured values.
When ACM is disabled, admission control will not
be enforced. This may delay voice traffic depending
on the traffic on the WLAN."
DEFVAL { loadBased }
::= { cLQd11aCACConfig 8 }
cLQd11aExpeditedBw OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object specifies if expedited BW feature is
enabled or not.
A value of 'true' will ensure that the APs advertise
the expedited BW support in their beacons and
association responses.
A value of 'false' will ensure that the APs do not
advertise the expedited BW support in their beacons
and association responses."
::= { cLQd11aCACConfig 9 }
cLQd11aEdcaProfile OBJECT-TYPE
SYNTAX INTEGER {
wmmDefault(1),
svpVoice(2),
optimizedVoice(3),
optimizedVideoVoice(4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object specifies the EDCA profile to be used
in EDCA Parameter set element. See glossary for EDCA.
wmmDefault - WMM default standard parameters.
svpVoice - Spectralink voice priority
parameters.
optimizedVoice - parameters for voice optimization.
optimizedVideoVoice - parameters for video and voice
optimization."
::= { cLQd11aCACConfig 10 }
cLQd11aMacOptimization OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object specifies MAC enhancements for voice,
resulting in improvement in number of voice calls
serviced per access point.
A value of 'true' enables MAC optimization.
A value of 'false' disables MAC optimization."
::= { cLQd11aCACConfig 11 }
cLQd11aMaxCallLimit OBJECT-TYPE
SYNTAX Gauge
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object specifies the max number of CAC Voice Calls
allowed on dot11a radio band.
Value of zero denotes no limit."
::= { cLQd11aCACConfig 12 }
cLQd11bGprProbeInterval OBJECT-TYPE
SYNTAX Gauge(10..100)
-- Units
-- TU
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to set GPR probe interval
period to be used by all 802.11b/g interfaces in the
controller, when the radios are advertising any
WLAN with GPR support enabled.
Please note that the write operation on this
object will be successful only if the 802.11b/g
network is not operational. The value configured
through this object takes effect when the 802.11b/g
network is enabled."
DEFVAL { 10 }
::= { cLQd11bCACConfig 7 }
cLQd11bVoiceCtrl OBJECT-TYPE
SYNTAX INTEGER {
loadBased(1),
static(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"When admission control is enabled these parameters
can be modified.
loadBased - controller will reserve and manage
max-bandwidth and roaming-bandwidth
based on the load on the WLAN.
static - controller will reserve and
manage max-bandwidth
(cLQd11bVoiceMaxAdmBandwidth)
and roaming-bandwidth
(cLQd11bVoiceMaxRoamBandwidth)
as per user configured values.
When ACM is disabled, admission control will not
be enforced. This may delay voice traffic depending
on the traffic on the WLAN."
DEFVAL { loadBased }
::= { cLQd11bCACConfig 8 }
cLQd11bExpeditedBw OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object specifies if expedited BW feature is
enabled or not.
A value of 'true' will ensure that the APs advertise
the expedited BW support in their beacons and
association responses.
A value of 'false' will ensure that the APs do not
advertise the expedited BW support in their beacons
and association responses."
::= { cLQd11bCACConfig 9 }
cLQd11bEdcaProfile OBJECT-TYPE
SYNTAX INTEGER {
wmmDefault(1),
svpVoice(2),
optimizedVoice(3),
optimizedVideoVoice(4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object specifies the EDCA profile to be used
in EDCA Parameter set element. See glossary for EDCA.
wmmDefault - WMM default standard parameters.
svpVoice - Spectralink voice priority
parameters.
optimizedVoice - parameters for voice optimization.
optimizedVideoVoice - parameters for video and voice
optimization."
::= { cLQd11bCACConfig 10 }
cLQd11bMacOptimization OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object specifies MAC enhancements for voice,
resulting in improvement in number of voice calls
serviced per access point.
A value of 'true' enables MAC optimization.
A value of 'false' disables MAC optimization."
::= { cLQd11bCACConfig 11 }
cLQd11bMaxCallLimit OBJECT-TYPE
SYNTAX Gauge
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object specifies the max number of CAC Voice Calls
allowed on dot11b radio band.
Value of zero denotes no limit."
::= { cLQd11bCACConfig 12 }
cLQd11GprTable OBJECT-TYPE
SYNTAX SEQUENCE OF CLQd11GprEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table populates the GPR configuration on the
WLANs configured on this controller.
There exists a row in this table for each WLAN
configured through cLWlanConfigTable. A row is added
is to this table by the agent when a WLAN is created
by the user through an explicit management action
initiated from a network management station.
Similarly a row gets deleted automatically when the
user deletes the particular WLAN."
::= { cLQd11GprConfig 1 }
cLQd11GprEntry OBJECT-TYPE
SYNTAX CLQd11GprEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry represents a conceptual row in
cLQd11GprTable and corresponds to the
GPR configuration on a WLAN."
INDEX { cLWlanIndex }
-- Augments cLWlanConfigEntry FROM CISCO-LWAPP-WLAN-MIB
::= { cLQd11GprTable 1 }
CLQd11GprEntry ::= SEQUENCE {
cLQd11GprSupport TruthValue
}
cLQd11GprSupport OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"If 'true', then the corresponding radios that
advertise this WLAN, will send Gratuitous Probe
Response. If 'false', then the corresponding radios
that advertise this WLAN, will not send Gratuitous
Probe Response."
DEFVAL { false }
::= { cLQd11GprEntry 1 }
cLQd11CACStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CLQd11CACStatsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table populates the call admission control
metrics collected by observing the voice or video
traffic on the dot11 interface of a particular
AP.
There exists a row in this table for each row
corresponding to a dot11 interface found in
cLApDot11IfTable. A row corresponding to a
dot11 interface is added when an AP joins the
controller. The row gets deleted when the AP
dissociates from the controller."
::= { cLQd11CACStats 1 }
cLQd11CACStatsEntry OBJECT-TYPE
SYNTAX CLQd11CACStatsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry represents a conceptual row in
CLQd11CACStatsTable and corresponds to the
admission control statistics for a particular
dot11 interface."
INDEX { cLApSysMacAddress, cLApDot11IfSlotId }
-- Augments cLApDot11IfEntry FROM CISCO-LWAPP-AP-MIB
::= { cLQd11CACStatsTable 1 }
CLQd11CACStatsEntry ::= SEQUENCE {
cLQd11CacVoiceBwInUse Gauge,
cLQd11CacVideoBwInUse Gauge,
cLQd11CacVoiceCallsInProgress Gauge,
cLQd11CacRoamVoiceCallsInProg Gauge,
cLQd11CacTotalVoiceCallsAP Counter,
cLQd11CacTotalRoamCallsAP Counter,
cLQd11CacVoiceCallsRejectedAP Counter,
cLQd11CacRoamCallsRejectedAP Counter,
cLQd11CacRejCallsInsufBw Counter,
cLQd11CacRejCallsBadParams Counter,
cLQd11CacRejCallsPhyRate Counter,
cLQd11CacRejCallsQosPolicy Counter,
cLQd11SipCacNonRoamCallsInProgress Gauge,
cLQd11SipCacRoamCallsInProg Gauge,
cLQd11SipCacTotalNonRoamCallsAP Counter,
cLQd11SipCacTotalRoamCallsAP Counter,
cLQd11SipCacNonRoamCallsRejectedInSuffBw Counter,
cLQd11SipCacRoamCallsRejectedInSuffBw Counter,
cLQd11SipCacNonRoamCallsRejectedMaxLimit Counter,
cLQd11SipCacRoamCallsRejectedMaxLimit Counter,
cLQd11SipCacRejCallsQosPolicy Counter
}
cLQd11CacVoiceBwInUse OBJECT-TYPE
SYNTAX Gauge(0..100)
-- Units
-- Percent
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the voice bandwidth in use
as a percentage of the bandwidth configured through
cLQd11aVoiceMaxAdmBandwidth or
cLQd11bVoiceMaxAdmBandwidth, depending on the type
of this dot11 interface."
::= { cLQd11CACStatsEntry 1 }
cLQd11CacVideoBwInUse OBJECT-TYPE
SYNTAX Gauge(0..100)
-- Units
-- Percent
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the video bandwidth in use
as a percentage of the bandwidth configured through
cLQd11aVideoMaxAdmBandwidth or
cLQd11bVideoMaxAdmBandwidth, depending on the type
of this dot11 interface."
::= { cLQd11CACStatsEntry 2 }
cLQd11CacVoiceCallsInProgress OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the count of the number of
voice calls currently in progress on this dot11
interface."
::= { cLQd11CACStatsEntry 3 }
cLQd11CacRoamVoiceCallsInProg OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the count of the number of
voice calls initiated from roaming clients
currently in progress on this dot11 interface."
::= { cLQd11CACStatsEntry 4 }
cLQd11CacTotalVoiceCallsAP OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the count of the number of
voice calls observed on this dot11 interface
ever since this AP has joined the controller."
::= { cLQd11CACStatsEntry 5 }
cLQd11CacTotalRoamCallsAP OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the count of the number of
voice and video calls initiated from roaming clients
observed on this dot11 interface ever since
this AP has joined the controller."
::= { cLQd11CACStatsEntry 6 }
cLQd11CacVoiceCallsRejectedAP OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the count of the number of
voice calls observed as rejected on this dot11
interface, ever since this AP has joined the
controller."
::= { cLQd11CACStatsEntry 7 }
cLQd11CacRoamCallsRejectedAP OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the count of the number of
voice and video calls initiated from roaming
clients observed as rejected on this dot11
interface, ever since this AP has joined the
controller."
::= { cLQd11CACStatsEntry 8 }
cLQd11CacRejCallsInsufBw OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the count of the number of
calls observed as rejected on this dot11
interface due to insufficient bandwidth, ever
since this AP has joined the controller."
::= { cLQd11CACStatsEntry 9 }
cLQd11CacRejCallsBadParams OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the count of the number of
calls observed as rejected on this dot11
interface due to mismatch in call parameters, ever
since this AP has joined the controller."
::= { cLQd11CACStatsEntry 10 }
cLQd11CacRejCallsPhyRate OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the count of the number of
calls observed as rejected on this dot11
interface due to mismatch in 802.11 data rates,
ever since this AP has joined the controller."
::= { cLQd11CACStatsEntry 11 }
cLQd11CacRejCallsQosPolicy OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the count of the number of
calls observed as rejected on this dot11
interface due to restrictions imposed by QOS
policies, ever since this AP has joined the
controller."
::= { cLQd11CACStatsEntry 12 }
cLQd11SipCacNonRoamCallsInProgress OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of non-roaming SIP calls
currently in progress on this dot11 interface."
::= { cLQd11CACStatsEntry 13 }
cLQd11SipCacRoamCallsInProg OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of SIP calls initiated
from roaming clients currently in progress on this
dot11 interface."
::= { cLQd11CACStatsEntry 14 }
cLQd11SipCacTotalNonRoamCallsAP OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of non-roaming SIP calls
observed on this dot11 interface since this AP has joined
the controller."
::= { cLQd11CACStatsEntry 15 }
cLQd11SipCacTotalRoamCallsAP OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of SIP calls initiated
from roaming clients observed on this dot11 interface ever
this AP has joined the controller."
::= { cLQd11CACStatsEntry 16 }
cLQd11SipCacNonRoamCallsRejectedInSuffBw OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of non-roaming SIP calls
observed as rejected on this dot11 interface due to insufficient
bandwidth, since this AP has joined the controller."
::= { cLQd11CACStatsEntry 17 }
cLQd11SipCacRoamCallsRejectedInSuffBw OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the number of SIP calls initiated
from roaming clients observed as rejected on this dot11
interface due to insufficient bandwidth, since this AP has
joined the controller."
::= { cLQd11CACStatsEntry 18 }
cLQd11SipCacNonRoamCallsRejectedMaxLimit OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory