1-- ArubaOS 6.4.2.3-4.1.1.2_48114
2-- vim:set ts=4 sw=4:
3   WLSX-SWITCH-MIB DEFINITIONS ::= BEGIN
4
5   IMPORTS
6       TEXTUAL-CONVENTION FROM SNMPv2-TC
7
8       MODULE-IDENTITY,
9       OBJECT-TYPE,
10       snmpModules,
11       Integer32,
12	   Counter32,
13	   IpAddress,
14	   NOTIFICATION-TYPE
15           FROM SNMPv2-SMI
16
17       TDomain,
18       DisplayString,
19       PhysAddress,
20       TAddress,
21       TimeInterval,
22       RowStatus,
23       StorageType,
24       TestAndIncr,
25	   MacAddress,
26	   TruthValue
27           FROM SNMPv2-TC
28
29       OBJECT-GROUP
30           FROM SNMPv2-CONF
31		wlsxEnterpriseMibModules
32			FROM ARUBA-MIB;
33
34   wlsxSwitchMIB MODULE-IDENTITY
35       LAST-UPDATED "0804160206Z"
36       ORGANIZATION "Aruba Wireless Networks"
37       CONTACT-INFO
38            "Postal:    1322 Crossman Avenue
39                        Sunnyvale, CA 94089
40            E-mail:     dl-support@arubanetworks.com
41            Phone:      +1 408 227 4500"
42       DESCRIPTION
43           "This MIB module defines MIB objects which provide
44            System level information about the Aruba switches."
45       REVISION        "0804160206Z"
46       DESCRIPTION
47           "The initial revision."
48       ::= { wlsxEnterpriseMibModules 1 }
49
50   wlsxSystemXGroup         	OBJECT IDENTIFIER ::= { wlsxSwitchMIB 1 }
51   wlsxUserInfoGroup         	OBJECT IDENTIFIER ::= { wlsxSwitchMIB 2 }
52   wlsxAccessPointInfoGroup     OBJECT IDENTIFIER ::= { wlsxSwitchMIB 3 }
53   wlsxSwitchTraps         	OBJECT IDENTIFIER ::= { wlsxSwitchMIB 100 }
54
55   -- wlsxSystemXGroup contains objects to describe a switch.
56
57   wlsxHostname OBJECT-TYPE
58        SYNTAX       DisplayString (SIZE(1..32))
59        MAX-ACCESS   read-only
60        STATUS       current
61        DESCRIPTION
62			"Name of the switch."
63        ::= { wlsxSystemXGroup 1 }
64
65   wlsxModelName OBJECT-TYPE
66        SYNTAX       DisplayString (SIZE(1..32))
67        MAX-ACCESS   read-only
68        STATUS       current
69        DESCRIPTION
70			"Model Name of the switch."
71        ::= { wlsxSystemXGroup 2 }
72
73   wlsxSwitchIp OBJECT-TYPE
74        SYNTAX       IpAddress
75        MAX-ACCESS   read-only
76        STATUS       current
77        DESCRIPTION
78			"Switch IP as configured by the user. This IP address uniquely
79			identifies the switch."
80        ::= { wlsxSystemXGroup 3 }
81
82   wlsxSwitchRole OBJECT-TYPE
83        SYNTAX      INTEGER {
84						master(1),
85						local(2),
86						standbymaster(3)
87						}
88        MAX-ACCESS   read-only
89        STATUS       current
90        DESCRIPTION
91			"Role of this switch in the Switch Domain."
92        ::= { wlsxSystemXGroup 4 }
93
94   wlsxSwitchMasterIp OBJECT-TYPE
95        SYNTAX       IpAddress
96        MAX-ACCESS   read-only
97        STATUS       current
98        DESCRIPTION
99			"
100			 Master IP of the switch
101			"
102        ::= { wlsxSystemXGroup 5 }
103
104
105-- Switch List Table contains all the switches in the domain. This table is
106-- valid only when queried from the master switch.
107
108   wlsxSwitchListTable  OBJECT-TYPE
109	  SYNTAX       SEQUENCE OF MxSwitchListEntry
110	  MAX-ACCESS   not-accessible
111      STATUS       current
112      DESCRIPTION
113	  	"This Table will list all the switches in the Switch Domain.
114		 It will be populated only on the master switch. Local switches
115		 return empty table.
116		"
117
118      ::= { wlsxSystemXGroup 6 }
119
120     wlsxSwitchListEntry OBJECT-TYPE
121	  SYNTAX       MxSwitchListEntry
122	  MAX-ACCESS   not-accessible
123      STATUS       current
124      DESCRIPTION
125             "Switch List Entry"
126	  INDEX { switchListSwitchIPAddress}
127      ::= { wlsxSwitchListTable 1 }
128
129     MxSwitchListEntry ::=
130     SEQUENCE {
131         switchListSwitchIPAddress	IpAddress,
132         switchListSwitchRole 		INTEGER
133     }
134
135     switchListSwitchIPAddress OBJECT-TYPE
136         SYNTAX       IpAddress
137         MAX-ACCESS   not-accessible
138         STATUS       current
139         DESCRIPTION
140            "
141			IP Address of the switch.
142            "
143        ::= { wlsxSwitchListEntry 1 }
144
145     switchListSwitchRole OBJECT-TYPE
146        SYNTAX      INTEGER {
147						master(1),
148						local(2),
149						standbymaster(3)
150					}
151         MAX-ACCESS   read-only
152         STATUS       current
153         DESCRIPTION
154            "
155			 Role of the Switch.
156            "
157        ::= { wlsxSwitchListEntry 2 }
158
159
160   wlsxSwitchLicenseCount OBJECT-TYPE
161        SYNTAX       Integer32
162        MAX-ACCESS   read-only
163        STATUS       current
164        DESCRIPTION
165			"
166			 The number of licenses installed on the switch
167			"
168        ::= { wlsxSystemXGroup 7 }
169
170
171-- The license table lists all valid licenses installed on the switch
172
173   wlsxSwitchLicenseTable  OBJECT-TYPE
174	  SYNTAX       SEQUENCE OF LicenseEntry
175	  MAX-ACCESS   not-accessible
176      STATUS       current
177      DESCRIPTION
178	  	"This table lists all licenses installed on the switch.
179		"
180
181      ::= { wlsxSystemXGroup 8 }
182
183     wlsxLicenseEntry OBJECT-TYPE
184	  SYNTAX       LicenseEntry
185	  MAX-ACCESS   not-accessible
186      STATUS       current
187      DESCRIPTION
188             "License Entry"
189	  INDEX { licenseIndex }
190      ::= { wlsxSwitchLicenseTable 1 }
191
192     LicenseEntry ::=
193     SEQUENCE {
194     	 licenseIndex           Integer32,
195         licenseKey				DisplayString,
196         licenseInstalled		DisplayString,
197         licenseExpires			DisplayString,
198         licenseFlags			DisplayString,
199         licenseService 		DisplayString
200     }
201
202     licenseIndex OBJECT-TYPE
203         SYNTAX       Integer32
204         MAX-ACCESS   not-accessible
205         STATUS       current
206         DESCRIPTION
207            "
208			License ID number
209            "
210        ::= { wlsxLicenseEntry 1 }
211
212     licenseKey OBJECT-TYPE
213         SYNTAX       DisplayString
214         MAX-ACCESS   read-only
215         STATUS       current
216         DESCRIPTION
217            "
218			License Key
219            "
220        ::= { wlsxLicenseEntry 2 }
221
222     licenseInstalled OBJECT-TYPE
223         SYNTAX       DisplayString
224         MAX-ACCESS   read-only
225         STATUS       current
226         DESCRIPTION
227            "
228			License installation time
229            "
230        ::= { wlsxLicenseEntry 3 }
231
232     licenseExpires OBJECT-TYPE
233         SYNTAX       DisplayString
234         MAX-ACCESS   read-only
235         STATUS       current
236         DESCRIPTION
237            "
238			License expiry time
239            "
240        ::= { wlsxLicenseEntry 4 }
241
242     licenseFlags OBJECT-TYPE
243         SYNTAX       DisplayString
244         MAX-ACCESS   read-only
245         STATUS       current
246         DESCRIPTION
247            "
248			License flags; E - enabled; A - auto-generated;
249			               R - reboot required to activate
250            "
251        ::= { wlsxLicenseEntry 5 }
252
253     licenseService OBJECT-TYPE
254         SYNTAX       DisplayString
255         MAX-ACCESS   read-only
256         STATUS       current
257         DESCRIPTION
258            "
259			The service enabled by this license.
260            "
261        ::= { wlsxLicenseEntry 6 }
262
263-- Table lists all the processors and there corresponding Load.
264
265   wlsxSysXProcessorTable  OBJECT-TYPE
266	  SYNTAX       SEQUENCE OF WlsxSysXProcessorEntry
267	  MAX-ACCESS   not-accessible
268      STATUS       current
269      DESCRIPTION
270	  	"
271			The table of processors contained by the switch.
272		"
273      ::= { wlsxSystemXGroup 9 }
274
275   wlsxSysXProcessorEntry OBJECT-TYPE
276	  SYNTAX       WlsxSysXProcessorEntry
277	  MAX-ACCESS   not-accessible
278      STATUS       current
279      DESCRIPTION
280	  "
281	  	An entry for one processor contained by the switch.
282	  "
283	  INDEX { sysXProcessorID}
284      ::= { wlsxSysXProcessorTable 1 }
285
286   WlsxSysXProcessorEntry ::=
287     SEQUENCE {
288         sysXProcessorID		Integer32,
289         sysXProcessorDescr 	DisplayString,
290		 sysXProcessorLoad		Integer32
291     }
292
293   sysXProcessorID OBJECT-TYPE
294         SYNTAX       Integer32
295         MAX-ACCESS   not-accessible
296         STATUS       current
297         DESCRIPTION
298            "
299			Processor Index.
300            "
301        ::= { wlsxSysXProcessorEntry 1 }
302
303   sysXProcessorDescr OBJECT-TYPE
304        SYNTAX      DisplayString(SIZE(0..64))
305        MAX-ACCESS   read-only
306        STATUS       current
307        DESCRIPTION
308            "
309			description of the processor.
310            "
311        ::= { wlsxSysXProcessorEntry 2 }
312
313   sysXProcessorLoad OBJECT-TYPE
314        SYNTAX       Integer32 (0..100)
315        MAX-ACCESS   read-only
316        STATUS       current
317        DESCRIPTION
318			"
319			The average, over the last minute, of the percentage of
320			time that this processor was not idle.
321			"
322        ::= { wlsxSysXProcessorEntry 3 }
323
324-- Table contains all the storage devices in the switch and there
325-- utilization numbers.
326
327   wlsxSysXStorageTable  OBJECT-TYPE
328	  SYNTAX       SEQUENCE OF WlsxSysXStorageEntry
329	  MAX-ACCESS   not-accessible
330      STATUS       current
331      DESCRIPTION
332		"
333		The table of Storage-devices contained by the switch.
334		"
335
336      ::= { wlsxSystemXGroup 10 }
337
338   wlsxSysXStorageEntry OBJECT-TYPE
339	  SYNTAX       WlsxSysXStorageEntry
340	  MAX-ACCESS   not-accessible
341      STATUS       current
342      DESCRIPTION
343             "
344			 	An entry for one long-term storage device contained by the
345				switch.
346			 "
347	  INDEX { sysXStorageIndex }
348      ::= { wlsxSysXStorageTable 1 }
349
350   WlsxSysXStorageEntry ::=
351     SEQUENCE {
352        sysXStorageIndex	Integer32,
353        sysXStorageType 	INTEGER,
354	 	sysXStorageSize		Integer32,
355	 	sysXStorageUsed		Integer32,
356	 	sysXStorageName		DisplayString
357   }
358
359   sysXStorageIndex OBJECT-TYPE
360         SYNTAX       Integer32
361         MAX-ACCESS   not-accessible
362         STATUS       current
363         DESCRIPTION
364            "
365            "
366        ::= { wlsxSysXStorageEntry 1 }
367
368   sysXStorageType OBJECT-TYPE
369        SYNTAX      INTEGER {
370					ram(1),
371					flashMemory(2)
372		  	    }
373
374         MAX-ACCESS   read-only
375         STATUS       current
376         DESCRIPTION
377            "
378            "
379        ::= { wlsxSysXStorageEntry 2 }
380
381   sysXStorageSize OBJECT-TYPE
382        SYNTAX      Integer32
383
384         MAX-ACCESS   read-only
385         STATUS       current
386         DESCRIPTION
387            "
388	    		size of the storage filesystem in MB.
389            "
390        ::= { wlsxSysXStorageEntry 3 }
391
392   sysXStorageUsed OBJECT-TYPE
393        SYNTAX      Integer32
394         MAX-ACCESS   read-only
395         STATUS       current
396         DESCRIPTION
397            "
398	    		size of the storage filesystem in MB.
399            "
400        ::= { wlsxSysXStorageEntry 4 }
401
402   sysXStorageName OBJECT-TYPE
403        SYNTAX      DisplayString(SIZE(0..64))
404        MAX-ACCESS   read-only
405        STATUS       current
406        DESCRIPTION
407            "
408			name of the storage filesystem.
409            "
410        ::= { wlsxSysXStorageEntry 5 }
411
412-- This table describes the memory utilization of the switch
413
414   wlsxSysXMemoryTable  OBJECT-TYPE
415	  SYNTAX       SEQUENCE OF WlsxSysXMemoryEntry
416	  MAX-ACCESS   not-accessible
417      STATUS       current
418      DESCRIPTION
419		"
420		The memory status of the switch
421		"
422
423      ::= { wlsxSystemXGroup 11 }
424
425   wlsxSysXMemoryEntry OBJECT-TYPE
426	  SYNTAX       WlsxSysXMemoryEntry
427	  MAX-ACCESS   not-accessible
428      STATUS       current
429      DESCRIPTION
430             "
431		An entry for one memory region on the switch.  Currently,
432		only the CP region is monitored.
433	     "
434	  INDEX { sysXMemoryIndex }
435      ::= { wlsxSysXMemoryTable 1 }
436
437   WlsxSysXMemoryEntry ::=
438     SEQUENCE {
439         sysXMemoryIndex	Integer32,
440	 	sysXMemorySize	Integer32,
441	 	sysXMemoryUsed	Integer32,
442	 	sysXMemoryFree	Integer32
443   }
444
445   sysXMemoryIndex OBJECT-TYPE
446         SYNTAX       Integer32
447         MAX-ACCESS   not-accessible
448         STATUS       current
449         DESCRIPTION
450            "
451            "
452        ::= { wlsxSysXMemoryEntry 1 }
453
454   sysXMemorySize OBJECT-TYPE
455        SYNTAX      Integer32
456
457         MAX-ACCESS   read-only
458         STATUS       current
459         DESCRIPTION
460            "
461	    		Total memory in KB.
462            "
463        ::= { wlsxSysXMemoryEntry 2 }
464
465   sysXMemoryUsed OBJECT-TYPE
466        SYNTAX      Integer32
467         MAX-ACCESS   read-only
468         STATUS       current
469         DESCRIPTION
470            "
471	    		Used memory in KB.
472            "
473        ::= { wlsxSysXMemoryEntry 3 }
474
475   sysXMemoryFree OBJECT-TYPE
476        SYNTAX      Integer32
477         MAX-ACCESS   read-only
478         STATUS       current
479         DESCRIPTION
480            "
481	    		Free memory in KB.
482            "
483        ::= { wlsxSysXMemoryEntry 4 }
484
485   wlsxSwitchLicenseSerialNumber OBJECT-TYPE
486        SYNTAX       DisplayString
487        MAX-ACCESS   read-only
488        STATUS       current
489        DESCRIPTION
490			"
491			 The license serial number of the switch
492			"
493        ::= { wlsxSystemXGroup 12 }
494
495-- wlsxUserInfoGroup contains information about the users connected to the switch.
496
497   wlsxSwitchUserTable  OBJECT-TYPE
498	  SYNTAX       SEQUENCE OF MxSwitchUserEntry
499	  MAX-ACCESS   not-accessible
500      STATUS       current
501      DESCRIPTION
502	  	"
503			This Table lists all the users (both wired and wireless) currently
504			connected to the switch. Users are identified by their IP address.
505		"
506
507      ::= { wlsxUserInfoGroup 1 }
508
509     wlsxSwitchUserEntry OBJECT-TYPE
510	  SYNTAX       MxSwitchUserEntry
511	  MAX-ACCESS   not-accessible
512      STATUS       current
513      DESCRIPTION
514             "User Entry"
515	  INDEX { userIpAddress}
516      ::= { wlsxSwitchUserTable 1 }
517
518     MxSwitchUserEntry ::=
519     SEQUENCE {
520         userIpAddress				IpAddress,
521         userPhyAddress 			MacAddress,
522		 userName					DisplayString,
523		 userRole					DisplayString,
524		 userUpTime					TimeTicks,
525		 userAuthenticationMethod	INTEGER,
526		 userLocation				DisplayString,
527		 userServerName				DisplayString,
528		 userConnectedVlan			Integer32,
529		 userConnectedSlot			Integer32,
530		 userConnectedPort			Integer32,
531		 userBWContractName			DisplayString,
532		 userBWContractUsage		INTEGER,
533		 userConnectedModule		INTEGER
534
535     }
536
537     userIpAddress OBJECT-TYPE
538         SYNTAX       IpAddress
539         MAX-ACCESS   not-accessible
540         STATUS       current
541         DESCRIPTION
542            "
543			IP Address from which the user connected to the switch.
544            "
545        ::= { wlsxSwitchUserEntry 1 }
546
547     userPhyAddress OBJECT-TYPE
548         SYNTAX       MacAddress
549         MAX-ACCESS   read-only
550         STATUS       current
551         DESCRIPTION
552            "
553			Physical Address of the station from which the user connected to
554			the switch.
555            "
556        ::= { wlsxSwitchUserEntry 2 }
557
558     userName OBJECT-TYPE
559         SYNTAX       DisplayString(SIZE(0..32))
560         MAX-ACCESS   read-only
561         STATUS       current
562         DESCRIPTION
563            "
564			 Name of the User.
565            "
566        ::= { wlsxSwitchUserEntry 3 }
567
568     userRole OBJECT-TYPE
569         SYNTAX       DisplayString(SIZE(0..64))
570         MAX-ACCESS   read-only
571         STATUS       current
572         DESCRIPTION
573            "
574			The Role configured for this user.
575            "
576        ::= { wlsxSwitchUserEntry 4 }
577
578
579     userUpTime OBJECT-TYPE
580         SYNTAX       TimeTicks
581         MAX-ACCESS   read-only
582         STATUS       current
583         DESCRIPTION
584            "
585			 Time since the user is connected to the switch.
586            "
587        ::= { wlsxSwitchUserEntry 5 }
588
589     userAuthenticationMethod OBJECT-TYPE
590         SYNTAX       INTEGER {
591						none(1),
592						other(2),
593						web(3),
594						dot1x(4),
595						vpn(5),
596						mac(6)
597						}
598         MAX-ACCESS   read-only
599         STATUS       current
600         DESCRIPTION
601            "
602			Authentication mechanism used by the user to connect to the switch.
603            "
604        ::= { wlsxSwitchUserEntry 6 }
605
606     userLocation OBJECT-TYPE
607         SYNTAX       DisplayString(SIZE(0..32))
608         MAX-ACCESS   read-only
609         STATUS       current
610         DESCRIPTION
611            "
612			Location of the access point (in Building.Floor.... format), which
613			the user used to connect to the switch.
614            "
615        ::= { wlsxSwitchUserEntry 7 }
616
617     userServerName OBJECT-TYPE
618         SYNTAX       DisplayString(SIZE(0..32))
619         MAX-ACCESS   read-only
620         STATUS       current
621         DESCRIPTION
622            "
623			Name of the Back-end authentication server, used to authenticate
624			the user.
625            "
626        ::= { wlsxSwitchUserEntry 8 }
627
628     userConnectedVlan OBJECT-TYPE
629         SYNTAX       Integer32
630         MAX-ACCESS   read-only
631         STATUS       current
632         DESCRIPTION
633            "
634			Vlan on which the user is connected to the switch.
635            "
636        ::= { wlsxSwitchUserEntry 9 }
637
638     userConnectedSlot OBJECT-TYPE
639         SYNTAX       Integer32
640         MAX-ACCESS   read-only
641         STATUS       current
642         DESCRIPTION
643            "
644			Slot on switch, where the user connection terminates.
645            "
646        ::= { wlsxSwitchUserEntry 10 }
647
648     userConnectedPort OBJECT-TYPE
649         SYNTAX       Integer32
650         MAX-ACCESS   read-only
651         STATUS       current
652         DESCRIPTION
653            "
654			Port on switch, where the user connection terminates.
655            "
656        ::= { wlsxSwitchUserEntry 11 }
657
658     userBWContractName OBJECT-TYPE
659         SYNTAX       DisplayString(SIZE(0..32))
660         MAX-ACCESS   read-only
661         STATUS       current
662         DESCRIPTION
663            "
664			Name of the Bandwidth Contract applied to this user.
665            "
666        ::= { wlsxSwitchUserEntry 12 }
667
668     userBWContractUsage OBJECT-TYPE
669         SYNTAX       INTEGER {
670							user(1),
671							shared(2)
672					  }
673         MAX-ACCESS   read-only
674         STATUS       current
675         DESCRIPTION
676            "
677			Indicates how the Bandwidth Contract is used.
678            "
679        ::= { wlsxSwitchUserEntry 13 }
680
681     userConnectedModule OBJECT-TYPE
682         SYNTAX       Integer32
683         MAX-ACCESS   read-only
684         STATUS       current
685         DESCRIPTION
686            "
687            The module to which the user is connected, if wired.
688            "
689        ::= { wlsxSwitchUserEntry 14 }
690
691
692  -- StationMgmt Table
693  --Station Management Table contains all the station associated with this AP.
694
695   wlsxSwitchStationMgmtTable  OBJECT-TYPE
696	  SYNTAX       SEQUENCE OF MxSwitchStationMgmtEntry
697	  MAX-ACCESS   not-accessible
698      STATUS       current
699      DESCRIPTION
700	  	"
701			This Table lists all the wireless stations associated with the
702			Access points connected to this switch.
703		"
704
705      ::= { wlsxUserInfoGroup 2 }
706
707   wlsxSwitchStationMgmtEntry OBJECT-TYPE
708	  SYNTAX       MxSwitchStationMgmtEntry
709	  MAX-ACCESS   not-accessible
710      STATUS       current
711      DESCRIPTION
712             "Station Management Entry"
713	  INDEX {staPhyAddress, staAccessPointBSSID}
714      ::= { wlsxSwitchStationMgmtTable 1 }
715
716   MxSwitchStationMgmtEntry ::=
717     SEQUENCE {
718         staPhyAddress				MacAddress,
719		 staAccessPointBSSID		MacAddress,
720		 staUserName				DisplayString,
721		 staUserRole				DisplayString,
722		 staAssociationID			Unsigned32,
723		 staAccessPointESSID		DisplayString,
724		 staSignalToNoiseRatio		Integer32,
725		 staTransmitRate			INTEGER,
726		 staReceiveRate				INTEGER
727   }
728
729   	staPhyAddress OBJECT-TYPE
730         SYNTAX       MacAddress
731         MAX-ACCESS   not-accessible
732         STATUS       current
733         DESCRIPTION
734            "
735			The Physical Address of the Station.
736            "
737        ::= { wlsxSwitchStationMgmtEntry 1 }
738
739	staAccessPointBSSID OBJECT-TYPE
740         SYNTAX       MacAddress
741         MAX-ACCESS   not-accessible
742         STATUS       current
743         DESCRIPTION
744            "
745			BSSID of the Access point through which the station is connected
746			to the switch
747            "
748        ::= { wlsxSwitchStationMgmtEntry 2 }
749
750	staUserName OBJECT-TYPE
751         SYNTAX       DisplayString(SIZE(0..32))
752         MAX-ACCESS   read-only
753         STATUS       current
754         DESCRIPTION
755            "
756			Name of the User connecting from this station.
757            "
758        ::= { wlsxSwitchStationMgmtEntry 3 }
759
760	staUserRole OBJECT-TYPE
761         SYNTAX       DisplayString(SIZE(0..32))
762         MAX-ACCESS   read-only
763         STATUS       current
764         DESCRIPTION
765            "
766			User Role.
767            "
768        ::= { wlsxSwitchStationMgmtEntry 4 }
769
770	staAssociationID OBJECT-TYPE
771         SYNTAX       Unsigned32
772         MAX-ACCESS   read-only
773         STATUS       current
774         DESCRIPTION
775            "
776			AID with which the Station is associated with this system.
777            "
778        ::= { wlsxSwitchStationMgmtEntry 5 }
779
780	staAccessPointESSID OBJECT-TYPE
781         SYNTAX       DisplayString(SIZE(0..64))
782         MAX-ACCESS   read-only
783         STATUS       current
784         DESCRIPTION
785            "
786			ESSID of the Access point
787            "
788        ::= { wlsxSwitchStationMgmtEntry 6 }
789
790   	staSignalToNoiseRatio OBJECT-TYPE
791         SYNTAX       Integer32
792         MAX-ACCESS   read-only
793         STATUS       current
794         DESCRIPTION
795            "
796			SNR for the BSSID.
797            "
798        ::= { wlsxSwitchStationMgmtEntry 7 }
799
800   	staTransmitRate OBJECT-TYPE
801         SYNTAX       INTEGER{
802		 				rate1Mbps(1),
803						rate2Mbps(2),
804						rate5point5Mbps(3),
805						rate6Mbps(4),
806						rate9Mbps(5),
807						rate11Mbps(6),
808						rate12Mbps(7),
809						rate18Mbps(8),
810						rate24Mbps(9),
811						rate36Mbps(10),
812						rate48Mbps(11),
813						rate54Mbps(12)
814		 			  }
815         MAX-ACCESS   read-only
816         STATUS       current
817         DESCRIPTION
818            "
819			Indicates Transmit rate of the channel
820            "
821        ::= { wlsxSwitchStationMgmtEntry 8 }
822
823   	staReceiveRate OBJECT-TYPE
824         SYNTAX       INTEGER{
825		 				rate1Mbps(1),
826						rate2Mbps(2),
827						rate5point5Mbps(3),
828						rate6Mbps(4),
829						rate9Mbps(5),
830						rate11Mbps(6),
831						rate12Mbps(7),
832						rate18Mbps(8),
833						rate24Mbps(9),
834						rate36Mbps(10),
835						rate48Mbps(11),
836						rate54Mbps(12)
837		 			  }
838         MAX-ACCESS   read-only
839         STATUS       current
840         DESCRIPTION
841            "
842			Indicates Receive rate of the channel
843            "
844        ::= { wlsxSwitchStationMgmtEntry 9 }
845
846
847  -- StationStats Table
848  --Station Statistics Table contains a summary of statistics collected by the
849  --switch. The stats are indexed by Station Mac and AP BSSID it is associated
850  --to.
851
852   wlsxSwitchStationStatsTable  OBJECT-TYPE
853	  SYNTAX       SEQUENCE OF MxSwitchStationStatsEntry
854	  MAX-ACCESS   not-accessible
855      STATUS       current
856      DESCRIPTION
857	  	"
858			This Table lists the statistics of all the wireless stations
859			associated with the Access points connected to this switch.
860		"
861
862      ::= { wlsxUserInfoGroup 3 }
863
864   wlsxSwitchStationStatsEntry OBJECT-TYPE
865	  SYNTAX       MxSwitchStationStatsEntry
866	  MAX-ACCESS   not-accessible
867      STATUS       current
868      DESCRIPTION
869             "Station Statistics Entry"
870	  INDEX {staPhyAddress, staAccessPointBSSID}
871      ::= { wlsxSwitchStationStatsTable 1 }
872
873   MxSwitchStationStatsEntry ::=
874     SEQUENCE {
875		 staTxPackets				Counter32,
876		 staTxBytes				Counter32,
877		 staRxPackets				Counter32,
878		 staRxBytes				Counter32,
879		 staBwRate				Integer32,
880		 staFrameRetryRate		Integer32,
881		 staFrameLowSpeedRate		Integer32,
882		 staFrameNonUnicastRate		Integer32,
883		 staFrameFragmentationRate		Integer32,
884		 staFrameReceiveErrorRate		Integer32
885     }
886
887   	staTxPackets OBJECT-TYPE
888         SYNTAX       Counter32
889         MAX-ACCESS   read-only
890         STATUS       current
891         DESCRIPTION
892            "
893			Total Packets Transmitted by the station.
894            "
895        ::= { wlsxSwitchStationStatsEntry 1 }
896
897   	staTxBytes OBJECT-TYPE
898         SYNTAX       Counter32
899         MAX-ACCESS   read-only
900         STATUS       current
901         DESCRIPTION
902            "
903			Total Bytes Transmitted by the station.
904			"
905        ::= { wlsxSwitchStationStatsEntry 2 }
906
907   	staRxPackets OBJECT-TYPE
908         SYNTAX       Counter32
909         MAX-ACCESS   read-only
910         STATUS       current
911         DESCRIPTION
912            "
913			Total Packets Received by the Station
914            "
915        ::= { wlsxSwitchStationStatsEntry 3 }
916
917   	staRxBytes OBJECT-TYPE
918         SYNTAX       Counter32
919         MAX-ACCESS   read-only
920         STATUS       current
921         DESCRIPTION
922            "
923			Total Bytes Received by the station.
924            "
925        ::= { wlsxSwitchStationStatsEntry 4 }
926
927   	staBwRate OBJECT-TYPE
928         SYNTAX       Integer32
929         MAX-ACCESS   read-only
930         STATUS       current
931         DESCRIPTION
932            "
933			Bandwidth Rate in Kbps of the station.
934            "
935        ::= { wlsxSwitchStationStatsEntry 5 }
936
937   	staFrameRetryRate OBJECT-TYPE
938         SYNTAX       Integer32
939         MAX-ACCESS   read-only
940         STATUS       current
941         DESCRIPTION
942            "
943			Station Frame Retry Rate.
944            "
945        ::= { wlsxSwitchStationStatsEntry 6 }
946
947   	staFrameLowSpeedRate OBJECT-TYPE
948         SYNTAX       Integer32
949         MAX-ACCESS   read-only
950         STATUS       current
951         DESCRIPTION
952            "
953			Station Frame Low Speed Rate.
954            "
955        ::= { wlsxSwitchStationStatsEntry 7 }
956
957   	staFrameNonUnicastRate OBJECT-TYPE
958         SYNTAX       Integer32
959         MAX-ACCESS   read-only
960         STATUS       current
961         DESCRIPTION
962            "
963			Station Frame Non Unicast Packet Rate.
964            "
965        ::= { wlsxSwitchStationStatsEntry 8 }
966
967   	staFrameFragmentationRate OBJECT-TYPE
968         SYNTAX       Integer32
969         MAX-ACCESS   read-only
970         STATUS       current
971         DESCRIPTION
972            "
973			Station Frame Fragmentation Rate.
974            "
975        ::= { wlsxSwitchStationStatsEntry 9 }
976
977   	staFrameReceiveErrorRate OBJECT-TYPE
978         SYNTAX       Integer32
979         MAX-ACCESS   read-only
980         STATUS       current
981         DESCRIPTION
982            "
983			Station Frame Receive Error Rate.
984            "
985        ::= { wlsxSwitchStationStatsEntry 10 }
986
987-- wlsxAccessPointInfoGroup contains a Local Access Point Information Table.
988-- which lists all the AP's connected to this switch, a Global AP Info Table
989-- which lists all the AP's in the Domain. The Global table is valid only
990-- on the Master switch. The Group also contains two scalar objects which
991-- indicate the total number of AP's and the total number of Clients connected.
992
993
994   wlsxSwitchTotalNumAccessPoints  OBJECT-TYPE
995         SYNTAX       Unsigned32
996         MAX-ACCESS   read-only
997         STATUS       current
998         DESCRIPTION
999            "
1000			Total Number of Access Points Connected to this switch.
1001            "
1002        ::= { wlsxAccessPointInfoGroup 1 }
1003
1004   wlsxSwitchTotalNumStationsAssociated  OBJECT-TYPE
1005         SYNTAX       Unsigned32
1006         MAX-ACCESS   read-only
1007         STATUS       current
1008         DESCRIPTION
1009            "
1010			Total Number of Stations Associated to this switch.
1011            "
1012        ::= { wlsxAccessPointInfoGroup 2 }
1013
1014-- Local Access Point Table.
1015
1016   wlsxSwitchAccessPointTable  OBJECT-TYPE
1017	  SYNTAX       SEQUENCE OF MxSwitchAccessPointEntry
1018	  MAX-ACCESS   not-accessible
1019      STATUS       current
1020      DESCRIPTION
1021	  	"
1022			This Table lists all the Access Points Connected to this switch.
1023		"
1024      ::= { wlsxAccessPointInfoGroup 3 }
1025
1026   wlsxSwitchAccessPointEntry OBJECT-TYPE
1027	  SYNTAX       MxSwitchAccessPointEntry
1028	  MAX-ACCESS   not-accessible
1029      STATUS       current
1030      DESCRIPTION
1031             "Station Management Entry"
1032	  INDEX {apBSSID}
1033      ::= { wlsxSwitchAccessPointTable 1 }
1034
1035   MxSwitchAccessPointEntry ::=
1036     SEQUENCE {
1037         apBSSID				MacAddress,
1038		 apESSID				DisplayString,
1039		 apSlot					Unsigned32,
1040		 apPort					Unsigned32,
1041		 apIpAddress			IpAddress,
1042		 apPhyType				INTEGER,
1043		 apType					INTEGER,
1044		 apCurrentChannel		INTEGER,
1045		 apLocation				DisplayString,
1046		 apTotalTime			TimeTicks,
1047		 apInactiveTime			TimeTicks,
1048		 apLoadBalancing		TruthValue,
1049		 apChannelNoise			Integer32,
1050		 apSignalToNoiseRatio	Integer32,
1051		 apTransmitRate			INTEGER,
1052		 apReceiveRate			INTEGER
1053   }
1054
1055   	apBSSID OBJECT-TYPE
1056         SYNTAX       MacAddress
1057         MAX-ACCESS   not-accessible
1058         STATUS       current
1059         DESCRIPTION
1060            "
1061			The Physical Address of the Access Point.
1062            "
1063        ::= { wlsxSwitchAccessPointEntry 1 }
1064
1065   	apESSID OBJECT-TYPE
1066         SYNTAX       DisplayString(SIZE(0..64))
1067         MAX-ACCESS   read-only
1068         STATUS       current
1069         DESCRIPTION
1070            "
1071			ESSID of the Access Point
1072            "
1073        ::= { wlsxSwitchAccessPointEntry 2 }
1074
1075   	apSlot OBJECT-TYPE
1076         SYNTAX       Unsigned32
1077         MAX-ACCESS   read-only
1078         STATUS       current
1079         DESCRIPTION
1080            "
1081			Slot to which the Access Point is connected.
1082            "
1083        ::= { wlsxSwitchAccessPointEntry 3 }
1084
1085   	apPort OBJECT-TYPE
1086         SYNTAX       Unsigned32
1087         MAX-ACCESS   read-only
1088         STATUS       current
1089         DESCRIPTION
1090            "
1091			Port to which the Access Point is connected.
1092            "
1093        ::= { wlsxSwitchAccessPointEntry 4 }
1094
1095   	apIpAddress OBJECT-TYPE
1096         SYNTAX       IpAddress
1097         MAX-ACCESS   read-only
1098         STATUS       current
1099         DESCRIPTION
1100            "
1101			Address of the Access Point.
1102            "
1103        ::= { wlsxSwitchAccessPointEntry 5 }
1104
1105   	apPhyType OBJECT-TYPE
1106         SYNTAX       INTEGER{
1107						dot11a(1),
1108						dot11b(2),
1109						dot11g(3)
1110					  }
1111         MAX-ACCESS   read-only
1112         STATUS       current
1113         DESCRIPTION
1114            "
1115			Physical Layer Protocol support of the AP.
1116            "
1117        ::= { wlsxSwitchAccessPointEntry 6 }
1118
1119   	apType OBJECT-TYPE
1120         SYNTAX       INTEGER{
1121						ap(1),
1122						am(2)
1123					  }
1124         MAX-ACCESS   read-only
1125         STATUS       current
1126         DESCRIPTION
1127            "
1128			Indicates whether the Access point is an Air Monitor or regular AP.
1129            "
1130        ::= { wlsxSwitchAccessPointEntry 7 }
1131
1132   	apCurrentChannel OBJECT-TYPE
1133         SYNTAX       INTEGER(1..165)
1134         MAX-ACCESS   read-only
1135         STATUS       current
1136         DESCRIPTION
1137            "
1138			The Current Operating frequency channel.
1139            "
1140        ::= { wlsxSwitchAccessPointEntry 8 }
1141
1142   	apLocation OBJECT-TYPE
1143         SYNTAX       DisplayString(SIZE(0..32))
1144         MAX-ACCESS   read-only
1145         STATUS       current
1146         DESCRIPTION
1147            "
1148			Location of the AP defined in Building.Floor.... mode.
1149            "
1150        ::= { wlsxSwitchAccessPointEntry 9 }
1151
1152   	apTotalTime OBJECT-TYPE
1153         SYNTAX       TimeTicks
1154         MAX-ACCESS   read-only
1155         STATUS       current
1156         DESCRIPTION
1157            "
1158			Time since the Ap is connected to the switch
1159            "
1160        ::= { wlsxSwitchAccessPointEntry 10 }
1161
1162   	apInactiveTime OBJECT-TYPE
1163         SYNTAX       TimeTicks
1164         MAX-ACCESS   read-only
1165         STATUS       current
1166         DESCRIPTION
1167            "
1168            Time since the Ap has been inactive
1169            "
1170        ::= { wlsxSwitchAccessPointEntry 11 }
1171
1172   	apLoadBalancing OBJECT-TYPE
1173         SYNTAX       TruthValue
1174         MAX-ACCESS   read-only
1175         STATUS       current
1176         DESCRIPTION
1177            "
1178			Indicates whether Load balancing is enabled or not.
1179            "
1180        ::= { wlsxSwitchAccessPointEntry 12 }
1181
1182   	apChannelNoise OBJECT-TYPE
1183         SYNTAX       Integer32
1184         MAX-ACCESS   read-only
1185         STATUS       current
1186         DESCRIPTION
1187            "
1188			Indicates the noise on the channel
1189            "
1190        ::= { wlsxSwitchAccessPointEntry 13 }
1191
1192   	apSignalToNoiseRatio OBJECT-TYPE
1193         SYNTAX       Integer32
1194         MAX-ACCESS   read-only
1195         STATUS       current
1196         DESCRIPTION
1197            "
1198			SNR for the BSSID.
1199            "
1200        ::= { wlsxSwitchAccessPointEntry 14 }
1201
1202   	apTransmitRate OBJECT-TYPE
1203         SYNTAX       INTEGER{
1204		 				rate1Mbps(1),
1205						rate2Mbps(2),
1206						rate5point5Mbps(3),
1207						rate6Mbps(4),
1208						rate9Mbps(5),
1209						rate11Mbps(6),
1210						rate12Mbps(7),
1211						rate18Mbps(8),
1212						rate24Mbps(9),
1213						rate36Mbps(10),
1214						rate48Mbps(11),
1215						rate54Mbps(12)
1216		 			  }
1217         MAX-ACCESS   read-only
1218         STATUS       current
1219         DESCRIPTION
1220            "
1221			Indicates Transmit rate of the channel
1222            "
1223        ::= { wlsxSwitchAccessPointEntry 15 }
1224
1225   	apReceiveRate OBJECT-TYPE
1226         SYNTAX       INTEGER{
1227		 				rate1Mbps(1),
1228						rate2Mbps(2),
1229						rate5point5Mbps(3),
1230						rate6Mbps(4),
1231						rate9Mbps(5),
1232						rate11Mbps(6),
1233						rate12Mbps(7),
1234						rate18Mbps(8),
1235						rate24Mbps(9),
1236						rate36Mbps(10),
1237						rate48Mbps(11),
1238						rate54Mbps(12)
1239		 			  }
1240         MAX-ACCESS   read-only
1241         STATUS       current
1242         DESCRIPTION
1243            "
1244			Indicates Receive rate of the channel
1245            "
1246        ::= { wlsxSwitchAccessPointEntry 16 }
1247
1248
1249 --Global AP Table
1250   wlsxSwitchGlobalAPTable  OBJECT-TYPE
1251	  SYNTAX       SEQUENCE OF MxSwitchGlobalAPEntry
1252	  MAX-ACCESS   not-accessible
1253      STATUS       deprecated
1254      DESCRIPTION
1255	  	"
1256			This Table lists all the Access Points Connected in the
1257			Switch Domain. This table is valid only on a
1258			Master switch. On a Local switch, the table is empty.
1259		"
1260      ::= { wlsxAccessPointInfoGroup 4 }
1261
1262   wlsxSwitchGlobalAPEntry OBJECT-TYPE
1263	  SYNTAX       MxSwitchGlobalAPEntry
1264	  MAX-ACCESS   not-accessible
1265      STATUS       deprecated
1266      DESCRIPTION
1267             "Station Management Entry"
1268	  INDEX {globalAPLocation, globalAPAddress}
1269      ::= { wlsxSwitchGlobalAPTable 1 }
1270
1271   MxSwitchGlobalAPEntry ::=
1272     SEQUENCE {
1273         globalAPLocation		DisplayString,
1274		 globalAPAddress		IpAddress,
1275		 globalAPLocalSwitch	IpAddress,
1276		 globalAPdot11aPhyAddr	MacAddress,
1277		 globalAPdot11bPhyAddr	MacAddress,
1278		 globalAPState			INTEGER,
1279		 globalAPdot11gPhyAddr	MacAddress
1280   }
1281
1282   	globalAPLocation OBJECT-TYPE
1283         SYNTAX       DisplayString(SIZE(0..32))
1284         MAX-ACCESS   not-accessible
1285         STATUS       deprecated
1286         DESCRIPTION
1287            "
1288			Physical Location of the AP, defined in Building.Floor.Location
1289			format.
1290            "
1291        ::= { wlsxSwitchGlobalAPEntry 1 }
1292
1293   	globalAPAddress OBJECT-TYPE
1294         SYNTAX       IpAddress
1295         MAX-ACCESS   not-accessible
1296         STATUS       deprecated
1297         DESCRIPTION
1298            "
1299			Address of the Access Point.
1300            "
1301        ::= { wlsxSwitchGlobalAPEntry 2 }
1302
1303   	globalAPLocalSwitch OBJECT-TYPE
1304         SYNTAX       IpAddress
1305         MAX-ACCESS   read-only
1306         STATUS       deprecated
1307         DESCRIPTION
1308            "
1309			IP Address of the Local Switch this Access Point is connected to.
1310            "
1311        ::= { wlsxSwitchGlobalAPEntry 3 }
1312
1313   	globalAPdot11aPhyAddr OBJECT-TYPE
1314         SYNTAX       MacAddress
1315         MAX-ACCESS   read-only
1316         STATUS       deprecated
1317         DESCRIPTION
1318            "
1319			Physical Mac address of the module supporting dot11a in the
1320			Access Point. AP can have support for both dot11a and dot11b
1321			physical layer.
1322            "
1323        ::= { wlsxSwitchGlobalAPEntry 4 }
1324
1325   	globalAPdot11bPhyAddr OBJECT-TYPE
1326         SYNTAX       MacAddress
1327         MAX-ACCESS   read-only
1328         STATUS       deprecated
1329         DESCRIPTION
1330            "
1331			Physical Mac address of the module supporting dot11b in the
1332			Access Point. AP can have support for both dot11a and dot11b
1333			physical layer.
1334            "
1335        ::= { wlsxSwitchGlobalAPEntry 5 }
1336
1337   	globalAPState OBJECT-TYPE
1338         SYNTAX       INTEGER(1..7)
1339         MAX-ACCESS   read-only
1340         STATUS       deprecated
1341         DESCRIPTION
1342            "
1343			State of the AP.
1344			1 -- AP is UP.
1345			2 -- AP is DOWN.
1346			3-7 -- Values are deprecated.
1347            "
1348        ::= { wlsxSwitchGlobalAPEntry 6 }
1349
1350   	globalAPdot11gPhyAddr OBJECT-TYPE
1351         SYNTAX       MacAddress
1352         MAX-ACCESS   read-only
1353         STATUS       deprecated
1354         DESCRIPTION
1355            "
1356			Physical Mac address of the module supporting dot11g in the
1357			Access Point. AP can have support for both a,b,g
1358			physical layer.
1359            "
1360        ::= { wlsxSwitchGlobalAPEntry 7 }
1361
1362 -- Local AP Stats.
1363
1364   wlsxSwitchAccessPointStatsTable  OBJECT-TYPE
1365	  SYNTAX       SEQUENCE OF MxSwitchAccessPointStatsEntry
1366	  MAX-ACCESS   not-accessible
1367      STATUS       current
1368      DESCRIPTION
1369	  	"
1370			This Table lists the statistics of all the Access Points Connected
1371			to this switch.
1372		"
1373      ::= { wlsxAccessPointInfoGroup 5 }
1374
1375   wlsxSwitchAccessPointStatsEntry OBJECT-TYPE
1376	  SYNTAX       MxSwitchAccessPointStatsEntry
1377	  MAX-ACCESS   not-accessible
1378      STATUS       current
1379      DESCRIPTION
1380             "
1381			 Ap Stats Entry.
1382			 "
1383	  INDEX {apBSSID}
1384      ::= { wlsxSwitchAccessPointStatsTable 1 }
1385
1386   MxSwitchAccessPointStatsEntry ::=
1387     SEQUENCE {
1388		 apStatsChannel						INTEGER,
1389		 apChannelBwRate					Integer32,
1390		 apChannelFrameRetryRate			Integer32,
1391		 apChannelFrameLowSpeedRate			Integer32,
1392		 apChannelFrameNonUnicastRate		Integer32,
1393		 apChannelFrameFragmentationRate	Integer32,
1394		 apChannelFrameReceiveErrorRate		Integer32,
1395		 apBSSTxPackets						Counter32,
1396		 apBSSTxBytes						Counter32,
1397		 apBSSRxPackets						Counter32,
1398		 apBSSRxBytes						Counter32,
1399		 apBSSBwRate						Integer32,
1400		 apBSSFrameRetryRate				Integer32,
1401		 apBSSFrameLowSpeedRate				Integer32,
1402		 apBSSFrameNonUnicastRate			Integer32,
1403		 apBSSFrameFragmentationRate		Integer32,
1404		 apBSSFrameReceiveErrorRate			Integer32
1405   }
1406
1407   	apStatsChannel OBJECT-TYPE
1408         SYNTAX       INTEGER(1..165)
1409         MAX-ACCESS   read-only
1410         STATUS       current
1411         DESCRIPTION
1412            "
1413			Channel on which the ap is operating.
1414            "
1415        ::= { wlsxSwitchAccessPointStatsEntry 1 }
1416
1417
1418   	apChannelBwRate OBJECT-TYPE
1419         SYNTAX       Integer32
1420         MAX-ACCESS   read-only
1421         STATUS       current
1422         DESCRIPTION
1423            "
1424			Bandwidth Rate in Kbps of the apChannel.
1425            "
1426        ::= {  wlsxSwitchAccessPointStatsEntry 2 }
1427
1428   	apChannelFrameRetryRate OBJECT-TYPE
1429         SYNTAX       Integer32
1430         MAX-ACCESS   read-only
1431         STATUS       current
1432         DESCRIPTION
1433            "
1434			Ap Channel Frame Retry Rate.
1435            "
1436        ::= { wlsxSwitchAccessPointStatsEntry 3 }
1437
1438   	apChannelFrameLowSpeedRate OBJECT-TYPE
1439         SYNTAX       Integer32
1440         MAX-ACCESS   read-only
1441         STATUS       current
1442         DESCRIPTION
1443            "
1444			Ap Channel Frame Low Speed Rate.
1445            "
1446        ::= { wlsxSwitchAccessPointStatsEntry 4 }
1447
1448   	apChannelFrameNonUnicastRate OBJECT-TYPE
1449         SYNTAX       Integer32
1450         MAX-ACCESS   read-only
1451         STATUS       current
1452         DESCRIPTION
1453            "
1454			Ap Channel Frame Non Unicast Packet Rate.
1455            "
1456        ::= {wlsxSwitchAccessPointStatsEntry 5 }
1457
1458   	apChannelFrameFragmentationRate OBJECT-TYPE
1459         SYNTAX       Integer32
1460         MAX-ACCESS   read-only
1461         STATUS       current
1462         DESCRIPTION
1463            "
1464			Ap Channel Frame Fragmentation Rate.
1465            "
1466        ::= { wlsxSwitchAccessPointStatsEntry  6 }
1467
1468   	apChannelFrameReceiveErrorRate OBJECT-TYPE
1469         SYNTAX       Integer32
1470         MAX-ACCESS   read-only
1471         STATUS       current
1472         DESCRIPTION
1473            "
1474			Ap Channel Frame Receive Error Rate.
1475            "
1476        ::= {  wlsxSwitchAccessPointStatsEntry 7 }
1477
1478   	apBSSTxPackets OBJECT-TYPE
1479         SYNTAX       Counter32
1480         MAX-ACCESS   read-only
1481         STATUS       current
1482         DESCRIPTION
1483            "
1484			Total Packets Transmitted by the ap on this BSSID.
1485            "
1486        ::= { wlsxSwitchAccessPointStatsEntry 8 }
1487
1488   	apBSSTxBytes OBJECT-TYPE
1489         SYNTAX       Counter32
1490         MAX-ACCESS   read-only
1491         STATUS       current
1492         DESCRIPTION
1493            "
1494			Total Bytes Transmitted by the ap on this BSSID.
1495			"
1496        ::= { wlsxSwitchAccessPointStatsEntry 9 }
1497
1498   	apBSSRxPackets OBJECT-TYPE
1499         SYNTAX       Counter32
1500         MAX-ACCESS   read-only
1501         STATUS       current
1502         DESCRIPTION
1503            "
1504			Total Packets Received by the ap on this BSSID
1505            "
1506        ::= { wlsxSwitchAccessPointStatsEntry  10 }
1507
1508   	apBSSRxBytes OBJECT-TYPE
1509         SYNTAX       Counter32
1510         MAX-ACCESS   read-only
1511         STATUS       current
1512         DESCRIPTION
1513            "
1514			Total Bytes Received by the ap on this BSSID.
1515            "
1516        ::= { wlsxSwitchAccessPointStatsEntry 11 }
1517
1518   	apBSSBwRate OBJECT-TYPE
1519         SYNTAX       Integer32
1520         MAX-ACCESS   read-only
1521         STATUS       current
1522         DESCRIPTION
1523            "
1524			Bandwidth Rate in Kbps of the ap on this BSSID.
1525            "
1526        ::= { wlsxSwitchAccessPointStatsEntry 12 }
1527
1528   	apBSSFrameRetryRate OBJECT-TYPE
1529         SYNTAX       Integer32
1530         MAX-ACCESS   read-only
1531         STATUS       current
1532         DESCRIPTION
1533            "
1534			Frame Retry Rate on this BSSID.
1535            "
1536        ::= { wlsxSwitchAccessPointStatsEntry 13 }
1537
1538   	apBSSFrameLowSpeedRate OBJECT-TYPE
1539         SYNTAX       Integer32
1540         MAX-ACCESS   read-only
1541         STATUS       current
1542         DESCRIPTION
1543            "
1544			Frame Low Speed Rate on this BSSID.
1545            "
1546        ::= { wlsxSwitchAccessPointStatsEntry 14 }
1547
1548   	apBSSFrameNonUnicastRate OBJECT-TYPE
1549         SYNTAX       Integer32
1550         MAX-ACCESS   read-only
1551         STATUS       current
1552         DESCRIPTION
1553            "
1554			Frame Non Unicast Packet Rate on this BSSID.
1555            "
1556        ::= { wlsxSwitchAccessPointStatsEntry 15 }
1557
1558   	apBSSFrameFragmentationRate OBJECT-TYPE
1559         SYNTAX       Integer32
1560         MAX-ACCESS   read-only
1561         STATUS       current
1562         DESCRIPTION
1563            "
1564			Frame Fragmentation Rate on this BSSID.
1565            "
1566        ::= { wlsxSwitchAccessPointStatsEntry 16 }
1567
1568   	apBSSFrameReceiveErrorRate OBJECT-TYPE
1569         SYNTAX       Integer32
1570         MAX-ACCESS   read-only
1571         STATUS       current
1572         DESCRIPTION
1573            "
1574			Frame Receive Error Rate on this BSSID.
1575            "
1576        ::= { wlsxSwitchAccessPointStatsEntry 17 }
1577
1578
1579
1580-- wlsxSwitchTraps
1581-- This group defines all the traps related to the switch platform.
1582wlsxSwitchTrapObjectsGroup      OBJECT IDENTIFIER ::= { wlsxSwitchTraps 100 }
1583
1584wlsxAuthServerName OBJECT-TYPE
1585         SYNTAX       DisplayString(SIZE(0..64))
1586         MAX-ACCESS   read-only
1587         STATUS       current
1588         DESCRIPTION
1589            "
1590				This Object is used in the traps to indicate the
1591				Authentication Server, used for Authentication.
1592            "
1593::= { wlsxSwitchTrapObjectsGroup 1 }
1594
1595
1596wlsxAuthServerTimeout OBJECT-TYPE
1597         SYNTAX       Integer32
1598         MAX-ACCESS   read-only
1599         STATUS       current
1600         DESCRIPTION
1601            "
1602				This Object is used in the traps to indicate the
1603				Authentication Server Timeout.
1604            "
1605::= { wlsxSwitchTrapObjectsGroup 2 }
1606
1607wlsxFanNumber OBJECT-TYPE
1608         SYNTAX       Integer32
1609         MAX-ACCESS   read-only
1610         STATUS       current
1611         DESCRIPTION
1612            "
1613				This Object is used in the traps to indicate
1614				a failing fan number.
1615            "
1616::= { wlsxSwitchTrapObjectsGroup 4 }
1617
1618
1619wlsxLineCardNumber OBJECT-TYPE
1620         SYNTAX       Integer32
1621         MAX-ACCESS   read-only
1622         STATUS       current
1623         DESCRIPTION
1624            "
1625				This Object is used in the traps to indicate a
1626				Line Card in the switch.
1627            "
1628::= { wlsxSwitchTrapObjectsGroup 5 }
1629
1630
1631wlsxVoltageType OBJECT-TYPE
1632         SYNTAX       DisplayString(SIZE(0..32))
1633         MAX-ACCESS   read-only
1634         STATUS       current
1635         DESCRIPTION
1636            "
1637				This Object is used in the traps to indicate the
1638				type of the voltage.
1639            "
1640::= { wlsxSwitchTrapObjectsGroup 6 }
1641
1642
1643wlsxVoltageValue OBJECT-TYPE
1644         SYNTAX       DisplayString(SIZE(0..10))
1645         MAX-ACCESS   read-only
1646         STATUS       current
1647         DESCRIPTION
1648            "
1649				This Object is used in the traps to indicate the
1650				voltage value in Float.
1651            "
1652::= { wlsxSwitchTrapObjectsGroup 7 }
1653
1654
1655wlsxTemperatureValue OBJECT-TYPE
1656         SYNTAX       DisplayString(SIZE(0..64))
1657         MAX-ACCESS   read-only
1658         STATUS       current
1659         DESCRIPTION
1660            "
1661				This Object is used in the traps to indicate
1662				Temperature Value.
1663            "
1664::= { wlsxSwitchTrapObjectsGroup 8 }
1665
1666
1667wlsxProcessName OBJECT-TYPE
1668         SYNTAX       DisplayString(SIZE(0..64))
1669         MAX-ACCESS   read-only
1670         STATUS       current
1671         DESCRIPTION
1672            "
1673				This Object is used in the traps to indicate a
1674				process name.
1675            "
1676::= { wlsxSwitchTrapObjectsGroup 9 }
1677
1678wlsxStationMacAddress OBJECT-TYPE
1679         SYNTAX       MacAddress
1680         MAX-ACCESS   read-only
1681         STATUS       current
1682         DESCRIPTION
1683            "
1684			The Physical Address of the Station.
1685            "
1686::= { wlsxSwitchTrapObjectsGroup 10 }
1687
1688wlsxStationBlackListReason OBJECT-TYPE
1689         SYNTAX       INTEGER {
1690		 				userDefined(1),
1691						mitmAttack(2),
1692						authFailure(3),
1693						pingFlood(4),
1694						sessionFlood(5),
1695						synFlood(6),
1696						sessionBlacklist(7),
1697						ipSpoofing(8),
1698						other(100)
1699		 			  }
1700         MAX-ACCESS   read-only
1701         STATUS       current
1702         DESCRIPTION
1703            "
1704			The Reason for which a station is black listed.
1705            "
1706::= { wlsxSwitchTrapObjectsGroup 11 }
1707
1708wlsxSpoofedIpAddress OBJECT-TYPE
1709         SYNTAX       IpAddress
1710         MAX-ACCESS   read-only
1711         STATUS       current
1712         DESCRIPTION
1713            "
1714			This Object is used in a trap to identify a Spoofed IP Address.
1715            "
1716::= { wlsxSwitchTrapObjectsGroup 12 }
1717
1718wlsxSpoofedOldPhyAddress OBJECT-TYPE
1719         SYNTAX       MacAddress
1720         MAX-ACCESS   read-only
1721         STATUS       current
1722         DESCRIPTION
1723            "
1724			This Object is used in a trap to identify a Old Mac Address.
1725            "
1726::= { wlsxSwitchTrapObjectsGroup 13 }
1727
1728wlsxSpoofedNewPhyAddress OBJECT-TYPE
1729         SYNTAX       MacAddress
1730         MAX-ACCESS   read-only
1731         STATUS       current
1732         DESCRIPTION
1733            "
1734			This Object is used in a trap to identify a New Mac Address.
1735            "
1736::= { wlsxSwitchTrapObjectsGroup 14 }
1737
1738wlsxDBName OBJECT-TYPE
1739         SYNTAX       DisplayString(SIZE(0..64))
1740         MAX-ACCESS   read-only
1741         STATUS       current
1742         DESCRIPTION
1743            "
1744			This Object is used in a trap to identify name of the Database.
1745            "
1746::= { wlsxSwitchTrapObjectsGroup 15 }
1747
1748wlsxDBUserName OBJECT-TYPE
1749         SYNTAX       DisplayString(SIZE(0..64))
1750         MAX-ACCESS   read-only
1751         STATUS       current
1752         DESCRIPTION
1753            "
1754			This Object is used in a trap to identify name of the Database user.
1755            "
1756::= { wlsxSwitchTrapObjectsGroup 16 }
1757
1758wlsxDBIpAddress OBJECT-TYPE
1759         SYNTAX       IpAddress
1760         MAX-ACCESS   read-only
1761         STATUS       current
1762         DESCRIPTION
1763            "
1764			This Object is used in a trap to identify the IpAddress of the DB.
1765            "
1766::= { wlsxSwitchTrapObjectsGroup 17 }
1767
1768wlsxDBType OBJECT-TYPE
1769         SYNTAX       INTEGER{
1770		 				mssql(1),
1771						mysql(2)
1772					  }
1773         MAX-ACCESS   read-only
1774         STATUS       current
1775         DESCRIPTION
1776            "
1777			This Object is used in a trap to identify the Port of the user.
1778            "
1779::= { wlsxSwitchTrapObjectsGroup 18 }
1780
1781wlsxVrID OBJECT-TYPE
1782         SYNTAX       Integer32
1783         MAX-ACCESS   read-only
1784         STATUS       current
1785         DESCRIPTION
1786            "
1787			This Object contains the Virtual Router Identifier.
1788            "
1789::= { wlsxSwitchTrapObjectsGroup 19 }
1790
1791wlsxVrMasterIp OBJECT-TYPE
1792         SYNTAX       IpAddress
1793         MAX-ACCESS   read-only
1794         STATUS       current
1795         DESCRIPTION
1796            "
1797			This Object contains the Master IP address.
1798            "
1799::= { wlsxSwitchTrapObjectsGroup 20 }
1800
1801wlsxVrrpOperState OBJECT-TYPE
1802         SYNTAX       INTEGER {
1803						initialize(1),
1804						backup(2),
1805		 				master(3)
1806					  }
1807
1808         MAX-ACCESS   read-only
1809         STATUS       current
1810         DESCRIPTION
1811            "
1812			This Object represents the VRRP operational state.
1813            "
1814::= { wlsxSwitchTrapObjectsGroup 21 }
1815
1816wlsxApTxPower OBJECT-TYPE
1817         SYNTAX       Integer32
1818         MAX-ACCESS   read-only
1819         STATUS       current
1820         DESCRIPTION
1821            "
1822				This Object contains the value of the AP Transmit Power.
1823            "
1824::= { wlsxSwitchTrapObjectsGroup 22 }
1825
1826wlsxESIServerGrpName OBJECT-TYPE
1827         SYNTAX       DisplayString(SIZE(0..64))
1828         MAX-ACCESS   read-only
1829         STATUS       current
1830         DESCRIPTION
1831            "
1832			This Object represents the External Services Interface
1833			(ESI) Server Group name
1834            "
1835::= { wlsxSwitchTrapObjectsGroup 23 }
1836
1837
1838wlsxESIServerName OBJECT-TYPE
1839         SYNTAX       DisplayString(SIZE(0..64))
1840         MAX-ACCESS   read-only
1841         STATUS       current
1842         DESCRIPTION
1843            "
1844			This Object represents the External Services Interface
1845			(ESI) Server name
1846            "
1847::= { wlsxSwitchTrapObjectsGroup 24 }
1848
1849wlsxESIServerIpaddress OBJECT-TYPE
1850         SYNTAX       IpAddress
1851         MAX-ACCESS   read-only
1852         STATUS       current
1853         DESCRIPTION
1854            "
1855			This Object represents the External Services Interface
1856			(ESI) Server
1857			IP Address
1858            "
1859::= { wlsxSwitchTrapObjectsGroup 25 }
1860
1861wlsxLicenseDaysRemaining OBJECT-TYPE
1862         SYNTAX       Integer32
1863         MAX-ACCESS   read-only
1864         STATUS       current
1865         DESCRIPTION
1866            "
1867			This Object represents number of the days remaining prior
1868			to a license expiry
1869            "
1870::= { wlsxSwitchTrapObjectsGroup 26 }
1871
1872wlsxSlotNumber OBJECT-TYPE
1873         SYNTAX       Integer32
1874         MAX-ACCESS   read-only
1875         STATUS       current
1876         DESCRIPTION
1877            "
1878				This Object is used in the traps to indicate a
1879				Line Card in the switch.  This value matches the value
1880				of sysExtCardSlot.
1881            "
1882::= { wlsxSwitchTrapObjectsGroup 27 }
1883
1884-- Trap Definitions.
1885
1886wlsxSwitchIPChanged NOTIFICATION-TYPE
1887	OBJECTS {wlsxSwitchIp}
1888    STATUS  current
1889    DESCRIPTION
1890			"A trap which indicates that the switch IP address has changed."
1891    ::= { wlsxSwitchTraps 1001 }
1892
1893wlsxSwitchRoleChange NOTIFICATION-TYPE
1894	OBJECTS {wlsxSwitchRole}
1895    STATUS  current
1896    DESCRIPTION
1897			"A trap which indicates that the role of the switch has changed in
1898			the Domain."
1899    ::= { wlsxSwitchTraps 1002 }
1900
1901-- Authentication Traps.
1902wlsxUserEntryCreated NOTIFICATION-TYPE
1903	OBJECTS {userPhyAddress}
1904    STATUS  current
1905    DESCRIPTION
1906			"
1907			A trap which indicates that a New user is created.
1908			"
1909    ::= { wlsxSwitchTraps 1003 }
1910
1911wlsxUserEntryDeleted NOTIFICATION-TYPE
1912	OBJECTS {userPhyAddress}
1913    STATUS  current
1914    DESCRIPTION
1915			"
1916			A trap which indicates that a user is deleted.
1917			"
1918    ::= { wlsxSwitchTraps 1004 }
1919
1920
1921wlsxUserEntryAuthenticated NOTIFICATION-TYPE
1922	OBJECTS {userPhyAddress, userName, userAuthenticationMethod, userRole}
1923    STATUS  current
1924    DESCRIPTION
1925			"
1926			A trap which indicates that a user is Authenticated.
1927			"
1928    ::= { wlsxSwitchTraps 1005 }
1929
1930
1931wlsxUserEntryDeAuthenticated NOTIFICATION-TYPE
1932	OBJECTS {userPhyAddress}
1933    STATUS  current
1934    DESCRIPTION
1935			"
1936			A trap which indicates that a user is Deauthenticated.
1937			"
1938    ::= { wlsxSwitchTraps 1006 }
1939
1940
1941wlsxUserAuthenticationFailed NOTIFICATION-TYPE
1942	OBJECTS {userPhyAddress}
1943    STATUS  current
1944    DESCRIPTION
1945			"
1946			A trap which indicates that a user authentication has failed.
1947			"
1948    ::= { wlsxSwitchTraps 1007 }
1949
1950
1951wlsxAuthServerReqTimedOut NOTIFICATION-TYPE
1952	OBJECTS {wlsxAuthServerName}
1953    STATUS  current
1954    DESCRIPTION
1955			"
1956			A trap which indicates that the authentication server request
1957			timed out.
1958			"
1959    ::= { wlsxSwitchTraps 1008 }
1960
1961wlsxAuthServerTimedOut NOTIFICATION-TYPE
1962	OBJECTS {wlsxAuthServerName, wlsxAuthServerTimeout}
1963    STATUS  current
1964    DESCRIPTION
1965			"
1966			A trap which indicates that the authentication server
1967			timed out.
1968			"
1969    ::= { wlsxSwitchTraps 1009 }
1970
1971wlsxAuthServerIsUp NOTIFICATION-TYPE
1972	OBJECTS {wlsxAuthServerName}
1973    STATUS  current
1974    DESCRIPTION
1975			"
1976			A trap which indicates that the authentication server is up.
1977			"
1978    ::= { wlsxSwitchTraps 1010 }
1979
1980wlsxAuthMaxUserEntries NOTIFICATION-TYPE
1981    STATUS  current
1982    DESCRIPTION
1983			"
1984			A trap which indicates that the User Entries table is full and
1985			cannot add any more entries.
1986			"
1987    ::= { wlsxSwitchTraps 1011 }
1988
1989wlsxAuthMaxAclEntries NOTIFICATION-TYPE
1990    STATUS  current
1991    DESCRIPTION
1992			"
1993			A trap which indicates that the Acl Entries table is full and
1994			cannot add any more entries.
1995			"
1996    ::= { wlsxSwitchTraps 1012 }
1997
1998wlsxAuthMaxBWContracts NOTIFICATION-TYPE
1999    STATUS  current
2000    DESCRIPTION
2001			"
2002			A trap which indicates that the switch reached the maximum number of
2003			configurable Bandwidth contracts.
2004			"
2005    ::= { wlsxSwitchTraps 1013 }
2006
2007-- Platform Traps.
2008
2009wlsxPowerSupplyFailure NOTIFICATION-TYPE
2010    STATUS  current
2011    DESCRIPTION
2012			"
2013			A trap which indicates that the power supply has failed.
2014			"
2015    ::= { wlsxSwitchTraps 1014 }
2016
2017wlsxFanFailure NOTIFICATION-TYPE
2018	OBJECTS {wlsxFanNumber}
2019    STATUS  current
2020    DESCRIPTION
2021			"
2022			A trap which indicates that the fan has failed.
2023			"
2024    ::= { wlsxSwitchTraps 1015 }
2025
2026wlsxOutOfRangeVoltage NOTIFICATION-TYPE
2027	OBJECTS {wlsxVoltageType, wlsxVoltageValue}
2028    STATUS  current
2029    DESCRIPTION
2030			"
2031			A trap which indicates that the switch received out of range
2032			voltage.
2033			"
2034    ::= { wlsxSwitchTraps 1016 }
2035
2036wlsxOutOfRangeTemperature NOTIFICATION-TYPE
2037	OBJECTS {wlsxTemperatureValue}
2038    STATUS  current
2039    DESCRIPTION
2040			"
2041			A trap which indicates that the Temperature is out of bounds.
2042			"
2043    ::= { wlsxSwitchTraps 1017 }
2044
2045
2046wlsxLCInserted NOTIFICATION-TYPE
2047	OBJECTS {wlsxLineCardNumber, wlsxSlotNumber}
2048    STATUS  current
2049    DESCRIPTION
2050			"
2051			A trap which indicates that a Line card is inserted.
2052			"
2053    ::= { wlsxSwitchTraps 1018 }
2054
2055wlsxSCInserted NOTIFICATION-TYPE
2056    STATUS  current
2057    DESCRIPTION
2058			"
2059			A trap which indicates that a supervisory card is inserted.
2060			"
2061    ::= { wlsxSwitchTraps 1019 }
2062
2063wlsxGBICInserted NOTIFICATION-TYPE
2064    STATUS  current
2065    DESCRIPTION
2066			"
2067			A trap which indicates that a GBIC is inserted in a line card.
2068			"
2069    ::= { wlsxSwitchTraps 1020 }
2070
2071wlsxProcessDied NOTIFICATION-TYPE
2072	OBJECTS {wlsxProcessName}
2073    STATUS  current
2074    DESCRIPTION
2075			"
2076			A trap which indicates that a process has died.
2077			"
2078    ::= { wlsxSwitchTraps 1021 }
2079
2080wlsxProcessExceedsMemoryLimits NOTIFICATION-TYPE
2081	OBJECTS {wlsxProcessName}
2082    STATUS  current
2083    DESCRIPTION
2084			"
2085			A trap which indicates that a process is consuming large
2086			amounts of memory.
2087			"
2088    ::= { wlsxSwitchTraps 1022 }
2089
2090wlsxLowOnFlashSpace NOTIFICATION-TYPE
2091    STATUS  current
2092    DESCRIPTION
2093			"
2094			A trap which indicates that the switch is running low on flash space.
2095			"
2096    ::= { wlsxSwitchTraps 1023 }
2097
2098wlsxLowMemory NOTIFICATION-TYPE
2099    STATUS  current
2100    DESCRIPTION
2101			"
2102			A trap which indicates that the system free memory is low.
2103			"
2104    ::= { wlsxSwitchTraps 1024 }
2105
2106wlsxFanTrayRemoved NOTIFICATION-TYPE
2107    STATUS  current
2108    DESCRIPTION
2109			"
2110			A trap which indicates that the fan tray is removed.
2111			"
2112    ::= { wlsxSwitchTraps 1025 }
2113
2114wlsxFanTrayInserted NOTIFICATION-TYPE
2115    STATUS  current
2116    DESCRIPTION
2117			"
2118			A trap which indicates that the fan tray is removed.
2119			"
2120    ::= { wlsxSwitchTraps 1026 }
2121
2122wlsxLCRemoved NOTIFICATION-TYPE
2123	OBJECTS {wlsxLineCardNumber, wlsxSlotNumber}
2124    STATUS  current
2125    DESCRIPTION
2126			"
2127			A trap which indicates that a Line card is removed.
2128			"
2129    ::= { wlsxSwitchTraps 1027 }
2130
2131wlsxSCRemoved NOTIFICATION-TYPE
2132    STATUS  current
2133    DESCRIPTION
2134			"
2135			A trap which indicates that a supervisory card is removed.
2136			"
2137    ::= { wlsxSwitchTraps 1028 }
2138
2139wlsxPowerSupplyMissing NOTIFICATION-TYPE
2140    STATUS  current
2141    DESCRIPTION
2142			"
2143			A trap which indicates that the power supply is missing.
2144			"
2145    ::= { wlsxSwitchTraps 1029 }
2146
2147-- Access point up/down traps.
2148
2149wlsxAccessPointIsUp NOTIFICATION-TYPE
2150	OBJECTS {apLocation, apIpAddress}
2151    STATUS  deprecated
2152    DESCRIPTION
2153			"
2154			A trap which indicates that an Access point at Location
2155			apLocation and Address apIpAddress is up.
2156			"
2157    ::= { wlsxSwitchTraps 1030 }
2158
2159wlsxAccessPointIsDown NOTIFICATION-TYPE
2160	OBJECTS {apLocation, apIpAddress}
2161    STATUS  deprecated
2162    DESCRIPTION
2163			"
2164			A trap which indicates that an Access point at Location
2165			apLocation and Address apIpAddress is down.
2166			"
2167    ::= { wlsxSwitchTraps 1031}
2168
2169
2170wlsxCoverageHoleDetected NOTIFICATION-TYPE
2171	OBJECTS {apLocation, apIpAddress, wlsxStationMacAddress}
2172    STATUS  current
2173    DESCRIPTION
2174			"
2175			A trap which indicates that an Access point at Location
2176			apLocation and Address apIpAddress has detected a Coverage Hole.
2177			"
2178    ::= { wlsxSwitchTraps 1032}
2179
2180
2181wlsxChannelChanged NOTIFICATION-TYPE
2182	OBJECTS {apLocation, apIpAddress, apCurrentChannel}
2183    STATUS  deprecated
2184    DESCRIPTION
2185			"
2186			A trap which indicates that an Access point at Location
2187			apLocation and Address apIpAddress has changed the channel to
2188			apCurrentChannel.
2189			"
2190    ::= { wlsxSwitchTraps 1033}
2191
2192wlsxStationAddedToBlackList NOTIFICATION-TYPE
2193	OBJECTS {wlsxStationMacAddress, wlsxStationBlackListReason}
2194    STATUS  current
2195    DESCRIPTION
2196			"
2197			A trap which indicates that a station with address
2198			wlsxStationMacAddress is black listed for
2199			wlsxStationBlackListReason reason.
2200			"
2201    ::= { wlsxSwitchTraps 1034}
2202
2203wlsxStationRemovedFromBlackList NOTIFICATION-TYPE
2204	OBJECTS {wlsxStationMacAddress}
2205    STATUS  current
2206    DESCRIPTION
2207			"
2208			A trap which indicates that a station with address
2209			wlsxStationMacAddress is removed from black list.
2210			"
2211    ::= { wlsxSwitchTraps 1035}
2212
2213wlsxIpSpoofingDetected NOTIFICATION-TYPE
2214	OBJECTS {wlsxSpoofedIpAddress, wlsxSpoofedOldPhyAddress, wlsxSpoofedNewPhyAddress}
2215    STATUS  current
2216    DESCRIPTION
2217			"
2218			A trap indicating that the switch detected IP Spoofing.
2219			"
2220    ::= { wlsxSwitchTraps 1036}
2221
2222wlsxDBCommunicationFailure NOTIFICATION-TYPE
2223	OBJECTS {wlsxDBName, wlsxDBUserName, wlsxDBIpAddress, wlsxDBType}
2224    STATUS  current
2225    DESCRIPTION
2226			"
2227			A trap to indicate that communication with Database failed.
2228			"
2229    ::= { wlsxSwitchTraps 1037}
2230
2231wlsxVrrpStateChange NOTIFICATION-TYPE
2232	OBJECTS {wlsxVrID, wlsxVrMasterIp, wlsxVrrpOperState}
2233    STATUS  current
2234    DESCRIPTION
2235			"
2236				A trap which indicates that VRRP State has changed on the switch.
2237			"
2238    ::= { wlsxSwitchTraps 1038}
2239
2240wlsxAPRadioAttributesChanged NOTIFICATION-TYPE
2241	OBJECTS {apLocation, apIpAddress, apCurrentChannel, wlsxApTxPower}
2242    STATUS  current
2243    DESCRIPTION
2244			"
2245			A trap which indicates changes in the Radio attributes of an
2246			Access Point at location apLocation and address apIpAddress.
2247			Ap channel is apCurrentChannel, and Transmit power is
2248			apTxPower.
2249			"
2250    ::= { wlsxSwitchTraps 1039}
2251
2252wlsxESIServerUp NOTIFICATION-TYPE
2253	OBJECTS {wlsxESIServerGrpName, wlsxESIServerName, wlsxESIServerIpaddress}
2254    STATUS  current
2255    DESCRIPTION
2256			"
2257			A trap which indicates that a ESI server <wlsxESIServerName> in
2258			group <wlsxESIServerGrpName> with <wlsxESIServerIpaddress> is up
2259			"
2260    ::= { wlsxSwitchTraps 1040}
2261
2262wlsxESIServerDown NOTIFICATION-TYPE
2263	OBJECTS {wlsxESIServerGrpName, wlsxESIServerName, wlsxESIServerIpaddress}
2264    STATUS  current
2265    DESCRIPTION
2266			"
2267			A trap which indicates that a ESI server <wlsxESIServerName> in
2268			group <wlsxESIServerGrpName> with <wlsxESIServerIpaddress> is down
2269			"
2270    ::= { wlsxSwitchTraps 1041}
2271
2272wlsxLicenseExpiry NOTIFICATION-TYPE
2273	OBJECTS {wlsxLicenseDaysRemaining}
2274    STATUS  current
2275    DESCRIPTION
2276			"
2277			A trap which indicates that one or more licenses on the
2278			switch will expire in <wlsxLicenseDaysRemaining> days
2279			"
2280    ::= { wlsxSwitchTraps 1042}
2281END
2282
2283