1-- ********************************************************************
2-- * Wireless LAN Access Point Management Base
3-- ********************************************************************
4
5	WG302 DEFINITIONS ::= BEGIN
6
7		IMPORTS
8			ifIndex
9				FROM RFC1213-MIB
10		OBJECT-GROUP
11				FROM SNMPv2-CONF
12			enterprises, IpAddress, Unsigned32, OBJECT-TYPE, MODULE-IDENTITY
13				FROM SNMPv2-SMI
14			DisplayString, RowStatus, TruthValue, MacAddress
15				FROM SNMPv2-TC;
16
17
18--
19-- Node definitions
20--
21
22-- The Enterprises Number
23		-- 1.3.6.1.4.1.4526
24		netgear OBJECT IDENTIFIER ::= { enterprises 4526 }
25
26
27		-- 1.3.6.1.4.1.4526.4
28		wireless OBJECT IDENTIFIER ::= { netgear 4 }
29
30
31-- ********************************************************************
32-- *  MODULE IDENTITY
33-- ********************************************************************
34		wg302 MODULE-IDENTITY
35			LAST-UPDATED "200512131300Z"		-- 12 22, 2005 at 13:00 GMT
36			ORGANIZATION
37				"NETGEAR Inc."
38			CONTACT-INFO
39				"4500 Great America Parkway
40				Santa Clara, California 95054
41				Phone: (408) 907-8000
42				Fax: (408) 907-8097
43				Web Site: http://www.netgear.com"
44			DESCRIPTION
45				"The MIB module for 802.11g ProSafe Wireless Access Point entities.
46				iso(1).org(3).dod(6).internet(1).private(4).
47				enterprises(1).netgear(4526).wireless(4).wg302(6)"
48			::= { wireless 6 }
49
50
51--   Wireless LAN Access Point Identifier
52--
53-- **********************************************************************
54-- *  MIB attribute OBJECT-TYPE definitions follow
55-- **********************************************************************
56-- **********************************************************************
57-- *  IP Setting  Table
58-- **********************************************************************
59		lanSettings OBJECT IDENTIFIER ::= { wg302 1 }
60
61
62		apName OBJECT-TYPE
63			SYNTAX DisplayString (SIZE (1..32))
64			MAX-ACCESS read-write
65			STATUS current
66			DESCRIPTION
67				"The field indicates the name of AP."
68			::= { lanSettings 1 }
69
70		sysMacAddress OBJECT-TYPE
71			SYNTAX MacAddress
72			MAX-ACCESS read-only
73			STATUS current
74			DESCRIPTION
75				"This field indicates the system MAC Address."
76			::= { lanSettings 2 }
77
78		sysVersion OBJECT-TYPE
79			SYNTAX DisplayString
80			MAX-ACCESS read-only
81			STATUS current
82			DESCRIPTION
83				"This field indicates the system firmware version."
84			::= { lanSettings 3 }
85
86		sysCountryRegion OBJECT-TYPE
87			SYNTAX INTEGER
88				{
89                                unitedArabEmirates(784),
90                                albania(8),
91                                armenia(51),
92                                argentina(32),
93                                austria(40),
94				australia(36),
95                                azerbaijan(31),
96                                belgium(56),
97                                bulgaria(100),
98                                bahrain(48),
99                                brunei(96),
100                                bolivia(68),
101                                brazil(76),
102                                belarus(112),
103                                belize(84),
104                                canada(124),
105                                switzerland(756),
106                                chile(152),
107                                china(156),
108                                colombia(170),
109                                costaRica(188),
110                                cyprus(196),
111                                czechRepublic(203),
112                                germany(276),
113                                denmark(208),
114                                dominicanRepublic(214),
115                                algeria(12),
116                                ecuador(218),
117                                estonia(233),
118                                egypt(818),
119                                spain(724),
120                                finland(246),
121                                france(250),
122                                unitedKingdom(826),
123                                georgia(268),
124                                greece(300),
125                                guatemala(320),
126                                hongkong(344),
127                                honduras(340),
128                                croatia(191),
129                                hungary(348),
130                                indonesia(360),
131                                ireland(372),
132                                israel(376),
133                                india(356),
134                                iran(364),
135                                iceland(352),
136                                italy(380),
137                                jordan(400),
138                                japan(392),
139                                northKorea(408),
140                                koreaRepublic(410),
141                                kuwait(414),
142                                kazakhstan(398),
143                                lebanon(422),
144                                liechtenstein(438),
145                                lithuania(440),
146                                luxembourg(442),
147                                latvia(428),
148                                marocco(504),
149                                monaco(492),
150                                macedonia(807),
151                                macau(446),
152                                malta(470),
153                                mexico(484),
154                                malaysia(458),
155                                netherlands(528),
156                                norway(578),
157                                newZealand(554),
158                                oman(512),
159                                panama(591),
160                                peru(604),
161                                philippines(608),
162                                pakistan(586),
163                                poland(616),
164                                puertoRico(630),
165                                portugal(620),
166                                qatar(634),
167                                romania(642),
168                                russia(643),
169                                saudiArabia(682),
170                                sweden(752),
171                                singapore(702),
172                                slovakRepublic(703),
173                                slovenia(705),
174                                elSalvador(222),
175                                syria(760),
176                                thailand(764),
177                                tunisia(788),
178                                turkey(792),
179                                trinidadandTobago(780),
180				taiwan(158),
181                                ukraine(804),
182                                unitedStates(840),
183                                uruguay(858),
184                                uzbekistan(860),
185                                venezuela(862),
186                                vietnam(704),
187                                yemen(887),
188                                southAfrica(710),
189                                zimbabwe(716)
190				}
191			MAX-ACCESS read-write
192			STATUS current
193			DESCRIPTION
194				"This attribute shall indicate the region of operation
195				for which which the wireless interface is intended.
196					  =752: sweden
197					  =826: unitedKingdom
198					  =840: usa"
199			::= { lanSettings 4 }
200
201
202		adminName OBJECT-TYPE
203			SYNTAX DisplayString (SIZE (0..32))
204			MAX-ACCESS not-accessible
205			STATUS obsolete
206			DESCRIPTION
207				"The field indicates the administrator name."
208			::= { lanSettings 5}
209
210
211		adminPasswd OBJECT-TYPE
212			SYNTAX DisplayString (SIZE (0..32))
213			MAX-ACCESS not-accessible
214			STATUS obsolete
215			DESCRIPTION
216				"The field indicates the administrator password.
217				The AP can be managed in such way as utility,telnet
218				and so on."
219			::= { lanSettings 6 }
220
221
222		dhcpStatus OBJECT-TYPE
223			SYNTAX INTEGER
224				{
225				static(0),
226				dhcpclient(1)
227				}
228			MAX-ACCESS read-write
229			STATUS current
230			DESCRIPTION
231				"This attribute shall indicate whether dhcp client status."
232			::= { lanSettings 7 }
233
234
235		ipAddr OBJECT-TYPE
236			SYNTAX IpAddress
237			MAX-ACCESS read-write
238			STATUS current
239			DESCRIPTION
240				"The field indicates the IP address of AP on the wireless
241				interface,when worked in router or router/bridge mode.
242				Ethernet and wireless interface share the same IP address,
243				when worked in bridge mode. "
244			::= { lanSettings 8 }
245
246
247		netmaskAddr OBJECT-TYPE
248			SYNTAX IpAddress
249			MAX-ACCESS read-write
250			STATUS current
251			DESCRIPTION
252				"The field indicates the netmask of AP on the wireless
253				interface,when worked in router or router/bridge mode.
254				Ethernet and wireless interface share the same netmask
255				address,when worked in bridge mode. "
256			::= { lanSettings 9 }
257
258
259		gatewayAddr OBJECT-TYPE
260			SYNTAX IpAddress
261			MAX-ACCESS read-write
262			STATUS current
263			DESCRIPTION
264				"The field indicates the gateway of AP on the wireless
265				interface,when worked in router or router/bridge mode.
266				Ethernet and wireless interface share the same gateway
267				address,when worked in bridge mode. "
268			::= { lanSettings 10 }
269
270
271		pridnsipAddr OBJECT-TYPE
272			SYNTAX IpAddress
273			MAX-ACCESS read-write
274			STATUS current
275			DESCRIPTION
276				"This attributes shall indicates the IP address of the primary DNS server.
277				***The value can only be set to an IP address in dot format."
278			::= { lanSettings 11 }
279
280
281		snddnsipAddr OBJECT-TYPE
282			SYNTAX IpAddress
283			MAX-ACCESS read-write
284			STATUS current
285			DESCRIPTION
286				"This attributes shall indicates the IP address of the secondary DNS server.
287				***The value can only be set to an IP address in dot format."
288			::= { lanSettings 12 }
289
290
291		spantree OBJECT-TYPE
292			SYNTAX TruthValue
293			MAX-ACCESS read-write
294			STATUS current
295			DESCRIPTION
296				"This attribute shall indicate spanning tree."
297			::= { lanSettings 13 }
298
299
300		vlanEnable OBJECT-TYPE
301			SYNTAX TruthValue
302			MAX-ACCESS read-only
303			STATUS current
304			DESCRIPTION
305				"This attribute shall indicate whether enable VLAN(802.1Q)."
306			::= { lanSettings 14 }
307
308
309		managementVlanID OBJECT-TYPE
310			SYNTAX INTEGER (0..4094)
311			MAX-ACCESS read-only
312			STATUS current
313			DESCRIPTION
314				"This attribute shall indicate the Management VLAN ID.  "
315			::= { lanSettings 15 }
316
317
318		untaggedVlanID OBJECT-TYPE
319			SYNTAX INTEGER (0..4094)
320			MAX-ACCESS read-only
321			STATUS current
322			DESCRIPTION
323				"This attribute shall indicate the Untagged VLAN ID.  "
324			::= { lanSettings 16}
325
326
327--   **********************************************************************
328-- *  Wireless Settings Table
329-- **********************************************************************
330		wlanSettingTable OBJECT-TYPE
331			SYNTAX SEQUENCE OF WlanSettingEntry
332			MAX-ACCESS not-accessible
333			STATUS current
334			DESCRIPTION
335				"wlanSettingsallow for multiple instances on an agent."
336			::= { wg302 2 }
337
338
339		wlanSettingEntry OBJECT-TYPE
340			SYNTAX WlanSettingEntry
341			MAX-ACCESS not-accessible
342			STATUS current
343			DESCRIPTION
344				"An entry in the wlanSettingTable.  It is possible for
345				there to be multiple AP interfaces on one agent,
346				each with its unique MAC address. The relationship
347				between an AP interface and an interface in the context
348				of the Internet-standard MIB is one-to-one.
349				As such, the value of an ifIndex object instance can be
350				directly used to identify corresponding instances of the
351				objects defined herein. "
352			INDEX { ifIndex }
353			::= { wlanSettingTable 1 }
354
355
356		WlanSettingEntry ::=
357			SEQUENCE {
358				operatemode
359					INTEGER,
360				radioEnable
361					TruthValue,
362				channel
363					INTEGER,
364				datarate
365					INTEGER,
366				wmmSupport
367					TruthValue,
368				beaconinterval
369					INTEGER,
370				rtsthreshold
371					INTEGER,
372				fraglength
373					INTEGER,
374				dtiminterval
375					INTEGER,
376				preambletype
377					INTEGER,
378				txpower
379					INTEGER,
380				superG
381					TruthValue,
382                                accessControlMode
383					INTEGER,
384				antenna
385					INTEGER
386			 }
387
388		operatemode OBJECT-TYPE
389			SYNTAX INTEGER
390				{
391				auto(0),
392				dot11b(2),
393				dot11g(3)
394				}
395			MAX-ACCESS read-only
396			STATUS current
397			DESCRIPTION
398				"This attribute shall indicate the desired wireless operating mode.
399				The option are:
400				auto -  Both 802.11g and 802.11b wireless stations can be used.
401				dot11b - All 802.11b wireless stations can be used.
402					 802.11g wireless stations can still be used
403					 if they can operate in 802.11b mode.
404				dot11g - Only 802.11g wireless stations can be used."
405			::= { wlanSettingEntry 1 }
406
407
408		radioEnable OBJECT-TYPE
409			SYNTAX TruthValue
410			MAX-ACCESS read-write
411			STATUS current
412			DESCRIPTION
413				"This attribute shall indicate whether the radio is enabled."
414			::= { wlanSettingEntry 2 }
415
416
417		channel OBJECT-TYPE
418			SYNTAX INTEGER (1..14)
419			MAX-ACCESS read-write
420			STATUS current
421			DESCRIPTION
422				"This attribute shall indicate the channel number to be
423				used."
424			::= { wlanSettingEntry 3 }
425
426
427		datarate OBJECT-TYPE
428			SYNTAX INTEGER
429				{
430				best(0),
431				rate1Mbps(1000),
432				rate2Mbps(2000),
433				rate5dot5Mbps(5500),
434				rate6Mbps(6000),
435				rate9Mbps(9000),
436				rate11Mbps(11000),
437				rate12Mbps(12000),
438				rate18Mbps(18000),
439				rate24Mbps(24000),
440				rate36Mbps(36000),
441				rate48Mbps(48000),
442				rate54Mbps(54000)
443				}
444			MAX-ACCESS read-only
445			STATUS current
446			DESCRIPTION
447				"This attribute shall indicate the transmite rate. When
448				the operatemode is:
449
450				   auto(0) - can set to 0:best, 1:1Mb/s, 2:2Mb/s,
451				             5.5:5.5Mb/s, 11:11 Mb/s, 6:6Mb/s, 9:9Mb/s,
452				             12:12Mb/s, 18:18Mb/s, 24:24Mb/s, 36:36Mb/s,
453				             48:48Mb/s, and 54:54Mb/s.
454
455				 dot11a(1) - can set to 0:best, 6:6Mb/s, 9:9Mb/s,
456				             12:12Mb/s, 18:18Mb/s, 24:24Mb/s,
457				             36:36Mb/s, 48:48Mb/s and 54:54Mb/s.
458
459				 dot11b(2) - can set to 0:best, 1:1Mb/s, 2:2Mb/s,
460				             5.5:5.5Mb/s, and 11:11 Mb/s.
461
462				 dot11g(3) - can set to 0:best, 6:6Mb/s, 9:9Mb/s,
463				             12:12Mb/s, 18:18Mb/s, 24:24Mb/s,
464				             36:36Mb/s, 48:48Mb/s and 54:54Mb/s."
465			::= { wlanSettingEntry 4 }
466
467
468		wmmSupport OBJECT-TYPE
469			SYNTAX TruthValue
470			MAX-ACCESS read-write
471			STATUS current
472			DESCRIPTION
473				"This field indicates whether support WMM(Wireless Multimedia)."
474			::= { wlanSettingEntry 5 }
475
476
477		beaconinterval OBJECT-TYPE
478			SYNTAX INTEGER (20..1000)
479                        UNITS "1024 microsecond"
480			MAX-ACCESS read-write
481			STATUS current
482			DESCRIPTION
483				"This attribute shall indicate the Beacon Interval."
484			::= { wlanSettingEntry 6 }
485
486
487		rtsthreshold OBJECT-TYPE
488			SYNTAX INTEGER (0..2346)
489			MAX-ACCESS read-write
490			STATUS current
491			DESCRIPTION
492				"This attribute shall indicate the RTS threshold."
493			::= { wlanSettingEntry 7 }
494
495
496		fraglength OBJECT-TYPE
497			SYNTAX INTEGER (256..2346)
498			MAX-ACCESS read-write
499			STATUS current
500			DESCRIPTION
501				"This attribute shall indicate the fragmentation threshold."
502			::= { wlanSettingEntry 8 }
503
504
505		dtiminterval OBJECT-TYPE
506			SYNTAX INTEGER (1..255)
507			MAX-ACCESS read-write
508			STATUS current
509			DESCRIPTION
510				"This attribute shall indicate the DTIM period."
511			::= { wlanSettingEntry 9 }
512
513
514		preambletype OBJECT-TYPE
515			SYNTAX INTEGER
516				{
517				long(0),
518				auto(1)
519				}
520			MAX-ACCESS read-only
521			STATUS current
522			DESCRIPTION
523				"This attribute shall indicate the preamble setting.
524                                 This setting is only applicable to 802.11b mode."
525			::= { wlanSettingEntry 10 }
526
527
528		txpower OBJECT-TYPE
529			SYNTAX INTEGER
530				{
531				full(0),
532				half(1),
533				quarter(2),
534				eighth(3),
535				min(4)
536				}
537			MAX-ACCESS read-write
538			STATUS current
539			DESCRIPTION
540				"This attribute shall indicate the tranmiste power."
541			::= { wlanSettingEntry 11 }
542
543
544		superG OBJECT-TYPE
545			SYNTAX TruthValue
546			MAX-ACCESS read-write
547			STATUS current
548			DESCRIPTION
549				"This attribute shall indicate whether super mode (super-A
550				for 11a radio, Super-G for 11g radio) is enabled."
551			::= { wlanSettingEntry 12 }
552
553                accessControlMode OBJECT-TYPE
554			SYNTAX INTEGER
555				{
556				disabled(0),
557				local(2),
558				server(3)
559				}
560			MAX-ACCESS read-only
561			STATUS current
562			DESCRIPTION
563				"The field indicates whether the access control list is
564				enabled and the source of the database of the access
565				control list."
566			::= { wlanSettingEntry 13 }
567
568		antenna OBJECT-TYPE
569			SYNTAX INTEGER
570				{
571				auto(0),
572				primary(1),
573				secondary(2)
574				}
575			MAX-ACCESS read-write
576			STATUS obsolete
577			DESCRIPTION
578				"This attribute shall indicate the tranmistted power."
579			::= { wlanSettingEntry 14 }
580
581
582		vapSetting OBJECT IDENTIFIER ::= { wg302 3 }
583
584
585		vapWepAndGlobalSettingTable OBJECT-TYPE
586			SYNTAX SEQUENCE OF VapWepAndGlobalSettingEntry
587			MAX-ACCESS not-accessible
588			STATUS current
589			DESCRIPTION
590				"VAP attributes setting table."
591			::= { vapSetting 1 }
592
593
594		vapWepAndGlobalSettingEntry OBJECT-TYPE
595			SYNTAX VapWepAndGlobalSettingEntry
596			MAX-ACCESS not-accessible
597			STATUS current
598			DESCRIPTION
599				" VAP attributes setting table."
600			INDEX { ifIndex }
601			::= { vapWepAndGlobalSettingTable 1 }
602
603
604		VapWepAndGlobalSettingEntry ::=
605			SEQUENCE {
606				wepKeyType
607					INTEGER,
608				key1
609					DisplayString,
610				key2
611					DisplayString,
612				key3
613					DisplayString,
614				key4
615					DisplayString,
616				wepPassPhrase
617					DisplayString
618			 }
619
620		wepKeyType OBJECT-TYPE
621			SYNTAX INTEGER
622				{
623				hex64(40),
624				hex128(104),
625				hex152(128),
626				}
627			MAX-ACCESS read-write
628			STATUS current
629			DESCRIPTION
630				"The field shall indicate the type of WEP key."
631			::= { vapWepAndGlobalSettingEntry 1 }
632
633
634		key1 OBJECT-TYPE
635			SYNTAX DisplayString (SIZE (0..40))
636			MAX-ACCESS read-write
637			STATUS current
638			DESCRIPTION
639				"The field indicates the key value of the first default wep key."
640			::= { vapWepAndGlobalSettingEntry 2 }
641
642
643		key2 OBJECT-TYPE
644			SYNTAX DisplayString (SIZE (0..40))
645			MAX-ACCESS read-write
646			STATUS current
647			DESCRIPTION
648				"The field indicates the key value of the second default wep key."
649			::= { vapWepAndGlobalSettingEntry 3 }
650
651
652		key3 OBJECT-TYPE
653			SYNTAX DisplayString (SIZE (0..40))
654			MAX-ACCESS read-write
655			STATUS current
656			DESCRIPTION
657				"The field indicates the key value of the third default wep key."
658			::= { vapWepAndGlobalSettingEntry 4 }
659
660
661		key4 OBJECT-TYPE
662			SYNTAX DisplayString (SIZE (0..40))
663			MAX-ACCESS read-write
664			STATUS current
665			DESCRIPTION
666				"The field indicates the key value of the fourth default wep key."
667			::= { vapWepAndGlobalSettingEntry 5 }
668
669
670		wepPassPhrase OBJECT-TYPE
671			SYNTAX DisplayString (SIZE (0..39))
672			MAX-ACCESS read-write
673			STATUS current
674			DESCRIPTION
675				"This attribute shall indicate WEP pass phrase, used to
676				generate four WEP keys."
677			::= { vapWepAndGlobalSettingEntry 6 }
678
679               vapSettingTable OBJECT-TYPE
680                        SYNTAX SEQUENCE OF VapSettingEntry
681                        MAX-ACCESS not-accessible
682                        STATUS current
683                        DESCRIPTION
684                                "VAP attributes setting table."
685                        ::= { vapSetting 2 }
686
687
688		vapSettingEntry OBJECT-TYPE
689			SYNTAX VapSettingEntry
690			MAX-ACCESS not-accessible
691			STATUS current
692			DESCRIPTION
693				"VAP attributes setting table."
694			INDEX { ifIndex, vapIndex }
695			::= { vapSettingTable 1 }
696
697
698		VapSettingEntry ::=
699			SEQUENCE {
700				vapIndex
701					INTEGER,
702				vapEnable
703					TruthValue,
704				ssid
705					DisplayString,
706				hidenetworkname
707					TruthValue,
708				vlanID
709					INTEGER,
710				securityProfileName
711					DisplayString,
712				presharekey
713					DisplayString,
714				authenticationtype
715					INTEGER,
716				encryption
717					INTEGER,
718				keyno
719					INTEGER,
720				wlanseparator
721					TruthValue
722			 }
723
724		vapIndex OBJECT-TYPE
725			SYNTAX INTEGER (1..8)
726			MAX-ACCESS read-only
727			STATUS current
728			DESCRIPTION
729				"Description."
730			::= { vapSettingEntry 1 }
731
732
733		vapEnable OBJECT-TYPE
734			SYNTAX TruthValue
735			MAX-ACCESS read-write
736			STATUS current
737			DESCRIPTION
738				"This attribute shall indicate whether enable VAP.
739				"
740			::= { vapSettingEntry 2 }
741
742
743		ssid OBJECT-TYPE
744			SYNTAX DisplayString (SIZE (0..32))
745			MAX-ACCESS read-write
746			STATUS current
747			DESCRIPTION
748				"This attribute shall indicate SSID.Its length can't be large than 33 ."
749			::= { vapSettingEntry 3 }
750
751
752		hidenetworkname OBJECT-TYPE
753			SYNTAX TruthValue
754			MAX-ACCESS read-write
755			STATUS current
756			DESCRIPTION
757				"This attribute shall indicate whether broadcast wireless network Name (SSID)."
758			::= { vapSettingEntry 4 }
759
760
761		vlanID OBJECT-TYPE
762			SYNTAX INTEGER (1..4094)
763			MAX-ACCESS read-write
764			STATUS current
765			DESCRIPTION
766				"This attribute shall indicate the VLAN ID. "
767			::= { vapSettingEntry 5 }
768
769
770		securityProfileName OBJECT-TYPE
771			SYNTAX DisplayString (SIZE (1..32))
772			MAX-ACCESS read-write
773			STATUS current
774			DESCRIPTION
775				"Description."
776			::= { vapSettingEntry 6 }
777
778
779		presharekey OBJECT-TYPE
780			SYNTAX DisplayString (SIZE (0..63))
781			MAX-ACCESS read-write
782			STATUS current
783			DESCRIPTION
784				"This attribute shall indicate preshare key."
785			::= { vapSettingEntry 7 }
786
787
788		authenticationtype OBJECT-TYPE
789			SYNTAX INTEGER
790				{
791				open(0),
792				shared(1),
793				legacy802dot1x(2),
794				wpa(4),
795				wpa2(8),
796				wpaORwpa2(12),
797				wpapsk(16),
798				wpa2psk(32),
799				wpapskORwpa2psk(48)
800				}
801			MAX-ACCESS read-write
802			STATUS current
803			DESCRIPTION
804				"The field indicates how to authenticate the station."
805			::= { vapSettingEntry 8 }
806
807
808		encryption OBJECT-TYPE
809			SYNTAX INTEGER
810				{
811				none(0),
812				wep(1),
813				tkip(2),
814				aes(4),
815				tkipORaes(6)
816				}
817			MAX-ACCESS read-write
818			STATUS current
819			DESCRIPTION
820				"The field indicates how to encryption the station."
821			::= { vapSettingEntry 9 }
822
823
824		keyno OBJECT-TYPE
825			SYNTAX INTEGER (1..4)
826			MAX-ACCESS read-write
827			STATUS current
828			DESCRIPTION
829				"The field indicates the number of default wep key."
830			::= { vapSettingEntry 10 }
831
832
833		wlanseparator OBJECT-TYPE
834			SYNTAX TruthValue
835			MAX-ACCESS read-write
836			STATUS current
837			DESCRIPTION
838				"This attribute shall indicate whether enable No see."
839			::= { vapSettingEntry 11 }
840
841
842--  *********************************************************
843-- Remote Settings Information
844-- *********************************************************
845		remoteSettings OBJECT IDENTIFIER ::= { wg302 4 }
846
847
848		sshd OBJECT-TYPE
849			SYNTAX TruthValue
850			MAX-ACCESS read-write
851			STATUS current
852			DESCRIPTION
853				"This attribute shall indicate whether the SSH is enabled."
854			::= { remoteSettings 1 }
855
856
857		snmpenable OBJECT-TYPE
858			SYNTAX TruthValue
859			MAX-ACCESS read-only
860			STATUS current
861			DESCRIPTION
862				"This attribute shall indicate whether the SNMP agent is
863				enabled."
864			::= { remoteSettings 2 }
865
866
867		trapServerIP OBJECT-TYPE
868			SYNTAX IpAddress
869			MAX-ACCESS read-write
870			STATUS current
871			DESCRIPTION
872				"The field indicates the  trap server IP address.
873				***The value can only be set to an IP address in dot
874				format."
875			::= { remoteSettings 3 }
876
877                 trapServerCommunity OBJECT-TYPE
878                        SYNTAX DisplayString (SIZE (1..31))
879                        MAX-ACCESS read-write
880                        STATUS current
881                        DESCRIPTION
882                                "The field indicates the trap server community name.
883                                ***The value can only be set to 1 to 32 readable string."
884                        ::= { remoteSettings 4 }
885
886
887
888		readOnlyCommunity OBJECT-TYPE
889			SYNTAX DisplayString (SIZE (1..31))
890			MAX-ACCESS read-write
891			STATUS current
892			DESCRIPTION
893				"The field indicates the read only community name.
894				***The value can only be set to 1 to 32 readable string."
895			::= { remoteSettings 5 }
896
897
898		readWriteCommunity OBJECT-TYPE
899			SYNTAX DisplayString (SIZE (1..31))
900			MAX-ACCESS read-write
901			STATUS current
902			DESCRIPTION
903				"The field indicates the read write community name.
904				***The value can only be set to 1 to 32 readable string."
905			::= { remoteSettings 6 }
906
907
908--  ***********************************************************************
909-- *Statistic
910-- ***********************************************************************
911		statistic OBJECT IDENTIFIER ::= { wg302 5 }
912
913
914		wiredethernetstat OBJECT IDENTIFIER ::= { statistic 1 }
915
916
917		lanrecvpacket OBJECT-TYPE
918			SYNTAX Unsigned32
919			MAX-ACCESS read-only
920			STATUS current
921			DESCRIPTION
922				"the field indicates the sum of received packets."
923			::= { wiredethernetstat 1 }
924
925
926		lantranspacket OBJECT-TYPE
927			SYNTAX Unsigned32
928			MAX-ACCESS read-only
929			STATUS current
930			DESCRIPTION
931				"the field indicates the sum of transmitted packets."
932			::= { wiredethernetstat 2 }
933
934
935		lanrecvbytes OBJECT-TYPE
936			SYNTAX Unsigned32
937			MAX-ACCESS read-only
938			STATUS current
939			DESCRIPTION
940				"the field indicates the sum of received bytes."
941			::= { wiredethernetstat 3 }
942
943
944		lantransbytes OBJECT-TYPE
945			SYNTAX Unsigned32
946			MAX-ACCESS read-only
947			STATUS current
948			DESCRIPTION
949				"the field indicates the sum of transmitted bytes."
950			::= { wiredethernetstat 4 }
951
952
953		wirelessStatTable OBJECT-TYPE
954			SYNTAX SEQUENCE OF WirelessStatEntry
955			MAX-ACCESS not-accessible
956			STATUS current
957			DESCRIPTION
958				"Description."
959			::= { statistic 2 }
960
961
962		wirelessStatEntry OBJECT-TYPE
963			SYNTAX WirelessStatEntry
964			MAX-ACCESS not-accessible
965			STATUS current
966			DESCRIPTION
967				"Description."
968			INDEX { ifIndex }
969			::= { wirelessStatTable 1 }
970
971
972		WirelessStatEntry ::=
973			SEQUENCE {
974				wlanrecvunicastpacket
975					Unsigned32,
976				wlantransunicastpacket
977					Unsigned32,
978				wlanrecvbroadcastpacket
979					Unsigned32,
980				wlantransbroadcastpacket
981					Unsigned32,
982				wlanrecvmulticastpacket
983					Unsigned32,
984				wlantransmulticastpacket
985					Unsigned32,
986				wlanrecvpacket
987					Unsigned32,
988				wlantranspacket
989					Unsigned32,
990				wlanrecvbytes
991					Unsigned32,
992				wlantransbytes
993					Unsigned32
994			 }
995
996		wlanrecvunicastpacket OBJECT-TYPE
997			SYNTAX Unsigned32
998			MAX-ACCESS read-only
999			STATUS current
1000			DESCRIPTION
1001				"the field indicates the sum of received unicast packets."
1002			::= { wirelessStatEntry 1 }
1003
1004
1005		wlantransunicastpacket OBJECT-TYPE
1006			SYNTAX Unsigned32
1007			MAX-ACCESS read-only
1008			STATUS current
1009			DESCRIPTION
1010				"the field indicates the sum of transmitted unicast packets."
1011			::= { wirelessStatEntry 2 }
1012
1013
1014		wlanrecvbroadcastpacket OBJECT-TYPE
1015			SYNTAX Unsigned32
1016			MAX-ACCESS read-only
1017			STATUS current
1018			DESCRIPTION
1019				"the field indicates the sum of received broadcast packets."
1020			::= { wirelessStatEntry 3 }
1021
1022
1023		wlantransbroadcastpacket OBJECT-TYPE
1024			SYNTAX Unsigned32
1025			MAX-ACCESS read-only
1026			STATUS current
1027			DESCRIPTION
1028				"the field indicates the sum of transmitted broadcast packets."
1029			::= { wirelessStatEntry 4 }
1030
1031
1032		wlanrecvmulticastpacket OBJECT-TYPE
1033			SYNTAX Unsigned32
1034			MAX-ACCESS read-only
1035			STATUS current
1036			DESCRIPTION
1037				"the field indicates the sum of received multicast packets."
1038			::= { wirelessStatEntry 5 }
1039
1040
1041		wlantransmulticastpacket OBJECT-TYPE
1042			SYNTAX Unsigned32
1043			MAX-ACCESS read-only
1044			STATUS current
1045			DESCRIPTION
1046				"the field indicates the sum of transmitted multicast packets."
1047			::= { wirelessStatEntry 6 }
1048
1049
1050		wlanrecvpacket OBJECT-TYPE
1051			SYNTAX Unsigned32
1052			MAX-ACCESS read-only
1053			STATUS current
1054			DESCRIPTION
1055				"the field indicates the sum of received packets."
1056			::= { wirelessStatEntry 7 }
1057
1058
1059		wlantranspacket OBJECT-TYPE
1060			SYNTAX Unsigned32
1061			MAX-ACCESS read-only
1062			STATUS current
1063			DESCRIPTION
1064				"the field indicates the sum of transmitted packets."
1065			::= { wirelessStatEntry 8 }
1066
1067
1068		wlanrecvbytes OBJECT-TYPE
1069			SYNTAX Unsigned32
1070			MAX-ACCESS read-only
1071			STATUS current
1072			DESCRIPTION
1073				"the field indicates the sum of received bytes."
1074			::= { wirelessStatEntry 9 }
1075
1076
1077		wlantransbytes OBJECT-TYPE
1078			SYNTAX Unsigned32
1079			MAX-ACCESS read-only
1080			STATUS current
1081			DESCRIPTION
1082				"the field indicates the sum of transmitted bytes."
1083			::= { wirelessStatEntry 10 }
1084
1085
1086--   **********************************************************************
1087-- *  Station List Table
1088-- **********************************************************************
1089		stationListTable OBJECT-TYPE
1090			SYNTAX SEQUENCE OF StationListEntry
1091			MAX-ACCESS not-accessible
1092			STATUS current
1093			DESCRIPTION
1094				"stationList Table show multiple instances on an agent."
1095			::= { wg302 6 }
1096
1097
1098	stationListEntry OBJECT-TYPE
1099			SYNTAX StationListEntry
1100			MAX-ACCESS not-accessible
1101			STATUS current
1102			DESCRIPTION
1103				"An entry in the wlanClientsTable. It is possible for there
1104				to be multiple AP interfaces on one agent, each with its
1105				unique MAC address. The relationship between an AP
1106				interface and an interface in the context of the Internet-
1107				standard MIB is one-to-one. As such, the value of an
1108				ifIndex object instance can be directly used to identify
1109				corresponding instances of the objects defined herein. "
1110			INDEX { ifIndex, macaddress }
1111			::= { stationListTable 1 }
1112
1113
1114		StationListEntry ::=
1115			SEQUENCE {
1116				macaddress
1117					MacAddress,
1118				clientIpaddr
1119					IpAddress,
1120				clientWirelessMode
1121					INTEGER,
1122				stationstatus
1123					INTEGER
1124			 }
1125
1126
1127
1128		macaddress OBJECT-TYPE
1129			SYNTAX MacAddress
1130			MAX-ACCESS read-only
1131			STATUS current
1132			DESCRIPTION
1133				"This attribute shall indicate MAC address of the
1134				associated stationID."
1135			::= { stationListEntry 1 }
1136
1137
1138		clientIpaddr OBJECT-TYPE
1139			SYNTAX IpAddress
1140			MAX-ACCESS read-only
1141			STATUS current
1142			DESCRIPTION
1143				"This attribute shall indicate Ip address of the associated stationID."
1144			::= { stationListEntry 2 }
1145
1146
1147		clientWirelessMode OBJECT-TYPE
1148			SYNTAX INTEGER
1149				{
1150				dot11a(1),
1151				dot11b(2),
1152				dot11g(3)
1153				}
1154			MAX-ACCESS read-only
1155			STATUS current
1156			DESCRIPTION
1157				"This attribute shall indicate the wireless mode of the
1158				associated stationID."
1159			::= { stationListEntry 3 }
1160
1161
1162		stationstatus OBJECT-TYPE
1163			SYNTAX INTEGER
1164				{
1165				none(0),
1166				authenticating(1),
1167				authenticated(2),
1168				associating(3),
1169				associated(4)
1170				}
1171			MAX-ACCESS read-only
1172			STATUS current
1173			DESCRIPTION
1174				"This attribute shall indicate the status of station."
1175			::= { stationListEntry 4 }
1176
1177
1178--  *********************************************************
1179-- AP Operation Mode
1180-- *********************************************************
1181-- ap mode
1182		wlanWdsTable OBJECT-TYPE
1183			SYNTAX SEQUENCE OF WlanWdsEntry
1184			MAX-ACCESS not-accessible
1185			STATUS current
1186			DESCRIPTION
1187				"WDS attributes in tablular form to allow for multiple
1188				instances on an agent."
1189			::= { wg302 7}
1190
1191
1192		wlanWdsEntry OBJECT-TYPE
1193			SYNTAX WlanWdsEntry
1194			MAX-ACCESS not-accessible
1195			STATUS current
1196			DESCRIPTION
1197				"An entry in the wlanWdsTable. It is possible for there to
1198				be multiple AP interfaces on one agent, each with its
1199				unique MAC address. The relationship between an AP
1200				interface and an interface in the context of the Internet-
1201				standard MIB is one-to-one. As such, the value of an
1202				ifIndex object instance can be directly used to identify
1203				corresponding instances of the objects defined herein. "
1204			INDEX { ifIndex }
1205			::= { wlanWdsTable 1 }
1206
1207
1208		WlanWdsEntry ::=
1209			SEQUENCE {
1210				apmode
1211					INTEGER,
1212				ptpremotemacaddress
1213					MacAddress,
1214				pxpremotemacaddress1
1215					MacAddress,
1216				pxpremotemacaddress2
1217					MacAddress,
1218				pxpremotemacaddress3
1219					MacAddress,
1220				pxpremotemacaddress4
1221					MacAddress,
1222				repremotemacaddress1
1223					MacAddress,
1224				repremotemacaddress2
1225					MacAddress,
1226				repremotemacaddress3
1227					MacAddress,
1228				repremotemacaddress4
1229					MacAddress,
1230			 localMacAddress
1231					MacAddress
1232        }
1233
1234
1235		apmode OBJECT-TYPE
1236			SYNTAX INTEGER
1237				{
1238				ap(0),
1239				ptp(2),
1240				ptp-ap(3),
1241				pxp(4),
1242				pxp-ap(5),
1243				repeater(6)
1244				}
1245			MAX-ACCESS read-only
1246			STATUS current
1247			DESCRIPTION
1248				"This a command field for conntrol AP operation mode. "
1249			::= { wlanWdsEntry 1 }
1250
1251
1252		ptpremotemacaddress OBJECT-TYPE
1253			SYNTAX MacAddress
1254			MAX-ACCESS read-write
1255			STATUS current
1256			DESCRIPTION
1257				"This attribute shall indicate the stationID."
1258			::= { wlanWdsEntry 2 }
1259
1260
1261		pxpremotemacaddress1 OBJECT-TYPE
1262			SYNTAX MacAddress
1263			MAX-ACCESS read-write
1264			STATUS current
1265			DESCRIPTION
1266				"This attribute shall indicate the stationID."
1267			::= { wlanWdsEntry 3 }
1268
1269
1270		pxpremotemacaddress2 OBJECT-TYPE
1271			SYNTAX MacAddress
1272			MAX-ACCESS read-write
1273			STATUS current
1274			DESCRIPTION
1275				"This attribute shall indicate the stationID."
1276			::= { wlanWdsEntry 4 }
1277
1278
1279		pxpremotemacaddress3 OBJECT-TYPE
1280			SYNTAX MacAddress
1281			MAX-ACCESS read-write
1282			STATUS current
1283			DESCRIPTION
1284				"This attribute shall indicate the stationID."
1285			::= { wlanWdsEntry 5 }
1286
1287
1288		pxpremotemacaddress4 OBJECT-TYPE
1289			SYNTAX MacAddress
1290			MAX-ACCESS read-write
1291			STATUS current
1292			DESCRIPTION
1293				"This attribute shall indicate the stationID."
1294			::= { wlanWdsEntry 6 }
1295
1296
1297		repremotemacaddress1 OBJECT-TYPE
1298			SYNTAX MacAddress
1299			MAX-ACCESS read-write
1300			STATUS current
1301			DESCRIPTION
1302				"This attribute shall indicate the stationID."
1303			::= { wlanWdsEntry 7 }
1304
1305
1306		repremotemacaddress2 OBJECT-TYPE
1307			SYNTAX MacAddress
1308			MAX-ACCESS read-write
1309			STATUS current
1310			DESCRIPTION
1311				"This attribute shall indicate the stationID."
1312			::= { wlanWdsEntry 8 }
1313
1314
1315		repremotemacaddress3 OBJECT-TYPE
1316			SYNTAX MacAddress
1317			MAX-ACCESS read-write
1318			STATUS current
1319			DESCRIPTION
1320				"This attribute shall indicate the stationID."
1321			::= { wlanWdsEntry 9 }
1322
1323
1324		repremotemacaddress4 OBJECT-TYPE
1325			SYNTAX MacAddress
1326			MAX-ACCESS read-write
1327			STATUS current
1328			DESCRIPTION
1329				"This attribute shall indicate the stationID."
1330			::= { wlanWdsEntry 10 }
1331
1332                localMacAddress OBJECT-TYPE
1333			SYNTAX MacAddress
1334			MAX-ACCESS read-only
1335			STATUS current
1336			DESCRIPTION
1337				"This attribute shall indicate the local MAC Address."
1338			::= { wlanWdsEntry 11 }
1339
1340--  *********************************************************
1341-- 802.1x Information
1342-- *********************************************************
1343	info802dot1x OBJECT IDENTIFIER ::= { wg302 8 }
1344
1345
1346		authinfo OBJECT IDENTIFIER ::= { info802dot1x 1 }
1347
1348
1349		priradipaddr OBJECT-TYPE
1350			SYNTAX IpAddress
1351			MAX-ACCESS read-write
1352			STATUS current
1353			DESCRIPTION
1354				"Internet address of the Primary Radius Server."
1355			::= { authinfo 1 }
1356
1357
1358		priradport OBJECT-TYPE
1359			SYNTAX INTEGER (0..65535)
1360			MAX-ACCESS read-write
1361			STATUS current
1362			DESCRIPTION
1363				"Port number used for authentication at the
1364				Primary Radius Server."
1365			::= { authinfo 2 }
1366
1367
1368		priradsharedsecret OBJECT-TYPE
1369			SYNTAX DisplayString (SIZE (0..127))
1370			MAX-ACCESS read-write
1371			STATUS current
1372			DESCRIPTION
1373				"Secret shared between NAS and the Primary Radius Server."
1374			::= { authinfo 3 }
1375
1376		sndradipaddr OBJECT-TYPE
1377			SYNTAX IpAddress
1378			MAX-ACCESS read-write
1379			STATUS current
1380			DESCRIPTION
1381				"Internet address of the Second Radius Server."
1382			::= { authinfo 4 }
1383
1384		sndradport OBJECT-TYPE
1385			SYNTAX INTEGER (0..65535)
1386			MAX-ACCESS read-write
1387			STATUS current
1388			DESCRIPTION
1389				"Port number used for authentication at
1390				the Second Radius Server."
1391			::= { authinfo 5 }
1392
1393
1394		sndradsharedsecret OBJECT-TYPE
1395			SYNTAX DisplayString (SIZE (0..127))
1396			MAX-ACCESS read-write
1397			STATUS current
1398			DESCRIPTION
1399				"Secret shared between NAS and the Second Radius Server."
1400			::= { authinfo 6 }
1401
1402
1403                --    The primary account RADIUS server setting.
1404		accntinfo OBJECT IDENTIFIER ::= { info802dot1x 2 }
1405
1406
1407		priacntipaddr OBJECT-TYPE
1408			SYNTAX IpAddress
1409			MAX-ACCESS read-write
1410			STATUS current
1411			DESCRIPTION
1412				"IP address of the Primary radius account server."
1413			::= { accntinfo 1 }
1414
1415
1416		priacntport OBJECT-TYPE
1417			SYNTAX INTEGER  (0..65535)
1418			MAX-ACCESS read-write
1419			STATUS current
1420			DESCRIPTION
1421				"port number of the Primary radius account server."
1422			::= { accntinfo 2 }
1423
1424
1425		priacntsharedsecret OBJECT-TYPE
1426			SYNTAX DisplayString (SIZE (0..127))
1427			MAX-ACCESS read-write
1428			STATUS current
1429			DESCRIPTION
1430				"password used by the ap to connect to the Primary radius account serve."
1431			::= { accntinfo 3 }
1432
1433		sndacntipaddr OBJECT-TYPE
1434			SYNTAX IpAddress
1435			MAX-ACCESS read-write
1436			STATUS current
1437			DESCRIPTION
1438				"IP address of the Second radius account server."
1439			::= { accntinfo 4 }
1440
1441
1442		sndacntport OBJECT-TYPE
1443			SYNTAX INTEGER (0..65535)
1444			MAX-ACCESS read-write
1445			STATUS current
1446			DESCRIPTION
1447				"port number of the Second radius account server."
1448			::= { accntinfo 5 }
1449
1450
1451		sndacntsharedsecret OBJECT-TYPE
1452			SYNTAX DisplayString (SIZE (0..127))
1453			MAX-ACCESS read-write
1454			STATUS current
1455			DESCRIPTION
1456				"password used by the ap to connect to the Second radius account server."
1457			::= { accntinfo 6 }
1458
1459
1460--  acntcurloginstat 	OBJECT-TYPE
1461-- SYNTAX TruthValue
1462-- MAX-ACCESS read-write
1463-- STATUS current
1464-- DESCRIPTION
1465-- 	"Current Login Status."
1466-- ::= { accntinfo 7 }
1467-- *********************************************************
1468-- Command Information
1469-- *********************************************************
1470-- Command information
1471          userCommand OBJECT IDENTIFIER ::= { wg302 9 }
1472
1473
1474		resetAP OBJECT-TYPE
1475			SYNTAX INTEGER
1476			MAX-ACCESS read-write
1477			STATUS current
1478			DESCRIPTION
1479			"This a command field for conntrol AP action. Write value 1
1480				 to reset the AP."
1481			::= { userCommand 1 }
1482
1483
1484--   **********************************************************************
1485-- *  System Basic Setting  Table 2005/12/22
1486-- **********************************************************************
1487         timeSettings OBJECT IDENTIFIER ::= { wg302 10 }
1488
1489
1490		currenttime OBJECT-TYPE
1491			SYNTAX DisplayString (SIZE (1..20))
1492			MAX-ACCESS read-only
1493			STATUS current
1494			DESCRIPTION
1495				"This field indicates the current system time in a format:
1496				YYYY/MM/DD hh:mm:ss."
1497			::= { timeSettings 1 }
1498
1499
1500		timezone OBJECT-TYPE
1501			SYNTAX INTEGER
1502			{
1503			afghanistan(0),
1504			albania(1),
1505			algeria(2),
1506			american-samoa(3),
1507			andorra(4),
1508			angola(5),
1509			anguilla(6),
1510			antigua-and-barbuda(7),
1511			argentina(8),
1512			armenia(9),
1513			aruba(10),
1514			australia-lordHoweIsland(11),
1515			australia-new-south-wales-capitol-territory-victoria(12),
1516			australia-northern-territory(13),
1517			australia-queensland(14),
1518			australia-south-australia-and-broken-hill(15),
1519			australia-tasmania(16),
1520			australia-western(17),
1521			austria(18),
1522			azerbaijan(19),
1523			bahamas(20),
1524			bahrain(21),
1525			bangladesh(22),
1526			barbados(23),
1527			belarus(24),
1528			belgium(25),
1529			belize(26),
1530			benin(27),
1531			bermuda(28),
1532			bhutan(29),
1533			bolivia(30),
1534			bonaire(31),
1535			bosnia-herzegovina(32),
1536			botswana(33),
1537			brazil-east-including-all-coast-and-brasilia(34),
1538			brazil-fernando-de-noronha(35),
1539			brazil-trinity-of-acre(36),
1540			brazil-west(37),
1541			british-virgin-islands(38),
1542			brunei(39),
1543			bulgaria(40),
1544			burkina-faso(41),
1545			burma(42),
1546			burundi(43),
1547			cambodia(44),
1548			cameroon(45),
1549			canada-atlantic(46),
1550			canada-central(47),
1551			canada-eastern(48),
1552			canada-mountain(49),
1553			canada-newfoundland(50),
1554			canada-pacific-and-yukon(51),
1555			canada-saskatchewan(52),
1556			cape-verde(53),
1557			cayman-islands(54),
1558			central-african-republic(55),
1559			chad(56),
1560			chile(57),
1561			chile-easter-island(58),
1562			china(59),
1563			christmas-islands(60),
1564			cocos-keeling-islands(61),
1565			colombia(62),
1566			congo(63),
1567			cook-islands(64),
1568			costa-rica(65),
1569			cote-d-ivoire(66),
1570			croatia(67),
1571			cuba(68),
1572			curacao(69),
1573			cyprus(70),
1574			czech-republic(71),
1575			denmark(72),
1576			djibouti(73),
1577			dominica(74),
1578			the-dominican-republic(75),
1579			ecuador(76),
1580			ecuador-galapagos-islands(77),
1581			egypt(78),
1582			el-salvador(79),
1583			equatorial-guinea(80),
1584			eritrea(81),
1585			estonia(82),
1586			ethiopia(83),
1587			faroe-islands(84),
1588			fiji(85),
1589			finland(86),
1590			france(87),
1591			french-guiana(88),
1592			french-polynesia(89),
1593			gabon(90),
1594			the-gambia(91),
1595			georgia(92),
1596			germany(93),
1597			ghana(94),
1598			gibraltar(95),
1599			greece(96),
1600			greenland-scorsbysund(97),
1601			greenland-thule(98),
1602			grenada(99),
1603			guadeloupe(100),
1604			guam(101),
1605			guatemala(102),
1606			guinea-bissau(103),
1607			guyana(104),
1608			haiti(105),
1609			hawaii(106),
1610			honduras(107),
1611			hong-kong(108),
1612			hungary(109),
1613			iceland(110),
1614			india(111),
1615			indonesia-central(112),
1616			indonesia-east(113),
1617			indonesia-west(114),
1618			iran(115),
1619			iraq(116),
1620			ireland(117),
1621			israel(118),
1622			italy(119),
1623			jamaica(120),
1624			japan(121),
1625			johnston-islands(122),
1626			jordan(123),
1627			juan-fernandez-islands(124),
1628			kazakhstan(125),
1629			kenya(126),
1630			kiribati(127),
1631			kuwait(128),
1632			kyrgyzstan(129),
1633			laos(130),
1634			latvia(131),
1635			lebanon(132)
1636			leeward-islands(133),
1637			lesotho(134),
1638			liberia(135),
1639			libya(136),
1640			liechtenstein(137),
1641			lithuania(138),
1642			luxembourg(139),
1643			macao(140),
1644			macedonia(141),
1645			madagascar(142),
1646			malawi(143),
1647			malaysia(144),
1648			maldives(145),
1649			mali(146),
1650			malta(147),
1651			mariana-Islands(148),
1652			martinique(149),
1653			mauritania(150),
1654			mauritius(151),
1655			mayotte(152),
1656			mexico(153),
1657			mexico-baj-n(154),
1658			mexico-baj-s(155),
1659			midway-islands(156),
1660			moldova(157),
1661			monaco(158),
1662			mongolia(159),
1663			montenegro(160),
1664			montserrat(161),
1665			morocco(162),
1666			mozambique(163),
1667			namibia(164),
1668			nauru(165),
1669			nepal(166),
1670			the-netherlands-antilles(167),
1671			the-netherlands(168),
1672			new-caledonia(169),
1673			new-hebrides(170),
1674			new-zealand9(171),
1675			new-zealand-chatham-island(172),
1676			nicaragua(173),
1677			niger(174),
1678			nigeria(175),
1679			niue-islands(176),
1680			norfolk-island(177),
1681			north-korea(178),
1682			norway(179),
1683			oman(180),
1684			pakistan(181),
1685			palau(182),
1686			panama(183),
1687			papua-new-guinea(184),
1688			paraguay(185),
1689			peru(186),
1690			philippines(187),
1691			pitcairn-island(188),
1692			poland(189),
1693			portugal-azores(190),
1694			portugal-madeira(191),
1695			puerto-rico(192),
1696			qatar(193),
1697			reunion(194),
1698			romania(195),
1699			russia-moscow(196),
1700			russian-fed-zone-1-kaliningrad(197),
1701			russian-fed-zone-10-magadan(198),
1702			russian-fed-zone-11-petropavlovsk-kamchatsky(199),
1703			russian-fed-zone-2-st-petersburg(200),
1704			russian-fed-zone-3-izhevsk(201),
1705			russian-fed-zone-4-ekaterinburg(202),
1706			russian-fed-zone-5-novosibirsk(203),
1707			russian-fed-zone-6-krasnojarsk(204),
1708			russian-fed-zone-7-irkutsk(205),
1709			russian-fed-zone-8-yakatsk(206),
1710			russian-fed-zone-9-vladivostok(207),
1711			rwanda(208),
1712			saint-pierre-and-miquelon(209),
1713			san-marino(210),
1714			sao-tome-and-principe(211),
1715			saudi-arabia(212),
1716			senegal(213),
1717			serbia(214),
1718			the-seychelles(215),
1719			sierra-leone(216),
1720			singapore(217),
1721			slovakia(218),
1722			slovenia(219),
1723			solomon-islands(220),
1724			somalia(221),
1725			south-africa(222),
1726			south-georgia(223),
1727			south-korea(224),
1728			spain(225),
1729			spain-canary-islands(226),
1730			sri-lanka(227),
1731			st-helena(228),
1732			st-kitts-nevis(229),
1733			st-lucia(230),
1734			st-vincent-and-the-grenadines(231),
1735			sudan(232),
1736			suriname(233),
1737			swaziland(234),
1738			sweden(235),
1739			switzerland(236),
1740			syria(237),
1741			tahiti(238),
1742			taiwan(239),
1743			tajikistan(240),
1744			tanzania(241),
1745			thailand(242),
1746			togo(243),
1747			tonga(244),
1748			trinidad-and-tobago(245),
1749			tunisia(246),
1750			turkey(247),
1751			turkmenistan(248),
1752			turks-and-caicos-islands(249),
1753			tuvalu(250),
1754			uganda(251),
1755			ukraine(252),
1756			ukraine-simferopol(253),
1757			united-arab-emirates(254),
1758			united-kingdom(255),
1759			uruguay(256),
1760			us-virgin-islands(257),
1761			usa-alaska(258),
1762			usa-aleutian-islands(259)
1763			usa-arizona(260),
1764			usa-central(261),
1765			usa-eastern(262),
1766			usa-indiana(263),
1767			usa-mountain(264),
1768			usa-pacific(265),
1769			uzbekistan(266),
1770			vanuatu(267),
1771			vatican-city(268),
1772			venezuela(269),
1773			vietnam(270),
1774			wake-islands(271),
1775			wallis-and-futana-islands(272),
1776			western-samoa(273),
1777			windward-islands(274),
1778			yemen(275),
1779			zaire-kasai(276),
1780			zaire-kinshasa(277),
1781			zambia(278),
1782			zimbabwe(279)
1783			}
1784			MAX-ACCESS read-write
1785			STATUS current
1786			DESCRIPTION
1787				"This field indicates the timezone of the system."
1788			::= { timeSettings 2 }
1789
1790
1791		daylightsaving OBJECT-TYPE
1792			SYNTAX TruthValue
1793			MAX-ACCESS read-write
1794			STATUS current
1795			DESCRIPTION
1796				"This attribute shall indicate the Daylight Saving time."
1797			::= { timeSettings 3 }
1798
1799
1800--   **********************************************************************
1801-- *  DHCP Server Setting  Table 2004/6/17
1802-- **********************************************************************
1803         dhcpsSettings OBJECT IDENTIFIER ::= { wg302 11 }
1804
1805
1806		dhcpserver OBJECT-TYPE
1807			SYNTAX TruthValue
1808			MAX-ACCESS read-write
1809			STATUS current
1810			DESCRIPTION
1811				"This attribute shall indicate whether DHCP server is enable
1812				or disable."
1813			::= { dhcpsSettings 1 }
1814
1815
1816		dhcpsipstart OBJECT-TYPE
1817			SYNTAX IpAddress
1818			MAX-ACCESS read-write
1819			STATUS current
1820			DESCRIPTION
1821				"This attribute indicates the starting IP address of DHCP server will give.
1822				***The value can only be set to a IP address in dot format."
1823			::= { dhcpsSettings 2 }
1824
1825
1826		dhcpsipend OBJECT-TYPE
1827			SYNTAX IpAddress
1828			MAX-ACCESS read-write
1829			STATUS current
1830			DESCRIPTION
1831				"This attribute indicates the ending IP address of DHCP server will give.
1832				***The value can only be set to a IP address in dot format."
1833			::= { dhcpsSettings 3 }
1834
1835
1836		dhcpnetmask OBJECT-TYPE
1837			SYNTAX IpAddress
1838			MAX-ACCESS read-write
1839			STATUS current
1840			DESCRIPTION
1841				"This attribute indicates the net mask of DHCP server will give.
1842				***The value can only be set to the net mask address in dot format."
1843			::= { dhcpsSettings 4 }
1844
1845
1846		dhcpsgateway OBJECT-TYPE
1847			SYNTAX IpAddress
1848			MAX-ACCESS read-write
1849			STATUS current
1850			DESCRIPTION
1851				"This attribute indicates the gateway IP address of DHCP server will give.
1852				***The value can only be set to a IP address in dot format."
1853			::= { dhcpsSettings 5 }
1854
1855
1856		dhcpspridns OBJECT-TYPE
1857			SYNTAX IpAddress
1858			MAX-ACCESS read-write
1859			STATUS current
1860			DESCRIPTION
1861				"This attribute indicates the primary DNS IP address of DHCP server will give.
1862				***The value can only be set to a IP address in dot format."
1863			::= { dhcpsSettings 6 }
1864
1865		dhcpspsnddns OBJECT-TYPE
1866			SYNTAX IpAddress
1867			MAX-ACCESS read-write
1868			STATUS current
1869			DESCRIPTION
1870				"This attribute indicates the secondary DNS IP address of DHCP server will give.
1871				***The value can only be set to a IP address in dot format."
1872			::= { dhcpsSettings 7 }
1873
1874
1875		dhcpspriwins OBJECT-TYPE
1876			SYNTAX IpAddress
1877			MAX-ACCESS read-write
1878			STATUS current
1879			DESCRIPTION
1880				"This attribute indicates the primary WINS IP address of DHCP server will give.
1881				***The value can only be set to a IP address in dot format."
1882			::= { dhcpsSettings 8 }
1883
1884
1885		dhcpspsndwins OBJECT-TYPE
1886			SYNTAX IpAddress
1887			MAX-ACCESS read-write
1888			STATUS current
1889			DESCRIPTION
1890				"This attribute indicates the secondary WINS IP address of DHCP server will give.
1891				***The value can only be set to a IP address in dot format."
1892			::= { dhcpsSettings 9 }
1893
1894
1895		dhcpsleasetime OBJECT-TYPE
1896			SYNTAX INTEGER (15..44640)
1897			MAX-ACCESS read-write
1898			STATUS current
1899			DESCRIPTION
1900				"This attribute shall indicate the IP lease time of DHCP server will give
1901				to DHCP clients in minutes"
1902			::= { dhcpsSettings 10 }
1903
1904
1905
1906
1907--   **********************************************************************
1908-- *  SYSLOG Server Setting  Table 2004/8/2
1909-- **********************************************************************
1910		logSettings OBJECT IDENTIFIER ::= { wg302 12 }
1911
1912
1913		syslog OBJECT-TYPE
1914			SYNTAX TruthValue
1915			MAX-ACCESS read-write
1916			STATUS current
1917			DESCRIPTION
1918				"This attribute shall indicate whether syslog is enable
1919				or disable."
1920			::= { logSettings 1 }
1921
1922
1923		syslogsrvip OBJECT-TYPE
1924			SYNTAX IpAddress
1925			MAX-ACCESS read-write
1926			STATUS current
1927			DESCRIPTION
1928				"This attributes shall indicates the IP address of the syslog server.
1929				***The value can only be set to a IP address in dot format."
1930			::= { logSettings 2 }
1931
1932
1933		syslogsrvport OBJECT-TYPE
1934			SYNTAX INTEGER (0..65535)
1935			MAX-ACCESS read-write
1936			STATUS current
1937			DESCRIPTION
1938				"This attributes shall indicates the Port of the Syslog server.
1939				*** The value can only be set to a port in dot format."
1940			::= { logSettings 3 }
1941
1942
1943--   **********************************************************************
1944-- *  HTTP Redirect Settings Table
1945-- **********************************************************************
1946
1947       httpRedirectSettings OBJECT IDENTIFIER ::= { wg302 13 }
1948
1949
1950		httpRedirectEnable OBJECT-TYPE
1951			SYNTAX TruthValue
1952			MAX-ACCESS read-write
1953			STATUS current
1954			DESCRIPTION
1955				"Description."
1956			::= { httpRedirectSettings 1 }
1957
1958
1959		httpRedirectURL OBJECT-TYPE
1960			SYNTAX DisplayString (SIZE (0..119))
1961			MAX-ACCESS read-write
1962			STATUS current
1963			DESCRIPTION
1964				"Description."
1965			::= { httpRedirectSettings 2 }
1966
1967
1968--   **********************************************************************
1969-- *  Detected AP Table
1970-- **********************************************************************
1971		detectedApTable OBJECT-TYPE
1972			SYNTAX SEQUENCE OF DetectedApEntry
1973			MAX-ACCESS not-accessible
1974			STATUS current
1975			DESCRIPTION
1976				"detectedAp Table shows list of detected neighbouring APs."
1977			::= { wg302 14 }
1978
1979
1980	        detectedApEntry OBJECT-TYPE
1981			SYNTAX DetectedApEntry
1982			MAX-ACCESS not-accessible
1983			STATUS current
1984			DESCRIPTION
1985				"An entry in the detectedApTable."
1986			INDEX { apmac }
1987			::= { detectedApTable 1 }
1988
1989
1990		DetectedApEntry ::=
1991			SEQUENCE {
1992				apmac
1993					MacAddress,
1994				apssid
1995					DisplayString,
1996				apprivacy
1997					TruthValue,
1998				apband
1999					DisplayString,
2000				apchannel
2001					INTEGER,
2002				aprate
2003					INTEGER,
2004				apbeaconInterval
2005					INTEGER,
2006				apnumBeacons
2007					INTEGER,
2008				aplastBeacon
2009					INTEGER
2010			 }
2011
2012
2013		apmac OBJECT-TYPE
2014			SYNTAX MacAddress
2015			MAX-ACCESS read-only
2016			STATUS current
2017			DESCRIPTION
2018				"This attribute shall indicate MAC address of the
2019				detected AP."
2020			::= { detectedApEntry 1 }
2021
2022
2023		apssid  OBJECT-TYPE
2024			SYNTAX DisplayString
2025			MAX-ACCESS read-only
2026			STATUS current
2027			DESCRIPTION
2028				"This attribute shall indicate ssid of the detected AP."
2029			::= { detectedApEntry 2 }
2030
2031
2032		apprivacy OBJECT-TYPE
2033			SYNTAX TruthValue
2034			MAX-ACCESS read-only
2035			STATUS current
2036			DESCRIPTION
2037				"This attribute shall indicate whether privacy is enabled."
2038			::= { detectedApEntry 3 }
2039
2040
2041		apband    OBJECT-TYPE
2042			SYNTAX DisplayString
2043			MAX-ACCESS read-only
2044			STATUS current
2045			DESCRIPTION
2046				"This attribute shall indicate the operating band of detected AP."
2047			::= { detectedApEntry 4 }
2048
2049
2050		apchannel OBJECT-TYPE
2051			SYNTAX INTEGER
2052			MAX-ACCESS read-only
2053			STATUS current
2054			DESCRIPTION
2055				"This attribute shall indicate the channel number used."
2056			::= { detectedApEntry 5 }
2057
2058
2059		aprate    OBJECT-TYPE
2060			SYNTAX INTEGER
2061			MAX-ACCESS read-only
2062			STATUS current
2063			DESCRIPTION
2064				"This attribute shall indicate the rate."
2065			::= { detectedApEntry 6 }
2066
2067
2068		apbeaconInterval OBJECT-TYPE
2069			SYNTAX INTEGER
2070			MAX-ACCESS read-only
2071			STATUS current
2072			DESCRIPTION
2073				"This attribute shall indicate the beacon interval in kus (1.024 ms)."
2074			::= { detectedApEntry 7 }
2075
2076
2077		apnumBeacons    OBJECT-TYPE
2078			SYNTAX INTEGER
2079			MAX-ACCESS read-only
2080			STATUS current
2081			DESCRIPTION
2082				"This attribute shall indicate the number of beacons received."
2083			::= { detectedApEntry 8 }
2084
2085
2086		aplastBeacon    OBJECT-TYPE
2087			SYNTAX INTEGER
2088			MAX-ACCESS read-only
2089			STATUS current
2090			DESCRIPTION
2091				"This attribute shall indicate the time of the last beacon."
2092			::= { detectedApEntry 9 }
2093
2094
2095--   **********************************************************************
2096-- *  Known AP Table
2097-- **********************************************************************
2098		knownApTable OBJECT-TYPE
2099			SYNTAX SEQUENCE OF KnownApEntry
2100			MAX-ACCESS not-accessible
2101			STATUS current
2102			DESCRIPTION
2103				"knownAp Table shows list of known APs."
2104			::= { wg302 15 }
2105
2106
2107	        knownApEntry OBJECT-TYPE
2108			SYNTAX KnownApEntry
2109			MAX-ACCESS not-accessible
2110			STATUS current
2111			DESCRIPTION
2112				"An entry in the knownApTable."
2113			INDEX { knownapmac }
2114			::= { knownApTable 1 }
2115
2116
2117		KnownApEntry ::=
2118			SEQUENCE {
2119				knownapmac
2120					MacAddress,
2121				knownapssid
2122					DisplayString,
2123				knownapprivacy
2124					TruthValue,
2125				knownapband
2126					DisplayString,
2127				knownapchannel
2128					INTEGER,
2129				knownaprate
2130					INTEGER,
2131				knownapbeaconInterval
2132					INTEGER,
2133				knownapnumBeacons
2134					INTEGER,
2135				knownaplastBeacon
2136					INTEGER,
2137                                knownapEntryStatus
2138                                        RowStatus
2139			 }
2140
2141
2142		knownapmac OBJECT-TYPE
2143			SYNTAX MacAddress
2144			MAX-ACCESS read-only
2145			STATUS current
2146			DESCRIPTION
2147				"This attribute shall indicate MAC address of the
2148				known AP."
2149			::= { knownApEntry 1 }
2150
2151
2152		knownapssid  OBJECT-TYPE
2153			SYNTAX DisplayString
2154			MAX-ACCESS read-only
2155			STATUS current
2156			DESCRIPTION
2157				"This attribute shall indicate ssid of the known AP."
2158			::= { knownApEntry 2 }
2159
2160
2161		knownapprivacy OBJECT-TYPE
2162			SYNTAX TruthValue
2163			MAX-ACCESS read-only
2164			STATUS current
2165			DESCRIPTION
2166				"This attribute shall indicate whether privacy is enabled."
2167			::= { knownApEntry 3 }
2168
2169
2170		knownapband    OBJECT-TYPE
2171			SYNTAX DisplayString
2172			MAX-ACCESS read-only
2173			STATUS current
2174			DESCRIPTION
2175				"This attribute shall indicate the operating band of known AP."
2176			::= { knownApEntry 4 }
2177
2178
2179		knownapchannel OBJECT-TYPE
2180			SYNTAX INTEGER
2181			MAX-ACCESS read-only
2182			STATUS current
2183			DESCRIPTION
2184				"This attribute shall indicate the channel number used."
2185			::= { knownApEntry 5 }
2186
2187
2188		knownaprate    OBJECT-TYPE
2189			SYNTAX INTEGER
2190			MAX-ACCESS read-only
2191			STATUS current
2192			DESCRIPTION
2193				"This attribute shall indicate the rate."
2194			::= { knownApEntry 6 }
2195
2196
2197		knownapbeaconInterval OBJECT-TYPE
2198			SYNTAX INTEGER
2199			MAX-ACCESS read-only
2200			STATUS current
2201			DESCRIPTION
2202				"This attribute shall indicate the beacon interval in kus (1.024 ms)."
2203			::= { knownApEntry 7 }
2204
2205
2206		knownapnumBeacons    OBJECT-TYPE
2207			SYNTAX INTEGER
2208			MAX-ACCESS read-only
2209			STATUS current
2210			DESCRIPTION
2211				"This attribute shall indicate the number of beacons received."
2212			::= { knownApEntry 8 }
2213
2214
2215		knownaplastBeacon    OBJECT-TYPE
2216			SYNTAX INTEGER
2217			MAX-ACCESS read-only
2218			STATUS current
2219			DESCRIPTION
2220				"This attribute shall indicate the time of the last beacon."
2221                        ::= { knownApEntry 9 }
2222
2223
2224		knownapEntryStatus    OBJECT-TYPE
2225			SYNTAX INTEGER
2226			MAX-ACCESS read-create
2227			STATUS current
2228			DESCRIPTION
2229				"The Known AP Entry status.
2230
2231                                Supported values:
2232                                active(1)      - valid entry
2233                                createAndGo(4) - used to create a new entry
2234                                destroy(6)     - removes the entry"
2235                        ::= { knownApEntry 10 }
2236
2237
2238--   **********************************************************************
2239-- *  Unknown AP Table
2240-- **********************************************************************
2241		unknownApTable OBJECT-TYPE
2242			SYNTAX SEQUENCE OF UnknownApEntry
2243			MAX-ACCESS not-accessible
2244			STATUS current
2245			DESCRIPTION
2246				"unknownAp Table shows list of unknown APs."
2247			::= { wg302 16 }
2248
2249
2250	        unknownApEntry OBJECT-TYPE
2251			SYNTAX UnknownApEntry
2252			MAX-ACCESS not-accessible
2253			STATUS current
2254			DESCRIPTION
2255				"An entry in the unknownApTable."
2256			INDEX { unknownapmac }
2257			::= { unknownApTable 1 }
2258
2259
2260		UnknownApEntry ::=
2261			SEQUENCE {
2262				unknownapmac
2263					MacAddress,
2264				unknownapssid
2265					DisplayString,
2266				unknownapprivacy
2267					TruthValue,
2268				unknownapband
2269					DisplayString,
2270				unknownapchannel
2271					INTEGER,
2272				unknownaprate
2273					INTEGER,
2274				unknownapbeaconInterval
2275					INTEGER,
2276				unknownapnumBeacons
2277					INTEGER,
2278				unknownaplastBeacon
2279					INTEGER
2280			 }
2281
2282
2283		unknownapmac OBJECT-TYPE
2284			SYNTAX MacAddress
2285			MAX-ACCESS read-only
2286			STATUS current
2287			DESCRIPTION
2288				"This attribute shall indicate MAC address of the
2289				unknown AP."
2290			::= { unknownApEntry 1 }
2291
2292
2293		unknownapssid  OBJECT-TYPE
2294			SYNTAX DisplayString
2295			MAX-ACCESS read-only
2296			STATUS current
2297			DESCRIPTION
2298				"This attribute shall indicate ssid of the unknown AP."
2299			::= { unknownApEntry 2 }
2300
2301
2302		unknownapprivacy OBJECT-TYPE
2303			SYNTAX TruthValue
2304			MAX-ACCESS read-only
2305			STATUS current
2306			DESCRIPTION
2307				"This attribute shall indicate whether privacy is enabled."
2308			::= { unknownApEntry 3 }
2309
2310
2311		unknownapband    OBJECT-TYPE
2312			SYNTAX DisplayString
2313			MAX-ACCESS read-only
2314			STATUS current
2315			DESCRIPTION
2316				"This attribute shall indicate the operating band of unknown AP."
2317			::= { unknownApEntry 4 }
2318
2319
2320		unknownapchannel OBJECT-TYPE
2321			SYNTAX INTEGER
2322			MAX-ACCESS read-only
2323			STATUS current
2324			DESCRIPTION
2325				"This attribute shall indicate the channel number used."
2326			::= { unknownApEntry 5 }
2327
2328
2329		unknownaprate    OBJECT-TYPE
2330			SYNTAX INTEGER
2331			MAX-ACCESS read-only
2332			STATUS current
2333			DESCRIPTION
2334				"This attribute shall indicate the rate."
2335			::= { unknownApEntry 6 }
2336
2337
2338		unknownapbeaconInterval OBJECT-TYPE
2339			SYNTAX INTEGER
2340			MAX-ACCESS read-only
2341			STATUS current
2342			DESCRIPTION
2343				"This attribute shall indicate the beacon interval in kus (1.024 ms)."
2344			::= { unknownApEntry 7 }
2345
2346
2347		unknownapnumBeacons    OBJECT-TYPE
2348			SYNTAX INTEGER
2349			MAX-ACCESS read-only
2350			STATUS current
2351			DESCRIPTION
2352				"This attribute shall indicate the number of beacons received."
2353			::= { unknownApEntry 8 }
2354
2355
2356		unknownaplastBeacon    OBJECT-TYPE
2357			SYNTAX INTEGER
2358			MAX-ACCESS read-only
2359			STATUS current
2360			DESCRIPTION
2361				"This attribute shall indicate the time of the last beacon."
2362                        ::= { unknownApEntry 9 }
2363
2364	wlanAccessControlLocalTable OBJECT-TYPE
2365			SYNTAX SEQUENCE OF WlanAccessControlLocalEntry
2366			MAX-ACCESS not-accessible
2367			STATUS current
2368			DESCRIPTION
2369				"ACL attributes in tablular form to allow for multiple
2370				instances on an agent."
2371			::= { wg302 17 }
2372
2373
2374		wlanAccessControlLocalEntry OBJECT-TYPE
2375			SYNTAX WlanAccessControlLocalEntry
2376			MAX-ACCESS not-accessible
2377			STATUS current
2378			DESCRIPTION
2379				"An entry in the wlanAccessControlListTable. It is possible
2380				for there to be multiple AP interfaces on one agent, each
2381				with its unique MAC address. The relationship between an
2382				AP interface and an interface in the context of the
2383				Internet-standard MIB is one-to-one. As such, the value of
2384				an ifIndex object instance can be directly used to identify
2385				corresponding instances of the objects defined herein. "
2386			INDEX { aclMAC }
2387			::= { wlanAccessControlLocalTable 1 }
2388
2389
2390		WlanAccessControlLocalEntry ::=
2391			SEQUENCE {
2392				aclMAC
2393					MacAddress,
2394                                aclMacStatus
2395                                        RowStatus
2396			 }
2397
2398
2399
2400		aclMAC OBJECT-TYPE
2401			SYNTAX MacAddress
2402			MAX-ACCESS read-only
2403			STATUS current
2404			DESCRIPTION
2405				"This field should indicate an MAC address entry in the
2406				access control local database. When write this field
2407				aclMAC=000000000000, shall remove current MAC address from
2408				local database. Otherwise, shall update the MAC address."
2409			::= { wlanAccessControlLocalEntry 1 }
2410
2411
2412                aclMacStatus    OBJECT-TYPE
2413                        SYNTAX INTEGER
2414                        MAX-ACCESS read-create
2415                        STATUS current
2416                        DESCRIPTION
2417                                "The ACL Mac status.
2418
2419                                Supported values:
2420                                active(1)      - valid entry
2421                                createAndGo(4) - used to create a new entry
2422                                destroy(6)     - removes the entry"
2423                        ::= { wlanAccessControlLocalEntry 2 }
2424
2425END
2426