1-- ArubaOS 6.4.2.3-4.1.1.2_48114
2   WLSR-AP-MIB DEFINITIONS ::= BEGIN
3
4   IMPORTS
5       TEXTUAL-CONVENTION FROM SNMPv2-TC
6
7       MODULE-IDENTITY,
8       OBJECT-TYPE,
9       snmpModules,
10       Integer32,
11	   Counter32,
12	   IpAddress,
13	   NOTIFICATION-TYPE
14           FROM SNMPv2-SMI
15
16       TDomain,
17       DisplayString,
18       PhysAddress,
19       TAddress,
20       TimeInterval,
21       RowStatus,
22       StorageType,
23       TestAndIncr,
24	   MacAddress,
25	   TruthValue
26           FROM SNMPv2-TC
27
28       OBJECT-GROUP
29           FROM SNMPv2-CONF
30		wlsrEnterpriseMibModules
31			FROM ARUBA-MIB;
32
33   wlsrMIB MODULE-IDENTITY
34       LAST-UPDATED "0804160206Z"
35       ORGANIZATION "Aruba Wireless Networks"
36       CONTACT-INFO
37            "Postal:    1322 Crossman Avenue
38                        Sunnyvale, CA 94089
39            E-mail:     dl-support@arubanetworks.com
40            Phone:      +1 408 227 4500"
41       DESCRIPTION
42           "This MIB is for managing the
43			Access Points and Air Monitors.
44			"
45       REVISION        "0804160206Z"
46       DESCRIPTION
47           "The initial revision."
48       ::= { wlsrEnterpriseMibModules 1 }
49
50   wlsrConfigGroup         	OBJECT IDENTIFIER ::= { wlsrMIB 1 }
51   wlsrStatsGroup   		OBJECT IDENTIFIER ::= { wlsrMIB 3 }
52   wlsrAirMonitorGroup   	OBJECT IDENTIFIER ::= { wlsrMIB 4 }
53   wlsrTrapsGroup         	OBJECT IDENTIFIER ::= { wlsrMIB 100 }
54
55   -- wlsrConfigGroup contains objects to describe the Current AP
56   -- Configuration.
57
58-- wlsrConfigTable contains all the configuration data of an AP.
59-- Each row in the table will represent a wifi interface.
60
61   wlsrConfigTable  OBJECT-TYPE
62	  SYNTAX       SEQUENCE OF WlsrConfigEntry
63	  MAX-ACCESS   not-accessible
64      STATUS       current
65      DESCRIPTION
66	  	"
67		 Table will list the configuration data of a wifi interface.
68		"
69      ::= { wlsrConfigGroup 1 }
70
71     wlsrConfigEntry OBJECT-TYPE
72	  SYNTAX       WlsrConfigEntry
73	  MAX-ACCESS   not-accessible
74      STATUS       current
75      DESCRIPTION
76             "
77			 A Wifi configuration entry
78			 "
79	  INDEX { wlsrBSSID }
80      ::= { wlsrConfigTable 1 }
81
82     WlsrConfigEntry ::=
83     SEQUENCE {
84         wlsrBSSID					MacAddress,
85         wlsrESSID 					DisplayString,
86		 wlsrMode					INTEGER,
87		 wlsrCurrentChannel			INTEGER,
88		 wlsrTxPower					Integer32,
89		 wlsrRTSThreshold			INTEGER  ,
90		 wlsrRetryLimit				INTEGER  ,
91		 wlsrPreamble				INTEGER ,
92		 wlsrBeaconInterval			INTEGER  ,
93		 wlsrPowerMgmt				INTEGER ,
94		 wlsrLoadBalance			INTEGER ,
95		 wlsrSupportedRates			BITS ,
96		 wlsrDTIMPeriod				INTEGER ,
97		 wlsrLMSAddress				IpAddress ,
98		 wlsrEncryption				BITS ,
99		 wlsrStatus					TruthValue ,
100		 wlsrAgeout					Integer32 ,
101		 wlsrMTU					INTEGER ,
102		 wlsrLocation				DisplayString ,
103		 wlsrHideSSID				TruthValue ,
104		 wlsrDenyBroadcast			TruthValue,
105		 wlsrBGmode					INTEGER ,
106		 wlsrCardType				INTEGER ,
107		 wlsrRegDomain				Integer32 ,
108		 wlsrCountryCode			DisplayString,
109		 wlsrTxRates			        BITS
110     }
111
112     wlsrBSSID OBJECT-TYPE
113         SYNTAX       MacAddress
114         MAX-ACCESS   not-accessible
115         STATUS       current
116         DESCRIPTION
117            "
118			BSSID of the WIFI Interface
119            "
120        ::= { wlsrConfigEntry 1 }
121
122     wlsrESSID OBJECT-TYPE
123        SYNTAX      DisplayString (SIZE(0..64))
124         MAX-ACCESS   read-only
125         STATUS       current
126         DESCRIPTION
127            "
128			 ESSID of the WIFI Interface
129            "
130        ::= { wlsrConfigEntry 2 }
131
132     wlsrMode OBJECT-TYPE
133        SYNTAX      INTEGER {
134						master(1),
135						adhoc(2),
136						monitor(3)
137					}
138         MAX-ACCESS   read-only
139         STATUS       current
140         DESCRIPTION
141            "
142			Mode of the Access Point. Master indicates that we are
143			operating as Access Point. monitor indicates that the
144			AP is an Air Monitor.
145            "
146        ::= { wlsrConfigEntry 3 }
147
148     wlsrCurrentChannel OBJECT-TYPE
149        SYNTAX      INTEGER (1..165)
150         MAX-ACCESS   read-only
151         STATUS       current
152         DESCRIPTION
153            "
154			The current operating frequency channel of the DSSS PHY.
155            "
156        ::= { wlsrConfigEntry 4 }
157
158     wlsrTxPower OBJECT-TYPE
159        SYNTAX      Integer32
160         MAX-ACCESS   read-only
161         STATUS       current
162         DESCRIPTION
163            "
164			Transmit power of the Access point. The value is between 0 ... 4
165            "
166        ::= { wlsrConfigEntry 5 }
167
168     wlsrRTSThreshold OBJECT-TYPE
169        SYNTAX      INTEGER (0..2347)
170         MAX-ACCESS   read-only
171         STATUS       current
172         DESCRIPTION
173            "
174			This attribute shall indicate the number of octets in an MPDU,
175			below which an RTS/CTS handshake shall not be performed.
176            "
177        ::= { wlsrConfigEntry 6 }
178
179     wlsrRetryLimit OBJECT-TYPE
180        SYNTAX      INTEGER (1..255)
181         MAX-ACCESS   read-only
182         STATUS       current
183         DESCRIPTION
184            "
185			This attribute shall indicate the maximum number of
186			transmission attempts of a frame, the length of which is less
187			than or equal to dot11RTSThreshold, that shall be made before a
188			failure condition is indicated. The default value of this
189			attribute shall be 7.
190            "
191        ::= { wlsrConfigEntry 7 }
192
193     wlsrPreamble OBJECT-TYPE
194        SYNTAX      INTEGER {
195						short(1),
196						long(2)
197					}
198         MAX-ACCESS   read-only
199         STATUS       current
200         DESCRIPTION
201            "
202			The current radio preamble type in use by the wifi interface.
203            "
204        ::= { wlsrConfigEntry 8 }
205
206     wlsrBeaconInterval OBJECT-TYPE
207        SYNTAX      INTEGER (1..65535)
208         MAX-ACCESS   read-only
209         STATUS       current
210         DESCRIPTION
211            "
212			This object shall specify the number of TU that a station shall
213			use for scheduling Beacon transmissions. This value is transmitted
214			in Beacon and Probe Response frames.
215            "
216        ::= { wlsrConfigEntry 9 }
217
218     wlsrPowerMgmt OBJECT-TYPE
219        SYNTAX      INTEGER {
220						enable(1),
221						disable(2)
222					}
223         MAX-ACCESS   read-only
224         STATUS       current
225         DESCRIPTION
226            "
227			This attribute  indicates whether Power Management is enabled
228			or not.
229            "
230        ::= { wlsrConfigEntry 10 }
231
232     wlsrLoadBalance OBJECT-TYPE
233        SYNTAX      INTEGER {
234						enable(1),
235						disable(2)
236					}
237         MAX-ACCESS   read-only
238         STATUS       current
239         DESCRIPTION
240            "
241			This attribute indicates if load balancing is enabled or disabled.
242            "
243        ::= { wlsrConfigEntry 11 }
244
245
246     wlsrSupportedRates OBJECT-TYPE
247        SYNTAX      BITS {
248						unused0(0),
249						unused1(1),
250						unused2(2),
251						unused3(3),
252						rate54Mbps(4),
253						rate48Mbps(5),
254						rate36Mbps(6),
255						rate24Mbps(7),
256						rate18Mbps(8),
257						rate12Mbps(9),
258						rate9Mbps(10),
259						rate6Mbps(11),
260						rate11Mbps(12),
261						rate5Mbps(13),
262						rate2Mbps(14),
263						rate1Mbps(15)
264					 }
265         MAX-ACCESS   read-only
266         STATUS       current
267         DESCRIPTION
268            "
269			Basic Bit rates supported by this WIFI interface.
270            "
271        ::= { wlsrConfigEntry 12 }
272
273     wlsrDTIMPeriod OBJECT-TYPE
274        SYNTAX      INTEGER (1..255)
275         MAX-ACCESS   read-only
276         STATUS       current
277         DESCRIPTION
278            "
279			 This attribute shall specify the number of beacon
280			 intervals that shall elapse between transmission of
281			 Beacons frames containing a TIM element whose DTIM
282			 Count field is 0. This value is transmitted in
283			 the DTIM Period field of Beacon frames.
284
285            "
286        ::= { wlsrConfigEntry 13 }
287
288
289     wlsrLMSAddress OBJECT-TYPE
290        SYNTAX      IpAddress
291         MAX-ACCESS   read-only
292         STATUS       current
293         DESCRIPTION
294            "
295			This attribute indicates the IP Address of the Local
296			switch that the AP is connected to.
297            "
298        ::= { wlsrConfigEntry 14 }
299
300     wlsrEncryption OBJECT-TYPE
301        SYNTAX      BITS{
302						unused0(0),
303						unused1(1),
304						unused2(2),
305						unused3(3),
306						unused4(4),
307						unused5(5),
308						unused6(6),
309						xSec(7),
310						wpa2PreAuth(8),
311						aes8021x(9),
312						aesPSK(10),
313						dynamicTkip(11),
314						staticTkip(12),
315						dynamicWep(13),
316						staticWep(14),
317						disabled(15)
318						}
319         MAX-ACCESS   read-only
320         STATUS       current
321         DESCRIPTION
322            "
323			This attribute indicates the Encryption type of the WIFI interface.
324            "
325        ::= { wlsrConfigEntry 15 }
326
327     wlsrStatus OBJECT-TYPE
328        SYNTAX      TruthValue
329         MAX-ACCESS   read-only
330         STATUS       current
331         DESCRIPTION
332            "
333			This attribute indicates the status of the WIFI Interface.
334            "
335        ::= { wlsrConfigEntry 17 }
336
337     wlsrAgeout OBJECT-TYPE
338        SYNTAX      Integer32
339         MAX-ACCESS   read-only
340         STATUS       current
341         DESCRIPTION
342            "
343			This attribute indicates the ageout value in seconds.
344            "
345        ::= { wlsrConfigEntry 18 }
346
347     wlsrMTU OBJECT-TYPE
348        SYNTAX      INTEGER (0..2347)
349         MAX-ACCESS   read-only
350         STATUS       current
351         DESCRIPTION
352            "
353			This attribute indicates the MTU of the WIFI Interface.
354            "
355        ::= { wlsrConfigEntry 19 }
356
357     wlsrLocation OBJECT-TYPE
358        SYNTAX      DisplayString (SIZE(0..32))
359         MAX-ACCESS   read-only
360         STATUS       current
361         DESCRIPTION
362            "
363			This attribute indicates the Location of the Access Point in
364			Building.Floor.location format.
365            "
366        ::= { wlsrConfigEntry 20 }
367
368     wlsrHideSSID OBJECT-TYPE
369        SYNTAX      TruthValue
370         MAX-ACCESS   read-only
371         STATUS       current
372         DESCRIPTION
373            "
374			This attribute indicates if SSID is hidden or not.
375            "
376        ::= { wlsrConfigEntry 21 }
377
378     wlsrDenyBroadcast OBJECT-TYPE
379        SYNTAX      TruthValue
380         MAX-ACCESS   read-only
381         STATUS       current
382         DESCRIPTION
383            "
384			A True value indicates that Broadcast is disabled.
385            "
386        ::= { wlsrConfigEntry 22 }
387
388     wlsrBGmode OBJECT-TYPE
389        SYNTAX      INTEGER{
390						bgMixed(1),
391						bOnly(2),
392						gOnly(3)
393					}
394         MAX-ACCESS   read-only
395         STATUS       current
396         DESCRIPTION
397            "
398			This attributes indicates the mode of the WIFI Interface
399            "
400        ::= { wlsrConfigEntry 23 }
401
402     wlsrCardType OBJECT-TYPE
403        SYNTAX      INTEGER {
404						noCard(1),
405						intersil(2),
406						atherosA(3),
407						atherosBG(4),
408						atherosABG(5),
409						ar5212A(10),
410						ar5212BG(11),
411						ar5212ABG(12)
412					}
413         MAX-ACCESS   read-only
414         STATUS       current
415         DESCRIPTION
416            "
417			Indicates the type of the radio card.
418            "
419        ::= { wlsrConfigEntry 24 }
420
421     wlsrRegDomain OBJECT-TYPE
422        SYNTAX      Integer32
423         MAX-ACCESS   read-only
424         STATUS       deprecated
425         DESCRIPTION
426            "
427			This Object represents the configured Regulatory Domain this AP
428			will adhere to.
429			1 -- US
430			2 -- JAPAN
431			3 -- EU
432			4 -- EU2
433			5 -- EU3
434			6 -- KOREA
435			7 -- CHINA
436			8 -- France
437			9 -- Singapore
438			10 -- MALAY
439			11 -- BRAZIL
440			12 -- Taiwan
441			13 -- Czech Republic
442			14 -- GR
443			15 -- South Africa
444			16 -- Argentina
445			17 -- Australia
446			18 -- Chile
447            "
448        ::= { wlsrConfigEntry 25 }
449
450     wlsrCountryCode OBJECT-TYPE
451        SYNTAX      DisplayString (SIZE(0..64))
452         MAX-ACCESS   read-only
453         STATUS       current
454         DESCRIPTION
455            "
456				This Object represents the configured Country code .
457            "
458        ::= { wlsrConfigEntry 26 }
459
460     wlsrTxRates OBJECT-TYPE
461        SYNTAX      BITS {
462						unused0(0),
463						unused1(1),
464						unused2(2),
465						unused3(3),
466						rate54Mbps(4),
467						rate48Mbps(5),
468						rate36Mbps(6),
469						rate24Mbps(7),
470						rate18Mbps(8),
471						rate12Mbps(9),
472						rate9Mbps(10),
473						rate6Mbps(11),
474						rate11Mbps(12),
475						rate5Mbps(13),
476						rate2Mbps(14),
477						rate1Mbps(15)
478					 }
479         MAX-ACCESS   read-only
480         STATUS       current
481         DESCRIPTION
482            "
483			Transmit Bit rates supported by this WIFI interface.
484            "
485        ::= { wlsrConfigEntry 27 }
486
487-- wlsrStatsGroup All the Statistics stored by the Access Point.
488
489-- Channel Statistics Group contains all the statistics related to
490-- a channel.
491
492-- wlsrChannelStatsTable will contain all the Aggregate statistics collected
493-- on a channel
494
495   wlsrStatsChannelGroup   	OBJECT IDENTIFIER ::= { wlsrStatsGroup 3 }
496
497   wlsrChannelStatsTable  OBJECT-TYPE
498	  SYNTAX       SEQUENCE OF WlsrChannelStatsEntry
499	  MAX-ACCESS   not-accessible
500      STATUS       current
501      DESCRIPTION
502	  	"
503		Table contains the Channel Statistics.
504		"
505
506      ::= { wlsrStatsChannelGroup 1 }
507
508     wlsrChannelStatsEntry OBJECT-TYPE
509	  SYNTAX       WlsrChannelStatsEntry
510	  MAX-ACCESS   not-accessible
511      STATUS       current
512      DESCRIPTION
513             "Channel Statistics Table"
514	  INDEX { wlsrChStatsChannel}
515      ::= { wlsrChannelStatsTable 1 }
516
517     WlsrChannelStatsEntry ::=
518     SEQUENCE {
519         wlsrChStatsChannel 					INTEGER    ,
520         wlsrChStatsNumAPs                      Integer32  ,
521         wlsrChStatsNumStations 				Integer32  ,
522		 wlsrChStatsTotPkts					Counter32  ,
523		 wlsrChStatsTotBytes					Counter32  ,
524		 wlsrChStatsTotRetryPkts				Counter32  ,
525		 wlsrChStatsTotFragmentedPkts		Counter32  ,
526		 wlsrChStatsTotPhyErrPkts			Counter32  ,
527		 wlsrChStatsTotMacErrPkts			Counter32  ,
528		 wlsrChStatsFrameErrorRate			Integer32   ,
529		 wlsrChStatsFrameRetryRate			Integer32   ,
530		 wlsrChStatsFrameLowSpeedRate		Integer32   ,
531		 wlsrChStatsFrameNonUnicastRate		Integer32   ,
532		 wlsrChStatsFrameBandwidthRate		Integer32   ,
533		 wlsrChStatsFrameFragmentationRate	Integer32   ,
534		 wlsrChStatsMonitoredTime			TimeTicks
535
536     }
537
538     wlsrChStatsChannel OBJECT-TYPE
539         SYNTAX       INTEGER (1..165)
540         MAX-ACCESS   not-accessible
541         STATUS       current
542         DESCRIPTION
543            "
544			The frequency Channel on which these statistics are collected.
545            "
546        ::= { wlsrChannelStatsEntry 1 }
547
548     wlsrChStatsNumAPs OBJECT-TYPE
549         SYNTAX       Integer32
550         MAX-ACCESS   read-only
551         STATUS       current
552         DESCRIPTION
553            "
554			This attribute indicates the number of APs using this
555			channel.
556            "
557        ::= { wlsrChannelStatsEntry 2 }
558
559
560     wlsrChStatsNumStations OBJECT-TYPE
561         SYNTAX       Integer32
562         MAX-ACCESS   read-only
563         STATUS       current
564         DESCRIPTION
565            "
566			This attribute indicates the number of stations using this
567			channel.
568            "
569        ::= { wlsrChannelStatsEntry 3 }
570
571
572     wlsrChStatsTotPkts OBJECT-TYPE
573         SYNTAX       Counter32
574         MAX-ACCESS   read-only
575         STATUS       current
576         DESCRIPTION
577            "
578			This attribute indicates the total packets observed on this
579			channel.
580            "
581        ::= { wlsrChannelStatsEntry 4 }
582
583     wlsrChStatsTotBytes OBJECT-TYPE
584         SYNTAX       Counter32
585         MAX-ACCESS   read-only
586         STATUS       current
587         DESCRIPTION
588            "
589			This attribute indicates the total Bytes observed on this
590			channel.
591            "
592        ::= { wlsrChannelStatsEntry 5 }
593
594     wlsrChStatsTotRetryPkts OBJECT-TYPE
595         SYNTAX       Counter32
596         MAX-ACCESS   read-only
597         STATUS       current
598         DESCRIPTION
599            "
600			This attribute indicates the total Retry Packets observed on this
601			channel.
602            "
603        ::= { wlsrChannelStatsEntry 6 }
604
605     wlsrChStatsTotFragmentedPkts OBJECT-TYPE
606         SYNTAX       Counter32
607         MAX-ACCESS   read-only
608         STATUS       current
609         DESCRIPTION
610            "
611			This attribute indicates the total Fragmented Packets observed on
612			this channel.
613            "
614        ::= { wlsrChannelStatsEntry 7 }
615
616     wlsrChStatsTotPhyErrPkts OBJECT-TYPE
617         SYNTAX       Counter32
618         MAX-ACCESS   read-only
619         STATUS       current
620         DESCRIPTION
621            "
622			This attribute indicates the total Physical Error Packets observed
623			on this channel.
624			"
625        ::= { wlsrChannelStatsEntry 8 }
626
627     wlsrChStatsTotMacErrPkts OBJECT-TYPE
628         SYNTAX       Counter32
629         MAX-ACCESS   read-only
630         STATUS       current
631         DESCRIPTION
632            "
633			This attribute indicates the total Mac errors packets observed on
634			this channel.
635            "
636        ::= { wlsrChannelStatsEntry 9 }
637
638     wlsrChStatsFrameErrorRate OBJECT-TYPE
639         SYNTAX       Integer32
640         MAX-ACCESS   read-only
641         STATUS       current
642         DESCRIPTION
643            "
644			Frame errors as a percentage of total frames on this channel.
645            "
646        ::= { wlsrChannelStatsEntry 10 }
647
648     wlsrChStatsFrameRetryRate OBJECT-TYPE
649         SYNTAX       Integer32
650         MAX-ACCESS   read-only
651         STATUS       current
652         DESCRIPTION
653            "
654			The Frame Retry Rate
655            "
656        ::= { wlsrChannelStatsEntry 11 }
657
658     wlsrChStatsFrameLowSpeedRate OBJECT-TYPE
659         SYNTAX       Integer32
660         MAX-ACCESS   read-only
661         STATUS       current
662         DESCRIPTION
663            "
664			Frame Low speed error rate in kbps.
665            "
666        ::= { wlsrChannelStatsEntry 12 }
667
668     wlsrChStatsFrameNonUnicastRate OBJECT-TYPE
669         SYNTAX       Integer32
670         MAX-ACCESS   read-only
671         STATUS       current
672         DESCRIPTION
673            "
674			Frame non Unicast rate in kbps.
675            "
676        ::= { wlsrChannelStatsEntry 13 }
677
678     wlsrChStatsFrameBandwidthRate OBJECT-TYPE
679         SYNTAX       Integer32
680         MAX-ACCESS   read-only
681         STATUS       current
682         DESCRIPTION
683            "
684			Frame Bandwidth rate in kbps.
685            "
686        ::= { wlsrChannelStatsEntry 14 }
687
688     wlsrChStatsFrameFragmentationRate OBJECT-TYPE
689         SYNTAX       Integer32
690         MAX-ACCESS   read-only
691         STATUS       current
692         DESCRIPTION
693            "
694			Frame Fragmentation Rate in kbps.
695            "
696        ::= { wlsrChannelStatsEntry 15 }
697
698     wlsrChStatsMonitoredTime OBJECT-TYPE
699         SYNTAX       TimeTicks
700         MAX-ACCESS   read-only
701         STATUS       current
702         DESCRIPTION
703            "
704			Time in ticks, since we were observing this channel.
705            "
706        ::= { wlsrChannelStatsEntry 16 }
707
708-- This table breaks down the channel statistics observed into different
709-- rate categories.
710
711   wlsrChannelRateStatsTable  OBJECT-TYPE
712	  SYNTAX       SEQUENCE OF WlsrChannelRateStatsEntry
713	  MAX-ACCESS   not-accessible
714      STATUS       current
715      DESCRIPTION
716	  	"
717		This table contains all the per channel Packet and Byte Counts
718		but represented in terms of rate categories.
719		"
720
721      ::= { wlsrStatsChannelGroup 2 }
722
723     wlsrChannelRateStatsEntry OBJECT-TYPE
724	  SYNTAX       WlsrChannelRateStatsEntry
725	  MAX-ACCESS   not-accessible
726      STATUS       current
727      DESCRIPTION
728             "Channel Rate Statistics."
729	  INDEX { wlsrChStatsChannel}
730      ::= { wlsrChannelRateStatsTable 1 }
731
732     WlsrChannelRateStatsEntry ::=
733     SEQUENCE {
734		 wlsrChStatsTotPktsAt1Mbps			Counter32  ,
735		 wlsrChStatsTotBytesAt1Mbps			Counter32  ,
736		 wlsrChStatsTotPktsAt2Mbps			Counter32  ,
737		 wlsrChStatsTotBytesAt2Mbps			Counter32  ,
738		 wlsrChStatsTotPktsAt5Mbps			Counter32  ,
739		 wlsrChStatsTotBytesAt5Mbps			Counter32  ,
740		 wlsrChStatsTotPktsAt11Mbps			Counter32  ,
741		 wlsrChStatsTotBytesAt11Mbps		Counter32  ,
742		 wlsrChStatsTotPktsAt6Mbps			Counter32  ,
743		 wlsrChStatsTotBytesAt6Mbps			Counter32  ,
744		 wlsrChStatsTotPktsAt12Mbps			Counter32  ,
745		 wlsrChStatsTotBytesAt12Mbps		Counter32  ,
746		 wlsrChStatsTotPktsAt18Mbps			Counter32  ,
747		 wlsrChStatsTotBytesAt18Mbps		Counter32  ,
748		 wlsrChStatsTotPktsAt24Mbps			Counter32  ,
749		 wlsrChStatsTotBytesAt24Mbps		Counter32  ,
750		 wlsrChStatsTotPktsAt36Mbps			Counter32  ,
751		 wlsrChStatsTotBytesAt36Mbps		Counter32  ,
752		 wlsrChStatsTotPktsAt48Mbps			Counter32  ,
753		 wlsrChStatsTotBytesAt48Mbps		Counter32  ,
754		 wlsrChStatsTotPktsAt54Mbps			Counter32 ,
755		 wlsrChStatsTotBytesAt54Mbps		Counter32
756
757     }
758
759     wlsrChStatsTotPktsAt1Mbps OBJECT-TYPE
760         SYNTAX       Counter32
761         MAX-ACCESS   read-only
762         STATUS       current
763         DESCRIPTION
764            "
765			 This attribute indicates the total number of packets observed
766			 on this channel at 1Mbps rate.
767            "
768        ::= { wlsrChannelRateStatsEntry 1 }
769
770     wlsrChStatsTotBytesAt1Mbps OBJECT-TYPE
771         SYNTAX       Counter32
772         MAX-ACCESS   read-only
773         STATUS       current
774         DESCRIPTION
775            "
776			 This attribute indicates the total number of Bytes observed
777			 on this channel at 1Mbps rate.
778            "
779        ::= { wlsrChannelRateStatsEntry 2 }
780
781     wlsrChStatsTotPktsAt2Mbps OBJECT-TYPE
782         SYNTAX       Counter32
783         MAX-ACCESS   read-only
784         STATUS       current
785         DESCRIPTION
786            "
787			 This attribute indicates the total number of packets observed
788			 on this channel at 2Mbps rate.
789            "
790        ::= { wlsrChannelRateStatsEntry 3 }
791
792     wlsrChStatsTotBytesAt2Mbps OBJECT-TYPE
793         SYNTAX       Counter32
794         MAX-ACCESS   read-only
795         STATUS       current
796         DESCRIPTION
797            "
798			 This attribute indicates the total number of Bytes observed
799			 on this channel at 2Mbps rate.
800            "
801        ::= { wlsrChannelRateStatsEntry 4 }
802
803     wlsrChStatsTotPktsAt5Mbps OBJECT-TYPE
804         SYNTAX       Counter32
805         MAX-ACCESS   read-only
806         STATUS       current
807         DESCRIPTION
808            "
809			 This attribute indicates the total number of packets observed
810			 on this channel at 5Mbps rate.
811            "
812        ::= { wlsrChannelRateStatsEntry 5 }
813
814     wlsrChStatsTotBytesAt5Mbps OBJECT-TYPE
815         SYNTAX       Counter32
816         MAX-ACCESS   read-only
817         STATUS       current
818         DESCRIPTION
819            "
820			 This attribute indicates the total number of Bytes observed
821			 on this channel at 5Mbps rate.
822            "
823        ::= { wlsrChannelRateStatsEntry 6 }
824
825     wlsrChStatsTotPktsAt11Mbps OBJECT-TYPE
826         SYNTAX       Counter32
827         MAX-ACCESS   read-only
828         STATUS       current
829         DESCRIPTION
830            "
831			 This attribute indicates the total number of packets observed
832			 on this channel at 11Mbps rate.
833            "
834        ::= { wlsrChannelRateStatsEntry 7 }
835
836     wlsrChStatsTotBytesAt11Mbps OBJECT-TYPE
837         SYNTAX       Counter32
838         MAX-ACCESS   read-only
839         STATUS       current
840         DESCRIPTION
841            "
842			 This attribute indicates the total number of Bytes observed
843			 on this channel at 11Mbps rate.
844            "
845        ::= { wlsrChannelRateStatsEntry 8 }
846
847     wlsrChStatsTotPktsAt6Mbps OBJECT-TYPE
848         SYNTAX       Counter32
849         MAX-ACCESS   read-only
850         STATUS       current
851         DESCRIPTION
852            "
853			 This attribute indicates the total number of packets observed
854			 on this channel at 6Mbps rate.
855            "
856        ::= { wlsrChannelRateStatsEntry 9 }
857
858     wlsrChStatsTotBytesAt6Mbps OBJECT-TYPE
859         SYNTAX       Counter32
860         MAX-ACCESS   read-only
861         STATUS       current
862         DESCRIPTION
863            "
864			 This attribute indicates the total number of Bytes observed
865			 on this channel at 6Mbps rate.
866            "
867        ::= { wlsrChannelRateStatsEntry 10 }
868
869     wlsrChStatsTotPktsAt12Mbps OBJECT-TYPE
870         SYNTAX       Counter32
871         MAX-ACCESS   read-only
872         STATUS       current
873         DESCRIPTION
874            "
875			 This attribute indicates the total number of packets observed
876			 on this channel at 12Mbps rate.
877            "
878        ::= { wlsrChannelRateStatsEntry 11 }
879
880     wlsrChStatsTotBytesAt12Mbps OBJECT-TYPE
881         SYNTAX       Counter32
882         MAX-ACCESS   read-only
883         STATUS       current
884         DESCRIPTION
885            "
886			 This attribute indicates the total number of Bytes observed
887			 on this channel at 12Mbps rate.
888            "
889        ::= { wlsrChannelRateStatsEntry 12 }
890
891     wlsrChStatsTotPktsAt18Mbps OBJECT-TYPE
892         SYNTAX       Counter32
893         MAX-ACCESS   read-only
894         STATUS       current
895         DESCRIPTION
896            "
897			 This attribute indicates the total number of packets observed
898			 on this channel at 18Mbps rate.
899            "
900        ::= { wlsrChannelRateStatsEntry 13 }
901
902     wlsrChStatsTotBytesAt18Mbps OBJECT-TYPE
903         SYNTAX       Counter32
904         MAX-ACCESS   read-only
905         STATUS       current
906         DESCRIPTION
907            "
908			 This attribute indicates the total number of Bytes observed
909			 on this channel at 18Mbps rate.
910            "
911        ::= { wlsrChannelRateStatsEntry 14 }
912
913     wlsrChStatsTotPktsAt24Mbps OBJECT-TYPE
914         SYNTAX       Counter32
915         MAX-ACCESS   read-only
916         STATUS       current
917         DESCRIPTION
918            "
919			 This attribute indicates the total number of packets observed
920			 on this channel at 24Mbps rate.
921            "
922        ::= { wlsrChannelRateStatsEntry 15 }
923
924     wlsrChStatsTotBytesAt24Mbps OBJECT-TYPE
925         SYNTAX       Counter32
926         MAX-ACCESS   read-only
927         STATUS       current
928         DESCRIPTION
929            "
930			 This attribute indicates the total number of Bytes observed
931			 on this channel at 24Mbps rate.
932            "
933        ::= { wlsrChannelRateStatsEntry 16 }
934
935     wlsrChStatsTotPktsAt36Mbps OBJECT-TYPE
936         SYNTAX       Counter32
937         MAX-ACCESS   read-only
938         STATUS       current
939         DESCRIPTION
940            "
941			 This attribute indicates the total number of packets observed
942			 on this channel at 36Mbps rate.
943            "
944        ::= { wlsrChannelRateStatsEntry 17 }
945
946     wlsrChStatsTotBytesAt36Mbps OBJECT-TYPE
947         SYNTAX       Counter32
948         MAX-ACCESS   read-only
949         STATUS       current
950         DESCRIPTION
951            "
952			 This attribute indicates the total number of Bytes observed
953			 on this channel at 36Mbps rate.
954            "
955        ::= { wlsrChannelRateStatsEntry 18 }
956
957     wlsrChStatsTotPktsAt48Mbps OBJECT-TYPE
958         SYNTAX       Counter32
959         MAX-ACCESS   read-only
960         STATUS       current
961         DESCRIPTION
962            "
963			 This attribute indicates the total number of packets observed
964			 on this channel at 48Mbps rate.
965            "
966        ::= { wlsrChannelRateStatsEntry 19 }
967
968     wlsrChStatsTotBytesAt48Mbps OBJECT-TYPE
969         SYNTAX       Counter32
970         MAX-ACCESS   read-only
971         STATUS       current
972         DESCRIPTION
973            "
974			 This attribute indicates the total number of Bytes observed
975			 on this channel at 48Mbps rate.
976            "
977        ::= { wlsrChannelRateStatsEntry 20 }
978
979     wlsrChStatsTotPktsAt54Mbps OBJECT-TYPE
980         SYNTAX       Counter32
981         MAX-ACCESS   read-only
982         STATUS       current
983         DESCRIPTION
984            "
985			 This attribute indicates the total number of packets observed
986			 on this channel at 54Mbps rate.
987            "
988        ::= { wlsrChannelRateStatsEntry 21 }
989
990     wlsrChStatsTotBytesAt54Mbps OBJECT-TYPE
991         SYNTAX       Counter32
992         MAX-ACCESS   read-only
993         STATUS       current
994         DESCRIPTION
995            "
996			 This attribute indicates the total number of Bytes observed
997			 on this channel at 54Mbps rate.
998            "
999        ::= { wlsrChannelRateStatsEntry 22 }
1000
1001-- This table breaks down the channel statistics observed based on the
1002-- Destination Address Types.
1003
1004   wlsrChannelDATypeStatsTable  OBJECT-TYPE
1005	  SYNTAX       SEQUENCE OF WlsrChannelDATypeStatsEntry
1006	  MAX-ACCESS   not-accessible
1007      STATUS       current
1008      DESCRIPTION
1009	  	"
1010		This table contains all the per channel Packet and Byte Counts
1011		but broken down in terms of Destination Address Type.
1012		"
1013      ::= { wlsrStatsChannelGroup 3 }
1014
1015     wlsrChannelDATypeStatsEntry OBJECT-TYPE
1016	  SYNTAX       WlsrChannelDATypeStatsEntry
1017	  MAX-ACCESS   not-accessible
1018      STATUS       current
1019      DESCRIPTION
1020             "Channel Statistics based on the Address Type."
1021	  INDEX { wlsrChStatsChannel}
1022      ::= { wlsrChannelDATypeStatsTable 1 }
1023
1024     WlsrChannelDATypeStatsEntry ::=
1025     SEQUENCE {
1026		 wlsrChStatsTotDABroadcastPkts		Counter32  ,
1027		 wlsrChStatsTotDABroadcastBytes		Counter32  ,
1028		 wlsrChStatsTotDAMulticastPkts		Counter32  ,
1029		 wlsrChStatsTotDAMulticastBytes		Counter32  ,
1030		 wlsrChStatsTotDAUnicastPkts			Counter32  ,
1031		 wlsrChStatsTotDAUnicastBytes		Counter32
1032
1033     }
1034
1035     wlsrChStatsTotDABroadcastPkts OBJECT-TYPE
1036         SYNTAX       Counter32
1037         MAX-ACCESS   read-only
1038         STATUS       current
1039         DESCRIPTION
1040            "
1041			 This attribute indicates the total number of Broadcast packets
1042			 observed on this channel.
1043            "
1044        ::= { wlsrChannelDATypeStatsEntry 1 }
1045
1046     wlsrChStatsTotDABroadcastBytes OBJECT-TYPE
1047         SYNTAX       Counter32
1048         MAX-ACCESS   read-only
1049         STATUS       current
1050         DESCRIPTION
1051            "
1052			 This attribute indicates the total number of Broadcast Bytes
1053			 observed on this channel.
1054            "
1055        ::= { wlsrChannelDATypeStatsEntry 2 }
1056
1057     wlsrChStatsTotDAMulticastPkts OBJECT-TYPE
1058         SYNTAX       Counter32
1059         MAX-ACCESS   read-only
1060         STATUS       current
1061         DESCRIPTION
1062            "
1063			 This attribute indicates the total number of Multicast packets
1064			 observed on this channel.
1065            "
1066        ::= { wlsrChannelDATypeStatsEntry 3 }
1067
1068     wlsrChStatsTotDAMulticastBytes OBJECT-TYPE
1069         SYNTAX       Counter32
1070         MAX-ACCESS   read-only
1071         STATUS       current
1072         DESCRIPTION
1073            "
1074			 This attribute indicates the total number of Multicast Bytes
1075			 observed on this channel.
1076            "
1077        ::= { wlsrChannelDATypeStatsEntry 4 }
1078
1079     wlsrChStatsTotDAUnicastPkts OBJECT-TYPE
1080         SYNTAX       Counter32
1081         MAX-ACCESS   read-only
1082         STATUS       current
1083         DESCRIPTION
1084            "
1085			 This attribute indicates the total number of Unicast packets
1086			 observed on this channel.
1087            "
1088        ::= { wlsrChannelDATypeStatsEntry 5 }
1089
1090     wlsrChStatsTotDAUnicastBytes OBJECT-TYPE
1091         SYNTAX       Counter32
1092         MAX-ACCESS   read-only
1093         STATUS       current
1094         DESCRIPTION
1095            "
1096			 This attribute indicates the total number of Unicast Bytes
1097			 observed on this channel.
1098            "
1099        ::= { wlsrChannelDATypeStatsEntry 6 }
1100
1101-- This table breaks down the channel statistics observed based on the
1102-- the Type of the Packet.
1103
1104   wlsrChannelFrameTypeStatsTable  OBJECT-TYPE
1105	  SYNTAX       SEQUENCE OF WlsrChannelFrameTypeStatsEntry
1106	  MAX-ACCESS   not-accessible
1107      STATUS       current
1108      DESCRIPTION
1109	  	"
1110		This table contains all the per channel Packet and Byte Counts
1111		but broken down into different Frame Types.
1112		"
1113      ::= { wlsrStatsChannelGroup 4 }
1114
1115     wlsrChannelFrameTypeStatsEntry OBJECT-TYPE
1116	  SYNTAX       WlsrChannelFrameTypeStatsEntry
1117	  MAX-ACCESS   not-accessible
1118      STATUS       current
1119      DESCRIPTION
1120             "Channel Statistics based on Frame Type."
1121	  INDEX { wlsrChStatsChannel}
1122      ::= { wlsrChannelFrameTypeStatsTable 1 }
1123
1124     WlsrChannelFrameTypeStatsEntry ::=
1125     SEQUENCE {
1126		 wlsrChStatsTotMgmtPkts		Counter32  ,
1127		 wlsrChStatsTotMgmtBytes	Counter32  ,
1128		 wlsrChStatsTotCtrlPkts		Counter32  ,
1129		 wlsrChStatsTotCtrlBytes	Counter32  ,
1130		 wlsrChStatsTotDataPkts		Counter32  ,
1131		 wlsrChStatsTotDataBytes	Counter32
1132
1133     }
1134
1135     wlsrChStatsTotMgmtPkts OBJECT-TYPE
1136         SYNTAX       Counter32
1137         MAX-ACCESS   read-only
1138         STATUS       current
1139         DESCRIPTION
1140            "
1141			 This attribute indicates the total number of Management packets
1142			 observed on this channel.
1143            "
1144        ::= { wlsrChannelFrameTypeStatsEntry 1 }
1145
1146     wlsrChStatsTotMgmtBytes OBJECT-TYPE
1147         SYNTAX       Counter32
1148         MAX-ACCESS   read-only
1149         STATUS       current
1150         DESCRIPTION
1151            "
1152			 This attribute indicates the total number of Management Bytes
1153			 observed on this channel.
1154            "
1155        ::= { wlsrChannelFrameTypeStatsEntry 2 }
1156
1157     wlsrChStatsTotCtrlPkts OBJECT-TYPE
1158         SYNTAX       Counter32
1159         MAX-ACCESS   read-only
1160         STATUS       current
1161         DESCRIPTION
1162            "
1163			 This attribute indicates the total number of Control packets
1164			 observed on this channel.
1165            "
1166        ::= { wlsrChannelFrameTypeStatsEntry 3 }
1167
1168     wlsrChStatsTotCtrlBytes OBJECT-TYPE
1169         SYNTAX       Counter32
1170         MAX-ACCESS   read-only
1171         STATUS       current
1172         DESCRIPTION
1173            "
1174			 This attribute indicates the total number of Control Bytes
1175			 observed on this channel.
1176            "
1177        ::= { wlsrChannelFrameTypeStatsEntry 4 }
1178
1179     wlsrChStatsTotDataPkts OBJECT-TYPE
1180         SYNTAX       Counter32
1181         MAX-ACCESS   read-only
1182         STATUS       current
1183         DESCRIPTION
1184            "
1185			 This attribute indicates the total number of Data packets
1186			 observed on this channel.
1187            "
1188        ::= { wlsrChannelFrameTypeStatsEntry 5 }
1189
1190     wlsrChStatsTotDataBytes OBJECT-TYPE
1191         SYNTAX       Counter32
1192         MAX-ACCESS   read-only
1193         STATUS       current
1194         DESCRIPTION
1195            "
1196			 This attribute indicates the total number of Data Bytes
1197			 observed on this channel.
1198            "
1199        ::= { wlsrChannelFrameTypeStatsEntry 6 }
1200
1201-- This table breaks down the channel statistics observed into packet size
1202-- buckets.
1203
1204   wlsrChannelPktSizeStatsTable  OBJECT-TYPE
1205	  SYNTAX       SEQUENCE OF WlsrChannelPktSizeStatsEntry
1206	  MAX-ACCESS   not-accessible
1207      STATUS       current
1208      DESCRIPTION
1209	  	"
1210		This table contains all the per channel Packet and Byte Counts
1211		but broken down into different Packet Sizes.
1212		"
1213      ::= { wlsrStatsChannelGroup 5 }
1214
1215     wlsrChannelPktSizeStatsEntry OBJECT-TYPE
1216	  SYNTAX       WlsrChannelPktSizeStatsEntry
1217	  MAX-ACCESS   not-accessible
1218      STATUS       current
1219      DESCRIPTION
1220             "Channel Statistics based on the packet sizes."
1221	  INDEX { wlsrChStatsChannel}
1222      ::= { wlsrChannelPktSizeStatsTable 1 }
1223
1224     WlsrChannelPktSizeStatsEntry ::=
1225     SEQUENCE {
1226		 wlsrChStatsPkts63Bytes		Counter32  ,
1227		 wlsrChStatsPkts64To127		Counter32  ,
1228		 wlsrChStatsPkts128To255		Counter32  ,
1229		 wlsrChStatsPkts256To511		Counter32  ,
1230		 wlsrChStatsPkts512To1023	Counter32  ,
1231		 wlsrChStatsPkts1024To1518	Counter32
1232
1233     }
1234
1235     wlsrChStatsPkts63Bytes OBJECT-TYPE
1236         SYNTAX       Counter32
1237         MAX-ACCESS   read-only
1238         STATUS       current
1239         DESCRIPTION
1240            "
1241			 This attribute indicates the total number of packets that were
1242			 less than 64 bytes long.
1243            "
1244        ::= { wlsrChannelPktSizeStatsEntry 1 }
1245
1246     wlsrChStatsPkts64To127 OBJECT-TYPE
1247         SYNTAX       Counter32
1248         MAX-ACCESS   read-only
1249         STATUS       current
1250         DESCRIPTION
1251            "
1252			 This attribute indicates the total number of packets that were
1253			 between 64 and 127 bytes long.
1254            "
1255        ::= { wlsrChannelPktSizeStatsEntry 2 }
1256
1257     wlsrChStatsPkts128To255 OBJECT-TYPE
1258         SYNTAX       Counter32
1259         MAX-ACCESS   read-only
1260         STATUS       current
1261         DESCRIPTION
1262            "
1263			 This attribute indicates the total number of packets that were
1264			 between 128 and 255 bytes long.
1265            "
1266        ::= { wlsrChannelPktSizeStatsEntry 3 }
1267
1268     wlsrChStatsPkts256To511 OBJECT-TYPE
1269         SYNTAX       Counter32
1270         MAX-ACCESS   read-only
1271         STATUS       current
1272         DESCRIPTION
1273            "
1274			 This attribute indicates the total number of packets that were
1275			 between 256 and 511 bytes long.
1276            "
1277        ::= { wlsrChannelPktSizeStatsEntry 4 }
1278
1279     wlsrChStatsPkts512To1023 OBJECT-TYPE
1280         SYNTAX       Counter32
1281         MAX-ACCESS   read-only
1282         STATUS       current
1283         DESCRIPTION
1284            "
1285			 This attribute indicates the total number of packets that were
1286			 between 512 and 1023 bytes long.
1287            "
1288        ::= { wlsrChannelPktSizeStatsEntry 5 }
1289
1290     wlsrChStatsPkts1024To1518 OBJECT-TYPE
1291         SYNTAX       Counter32
1292         MAX-ACCESS   read-only
1293         STATUS       current
1294         DESCRIPTION
1295            "
1296			 This attribute indicates the total number of packets that were
1297			 between 1024 and 1518 bytes long.
1298            "
1299        ::= { wlsrChannelPktSizeStatsEntry 6 }
1300
1301
1302-- Station Statistics Group contains all the statistics related to
1303-- a Station.
1304
1305-- wlsrStaStatsTable will contain all the Aggregate statistics collected
1306-- for a Station
1307
1308   wlsrStatsStaGroup   	OBJECT IDENTIFIER ::= { wlsrStatsGroup 4 }
1309
1310   wlsrStaStatsTable  OBJECT-TYPE
1311	  SYNTAX       SEQUENCE OF WlsrStaStatsEntry
1312	  MAX-ACCESS   not-accessible
1313      STATUS       current
1314      DESCRIPTION
1315	  	"
1316		 This Table contains all the Aggregate statistics collected for a
1317		 station.
1318		"
1319      ::= { wlsrStatsStaGroup 1 }
1320
1321     wlsrStaStatsEntry OBJECT-TYPE
1322	  SYNTAX       WlsrStaStatsEntry
1323	  MAX-ACCESS   not-accessible
1324      STATUS       current
1325      DESCRIPTION
1326             "Station Statistics."
1327	  INDEX { wlsrStaAddress}
1328      ::= { wlsrStaStatsTable 1 }
1329
1330     WlsrStaStatsEntry ::=
1331     SEQUENCE {
1332         wlsrStaAddress 							MacAddress ,
1333		 wlsrStaTxPkts							Counter32  ,
1334		 wlsrStaTxBytes							Counter32  ,
1335		 wlsrStaRxPkts							Counter32  ,
1336		 wlsrStaRxBytes							Counter32  ,
1337		 wlsrStaTxRetryPkts					Counter32  ,
1338		 wlsrStaRxRetryPkts					Counter32  ,
1339		 wlsrStaTxFragmentedPkts				Counter32  ,
1340		 wlsrStaRxFragmentedPkts				Counter32  ,
1341		 wlsrStaReceiveErrPkts				Counter32  ,
1342		 wlsrStaTxTotSignal					Integer32  ,
1343		 wlsrStaTxSignalPkts					Counter32   ,
1344		 wlsrStaTxCurSignal					Integer32   ,
1345		 wlsrStaTxHighSignal					Integer32   ,
1346		 wlsrStaRxTotNoise					Counter32   ,
1347		 wlsrStaRxNoisePkts					Counter32   ,
1348		 wlsrStaRxCurrentNoise				Integer32   ,
1349		 wlsrStaRxHighNoise					Integer32   ,
1350		 wlsrStaRxLowNoise					Integer32   ,
1351		 wlsrStaFrameRetryRate				Integer32   ,
1352		 wlsrStaFrameLowSpeedRate			Integer32   ,
1353		 wlsrStaFrameNonUnicastRate			Integer32   ,
1354		 wlsrStaFrameRetryErrorRate			Integer32   ,
1355		 wlsrStaFrameBandwidthRate			Integer32   ,
1356		 wlsrStaFrameFragmentationRate		Integer32   ,
1357		 wlsrStaFrameHighBandwidthRate		Integer32
1358
1359     }
1360
1361     wlsrStaAddress OBJECT-TYPE
1362         SYNTAX       MacAddress
1363         MAX-ACCESS   not-accessible
1364         STATUS       current
1365         DESCRIPTION
1366            "
1367			Mac Address of the Station connected to this Access Point.
1368            "
1369        ::= { wlsrStaStatsEntry 1 }
1370
1371     wlsrStaTxPkts OBJECT-TYPE
1372         SYNTAX       Counter32
1373         MAX-ACCESS   read-only
1374         STATUS       current
1375         DESCRIPTION
1376            "
1377			This attribute indicates the total packets Transmitted to the
1378			Station.
1379            "
1380        ::= { wlsrStaStatsEntry 2 }
1381
1382     wlsrStaTxBytes OBJECT-TYPE
1383         SYNTAX       Counter32
1384         MAX-ACCESS   read-only
1385         STATUS       current
1386         DESCRIPTION
1387            "
1388			This attribute indicates the total Bytes Transmitted to the
1389			Station.
1390            "
1391        ::= { wlsrStaStatsEntry 3 }
1392
1393     wlsrStaRxPkts OBJECT-TYPE
1394         SYNTAX       Counter32
1395         MAX-ACCESS   read-only
1396         STATUS       current
1397         DESCRIPTION
1398            "
1399			This attribute indicates the total packets Received from the
1400			Station.
1401            "
1402        ::= { wlsrStaStatsEntry 4 }
1403
1404     wlsrStaRxBytes OBJECT-TYPE
1405         SYNTAX       Counter32
1406         MAX-ACCESS   read-only
1407         STATUS       current
1408         DESCRIPTION
1409            "
1410			This attribute indicates the total Bytes Received from the
1411			Station.
1412            "
1413        ::= { wlsrStaStatsEntry 5 }
1414
1415     wlsrStaTxRetryPkts OBJECT-TYPE
1416         SYNTAX       Counter32
1417         MAX-ACCESS   read-only
1418         STATUS       current
1419         DESCRIPTION
1420            "
1421			This attribute indicates the Retry Packets transmitted by the
1422			station
1423            "
1424        ::= { wlsrStaStatsEntry 6 }
1425
1426     wlsrStaRxRetryPkts OBJECT-TYPE
1427         SYNTAX       Counter32
1428         MAX-ACCESS   read-only
1429         STATUS       current
1430         DESCRIPTION
1431            "
1432			This attribute indicates the Retry Packets received from the
1433			station
1434            "
1435        ::= { wlsrStaStatsEntry 7 }
1436
1437     wlsrStaTxFragmentedPkts OBJECT-TYPE
1438         SYNTAX       Counter32
1439         MAX-ACCESS   read-only
1440         STATUS       current
1441         DESCRIPTION
1442            "
1443			This attribute indicates the Fragmented Packets transmitted by the
1444			station.
1445            "
1446        ::= { wlsrStaStatsEntry 8 }
1447
1448     wlsrStaRxFragmentedPkts OBJECT-TYPE
1449         SYNTAX       Counter32
1450         MAX-ACCESS   read-only
1451         STATUS       current
1452         DESCRIPTION
1453            "
1454			This attribute indicates the Fragmented Packets Received from the
1455			station.
1456            "
1457        ::= { wlsrStaStatsEntry 9 }
1458
1459     wlsrStaReceiveErrPkts OBJECT-TYPE
1460         SYNTAX       Counter32
1461         MAX-ACCESS   read-only
1462         STATUS       current
1463         DESCRIPTION
1464            "
1465			This attribute indicates the total Error Packets received from
1466			this station.
1467            "
1468        ::= { wlsrStaStatsEntry 10 }
1469
1470     wlsrStaTxTotSignal OBJECT-TYPE
1471         SYNTAX       Integer32
1472         MAX-ACCESS   read-only
1473         STATUS       current
1474         DESCRIPTION
1475            "
1476			The attribute indicates the total transmitted signal computed for
1477			this station.
1478            "
1479        ::= { wlsrStaStatsEntry 11 }
1480
1481     wlsrStaTxSignalPkts OBJECT-TYPE
1482         SYNTAX       Counter32
1483         MAX-ACCESS   read-only
1484         STATUS       current
1485         DESCRIPTION
1486            "
1487			This attribute indicates the total Signal Packets transmitted by
1488			this station.
1489            "
1490        ::= { wlsrStaStatsEntry 12 }
1491
1492     wlsrStaTxCurSignal OBJECT-TYPE
1493         SYNTAX       Integer32
1494         MAX-ACCESS   read-only
1495         STATUS       current
1496         DESCRIPTION
1497            "
1498			This attribute indicate the stations current transmit signal
1499			strength.
1500            "
1501        ::= { wlsrStaStatsEntry 13 }
1502
1503     wlsrStaTxHighSignal OBJECT-TYPE
1504         SYNTAX       Integer32
1505         MAX-ACCESS   read-only
1506         STATUS       current
1507         DESCRIPTION
1508            "
1509			This attribute indicate the stations high transmit signal
1510			strength.
1511            "
1512        ::= { wlsrStaStatsEntry 14 }
1513
1514
1515     wlsrStaRxTotNoise OBJECT-TYPE
1516         SYNTAX       Counter32
1517         MAX-ACCESS   read-only
1518         STATUS       deprecated
1519         DESCRIPTION
1520            "
1521			Total Noise.
1522            "
1523        ::= { wlsrStaStatsEntry 15 }
1524
1525     wlsrStaRxNoisePkts OBJECT-TYPE
1526         SYNTAX       Counter32
1527         MAX-ACCESS   read-only
1528         STATUS       deprecated
1529         DESCRIPTION
1530            "
1531			Received Noise.
1532            "
1533        ::= { wlsrStaStatsEntry 16 }
1534
1535     wlsrStaRxCurrentNoise OBJECT-TYPE
1536         SYNTAX       Integer32
1537         MAX-ACCESS   read-only
1538         STATUS       deprecated
1539         DESCRIPTION
1540            "
1541			Current Noise.
1542            "
1543        ::= { wlsrStaStatsEntry 17 }
1544
1545     wlsrStaRxHighNoise OBJECT-TYPE
1546         SYNTAX       Integer32
1547         MAX-ACCESS   read-only
1548         STATUS       deprecated
1549         DESCRIPTION
1550            "
1551			High Noise
1552            "
1553        ::= { wlsrStaStatsEntry 18 }
1554
1555     wlsrStaRxLowNoise OBJECT-TYPE
1556         SYNTAX       Integer32
1557         MAX-ACCESS   read-only
1558         STATUS       deprecated
1559         DESCRIPTION
1560            "
1561			Low Noise
1562            "
1563        ::= { wlsrStaStatsEntry 19 }
1564
1565     wlsrStaFrameRetryRate OBJECT-TYPE
1566         SYNTAX       Integer32
1567         MAX-ACCESS   read-only
1568         STATUS       current
1569         DESCRIPTION
1570            "
1571			Station Frame Retry Rate in kbps.
1572            "
1573        ::= { wlsrStaStatsEntry 20 }
1574
1575     wlsrStaFrameLowSpeedRate OBJECT-TYPE
1576         SYNTAX       Integer32
1577         MAX-ACCESS   read-only
1578         STATUS       current
1579         DESCRIPTION
1580            "
1581			Station Frame Low speed error rate in kbps.
1582            "
1583        ::= { wlsrStaStatsEntry 21 }
1584
1585     wlsrStaFrameNonUnicastRate OBJECT-TYPE
1586         SYNTAX       Integer32
1587         MAX-ACCESS   read-only
1588         STATUS       current
1589         DESCRIPTION
1590            "
1591			Station Frame Non Unicast rate in kbps.
1592            "
1593        ::= { wlsrStaStatsEntry 22 }
1594
1595     wlsrStaFrameRetryErrorRate OBJECT-TYPE
1596         SYNTAX       Integer32
1597         MAX-ACCESS   read-only
1598         STATUS       current
1599         DESCRIPTION
1600            "
1601			Station Frame Retry Error Rate in kbps.
1602            "
1603        ::= { wlsrStaStatsEntry 23 }
1604
1605     wlsrStaFrameBandwidthRate OBJECT-TYPE
1606         SYNTAX       Integer32
1607         MAX-ACCESS   read-only
1608         STATUS       current
1609         DESCRIPTION
1610            "
1611			Station Frame Bandwidth rate in kbps.
1612            "
1613        ::= { wlsrStaStatsEntry 24 }
1614
1615     wlsrStaFrameFragmentationRate OBJECT-TYPE
1616         SYNTAX       Integer32
1617         MAX-ACCESS   read-only
1618         STATUS       current
1619         DESCRIPTION
1620            "
1621			Station Frame Fragmentation Rate in kbps.
1622            "
1623        ::= { wlsrStaStatsEntry 25 }
1624
1625     wlsrStaFrameHighBandwidthRate OBJECT-TYPE
1626         SYNTAX       Integer32
1627         MAX-ACCESS   read-only
1628         STATUS       current
1629         DESCRIPTION
1630            "
1631			Station Frame High Bandwidth Rate in kbps.
1632            "
1633        ::= { wlsrStaStatsEntry 26 }
1634
1635-- This table breaks down the Station statistics into different
1636-- rate categories.
1637
1638   wlsrStaRateStatsTable  OBJECT-TYPE
1639	  SYNTAX       SEQUENCE OF WlsrStaRateStatsEntry
1640	  MAX-ACCESS   not-accessible
1641      STATUS       current
1642      DESCRIPTION
1643	  	"
1644		This table contains all the per channel Packet and Byte Counts
1645		but represented in terms of rate categories.
1646		"
1647
1648      ::= { wlsrStatsStaGroup 2 }
1649
1650     wlsrStaRateStatsEntry OBJECT-TYPE
1651	  SYNTAX       WlsrStaRateStatsEntry
1652	  MAX-ACCESS   not-accessible
1653      STATUS       current
1654      DESCRIPTION
1655	  	" Station Rate Stats Table"
1656	  INDEX { wlsrStaAddress}
1657      ::= { wlsrStaRateStatsTable 1 }
1658
1659     WlsrStaRateStatsEntry ::=
1660     SEQUENCE {
1661		 wlsrStaTxPktsAt1Mbps			Counter32  ,
1662		 wlsrStaTxBytesAt1Mbps			Counter32  ,
1663		 wlsrStaTxPktsAt2Mbps			Counter32  ,
1664		 wlsrStaTxBytesAt2Mbps			Counter32  ,
1665		 wlsrStaTxPktsAt5Mbps			Counter32  ,
1666		 wlsrStaTxBytesAt5Mbps			Counter32  ,
1667		 wlsrStaTxPktsAt11Mbps			Counter32  ,
1668		 wlsrStaTxBytesAt11Mbps			Counter32  ,
1669		 wlsrStaTxPktsAt6Mbps			Counter32  ,
1670		 wlsrStaTxBytesAt6Mbps			Counter32  ,
1671		 wlsrStaTxPktsAt12Mbps			Counter32  ,
1672		 wlsrStaTxBytesAt12Mbps			Counter32  ,
1673		 wlsrStaTxPktsAt18Mbps			Counter32  ,
1674		 wlsrStaTxBytesAt18Mbps			Counter32  ,
1675		 wlsrStaTxPktsAt24Mbps			Counter32  ,
1676		 wlsrStaTxBytesAt24Mbps			Counter32  ,
1677		 wlsrStaTxPktsAt36Mbps			Counter32  ,
1678		 wlsrStaTxBytesAt36Mbps			Counter32  ,
1679		 wlsrStaTxPktsAt48Mbps			Counter32  ,
1680		 wlsrStaTxBytesAt48Mbps			Counter32  ,
1681		 wlsrStaTxPktsAt54Mbps			Counter32  ,
1682		 wlsrStaTxBytesAt54Mbps			Counter32  ,
1683		 wlsrStaRxPktsAt1Mbps			Counter32  ,
1684		 wlsrStaRxBytesAt1Mbps			Counter32  ,
1685		 wlsrStaRxPktsAt2Mbps			Counter32  ,
1686		 wlsrStaRxBytesAt2Mbps			Counter32  ,
1687		 wlsrStaRxPktsAt5Mbps			Counter32  ,
1688		 wlsrStaRxBytesAt5Mbps			Counter32  ,
1689		 wlsrStaRxPktsAt11Mbps			Counter32  ,
1690		 wlsrStaRxBytesAt11Mbps			Counter32  ,
1691		 wlsrStaRxPktsAt6Mbps			Counter32  ,
1692		 wlsrStaRxBytesAt6Mbps			Counter32  ,
1693		 wlsrStaRxPktsAt12Mbps			Counter32  ,
1694		 wlsrStaRxBytesAt12Mbps			Counter32  ,
1695		 wlsrStaRxPktsAt18Mbps			Counter32  ,
1696		 wlsrStaRxBytesAt18Mbps			Counter32  ,
1697		 wlsrStaRxPktsAt24Mbps			Counter32  ,
1698		 wlsrStaRxBytesAt24Mbps			Counter32  ,
1699		 wlsrStaRxPktsAt36Mbps			Counter32  ,
1700		 wlsrStaRxBytesAt36Mbps			Counter32  ,
1701		 wlsrStaRxPktsAt48Mbps			Counter32  ,
1702		 wlsrStaRxBytesAt48Mbps			Counter32  ,
1703		 wlsrStaRxPktsAt54Mbps			Counter32  ,
1704		 wlsrStaRxBytesAt54Mbps			Counter32
1705
1706
1707     }
1708
1709     wlsrStaTxPktsAt1Mbps OBJECT-TYPE
1710         SYNTAX       Counter32
1711         MAX-ACCESS   read-only
1712         STATUS       current
1713         DESCRIPTION
1714            "
1715			 This attribute indicates the number of Packets Transmitted by the
1716			 station at 1Mbps rate.
1717            "
1718        ::= { wlsrStaRateStatsEntry 1 }
1719
1720     wlsrStaTxBytesAt1Mbps OBJECT-TYPE
1721         SYNTAX       Counter32
1722         MAX-ACCESS   read-only
1723         STATUS       current
1724         DESCRIPTION
1725            "
1726			 This attribute indicates the number of Octets Transmitted by the
1727			 station at 1Mbps rate.
1728            "
1729        ::= { wlsrStaRateStatsEntry 2 }
1730
1731     wlsrStaTxPktsAt2Mbps OBJECT-TYPE
1732         SYNTAX       Counter32
1733         MAX-ACCESS   read-only
1734         STATUS       current
1735         DESCRIPTION
1736            "
1737			 This attribute indicates the number of Packets Transmitted by the
1738			 station at 2Mbps rate.
1739            "
1740        ::= { wlsrStaRateStatsEntry 3 }
1741
1742     wlsrStaTxBytesAt2Mbps OBJECT-TYPE
1743         SYNTAX       Counter32
1744         MAX-ACCESS   read-only
1745         STATUS       current
1746         DESCRIPTION
1747            "
1748			 This attribute indicates the number of Octets Transmitted by the
1749			 station at 2Mbps rate.
1750            "
1751        ::= { wlsrStaRateStatsEntry 4 }
1752
1753     wlsrStaTxPktsAt5Mbps OBJECT-TYPE
1754         SYNTAX       Counter32
1755         MAX-ACCESS   read-only
1756         STATUS       current
1757         DESCRIPTION
1758            "
1759			 This attribute indicates the number of Packets Transmitted by the
1760			 station at 5Mbps rate.
1761            "
1762        ::= { wlsrStaRateStatsEntry 5 }
1763
1764     wlsrStaTxBytesAt5Mbps OBJECT-TYPE
1765         SYNTAX       Counter32
1766         MAX-ACCESS   read-only
1767         STATUS       current
1768         DESCRIPTION
1769            "
1770			 This attribute indicates the number of Octets Transmitted by the
1771			 station at 5Mbps rate.
1772            "
1773        ::= { wlsrStaRateStatsEntry 6 }
1774
1775     wlsrStaTxPktsAt11Mbps OBJECT-TYPE
1776         SYNTAX       Counter32
1777         MAX-ACCESS   read-only
1778         STATUS       current
1779         DESCRIPTION
1780            "
1781			 This attribute indicates the number of Packets Transmitted by the
1782			 station at 11Mbps rate.
1783            "
1784        ::= { wlsrStaRateStatsEntry 7 }
1785
1786     wlsrStaTxBytesAt11Mbps OBJECT-TYPE
1787         SYNTAX       Counter32
1788         MAX-ACCESS   read-only
1789         STATUS       current
1790         DESCRIPTION
1791            "
1792			 This attribute indicates the number of Octets Transmitted by the
1793			 station at 11Mbps rate.
1794            "
1795        ::= { wlsrStaRateStatsEntry 8 }
1796
1797     wlsrStaTxPktsAt6Mbps OBJECT-TYPE
1798         SYNTAX       Counter32
1799         MAX-ACCESS   read-only
1800         STATUS       current
1801         DESCRIPTION
1802            "
1803			 This attribute indicates the number of Packets Transmitted by the
1804			 station at 6Mbps rate.
1805            "
1806        ::= { wlsrStaRateStatsEntry 9 }
1807
1808     wlsrStaTxBytesAt6Mbps OBJECT-TYPE
1809         SYNTAX       Counter32
1810         MAX-ACCESS   read-only
1811         STATUS       current
1812         DESCRIPTION
1813            "
1814			 This attribute indicates the number of Octets Transmitted by the
1815			 station at 6Mbps rate.
1816            "
1817        ::= { wlsrStaRateStatsEntry 10 }
1818
1819     wlsrStaTxPktsAt12Mbps OBJECT-TYPE
1820         SYNTAX       Counter32
1821         MAX-ACCESS   read-only
1822         STATUS       current
1823         DESCRIPTION
1824            "
1825			 This attribute indicates the number of Packets Transmitted by the
1826			 station at 12Mbps rate.
1827            "
1828        ::= { wlsrStaRateStatsEntry 11 }
1829
1830     wlsrStaTxBytesAt12Mbps OBJECT-TYPE
1831         SYNTAX       Counter32
1832         MAX-ACCESS   read-only
1833         STATUS       current
1834         DESCRIPTION
1835            "
1836			 This attribute indicates the number of Octets Transmitted by the
1837			 station at 12Mbps rate.
1838            "
1839        ::= { wlsrStaRateStatsEntry 12 }
1840
1841     wlsrStaTxPktsAt18Mbps OBJECT-TYPE
1842         SYNTAX       Counter32
1843         MAX-ACCESS   read-only
1844         STATUS       current
1845         DESCRIPTION
1846            "
1847			 This attribute indicates the number of Packets Transmitted by the
1848			 station at 18Mbps rate.
1849            "
1850        ::= { wlsrStaRateStatsEntry 13 }
1851
1852     wlsrStaTxBytesAt18Mbps OBJECT-TYPE
1853         SYNTAX       Counter32
1854         MAX-ACCESS   read-only
1855         STATUS       current
1856         DESCRIPTION
1857            "
1858			 This attribute indicates the number of Octets Transmitted by the
1859			 station at 18Mbps rate.
1860            "
1861        ::= { wlsrStaRateStatsEntry 14 }
1862
1863     wlsrStaTxPktsAt24Mbps OBJECT-TYPE
1864         SYNTAX       Counter32
1865         MAX-ACCESS   read-only
1866         STATUS       current
1867         DESCRIPTION
1868            "
1869			 This attribute indicates the number of Packets Transmitted by the
1870			 station at 24Mbps rate.
1871            "
1872        ::= { wlsrStaRateStatsEntry 15 }
1873
1874     wlsrStaTxBytesAt24Mbps OBJECT-TYPE
1875         SYNTAX       Counter32
1876         MAX-ACCESS   read-only
1877         STATUS       current
1878         DESCRIPTION
1879            "
1880			 This attribute indicates the number of Octets Transmitted by the
1881			 station at 24Mbps rate.
1882            "
1883        ::= { wlsrStaRateStatsEntry 16 }
1884
1885     wlsrStaTxPktsAt36Mbps OBJECT-TYPE
1886         SYNTAX       Counter32
1887         MAX-ACCESS   read-only
1888         STATUS       current
1889         DESCRIPTION
1890            "
1891			 This attribute indicates the number of Packets Transmitted by the
1892			 station at 36Mbps rate.
1893            "
1894        ::= { wlsrStaRateStatsEntry 17 }
1895
1896     wlsrStaTxBytesAt36Mbps OBJECT-TYPE
1897         SYNTAX       Counter32
1898         MAX-ACCESS   read-only
1899         STATUS       current
1900         DESCRIPTION
1901            "
1902			 This attribute indicates the number of Octets Transmitted by the
1903			 station at 36Mbps rate.
1904            "
1905        ::= { wlsrStaRateStatsEntry 18 }
1906
1907     wlsrStaTxPktsAt48Mbps OBJECT-TYPE
1908         SYNTAX       Counter32
1909         MAX-ACCESS   read-only
1910         STATUS       current
1911         DESCRIPTION
1912            "
1913			 This attribute indicates the number of Packets Transmitted by the
1914			 station at 48Mbps rate.
1915            "
1916        ::= { wlsrStaRateStatsEntry 19 }
1917
1918     wlsrStaTxBytesAt48Mbps OBJECT-TYPE
1919         SYNTAX       Counter32
1920         MAX-ACCESS   read-only
1921         STATUS       current
1922         DESCRIPTION
1923            "
1924			 This attribute indicates the number of Octets Transmitted by the
1925			 station at 48Mbps rate.
1926            "
1927        ::= { wlsrStaRateStatsEntry 20 }
1928
1929     wlsrStaTxPktsAt54Mbps OBJECT-TYPE
1930         SYNTAX       Counter32
1931         MAX-ACCESS   read-only
1932         STATUS       current
1933         DESCRIPTION
1934            "
1935			 This attribute indicates the number of Packets Transmitted by the
1936			 station at 54Mbps rate.
1937            "
1938        ::= { wlsrStaRateStatsEntry 21 }
1939
1940     wlsrStaTxBytesAt54Mbps OBJECT-TYPE
1941         SYNTAX       Counter32
1942         MAX-ACCESS   read-only
1943         STATUS       current
1944         DESCRIPTION
1945            "
1946			 This attribute indicates the number of Octets Transmitted by the
1947			 station at 54Mbps rate.
1948            "
1949        ::= { wlsrStaRateStatsEntry 22 }
1950
1951     wlsrStaRxPktsAt1Mbps OBJECT-TYPE
1952         SYNTAX       Counter32
1953         MAX-ACCESS   read-only
1954         STATUS       current
1955         DESCRIPTION
1956            "
1957			 This attribute indicates the number of Packets Received by the
1958			 station at 1Mbps rate.
1959            "
1960        ::= { wlsrStaRateStatsEntry 23 }
1961
1962     wlsrStaRxBytesAt1Mbps OBJECT-TYPE
1963         SYNTAX       Counter32
1964         MAX-ACCESS   read-only
1965         STATUS       current
1966         DESCRIPTION
1967            "
1968			 This attribute indicates the number of Octets Received by the
1969			 station at 1Mbps rate.
1970            "
1971        ::= { wlsrStaRateStatsEntry 24 }
1972
1973     wlsrStaRxPktsAt2Mbps OBJECT-TYPE
1974         SYNTAX       Counter32
1975         MAX-ACCESS   read-only
1976         STATUS       current
1977         DESCRIPTION
1978            "
1979			 This attribute indicates the number of Packets Received by the
1980			 station at 2Mbps rate.
1981            "
1982        ::= { wlsrStaRateStatsEntry 25 }
1983
1984     wlsrStaRxBytesAt2Mbps OBJECT-TYPE
1985         SYNTAX       Counter32
1986         MAX-ACCESS   read-only
1987         STATUS       current
1988         DESCRIPTION
1989            "
1990			 This attribute indicates the number of Octets Received by the
1991			 station at 2Mbps rate.
1992            "
1993        ::= { wlsrStaRateStatsEntry 26 }
1994
1995     wlsrStaRxPktsAt5Mbps OBJECT-TYPE
1996         SYNTAX       Counter32
1997         MAX-ACCESS   read-only
1998         STATUS       current
1999         DESCRIPTION
2000            "
2001			 This attribute indicates the number of Packets Received by the
2002			 station at 5Mbps rate.
2003            "
2004        ::= { wlsrStaRateStatsEntry 27 }
2005
2006     wlsrStaRxBytesAt5Mbps OBJECT-TYPE
2007         SYNTAX       Counter32
2008         MAX-ACCESS   read-only
2009         STATUS       current
2010         DESCRIPTION
2011            "
2012			 This attribute indicates the number of Octets Received by the
2013			 station at 5Mbps rate.
2014            "
2015        ::= { wlsrStaRateStatsEntry 28 }
2016
2017     wlsrStaRxPktsAt11Mbps OBJECT-TYPE
2018         SYNTAX       Counter32
2019         MAX-ACCESS   read-only
2020         STATUS       current
2021         DESCRIPTION
2022            "
2023			 This attribute indicates the number of Packets Received by the
2024			 station at 11Mbps rate.
2025            "
2026        ::= { wlsrStaRateStatsEntry 29 }
2027
2028     wlsrStaRxBytesAt11Mbps OBJECT-TYPE
2029         SYNTAX       Counter32
2030         MAX-ACCESS   read-only
2031         STATUS       current
2032         DESCRIPTION
2033            "
2034			 This attribute indicates the number of Octets Received by the
2035			 station at 11Mbps rate.
2036            "
2037        ::= { wlsrStaRateStatsEntry 30 }
2038
2039     wlsrStaRxPktsAt6Mbps OBJECT-TYPE
2040         SYNTAX       Counter32
2041         MAX-ACCESS   read-only
2042         STATUS       current
2043         DESCRIPTION
2044            "
2045			 This attribute indicates the number of Packets Received by the
2046			 station at 6Mbps rate.
2047            "
2048        ::= { wlsrStaRateStatsEntry 31 }
2049
2050     wlsrStaRxBytesAt6Mbps OBJECT-TYPE
2051         SYNTAX       Counter32
2052         MAX-ACCESS   read-only
2053         STATUS       current
2054         DESCRIPTION
2055            "
2056			 This attribute indicates the number of Octets Received by the
2057			 station at 6Mbps rate.
2058            "
2059        ::= { wlsrStaRateStatsEntry 32 }
2060
2061     wlsrStaRxPktsAt12Mbps OBJECT-TYPE
2062         SYNTAX       Counter32
2063         MAX-ACCESS   read-only
2064         STATUS       current
2065         DESCRIPTION
2066            "
2067			 This attribute indicates the number of Packets Received by the
2068			 station at 12Mbps rate.
2069            "
2070        ::= { wlsrStaRateStatsEntry 33 }
2071
2072     wlsrStaRxBytesAt12Mbps OBJECT-TYPE
2073         SYNTAX       Counter32
2074         MAX-ACCESS   read-only
2075         STATUS       current
2076         DESCRIPTION
2077            "
2078			 This attribute indicates the number of Octets Received by the
2079			 station at 12Mbps rate.
2080            "
2081        ::= { wlsrStaRateStatsEntry 34 }
2082
2083     wlsrStaRxPktsAt18Mbps OBJECT-TYPE
2084         SYNTAX       Counter32
2085         MAX-ACCESS   read-only
2086         STATUS       current
2087         DESCRIPTION
2088            "
2089			 This attribute indicates the number of Packets Received by the
2090			 station at 18Mbps rate.
2091            "
2092        ::= { wlsrStaRateStatsEntry 35 }
2093
2094     wlsrStaRxBytesAt18Mbps OBJECT-TYPE
2095         SYNTAX       Counter32
2096         MAX-ACCESS   read-only
2097         STATUS       current
2098         DESCRIPTION
2099            "
2100			 This attribute indicates the number of Octets Received by the
2101			 station at 18Mbps rate.
2102            "
2103        ::= { wlsrStaRateStatsEntry 36 }
2104
2105     wlsrStaRxPktsAt24Mbps OBJECT-TYPE
2106         SYNTAX       Counter32
2107         MAX-ACCESS   read-only
2108         STATUS       current
2109         DESCRIPTION
2110            "
2111			 This attribute indicates the number of Packets Received by the
2112			 station at 24Mbps rate.
2113            "
2114        ::= { wlsrStaRateStatsEntry 37 }
2115
2116     wlsrStaRxBytesAt24Mbps OBJECT-TYPE
2117         SYNTAX       Counter32
2118         MAX-ACCESS   read-only
2119         STATUS       current
2120         DESCRIPTION
2121            "
2122			 This attribute indicates the number of Octets Received by the
2123			 station at 24Mbps rate.
2124            "
2125        ::= { wlsrStaRateStatsEntry 38 }
2126
2127     wlsrStaRxPktsAt36Mbps OBJECT-TYPE
2128         SYNTAX       Counter32
2129         MAX-ACCESS   read-only
2130         STATUS       current
2131         DESCRIPTION
2132            "
2133			 This attribute indicates the number of Packets Received by the
2134			 station at 36Mbps rate.
2135            "
2136        ::= { wlsrStaRateStatsEntry 39 }
2137
2138     wlsrStaRxBytesAt36Mbps OBJECT-TYPE
2139         SYNTAX       Counter32
2140         MAX-ACCESS   read-only
2141         STATUS       current
2142         DESCRIPTION
2143            "
2144			 This attribute indicates the number of Octets Received by the
2145			 station at 36Mbps rate.
2146            "
2147        ::= { wlsrStaRateStatsEntry 40 }
2148
2149     wlsrStaRxPktsAt48Mbps OBJECT-TYPE
2150         SYNTAX       Counter32
2151         MAX-ACCESS   read-only
2152         STATUS       current
2153         DESCRIPTION
2154            "
2155			 This attribute indicates the number of Packets Received by the
2156			 station at 48Mbps rate.
2157            "
2158        ::= { wlsrStaRateStatsEntry 41 }
2159
2160     wlsrStaRxBytesAt48Mbps OBJECT-TYPE
2161         SYNTAX       Counter32
2162         MAX-ACCESS   read-only
2163         STATUS       current
2164         DESCRIPTION
2165            "
2166			 This attribute indicates the number of Octets Received by the
2167			 station at 48Mbps rate.
2168            "
2169        ::= { wlsrStaRateStatsEntry 42 }
2170
2171     wlsrStaRxPktsAt54Mbps OBJECT-TYPE
2172         SYNTAX       Counter32
2173         MAX-ACCESS   read-only
2174         STATUS       current
2175         DESCRIPTION
2176            "
2177			 This attribute indicates the number of Packets Received by the
2178			 station at 54Mbps rate.
2179            "
2180        ::= { wlsrStaRateStatsEntry 43 }
2181
2182     wlsrStaRxBytesAt54Mbps OBJECT-TYPE
2183         SYNTAX       Counter32
2184         MAX-ACCESS   read-only
2185         STATUS       current
2186         DESCRIPTION
2187            "
2188			 This attribute indicates the number of Octets Received by the
2189			 station at 54Mbps rate.
2190            "
2191        ::= { wlsrStaRateStatsEntry 44 }
2192
2193-- This table breaks down the Station statistics based on the
2194-- Destination Address Types.
2195
2196   wlsrStaDATypeStatsTable  OBJECT-TYPE
2197	  SYNTAX       SEQUENCE OF WlsrStaDATypeStatsEntry
2198	  MAX-ACCESS   not-accessible
2199      STATUS       current
2200      DESCRIPTION
2201	  	"
2202		This table contains all the per channel Packet and Byte Counts
2203		but broken down in terms of Destination Address Type.
2204		"
2205      ::= { wlsrStatsStaGroup 3 }
2206
2207     wlsrStaDATypeStatsEntry OBJECT-TYPE
2208	  SYNTAX       WlsrStaDATypeStatsEntry
2209	  MAX-ACCESS   not-accessible
2210      STATUS       current
2211      DESCRIPTION
2212             "Station Statistics based on the Destination Address Type."
2213	  INDEX { wlsrStaAddress}
2214      ::= { wlsrStaDATypeStatsTable 1 }
2215
2216     WlsrStaDATypeStatsEntry ::=
2217     SEQUENCE {
2218		 wlsrStaTxDABroadcastPkts		Counter32  ,
2219		 wlsrStaTxDABroadcastBytes		Counter32  ,
2220		 wlsrStaTxDAMulticastPkts		Counter32  ,
2221		 wlsrStaTxDAMulticastBytes		Counter32  ,
2222		 wlsrStaTxDAUnicastPkts			Counter32  ,
2223		 wlsrStaTxDAUnicastBytes		Counter32
2224
2225     }
2226
2227     wlsrStaTxDABroadcastPkts OBJECT-TYPE
2228         SYNTAX       Counter32
2229         MAX-ACCESS   read-only
2230         STATUS       current
2231         DESCRIPTION
2232            "
2233			 This attribute indicates the number of Broadcast packets
2234			 transmitted by this Station.
2235            "
2236        ::= { wlsrStaDATypeStatsEntry 1 }
2237
2238     wlsrStaTxDABroadcastBytes OBJECT-TYPE
2239         SYNTAX       Counter32
2240         MAX-ACCESS   read-only
2241         STATUS       current
2242         DESCRIPTION
2243            "
2244			 This attribute indicates the number of Broadcast Bytes
2245			 transmitted by this Station.
2246            "
2247        ::= { wlsrStaDATypeStatsEntry 2 }
2248
2249     wlsrStaTxDAMulticastPkts OBJECT-TYPE
2250         SYNTAX       Counter32
2251         MAX-ACCESS   read-only
2252         STATUS       current
2253         DESCRIPTION
2254            "
2255			 This attribute indicates the number of Multicast packets
2256			 transmitted by this station.
2257            "
2258        ::= { wlsrStaDATypeStatsEntry 3 }
2259
2260     wlsrStaTxDAMulticastBytes OBJECT-TYPE
2261         SYNTAX       Counter32
2262         MAX-ACCESS   read-only
2263         STATUS       current
2264         DESCRIPTION
2265            "
2266			 This attribute indicates the number of Multicast Bytes
2267			 transmitted by this station.
2268            "
2269        ::= { wlsrStaDATypeStatsEntry 4 }
2270
2271     wlsrStaTxDAUnicastPkts OBJECT-TYPE
2272         SYNTAX       Counter32
2273         MAX-ACCESS   read-only
2274         STATUS       current
2275         DESCRIPTION
2276            "
2277			 This attribute indicates the total of Unicast packets
2278			 transmitted by this station.
2279            "
2280        ::= { wlsrStaDATypeStatsEntry 5 }
2281
2282     wlsrStaTxDAUnicastBytes OBJECT-TYPE
2283         SYNTAX       Counter32
2284         MAX-ACCESS   read-only
2285         STATUS       current
2286         DESCRIPTION
2287            "
2288			 This attribute indicates the total of Unicast Bytes
2289			 transmitted by this station.
2290            "
2291        ::= { wlsrStaDATypeStatsEntry 6 }
2292
2293-- This table breaks down the Station statistics based on the
2294-- the Type of the Packet.
2295
2296   wlsrStaFrameTypeStatsTable  OBJECT-TYPE
2297	  SYNTAX       SEQUENCE OF WlsrStaFrameTypeStatsEntry
2298	  MAX-ACCESS   not-accessible
2299      STATUS       current
2300      DESCRIPTION
2301	  	"
2302		This table contains all the per channel Packet and Byte Counts
2303		but broken down into different Frame Types.
2304		"
2305      ::= { wlsrStatsStaGroup 4 }
2306
2307     wlsrStaFrameTypeStatsEntry OBJECT-TYPE
2308	  SYNTAX       WlsrStaFrameTypeStatsEntry
2309	  MAX-ACCESS   not-accessible
2310      STATUS       current
2311      DESCRIPTION
2312             "Station Frame Type Stats Entry."
2313	  INDEX { wlsrStaAddress}
2314      ::= { wlsrStaFrameTypeStatsTable 1 }
2315
2316     WlsrStaFrameTypeStatsEntry ::=
2317     SEQUENCE {
2318		 wlsrStaTxMgmtPkts		Counter32  ,
2319		 wlsrStaTxMgmtBytes		Counter32  ,
2320		 wlsrStaTxCtrlPkts		Counter32  ,
2321		 wlsrStaTxCtrlBytes		Counter32  ,
2322		 wlsrStaTxDataPkts		Counter32  ,
2323		 wlsrStaTxDataBytes		Counter32  ,
2324		 wlsrStaRxMgmtPkts		Counter32  ,
2325		 wlsrStaRxMgmtBytes		Counter32  ,
2326		 wlsrStaRxCtrlPkts		Counter32  ,
2327		 wlsrStaRxCtrlBytes		Counter32  ,
2328		 wlsrStaRxDataPkts		Counter32  ,
2329		 wlsrStaRxDataBytes		Counter32
2330
2331     }
2332
2333     wlsrStaTxMgmtPkts OBJECT-TYPE
2334         SYNTAX       Counter32
2335         MAX-ACCESS   read-only
2336         STATUS       current
2337         DESCRIPTION
2338            "
2339			 This attribute indicates the Transmitted Management packets
2340			 from a station.
2341            "
2342        ::= { wlsrStaFrameTypeStatsEntry 1 }
2343
2344     wlsrStaTxMgmtBytes OBJECT-TYPE
2345         SYNTAX       Counter32
2346         MAX-ACCESS   read-only
2347         STATUS       current
2348         DESCRIPTION
2349            "
2350			 This attribute indicates the Transmitted Management Bytes
2351			 from a station
2352            "
2353        ::= { wlsrStaFrameTypeStatsEntry 2 }
2354
2355     wlsrStaTxCtrlPkts OBJECT-TYPE
2356         SYNTAX       Counter32
2357         MAX-ACCESS   read-only
2358         STATUS       current
2359         DESCRIPTION
2360            "
2361			 This attribute indicates the Transmitted Control packets
2362			 from a station
2363            "
2364        ::= { wlsrStaFrameTypeStatsEntry 3 }
2365
2366     wlsrStaTxCtrlBytes OBJECT-TYPE
2367         SYNTAX       Counter32
2368         MAX-ACCESS   read-only
2369         STATUS       current
2370         DESCRIPTION
2371            "
2372			 This attribute indicates the Transmitted Control Bytes
2373			 from a station
2374            "
2375        ::= { wlsrStaFrameTypeStatsEntry 4 }
2376
2377     wlsrStaTxDataPkts OBJECT-TYPE
2378         SYNTAX       Counter32
2379         MAX-ACCESS   read-only
2380         STATUS       current
2381         DESCRIPTION
2382            "
2383			 This attribute indicates the Transmitted Data packets
2384			 from a station
2385            "
2386        ::= { wlsrStaFrameTypeStatsEntry 5 }
2387
2388     wlsrStaTxDataBytes OBJECT-TYPE
2389         SYNTAX       Counter32
2390         MAX-ACCESS   read-only
2391         STATUS       current
2392         DESCRIPTION
2393            "
2394			 This attribute indicates the Transmitted Data Bytes
2395			 observed on this channel.
2396            "
2397        ::= { wlsrStaFrameTypeStatsEntry 6 }
2398
2399     wlsrStaRxMgmtPkts OBJECT-TYPE
2400         SYNTAX       Counter32
2401         MAX-ACCESS   read-only
2402         STATUS       current
2403         DESCRIPTION
2404            "
2405			 This attribute indicates the number of received Management packets
2406			 at a station.
2407            "
2408        ::= { wlsrStaFrameTypeStatsEntry 7 }
2409
2410     wlsrStaRxMgmtBytes OBJECT-TYPE
2411         SYNTAX       Counter32
2412         MAX-ACCESS   read-only
2413         STATUS       current
2414         DESCRIPTION
2415            "
2416			 This attribute indicates the number of received Management Bytes
2417			 at a station.
2418            "
2419        ::= { wlsrStaFrameTypeStatsEntry 8 }
2420
2421     wlsrStaRxCtrlPkts OBJECT-TYPE
2422         SYNTAX       Counter32
2423         MAX-ACCESS   read-only
2424         STATUS       current
2425         DESCRIPTION
2426            "
2427			 This attribute indicates the number of received Control packets
2428			 at a station.
2429            "
2430        ::= { wlsrStaFrameTypeStatsEntry 9 }
2431
2432     wlsrStaRxCtrlBytes OBJECT-TYPE
2433         SYNTAX       Counter32
2434         MAX-ACCESS   read-only
2435         STATUS       current
2436         DESCRIPTION
2437            "
2438			 This attribute indicates the number of received Control Bytes
2439			 at a station.
2440            "
2441        ::= { wlsrStaFrameTypeStatsEntry 10 }
2442
2443     wlsrStaRxDataPkts OBJECT-TYPE
2444         SYNTAX       Counter32
2445         MAX-ACCESS   read-only
2446         STATUS       current
2447         DESCRIPTION
2448            "
2449			 This attribute indicates the number of received Data packets
2450			 at a station.
2451            "
2452        ::= { wlsrStaFrameTypeStatsEntry 11 }
2453
2454     wlsrStaRxDataBytes OBJECT-TYPE
2455         SYNTAX       Counter32
2456         MAX-ACCESS   read-only
2457         STATUS       current
2458         DESCRIPTION
2459            "
2460			 This attribute indicates the number of received Data Bytes
2461			 at a station.
2462            "
2463        ::= { wlsrStaFrameTypeStatsEntry 12 }
2464
2465-- This table breaks down the Station statistics received or transmitted by a
2466-- station into packet size buckets.
2467
2468   wlsrStaPktSizeStatsTable  OBJECT-TYPE
2469	  SYNTAX       SEQUENCE OF WlsrStaPktSizeStatsEntry
2470	  MAX-ACCESS   not-accessible
2471      STATUS       current
2472      DESCRIPTION
2473	  	"
2474		This table contains all the per channel Packet and Byte Counts
2475		but broken down into different Packet Sizes.
2476		"
2477      ::= { wlsrStatsStaGroup 5 }
2478
2479     wlsrStaPktSizeStatsEntry OBJECT-TYPE
2480	  SYNTAX       WlsrStaPktSizeStatsEntry
2481	  MAX-ACCESS   not-accessible
2482      STATUS       current
2483      DESCRIPTION
2484             "Station Packet Size Stats."
2485	  INDEX { wlsrStaAddress}
2486      ::= { wlsrStaPktSizeStatsTable 1 }
2487
2488     WlsrStaPktSizeStatsEntry ::=
2489     SEQUENCE {
2490		 wlsrStaTxPkts63Bytes		Counter32  ,
2491		 wlsrStaTxPkts64To127		Counter32  ,
2492		 wlsrStaTxPkts128To255		Counter32  ,
2493		 wlsrStaTxPkts256To511		Counter32  ,
2494		 wlsrStaTxPkts512To1023	Counter32  ,
2495		 wlsrStaTxPkts1024To1518	Counter32  ,
2496		 wlsrStaRxPkts63Bytes		Counter32  ,
2497		 wlsrStaRxPkts64To127		Counter32  ,
2498		 wlsrStaRxPkts128To255		Counter32  ,
2499		 wlsrStaRxPkts256To511		Counter32  ,
2500		 wlsrStaRxPkts512To1023	Counter32  ,
2501		 wlsrStaRxPkts1024To1518	Counter32
2502
2503     }
2504
2505     wlsrStaTxPkts63Bytes OBJECT-TYPE
2506         SYNTAX       Counter32
2507         MAX-ACCESS   read-only
2508         STATUS       current
2509         DESCRIPTION
2510            "
2511			 This attribute indicates the number of packets transmitted by the
2512			 station that were less than 64 bytes long.
2513            "
2514        ::= { wlsrStaPktSizeStatsEntry 1 }
2515
2516     wlsrStaTxPkts64To127 OBJECT-TYPE
2517         SYNTAX       Counter32
2518         MAX-ACCESS   read-only
2519         STATUS       current
2520         DESCRIPTION
2521            "
2522			 This attribute indicates the number of packets transmitted by the
2523			 station that were between 64 and 127 bytes long.
2524            "
2525        ::= { wlsrStaPktSizeStatsEntry 2 }
2526
2527     wlsrStaTxPkts128To255 OBJECT-TYPE
2528         SYNTAX       Counter32
2529         MAX-ACCESS   read-only
2530         STATUS       current
2531         DESCRIPTION
2532            "
2533			 This attribute indicates the number of packets transmitted by the
2534			 station that were between 128 and 255 bytes long.
2535            "
2536        ::= { wlsrStaPktSizeStatsEntry 3 }
2537
2538     wlsrStaTxPkts256To511 OBJECT-TYPE
2539         SYNTAX       Counter32
2540         MAX-ACCESS   read-only
2541         STATUS       current
2542         DESCRIPTION
2543            "
2544			 This attribute indicates the number of packets transmitted by the
2545			 station that were between 256 and 511 bytes long.
2546            "
2547        ::= { wlsrStaPktSizeStatsEntry 4 }
2548
2549     wlsrStaTxPkts512To1023 OBJECT-TYPE
2550         SYNTAX       Counter32
2551         MAX-ACCESS   read-only
2552         STATUS       current
2553         DESCRIPTION
2554            "
2555			 This attribute indicates the number of packets transmitted by the
2556			 station that were between 512 and 1023 bytes long.
2557            "
2558        ::= { wlsrStaPktSizeStatsEntry 5 }
2559
2560     wlsrStaTxPkts1024To1518 OBJECT-TYPE
2561         SYNTAX       Counter32
2562         MAX-ACCESS   read-only
2563         STATUS       current
2564         DESCRIPTION
2565            "
2566			 This attribute indicates the number of packets transmitted by the
2567			 station that were between 1024 and 1518 bytes long.
2568            "
2569        ::= { wlsrStaPktSizeStatsEntry 6 }
2570
2571     wlsrStaRxPkts63Bytes OBJECT-TYPE
2572         SYNTAX       Counter32
2573         MAX-ACCESS   read-only
2574         STATUS       current
2575         DESCRIPTION
2576            "
2577			 This attribute indicates the number of packets Received by the
2578			 station that were less than 64 bytes long.
2579            "
2580        ::= { wlsrStaPktSizeStatsEntry 7 }
2581
2582     wlsrStaRxPkts64To127 OBJECT-TYPE
2583         SYNTAX       Counter32
2584         MAX-ACCESS   read-only
2585         STATUS       current
2586         DESCRIPTION
2587            "
2588			 This attribute indicates the number of packets Received by the
2589			 station that were between 64 and 127 bytes long.
2590            "
2591        ::= { wlsrStaPktSizeStatsEntry 8 }
2592
2593     wlsrStaRxPkts128To255 OBJECT-TYPE
2594         SYNTAX       Counter32
2595         MAX-ACCESS   read-only
2596         STATUS       current
2597         DESCRIPTION
2598            "
2599			 This attribute indicates the number of packets Received by the
2600			 station that were between 128 and 255 bytes long.
2601            "
2602        ::= { wlsrStaPktSizeStatsEntry 9 }
2603
2604     wlsrStaRxPkts256To511 OBJECT-TYPE
2605         SYNTAX       Counter32
2606         MAX-ACCESS   read-only
2607         STATUS       current
2608         DESCRIPTION
2609            "
2610			 This attribute indicates the number of packets Received by the
2611			 station that were between 256 and 511 bytes long.
2612            "
2613        ::= { wlsrStaPktSizeStatsEntry 10 }
2614
2615     wlsrStaRxPkts512To1023 OBJECT-TYPE
2616         SYNTAX       Counter32
2617         MAX-ACCESS   read-only
2618         STATUS       current
2619         DESCRIPTION
2620            "
2621			 This attribute indicates the number of packets Received by the
2622			 station that were between 512 and 1023 bytes long.
2623            "
2624        ::= { wlsrStaPktSizeStatsEntry 11 }
2625
2626     wlsrStaRxPkts1024To1518 OBJECT-TYPE
2627         SYNTAX       Counter32
2628         MAX-ACCESS   read-only
2629         STATUS       current
2630         DESCRIPTION
2631            "
2632			 This attribute indicates the number of packets Received by the
2633			 station that were between 1024 and 1518 bytes long.
2634            "
2635        ::= { wlsrStaPktSizeStatsEntry 12 }
2636
2637-- Air Monitor Access Point List Table. On an Air monitor this table lists all
2638-- the Access Points the AM is monitoring. On an Access Point, this table
2639-- contains itself.
2640
2641   wlsrAirMonitorApListTable  OBJECT-TYPE
2642	  SYNTAX       SEQUENCE OF WlsrAirMonitorApListEntry
2643	  MAX-ACCESS   not-accessible
2644      STATUS       current
2645      DESCRIPTION
2646	  	"
2647			This table contains all the Access Points monitored by the AM.
2648		"
2649      ::= { wlsrAirMonitorGroup 1 }
2650
2651     wlsrAirMonitorApListEntry OBJECT-TYPE
2652	  SYNTAX       WlsrAirMonitorApListEntry
2653	  MAX-ACCESS   not-accessible
2654      STATUS       current
2655      DESCRIPTION
2656             "Ap List Entry"
2657	  INDEX { wlsrAmApBSSID}
2658      ::= { wlsrAirMonitorApListTable 1 }
2659
2660     WlsrAirMonitorApListEntry ::=
2661     SEQUENCE {
2662		 wlsrAmApBSSID		MacAddress  ,
2663		 wlsrAmSSID			DisplayString ,
2664		 wlsrAmChannel		INTEGER ,
2665		 wlsrAmPhysicalType	INTEGER ,
2666		 wlsrAmAccessPointType		INTEGER ,
2667		 wlsrAmRAPType				INTEGER,
2668		 wlsrAmRSSI				Integer32,
2669		 wlsrAmMonitoredTime	TimeTicks,
2670		 wlsrAmInactivityTime	TimeTicks,
2671		 wlsrAmLoadBalancing	INTEGER
2672
2673     }
2674
2675     wlsrAmApBSSID OBJECT-TYPE
2676         SYNTAX       MacAddress
2677         MAX-ACCESS   not-accessible
2678         STATUS       current
2679         DESCRIPTION
2680            "
2681			BSSID of the Access Point.
2682            "
2683        ::= { wlsrAirMonitorApListEntry 1 }
2684
2685     wlsrAmSSID OBJECT-TYPE
2686         SYNTAX       DisplayString(SIZE(0..62))
2687         MAX-ACCESS   read-only
2688         STATUS       current
2689         DESCRIPTION
2690            "
2691				This attribute indicates the SSID of the AP.
2692            "
2693        ::= { wlsrAirMonitorApListEntry 2 }
2694
2695     wlsrAmChannel OBJECT-TYPE
2696         SYNTAX       INTEGER(1..165)
2697         MAX-ACCESS   read-only
2698         STATUS       current
2699         DESCRIPTION
2700            "
2701				This attribute indicates the channel on which this AP is
2702				operating.
2703            "
2704        ::= { wlsrAirMonitorApListEntry 3 }
2705
2706     wlsrAmPhysicalType OBJECT-TYPE
2707         SYNTAX       INTEGER{
2708							dot11b(1),
2709							dot11a(2),
2710							dot11g(3)
2711					   }
2712         MAX-ACCESS   read-only
2713         STATUS       current
2714         DESCRIPTION
2715            "
2716				This attribute indicates the physical layer type.
2717            "
2718        ::= { wlsrAirMonitorApListEntry 4 }
2719
2720
2721     wlsrAmAccessPointType OBJECT-TYPE
2722         SYNTAX       INTEGER{
2723		 				genericAp(1),
2724						softAp(2),
2725						ciscoAp(3)
2726					  }
2727         MAX-ACCESS   read-only
2728         STATUS       current
2729         DESCRIPTION
2730            "
2731				This attribute indicates the type of AP.
2732            "
2733        ::= { wlsrAirMonitorApListEntry 5 }
2734
2735     wlsrAmRAPType OBJECT-TYPE
2736         SYNTAX       INTEGER{
2737		 				valid(1),
2738						interfering(2),
2739						unsecure(3),
2740						dos(4),
2741						unknown(5)
2742					  }
2743         MAX-ACCESS   read-only
2744         STATUS       current
2745         DESCRIPTION
2746            "
2747				Type of the Access Point.
2748            "
2749        ::= { wlsrAirMonitorApListEntry 6 }
2750
2751     wlsrAmRSSI OBJECT-TYPE
2752         SYNTAX       Integer32
2753         MAX-ACCESS   read-only
2754         STATUS       current
2755         DESCRIPTION
2756            "
2757				Access point Receiver Signal Strength Indicator.
2758
2759            "
2760        ::= { wlsrAirMonitorApListEntry 7 }
2761
2762     wlsrAmMonitoredTime OBJECT-TYPE
2763         SYNTAX       TimeTicks
2764         MAX-ACCESS   read-only
2765         STATUS       current
2766         DESCRIPTION
2767            "
2768			Time in ticks, since the AM is observing this access point.
2769            "
2770        ::= { wlsrAirMonitorApListEntry 8 }
2771
2772     wlsrAmInactivityTime OBJECT-TYPE
2773         SYNTAX       TimeTicks
2774         MAX-ACCESS   read-only
2775         STATUS       current
2776         DESCRIPTION
2777            "
2778				Access point Inactivity Time.
2779
2780            "
2781        ::= { wlsrAirMonitorApListEntry 9 }
2782
2783     wlsrAmLoadBalancing OBJECT-TYPE
2784         SYNTAX       INTEGER{
2785		 				enable(1),
2786						disable(2)
2787					  }
2788         MAX-ACCESS   read-only
2789         STATUS       current
2790         DESCRIPTION
2791            "
2792				The attributes indicates whether Load balancing is enabled
2793				for this access point.
2794
2795            "
2796        ::= { wlsrAirMonitorApListEntry 10 }
2797
2798-- wlsrTrapsGroup
2799-- This group defines all the traps generated by the access points.
2800
2801-- Objects defined under this group does not have support for
2802-- GET or SET. They are defined in the MIB to pass specific
2803-- information. which has meaning only in the context of a trap.
2804
2805wlsrTrapObjectsGroup         	OBJECT IDENTIFIER ::= { wlsrTrapsGroup 100 }
2806
2807wlsrTargetApBSSID OBJECT-TYPE
2808         SYNTAX       MacAddress
2809         MAX-ACCESS   read-only
2810         STATUS       current
2811         DESCRIPTION
2812            "
2813				This Object is used in the traps to indicate the BSSID of the
2814				Access Point, for which we are raising the trap. If an
2815				Air Monitor is sending the trap then this will indicate
2816				AP. If an Access Point is sending the trap, then it will point
2817				to itself.
2818            "
2819::= { wlsrTrapObjectsGroup 1 }
2820
2821wlsrTargetApSSID OBJECT-TYPE
2822         SYNTAX       DisplayString(SIZE(0..64))
2823         MAX-ACCESS   read-only
2824         STATUS       current
2825         DESCRIPTION
2826            "
2827				This Object is used in the traps to indicate the SSID of the
2828				Access Point, for which we are raising the trap. If an
2829				Air Monitor is sending the trap then this will indicate
2830				AP. If an Access Point is sending the trap, then it will point
2831				to itself.
2832            "
2833::= { wlsrTrapObjectsGroup 2 }
2834
2835wlsrTargetApChannel OBJECT-TYPE
2836         SYNTAX       INTEGER(1..165)
2837         MAX-ACCESS   read-only
2838         STATUS       current
2839         DESCRIPTION
2840            "
2841				This Object is used in the traps to indicate the Channel of the
2842				Access Point, for which we are raising the trap. If an
2843				Air Monitor is sending the trap then this will indicate
2844				AP. If an Access Point is sending the trap, then it will point
2845				to itself.
2846            "
2847::= { wlsrTrapObjectsGroup 3 }
2848
2849wlsrSourceMac OBJECT-TYPE
2850         SYNTAX       MacAddress
2851         MAX-ACCESS   read-only
2852         STATUS       current
2853         DESCRIPTION
2854            "
2855				This Object is used in the traps to indicate the MAC
2856				address of the Source.
2857			"
2858::= { wlsrTrapObjectsGroup 4 }
2859
2860wlsrNodeMac OBJECT-TYPE
2861         SYNTAX       MacAddress
2862         MAX-ACCESS   read-only
2863         STATUS       current
2864         DESCRIPTION
2865            "
2866				This Object is used in the traps to indicate the MAC
2867				address of a Node.
2868			"
2869::= { wlsrTrapObjectsGroup 5 }
2870
2871wlsrFrameType OBJECT-TYPE
2872         SYNTAX       INTEGER{
2873		 				associateRequest(1),
2874						associateResponse(2),
2875						reassociateRequest(3),
2876						reassociateResponse(4),
2877						probeRequest(5),
2878						probeResponse(6),
2879						beacon(9),
2880						atim(10),
2881						disassociate(11),
2882						auth(12),
2883						deauth(13)
2884					   }
2885         MAX-ACCESS   read-only
2886         STATUS       current
2887         DESCRIPTION
2888            "
2889				This Object is used in the traps to indicate the
2890				Frame Type.
2891			"
2892::= { wlsrTrapObjectsGroup 6 }
2893
2894wlsrAddressType OBJECT-TYPE
2895         SYNTAX       INTEGER{
2896		 				srcAddress(1),
2897						dstAddress(2),
2898						bssid(3)
2899					  }
2900         MAX-ACCESS   read-only
2901         STATUS       current
2902         DESCRIPTION
2903            "
2904				This Object is used in the traps to indicate the
2905				Address Type.
2906			"
2907::= { wlsrTrapObjectsGroup 7 }
2908
2909wlsrSignatureName OBJECT-TYPE
2910         SYNTAX       OCTET STRING (SIZE (0..64))
2911         MAX-ACCESS   read-only
2912         STATUS       current
2913         DESCRIPTION
2914            "
2915				This Object is used in the traps to indicate the
2916				Signature Name.
2917			"
2918::= { wlsrTrapObjectsGroup 8 }
2919
2920wlsrMatchedMac OBJECT-TYPE
2921         SYNTAX       MacAddress
2922         MAX-ACCESS   read-only
2923         STATUS       current
2924         DESCRIPTION
2925            "
2926				This Object is used in the traps to indicate the
2927				Macaddress.
2928			"
2929::= { wlsrTrapObjectsGroup 9 }
2930
2931wlsrMatchedIp OBJECT-TYPE
2932        SYNTAX      IpAddress
2933         MAX-ACCESS   read-only
2934         STATUS       current
2935         DESCRIPTION
2936            "
2937				This Object is used in the traps to indicate the
2938				Ip Address.
2939			"
2940::= { wlsrTrapObjectsGroup 10 }
2941
2942wlsrReceiverMac OBJECT-TYPE
2943         SYNTAX       MacAddress
2944         MAX-ACCESS   read-only
2945         STATUS       current
2946         DESCRIPTION
2947            "
2948				This Object is used in the traps to indicate the MAC
2949				address of the Receiver.
2950			"
2951::= { wlsrTrapObjectsGroup 11 }
2952
2953wlsrTransmitterMac OBJECT-TYPE
2954         SYNTAX       MacAddress
2955         MAX-ACCESS   read-only
2956         STATUS       current
2957         DESCRIPTION
2958            "
2959				This Object is used in the traps to indicate the MAC
2960				address of the Transmitter.
2961			"
2962::= { wlsrTrapObjectsGroup 12 }
2963
2964wlsrRSSI OBJECT-TYPE
2965         SYNTAX       Integer32
2966         MAX-ACCESS   read-only
2967         STATUS       current
2968         DESCRIPTION
2969            "
2970				This Object is used in the traps to indicate the
2971				Signal Strength Indicator.
2972			"
2973::= { wlsrTrapObjectsGroup 13 }
2974
2975wlsrRogueInfoURL OBJECT-TYPE
2976         SYNTAX       DisplayString(SIZE(0..256))
2977         MAX-ACCESS   read-only
2978         STATUS       current
2979         DESCRIPTION
2980            "
2981				This Object is used to point to the WEBGUI Rogue AP information
2982				URL.
2983			"
2984::= { wlsrTrapObjectsGroup 14 }
2985
2986wlsrInterferingAPInfoURL OBJECT-TYPE
2987         SYNTAX       DisplayString(SIZE(0..256))
2988         MAX-ACCESS   read-only
2989         STATUS       current
2990         DESCRIPTION
2991            "
2992				This Object is used to point to the WEBGUI Rogue interfering
2993				AP information URL.
2994			"
2995::= { wlsrTrapObjectsGroup 15 }
2996
2997
2998wlsrUnsecureApDetected NOTIFICATION-TYPE
2999	OBJECTS {wlsrTargetApBSSID, wlsrTargetApSSID,
3000	         wlsrLocation, wlsrCurrentChannel, wlsrMatchedMac,
3001			 wlsrMatchedIp, wlsrRogueInfoURL}
3002    STATUS  current
3003    DESCRIPTION
3004		"
3005			This trap indicates that an Unsecure Access Point is detected
3006			by an Air Monitor located at wlsrLocation on channel
3007			wlsrCurrentChannel. The AP is declared unsecure, because we
3008			matched it to the wlsrMatchedMac/wlsrMatchedIp.
3009
3010		"
3011    ::= { wlsrTrapsGroup 1001 }
3012
3013wlsrStaImpersonation NOTIFICATION-TYPE
3014	OBJECTS {wlsrNodeMac, wlsrLocation}
3015    STATUS  current
3016    DESCRIPTION
3017		"
3018			This trap indicates that an AM at location wlsrLocation detected
3019			a Station impersonation.
3020		"
3021    ::= { wlsrTrapsGroup 1002 }
3022wlsrReservedChannelViolation NOTIFICATION-TYPE
3023	OBJECTS {wlsrTargetApBSSID, wlsrTargetApSSID,
3024				wlsrLocation, wlsrCurrentChannel}
3025    STATUS  current
3026    DESCRIPTION
3027		"
3028			This trap indicates that an Access Point is detected
3029			by an AP at location wlsrLocation, which
3030			violates the Reserved Channel configuration.
3031		"
3032    ::= { wlsrTrapsGroup 1003 }
3033
3034
3035wlsrValidSSIDViolation NOTIFICATION-TYPE
3036	OBJECTS {wlsrTargetApBSSID, wlsrTargetApSSID,
3037			  wlsrLocation, wlsrCurrentChannel}
3038    STATUS  current
3039    DESCRIPTION
3040		"
3041		This trap indicates that an Access Point violating Valid SSID is
3042		detected by an AP at wlsrLocation.
3043		"
3044    ::= { wlsrTrapsGroup 1004 }
3045
3046wlsrChannelMisconfiguration NOTIFICATION-TYPE
3047	OBJECTS {wlsrTargetApBSSID, wlsrTargetApSSID,
3048			wlsrLocation, wlsrCurrentChannel}
3049    STATUS  current
3050    DESCRIPTION
3051		"
3052			This trap indicates that an Access Point has a bad channel
3053			configuration.
3054		"
3055    ::= { wlsrTrapsGroup 1005 }
3056
3057
3058wlsrOUIMisconfiguration NOTIFICATION-TYPE
3059	OBJECTS {wlsrTargetApBSSID, wlsrTargetApSSID,
3060			wlsrLocation, wlsrCurrentChannel}
3061    STATUS  current
3062    DESCRIPTION
3063		"
3064			This trap indicates that an Access Point has bad OUI
3065			configuration.
3066		"
3067    ::= { wlsrTrapsGroup 1006 }
3068
3069
3070wlsrSSIDMisconfiguration NOTIFICATION-TYPE
3071	OBJECTS {wlsrTargetApBSSID, wlsrTargetApSSID,
3072			wlsrLocation, wlsrCurrentChannel}
3073    STATUS  current
3074    DESCRIPTION
3075		"
3076			This trap indicates that an Access Point has bad SSID
3077			configuration.
3078		"
3079    ::= { wlsrTrapsGroup 1007 }
3080
3081wlsrShortPreableMisconfiguration NOTIFICATION-TYPE
3082	OBJECTS {wlsrTargetApBSSID, wlsrTargetApSSID,
3083			wlsrLocation, wlsrCurrentChannel}
3084    STATUS  current
3085    DESCRIPTION
3086		"
3087			This trap indicates that an Access Point has bad Short preamble
3088			configuration.
3089		"
3090    ::= { wlsrTrapsGroup 1008 }
3091
3092
3093wlsrWPAMisconfiguration NOTIFICATION-TYPE
3094	OBJECTS {wlsrTargetApBSSID, wlsrTargetApSSID,
3095			wlsrLocation, wlsrCurrentChannel}
3096    STATUS  current
3097    DESCRIPTION
3098		"
3099			This trap indicates that an Access Point has bad WPA
3100			configuration.
3101		"
3102    ::= { wlsrTrapsGroup 1009 }
3103
3104
3105wlsrAdhocNetworkDetected NOTIFICATION-TYPE
3106	OBJECTS {wlsrTargetApBSSID, wlsrTargetApSSID,
3107			wlsrLocation, wlsrCurrentChannel}
3108    STATUS  current
3109    DESCRIPTION
3110		"
3111			This trap indicates that an AM has detected an Adhoc
3112			network.
3113		"
3114    ::= { wlsrTrapsGroup 1010 }
3115
3116
3117wlsrStaPolicyViolation NOTIFICATION-TYPE
3118	OBJECTS {wlsrTargetApBSSID, wlsrNodeMac,
3119			wlsrLocation, wlsrCurrentChannel}
3120    STATUS  current
3121    DESCRIPTION
3122		"
3123			This trap indicates that a Valid Station policy is violated.
3124		"
3125    ::= { wlsrTrapsGroup 1011 }
3126
3127
3128wlsrRepeatWEPIVViolation NOTIFICATION-TYPE
3129	OBJECTS {wlsrTargetApBSSID, wlsrTargetApSSID,
3130			wlsrLocation, wlsrCurrentChannel}
3131    STATUS  current
3132    DESCRIPTION
3133		"
3134		This trap indicates that an AP/AM detected a Repeat WEP-IV violation.
3135		"
3136    ::= { wlsrTrapsGroup 1012 }
3137
3138wlsrWeakWEPIVViolation NOTIFICATION-TYPE
3139	OBJECTS {wlsrTargetApBSSID, wlsrTargetApSSID,
3140			wlsrLocation, wlsrCurrentChannel}
3141    STATUS  current
3142    DESCRIPTION
3143		"
3144		This trap indicates that an AP/AM detected a Weak WEP-IV violation.
3145		"
3146    ::= { wlsrTrapsGroup 1013 }
3147
3148wlsrChannelInterferenceDetected NOTIFICATION-TYPE
3149	OBJECTS {wlsrLocation, wlsrCurrentChannel}
3150    STATUS  current
3151    DESCRIPTION
3152		"
3153			This trap indicates that an AM/AP located at
3154			wlsrLocation has detected a channel interference on
3155			wlsrCurrentChannel.
3156		"
3157    ::= { wlsrTrapsGroup 1014 }
3158
3159wlsrAPInterferenceDetected NOTIFICATION-TYPE
3160	OBJECTS {wlsrTargetApBSSID, wlsrTargetApSSID,
3161			wlsrLocation, wlsrCurrentChannel}
3162    STATUS  current
3163    DESCRIPTION
3164		"
3165			This trap indicates that an AM/AP located at
3166			wlsrLocation has detected an AP interference on
3167			wlsrCurrentChannel.
3168		"
3169    ::= { wlsrTrapsGroup 1015 }
3170
3171wlsrStaInterferenceDetected NOTIFICATION-TYPE
3172	OBJECTS {wlsrTargetApBSSID, wlsrTargetApSSID, wlsrNodeMac,
3173			wlsrLocation, wlsrCurrentChannel}
3174    STATUS  current
3175    DESCRIPTION
3176		"
3177			This trap indicates that an AM/AP located at
3178			wlsrLocation has detected a Station interference on
3179			wlsrCurrentChannel.
3180		"
3181    ::= { wlsrTrapsGroup 1016 }
3182
3183wlsrFrameRetryRateExceeded NOTIFICATION-TYPE
3184	OBJECTS {wlsrTargetApBSSID, wlsrTargetApSSID,
3185			wlsrLocation, wlsrCurrentChannel}
3186    STATUS  current
3187    DESCRIPTION
3188		"
3189			This trap indicates that an AM/AP located at
3190			wlsrLocation is reporting that an AP wlsrTargetApBSSID has exceeded
3191			an upper threshold for Frame Retry Rate for AP wlsrTargetApBSSID.
3192		"
3193    ::= { wlsrTrapsGroup 1017 }
3194
3195wlsrFrameReceiveErrorRateExceeded NOTIFICATION-TYPE
3196	OBJECTS {wlsrTargetApBSSID, wlsrTargetApSSID,
3197			 wlsrTargetApChannel, wlsrLocation}
3198    STATUS  current
3199    DESCRIPTION
3200		"
3201			This trap indicates that an AM/AP located at
3202			wlsrLocation is reporting that an AP wlsrTargetApBSSID has exceeded
3203			an upper threshold for Frame Receive Error Rate for AP
3204			wlsrTargetApBSSID.
3205		"
3206    ::= { wlsrTrapsGroup 1018 }
3207
3208wlsrFrameFragmentationRateExceeded NOTIFICATION-TYPE
3209	OBJECTS {wlsrTargetApBSSID, wlsrTargetApSSID,
3210			 wlsrTargetApChannel, wlsrLocation}
3211    STATUS  current
3212    DESCRIPTION
3213		"
3214			This trap indicates that an AM/AP located at
3215			wlsrLocation is reporting that an AP wlsrTargetApBSSID has exceeded
3216			an upper threshold for Frame Fragmentation Rate for AP
3217			wlsrTargetApBSSID.
3218		"
3219    ::= { wlsrTrapsGroup 1019 }
3220
3221wlsrFrameBandWidthRateExceeded NOTIFICATION-TYPE
3222	OBJECTS {wlsrNodeMac, wlsrTargetApBSSID, wlsrTargetApSSID,
3223			 wlsrLocation, wlsrCurrentChannel}
3224    STATUS  current
3225    DESCRIPTION
3226		"
3227			This trap indicates that an AM/AP located at
3228			wlsrLocation is reporting that a station wlsrStaAddress has exceeded
3229			the allocated Bandwidth rate.
3230		"
3231    ::= { wlsrTrapsGroup 1020 }
3232
3233
3234wlsrFrameLowSpeedRateExceeded NOTIFICATION-TYPE
3235	OBJECTS {wlsrNodeMac, wlsrTargetApBSSID, wlsrTargetApSSID,
3236			 wlsrLocation, wlsrCurrentChannel}
3237    STATUS  current
3238    DESCRIPTION
3239		"
3240			This trap indicates that an AM/AP located at
3241			wlsrLocation is reporting that a station wlsrStaAddress has exceeded
3242			the Low speed rate.
3243		"
3244    ::= { wlsrTrapsGroup 1021 }
3245
3246wlsrFrameNonUnicastRateExceeded NOTIFICATION-TYPE
3247	OBJECTS {wlsrNodeMac, wlsrTargetApBSSID, wlsrTargetApSSID,
3248			 wlsrLocation, wlsrCurrentChannel}
3249    STATUS  current
3250    DESCRIPTION
3251		"
3252			This trap indicates that an AM/AP located at
3253			wlsrLocation is reporting that a station wlsrStaAddress has exceeded
3254			the Non Unicast traffic rate.
3255		"
3256    ::= { wlsrTrapsGroup 1022 }
3257
3258wlsrLoadbalancingEnabled NOTIFICATION-TYPE
3259	OBJECTS {wlsrTargetApBSSID, wlsrTargetApSSID,
3260			 wlsrLocation, wlsrCurrentChannel}
3261    STATUS  current
3262    DESCRIPTION
3263		"
3264			This trap indicates that an AM/AP located at
3265			wlsrLocation is reporting that an AP with BSSID wlsrTargetApBSSID
3266			has enabled Load balancing.
3267		"
3268    ::= { wlsrTrapsGroup 1023 }
3269
3270wlsrChannelFrameRetryRateExceeded NOTIFICATION-TYPE
3271	OBJECTS {wlsrLocation, wlsrCurrentChannel}
3272    STATUS  current
3273    DESCRIPTION
3274		"
3275			This trap indicates that an AM/AP located at
3276			wlsrLocation is reporting that it exceeded an upper threshold
3277			for Frame Retry Rate.
3278		"
3279    ::= { wlsrTrapsGroup 1024 }
3280
3281wlsrChannelFrameFragmentationRateExceeded NOTIFICATION-TYPE
3282	OBJECTS {wlsrLocation, wlsrCurrentChannel}
3283    STATUS  current
3284    DESCRIPTION
3285		"
3286			This trap indicates that an AM/AP located at
3287			wlsrLocation is reporting that it exceeded an upper threshold
3288			for Frame Fragmentation Rate.
3289		"
3290    ::= { wlsrTrapsGroup 1025 }
3291
3292
3293wlsrChannelFrameErrorRateExceeded NOTIFICATION-TYPE
3294	OBJECTS {wlsrLocation, wlsrCurrentChannel}
3295    STATUS  current
3296    DESCRIPTION
3297		"
3298			This trap indicates that an AM/AP located at
3299			wlsrLocation is reporting that it exceeded an upper threshold
3300			for Frame Error Rate.
3301		"
3302    ::= { wlsrTrapsGroup 1026 }
3303
3304wlsrSignatureMatch NOTIFICATION-TYPE
3305	OBJECTS {wlsrSignatureName, wlsrSourceMac,wlsrRSSI,
3306			 wlsrLocation}
3307    STATUS  current
3308    DESCRIPTION
3309		"
3310		This trap indicates that we detected a signature match.
3311		"
3312    ::= { wlsrTrapsGroup 1027 }
3313
3314wlsrChannelRateAnomaly NOTIFICATION-TYPE
3315	OBJECTS {wlsrFrameType, wlsrLocation, wlsrCurrentChannel}
3316    STATUS  current
3317    DESCRIPTION
3318		"
3319		This trap indicates that an AP/AM at wlsrLocation detected
3320		frames of type wlsrFrameType on wlsrCurrentChannel which exceeds the
3321		configured IDS rate threshold.
3322		"
3323    ::= { wlsrTrapsGroup 1028 }
3324
3325wlsrNodeRateAnomaly NOTIFICATION-TYPE
3326	OBJECTS {wlsrFrameType, wlsrNodeMac, wlsrRSSI,
3327			 wlsrLocation}
3328    STATUS  current
3329    DESCRIPTION
3330		"
3331		This trap indicates that an AP/AM at wlsrLocation detected
3332		frames of type wlsrFrameType transmitted by node wlsrNodeMac
3333		which exceeds the configured IDS rate threshold.
3334		"
3335    ::= { wlsrTrapsGroup 1029 }
3336
3337wlsrEAPRateAnomaly NOTIFICATION-TYPE
3338	OBJECTS {wlsrLocation, wlsrCurrentChannel}
3339    STATUS  current
3340    DESCRIPTION
3341		"
3342		This trap indicates that the number of EAP Handshake packets received
3343		by an AP/AM at wlsrLocation exceeds the configured IDS EAP Handshake
3344		rate.
3345		"
3346    ::= { wlsrTrapsGroup 1030 }
3347
3348wlsrSignalAnomaly NOTIFICATION-TYPE
3349	OBJECTS {wlsrLocation, wlsrCurrentChannel}
3350    STATUS  current
3351    DESCRIPTION
3352		"
3353		This trap indicates that an AP/AM at wlsrLocation detected a Signal
3354		Anomaly on wlsrCurrentChannel.
3355		"
3356    ::= { wlsrTrapsGroup 1031 }
3357
3358wlsrSequenceNumberAnomaly NOTIFICATION-TYPE
3359	OBJECTS {wlsrSourceMac, wlsrRSSI, wlsrLocation}
3360    STATUS  current
3361    DESCRIPTION
3362		"
3363		This trap indicates that an AP/AM at wlsrLocation received packets
3364		which exceeds the acceptable sequence number difference. The acceptable
3365		sequence number difference is an IDS Configuration object.
3366		"
3367    ::= { wlsrTrapsGroup 1032 }
3368
3369wlsrDisconnectStationAttack NOTIFICATION-TYPE
3370	OBJECTS {wlsrFrameType, wlsrSourceMac, wlsrRSSI, wlsrLocation}
3371    STATUS  current
3372    DESCRIPTION
3373		"
3374		This trap indicates that an AP/AM detected a station Disconnect attack.
3375		"
3376    ::= { wlsrTrapsGroup 1033 }
3377
3378wlsrApFloodAttack NOTIFICATION-TYPE
3379	OBJECTS {wlsrLocation}
3380    STATUS  current
3381    DESCRIPTION
3382		"
3383		This trap is triggered when the number of spurious AP's detected by
3384		an AP/AM at wlsrLocation exceeds the configured IDS threshold.
3385		"
3386    ::= { wlsrTrapsGroup 1034 }
3387
3388wlsrAdhocNetwork NOTIFICATION-TYPE
3389	OBJECTS {wlsrSourceMac, wlsrTargetApBSSID, wlsrTargetApSSID, wlsrRSSI,
3390			 wlsrLocation}
3391    STATUS  current
3392    DESCRIPTION
3393		"
3394		This trap indicates that an AP/AM at wlsrLocation detected an Adhoc
3395		Network. Node wlsrSourceMac is connected to an adhoc AP
3396		wlsrTargetApBSSID with wlsrTargetApSSID ssid.
3397		"
3398    ::= { wlsrTrapsGroup 1035 }
3399
3400wlsrWirelessBridge NOTIFICATION-TYPE
3401	OBJECTS {wlsrTransmitterMac, wlsrReceiverMac, wlsrRSSI,
3402			 wlsrLocation}
3403    STATUS  current
3404    DESCRIPTION
3405		"
3406		This trap indicates that an AP/AM at wlsrLocation detected a Wireless
3407		Bridge. The detected bridge is between wlsrSourceMac and
3408		wlsrReceiverMac.
3409		"
3410    ::= { wlsrTrapsGroup 1036 }
3411
3412wlsrInvalidMacOUI NOTIFICATION-TYPE
3413	OBJECTS {wlsrAddressType, wlsrNodeMac,wlsrRSSI,
3414			 wlsrLocation}
3415    STATUS  current
3416    DESCRIPTION
3417		"
3418		This trap indicates that an AP/AM at wlsrLocation detected an Invalid
3419		MAC OUI in transmission from the Node wlsrNodeMac. The invalid mac is
3420		the <wlsrAddressType>.
3421		"
3422    ::= { wlsrTrapsGroup 1037 }
3423
3424wlsrLoadbalancingDisabled NOTIFICATION-TYPE
3425	OBJECTS {wlsrTargetApBSSID, wlsrTargetApSSID,
3426			 wlsrTargetApChannel, wlsrLocation}
3427    STATUS  current
3428    DESCRIPTION
3429		"
3430			This trap indicates that an AM/AP located at
3431			wlsrLocation is reporting that an AP with BSSID wlsrTargetApBSSID
3432			has disabled Load balancing.
3433		"
3434    ::= { wlsrTrapsGroup 1038 }
3435
3436wlsrWEPMisconfiguration NOTIFICATION-TYPE
3437	OBJECTS {wlsrTargetApBSSID, wlsrTargetApSSID,
3438			wlsrLocation, wlsrCurrentChannel}
3439    STATUS  current
3440    DESCRIPTION
3441		"
3442			This trap indicates that an Access Point has bad WEP
3443			configuration.
3444		"
3445    ::= { wlsrTrapsGroup 1039 }
3446
3447
3448wlsrStaRepeatWEPIVViolation NOTIFICATION-TYPE
3449	OBJECTS {wlsrTargetApBSSID, wlsrTargetApSSID, wlsrNodeMac,
3450			wlsrLocation, wlsrCurrentChannel}
3451    STATUS  current
3452    DESCRIPTION
3453		"
3454		This trap indicates that an AP/AM detected a Repeat WEP-IV violation.
3455		for a Station
3456		"
3457    ::= { wlsrTrapsGroup 1040 }
3458
3459wlsrStaWeakWEPIVViolation NOTIFICATION-TYPE
3460	OBJECTS {wlsrTargetApBSSID, wlsrTargetApSSID, wlsrNodeMac,
3461			wlsrLocation, wlsrCurrentChannel}
3462    STATUS  current
3463    DESCRIPTION
3464		"
3465		This trap indicates that an AP/AM detected a Weak WEP-IV violation.
3466		for a Station
3467		"
3468    ::= { wlsrTrapsGroup 1041 }
3469
3470wlsrStaAssociatedToUnsecureAp NOTIFICATION-TYPE
3471	OBJECTS {wlsrTargetApBSSID, wlsrTargetApSSID,
3472	         wlsrLocation, wlsrCurrentChannel, wlsrNodeMac, wlsrRogueInfoURL}
3473    STATUS  current
3474    DESCRIPTION
3475		"
3476			This trap indicates that a station with wlsrNodeMac associated
3477			with an Unsecure Access Point wlsrTargetApBSSID. This is detected
3478			by an Air Monitor located at wlsrLocation on channel
3479			wlsrCurrentChannel.
3480
3481		"
3482    ::= { wlsrTrapsGroup 1042 }
3483
3484wlsrAdhocNetworkBridgeDetected NOTIFICATION-TYPE
3485	OBJECTS {wlsrSourceMac, wlsrTargetApBSSID, wlsrTargetApSSID,
3486			wlsrLocation, wlsrCurrentChannel}
3487    STATUS  current
3488    DESCRIPTION
3489		"
3490			This trap indicates that an AM has detected an Adhoc
3491			network that is bridging to a wired network
3492		"
3493    ::= { wlsrTrapsGroup 1043 }
3494
3495wlsrInterferingApDetected NOTIFICATION-TYPE
3496	OBJECTS {wlsrTargetApBSSID, wlsrTargetApSSID,
3497	         wlsrLocation, wlsrCurrentChannel, wlsrInterferingAPInfoURL}
3498    STATUS  current
3499    DESCRIPTION
3500		"
3501			This trap indicates that an Interfering Access Point is detected
3502			by an Air Monitor located at wlsrLocation on channel
3503			wlsrCurrentChannel.
3504
3505		"
3506    ::= { wlsrTrapsGroup 1044 }
3507
3508END
3509
3510
3511