forked from kcsinclair/mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AP80-PRIVATE-MIB
3846 lines (3369 loc) · 131 KB
/
AP80-PRIVATE-MIB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--/*
-- * Copyright (c) 2000-2004 Accton Technology Corp., All Rights Reserved.
-- 2005 July 14 Add the Mesh table by Loonng, using the mesh material from Ming.
-- This private mib is modified for the WA6102X-2-38 project based on MIPS platform, Sep 21, 2005
-- */
AP80-PRIVATE-MIB
DEFINITIONS ::= BEGIN
IMPORTS
ifIndex FROM RFC1213-MIB
mgmt,Counter,IpAddress, enterprises FROM RFC1155-SMI
Integer32 FROM SNMPv2-SMI
;
MacAddress
::= OCTET STRING(SIZE (6))
DisplayString
::= OCTET STRING
TruthValue ::=
INTEGER { false(2), true(1) }
--iso(1).org(3).dod(6).internet(1).private(4).enterprises(1).aruba(14823).arubaEnterpriseMibModules(2).arubaAp(3).wlsrOutDoorApMibModules(2)
aruba OBJECT IDENTIFIER ::= { enterprises 14823 }
arubaEnterpriseMibModules OBJECT IDENTIFIER ::= { aruba 2 }
arubaAp OBJECT IDENTIFIER ::= { arubaEnterpriseMibModules 3 }
wlsrOutDoorApMibModules OBJECT IDENTIFIER ::= { arubaAp 2 }
enterpriseApSys OBJECT IDENTIFIER ::= { wlsrOutDoorApMibModules 1 }
enterpriseApLineMgnt OBJECT IDENTIFIER ::= { wlsrOutDoorApMibModules 2 }
enterpriseApPortMgnt OBJECT IDENTIFIER ::= { wlsrOutDoorApMibModules 3 }
enterpriseApFileTransferMgt OBJECT IDENTIFIER ::= { wlsrOutDoorApMibModules 4 }
enterpriseApResetMgt OBJECT IDENTIFIER ::= { wlsrOutDoorApMibModules 5 }
enterpriseApIpMgt OBJECT IDENTIFIER ::= { wlsrOutDoorApMibModules 6 }
enterpriseAPdot11 OBJECT IDENTIFIER ::= { wlsrOutDoorApMibModules 7 }
enterpriseApAdmin OBJECT IDENTIFIER ::= { wlsrOutDoorApMibModules 8 }
enterpriseApVLAN OBJECT IDENTIFIER ::= { wlsrOutDoorApMibModules 9 }
enterpriseApFilterControl OBJECT IDENTIFIER ::= { wlsrOutDoorApMibModules 10 }
enterpriseApSNTP OBJECT IDENTIFIER ::= { wlsrOutDoorApMibModules 11 }
enterpriseApDNS OBJECT IDENTIFIER ::= { wlsrOutDoorApMibModules 12 }
enterpriseApSyslog OBJECT IDENTIFIER ::= { wlsrOutDoorApMibModules 13 }
enterpriseApSecurity OBJECT IDENTIFIER ::= { wlsrOutDoorApMibModules 14 }
enterpriseApRadio OBJECT IDENTIFIER ::= { wlsrOutDoorApMibModules 15 }
enterpriseApSNMP OBJECT IDENTIFIER ::= { wlsrOutDoorApMibModules 16 }
enterpriseApSession OBJECT IDENTIFIER ::= { wlsrOutDoorApMibModules 17 }
--enterpriseApIapp OBJECT IDENTIFIER ::= { wlsrOutDoorApMibModules 18 }
--enterpriseApEventLog OBJECT IDENTIFIER ::= { wlsrOutDoorApMibModules 19 }
enterpriseAPVapRadio OBJECT IDENTIFIER ::= { wlsrOutDoorApMibModules 20 }
--enterpriseApMesh OBJECT IDENTIFIER ::= { wlsrOutDoorApMibModules 21 }
enterpriseApRadioWds OBJECT IDENTIFIER ::= { wlsrOutDoorApMibModules 22 }
enterpriseApWMM OBJECT IDENTIFIER ::= { wlsrOutDoorApMibModules 24 }
enterpriseApSTP OBJECT IDENTIFIER ::= { wlsrOutDoorApMibModules 25 }
-- ****************************************************************************************
-- enterpriseApSys - Standard Mib elements
-- ****************************************************************************************
swHardwareVer OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Hardware version of the main board."
::= { enterpriseApSys 1 }
swBootRomVer OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Boot ROM code version of the main board."
::= { enterpriseApSys 2 }
swOpCodeVer OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Operation code version of the main board."
::= { enterpriseApSys 3 }
swSerialNumber OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Serial Number of the Access Point."
::= { enterpriseApSys 4 }
-- ****************************************
-- anilg:09/22/2003 added for traps
-- ****************************************
sysNotificationTree OBJECT IDENTIFIER ::= { enterpriseApSys 5 }
sysNotificationObjects OBJECT IDENTIFIER ::= { sysNotificationTree 1 }
-- no objects for now (but just to keep consistent with the overall system design
sysNotifications OBJECT IDENTIFIER ::= { sysNotificationTree 2 }
sysSystemUp NOTIFICATION-TYPE
-- OBJECTS { }
STATUS current
DESCRIPTION
"The system up notification shall be sent when the AP
is fully up and running."
::= { sysNotifications 1 }
sysSystemDown NOTIFICATION-TYPE
-- OBJECTS { }
STATUS current
DESCRIPTION
"The system down notification shall be sent before the AP
is about to reboot."
::= { sysNotifications 2 }
sysRadiusServerChanged NOTIFICATION-TYPE
-- OBJECTS { }
STATUS current
DESCRIPTION
"The RADIUS server changed notification shall be sent when
the RADIUS server has changed from Primary / Secondary to
Secondary / Primary."
::= { sysNotifications 3 }
sysConfigFileVersionChanged NOTIFICATION-TYPE
-- OBJECTS { }
STATUS current
DESCRIPTION
"The Config file version changed notification shall be sent when
the version of the AP's configuration file has changed."
::= { sysNotifications 4 }
-- ****************************************************************************************
-- ****************************************************************************************
-- enterpriseApLine AP Line elements
-- ****************************************************************************************
lineTable OBJECT-TYPE
SYNTAX SEQUENCE OF LineEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of descriptive and status information about
configuration of each RS-232 line in this system"
::= { enterpriseApLineMgnt 1 }
lineEntry OBJECT-TYPE
SYNTAX LineEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the table, containing information
about configuration in one RS232 line of the Access Point."
INDEX { lineIndex }
::= { lineTable 1 }
LineEntry ::= SEQUENCE
{
lineIndex Integer32,
lineDataBits Integer32,
lineParity INTEGER,
lineSpeed Integer32,
lineStopBits Integer32
}
lineIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This is defined as RS-232 index."
::= { lineEntry 1 }
lineDataBits OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This is defined as number of data bits for the RS232 interface."
::= { lineEntry 2 }
lineParity OBJECT-TYPE
SYNTAX INTEGER
{
none(99),
odd(1),
even(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This is defined as parity of the RS232 interface."
::= { lineEntry 3 }
lineSpeed OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This is defined as the speed of the RS-232 interface."
::= { lineEntry 4 }
lineStopBits OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This is defined as the number of stop bits for the RS-232 interface."
::= { lineEntry 5 }
-- ****************************************************************************************
-- enterpriseApPortMgnt - Port Mib elements
-- ****************************************************************************************
portTable OBJECT-TYPE
SYNTAX SEQUENCE OF PortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of descriptive and status information about
configuration of each switch port (including expansion slot)
in this system. This table also contains information
about each trunk (similar to Cisco's EtherChannel)."
::= { enterpriseApPortMgnt 1 }
portEntry OBJECT-TYPE
SYNTAX PortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the table, containing information
about configuration in one switch port of the switch."
INDEX { portIndex }
::= { portTable 1 }
PortEntry ::= SEQUENCE
{
portIndex Integer32,
portName DisplayString,
portType INTEGER,
portSpeedDpxCfg INTEGER,
portFlowCtrlCfg INTEGER,
portCapabilities INTEGER,
portAutonegotiation INTEGER,
portSpeedDpxStatus INTEGER,
portFlowCtrlStatus INTEGER
}
portIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This is defined as ifIndex in the IF-MIB."
::= { portEntry 1 }
portName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates the port name. This is same as
ifAlias in the IF-MIB (RFC2863 or later)."
::= { portEntry 2 }
portType OBJECT-TYPE
SYNTAX INTEGER
{
other(1),
hundredBaseTX(2),
hundredBaseFX(3),
thousandBaseSX(4),
thousandBaseLX(5),
thousandBaseT(6),
thousandBaseGBIC(7),
thousandBaseMiniGBIC(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates the port type."
::= { portEntry 3 }
portSpeedDpxCfg OBJECT-TYPE
SYNTAX INTEGER
{
reserved(1),
halfDuplex10(2),
fullDuplex10(3),
halfDuplex100(4),
fullDuplex100(5),
halfDuplex1000(6),
fullDuplex1000(7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates the port speed and duplex mode as follows:
halfDuplex10(2) - 10Mbps and half duplex mode
fullDuplex10(3) - 10Mbps and full duplex mode
halfDuplex100(4) - 100Mbps and half duplex mode
fullDuplex100(5) - 100Mbps and full duplex mode
halfDuplex1000(6) - 1000Mbps and half duplex mode
fullDuplex1000(7) - 1000Mbps and full duplex mode
hundredBaseTX port can be set as
halfDuplex10(2)
fullDuplex10(3)
halfDuplex100(4)
fullDuplex100(5)
hundredBaseFX port can be set as
halfDuplex100(4)
fullDuplex100(5)
thousandBaseSX port can be set as
halfDuplex1000(6)
fullDuplex1000(7)
The actual operating speed and duplex of the port
is given by portSpeedDpxStatus."
DEFVAL { halfDuplex10 }
::= { portEntry 4 }
portFlowCtrlCfg OBJECT-TYPE
SYNTAX INTEGER
{
enabled(1),
disabled(2),
backPressure(3),
dot3xFlowControl(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "(1) Flow control mechanism is enabled.
If the port type is hundredBaseTX or thousandBaseSX:
When the port is operating in halfDuplex mode, the
port uses backPressure flow control mechanism. When
the port is operating in fullDuplex mode, the port
uses IEEE 802.3x flow control mechanism.
If the port type is hundredBaseFX:
When the port is operating in halfDuplex mode, the
port uses backPressure flow control mechanism. When
the port is operating in fullDuplex mode, Flow
control mechanism will not function.
(2) Flow control mechanism is disabled.
(3) Flow control mechanism is backPressure.
when the port is in fullDuplex mode.This flow control
mechanism will not function.
(4) Flow control mechanism is IEEE 802.3x flow control.
when the port is in halfDuplex mode.This flow control
mechanism will not function.
hundredBaseTX and thousandBaseSX port can be set as:
enabled(1),
disabled(2),
backPressure(3),
dot3xFlowControl(4).
hundredBaseFX port can be set as:
enabled(1),
disabled(2),
backPressure(3).
The actual flow control mechanism is used given by
portFlowCtrlStatus."
DEFVAL { enabled }
::= { portEntry 5 }
portCapabilities OBJECT-TYPE
-- INTEGER should be bits
SYNTAX INTEGER
{
portCap10half(99),
portCap10full(1),
portCap100half(2),
portCap100full(3),
portCap1000half(4),
portCap1000full(5),
reserved6(6),
reserved7(7),
reserved8(8),
reserved9(9),
reserved10(10),
reserved11(11),
reserved12(12),
reserved13(13),
portCapSym(14),
portCapFlowCtrl(15)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Port capabilities."
::= { portEntry 6 }
portAutonegotiation OBJECT-TYPE
SYNTAX INTEGER
{
enabled(1),
disabled(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Whether autonegotiation is enabled."
::= { portEntry 7 }
portSpeedDpxStatus OBJECT-TYPE
SYNTAX INTEGER
{
error(1),
halfDuplex10(2),
fullDuplex10(3),
halfDuplex100(4),
fullDuplex100(5),
halfDuplex1000(6),
fullDuplex1000(7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The operating speed and duplex mode of the
switched port. If this index is a trunk,
the speed is the speed of its individual members.
If this index is a trunk and the result
is inconsistent among its member ports, this value is
error(1)."
::= { portEntry 8 }
portFlowCtrlStatus OBJECT-TYPE
SYNTAX INTEGER
{
error(1),
backPressure(2),
dot3xFlowControl(3),
none(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "(2) BackPressure flow control machanism is used.
(3) IEEE 802.3 flow control machanism is used.
(4) Flow control mechanism is disabled.
If this index is a trunk and the result
is inconsistent among its member ports, this value is
error(1)."
::= { portEntry 9 }
-- ****************************************************************************************
-- enterpriseApTftpMgt - File Transfer Mib elements
-- ****************************************************************************************
transferType OBJECT-TYPE
SYNTAX INTEGER {
ftp(1),
tftp(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Type of file to transfer."
::= { enterpriseApFileTransferMgt 1 }
fileType OBJECT-TYPE
SYNTAX INTEGER {
application(1),
config(2),
bootcode(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Type of file to transfer."
::= { enterpriseApFileTransferMgt 2 }
srcFile OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..127))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The source file name for TFTP transfer when a
transfer is next requested via this MIB. This value is set to
the zero length string when no file name has been specified."
::= { enterpriseApFileTransferMgt 3 }
destFile OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..127))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The destination file name for TFTP transfer when a
transfer is next requested via this MIB. This value is set to
the zero length string when no file name has been specified."
::= { enterpriseApFileTransferMgt 4 }
fileServer OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The IP address of the TFTP server for transfer
when a download is next requested via this MIB.
This value is set to `0.0.0.0' when no IP address has been
specified."
::= { enterpriseApFileTransferMgt 5 }
userName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..127))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The username specified for an FTP Transfer."
::= { enterpriseApFileTransferMgt 6 }
password OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..127))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The password specified for an FTP Transfer."
::= { enterpriseApFileTransferMgt 7 }
status OBJECT-TYPE
SYNTAX INTEGER {
running(1),
success(2),
failureGeneric(3),
flashOpenError(10),
flashMallocError(11),
flashReadError(12),
flashFtypeError(13),
socketWriteError(20),
protocolError(30)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The status of the transfer."
::= { enterpriseApFileTransferMgt 8 }
transferStart OBJECT-TYPE
SYNTAX INTEGER {
nothing(0),
download(1),
upload(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Set to go(1) to start a transfer."
::= { enterpriseApFileTransferMgt 9 }
-- ****************************************************************************************
-- enterpriseApResetMgt - Reset Mib elements
-- ****************************************************************************************
restartOpCodeFile OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..127))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Name of op-code file for start-up."
::= { enterpriseApResetMgt 1 }
restartControl OBJECT-TYPE
SYNTAX INTEGER {
running(1),
warmBoot(2),
coldBoot(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Setting this object to warmBoot(2) causes the device to
restart the application software with current configuration
parameters saved in non-volatile memory. Setting this
object to coldBoot(3) causes the device to reinitialize
configuration parameters in non-volatile memory to default
values and restart the application software. When the device
is running normally, this variable has a value of running(1)."
::= { enterpriseApResetMgt 2 }
-- ****************************************************************************************
-- enterpriseApIpMgnt - Ip Mib elements
-- ****************************************************************************************
netConfigIPAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The IP address of this Net interface. The default value
for this object is 0.0.0.0. If either the netConfigIPAddress
or netConfigSubnetMask are 0.0.0.0, then when the device
boots, it may use DHCP to try to figure out what these
values should be. If DHCP fails, before the device
can talk on the network, this value must be configured
(e.g., through a terminal attached to the device)."
::= { enterpriseApIpMgt 1 }
netConfigSubnetMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The subnet mask of this Net interface. The default value
for this object is 0.0.0.0. If either the netConfigIPAddress
or netConfigSubnetMask are 0.0.0.0, then when the device
boots, it may use DHCP to try to figure out what these
values should be. If DHCP fails, before the device
can talk on the network, this value must be configured
(e.g., through a terminal attached to the device)."
::= { enterpriseApIpMgt 2 }
netConfigDefaultGateway OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The IP Address of the default gateway. If this value is
undefined or unknown, it shall have the value 0.0.0.0."
::= { enterpriseApIpMgt 3 }
netConfigHttpState OBJECT-TYPE
SYNTAX INTEGER
{
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Whether HTTP is enabled."
::= { enterpriseApIpMgt 4 }
netConfigHttpPort OBJECT-TYPE
SYNTAX INTEGER (1024..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The port number for HTTP. Default port number is 80."
::= { enterpriseApIpMgt 5 }
netConfigHttpsState OBJECT-TYPE
SYNTAX INTEGER
{
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Whether Secure HTTP is enabled."
::= { enterpriseApIpMgt 6 }
netConfigHttpsPort OBJECT-TYPE
SYNTAX INTEGER (1024..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The port number for Secure HTTP. Default port number is 443."
::= { enterpriseApIpMgt 7 }
netConfigDHCPState OBJECT-TYPE
SYNTAX INTEGER
{
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Whether DHCP is enabled."
::= { enterpriseApIpMgt 8 }
-- ****************************************************************************************
-- enterpriseAPdot11 - 802.11 MIB elements
-- ****************************************************************************************
-- **********************************************************************
-- * dot11AuthenticationEntry TABLE
-- **********************************************************************
dot11AuthenticationEntry OBJECT IDENTIFIER ::= { enterpriseAPdot11 1 }
dot118021xState OBJECT-TYPE
SYNTAX INTEGER
{
disabled(0),
supported(1),
required(2)
}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"This attribute indicates that the Enterprise the state
of the 802.1x authentication algorithm."
::= { dot11AuthenticationEntry 1 }
dot118021xBroadcastKeyRefreshRate OBJECT-TYPE
SYNTAX INTEGER (0..1440)
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"The number (in minutes) between changing the broadcast key for
802.1x and WPA clients"
::= { dot11AuthenticationEntry 2 }
dot118021xSessionKeyRefreshRate OBJECT-TYPE
SYNTAX INTEGER (0..1440)
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"The number (in minutes) between changing session keys for
802.1x and WPA clients"
::= { dot11AuthenticationEntry 3 }
dot118021xReauthenticationTimeout OBJECT-TYPE
SYNTAX INTEGER (0..1440)
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"The number (in minutes) between forcing 802.1x clients to
reauthenticate"
::= { dot11AuthenticationEntry 4 }
dot11MACAuthenticationType OBJECT-TYPE
SYNTAX INTEGER
{
disabled(0),
local(1),
radius(2)
}
ACCESS read-write
STATUS obsolete
DESCRIPTION
"This value indicates the type of mac authentication in use."
::= { dot11AuthenticationEntry 5 }
-- **********************************************************************
-- * End of dot11Authentication TABLE
-- **********************************************************************
-- **********************************************************************
-- * dot11AuthenticationServer TABLE
-- **********************************************************************
dot11AuthenticationServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot11AuthenticationServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of descriptive and status information about
configuration of each authentication server."
::= { enterpriseAPdot11 2 }
dot11AuthenticationServerEntry OBJECT-TYPE
SYNTAX Dot11AuthenticationServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the table, containing information
about configuration of one authentication server of the AP."
INDEX { dot11AuthenticationServerIndex }
::= { dot11AuthenticationServerTable 1 }
Dot11AuthenticationServerEntry ::= SEQUENCE
{
dot11AuthenticationServerIndex Integer32,
dot11AuthenticationServer IpAddress,
dot11AuthenticationPort INTEGER,
dot11AuthenticationKey DisplayString,
dot11AuthenticationRetransmit INTEGER,
dot11AuthenticationTimeout INTEGER,
dot11AuthenticationAcctPort INTEGER,
dot11AuthenticationAcctInterimUpdate INTEGER,
dot11AuthenticationMACAddressFormat INTEGER,
dot11AuthenticationVLANIDFormat INTEGER
}
dot11AuthenticationServerIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Index of the Authentication Server"
::= { dot11AuthenticationServerEntry 1 }
dot11AuthenticationServer OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This value indicates the IP address of the authentication server."
::= { dot11AuthenticationServerEntry 2 }
dot11AuthenticationPort OBJECT-TYPE
SYNTAX INTEGER (1024..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This value indicates the UDP Port used by the authentication server."
::= { dot11AuthenticationServerEntry 3 }
dot11AuthenticationKey OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This value indicates the shared key used by the authentication server."
::= { dot11AuthenticationServerEntry 4 }
dot11AuthenticationRetransmit OBJECT-TYPE
SYNTAX INTEGER (1..30)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This value indicates the retransmit timer length used by the
authentication server."
::= { dot11AuthenticationServerEntry 5 }
dot11AuthenticationTimeout OBJECT-TYPE
SYNTAX INTEGER (1..60)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This value indicates the Timeout value(sec) used by the
authentication server."
::= { dot11AuthenticationServerEntry 6 }
dot11AuthenticationAcctPort OBJECT-TYPE
SYNTAX INTEGER (1024..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The port number for radius server accounting."
DEFVAL { 1813 }
::= { dot11AuthenticationServerEntry 7 }
dot11AuthenticationAcctInterimUpdate OBJECT-TYPE
SYNTAX INTEGER (60..86400)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This value indicates the Timeout value(sec) used by the
radius server interim update."
DEFVAL { 3600 }
::= { dot11AuthenticationServerEntry 8 }
dot11AuthenticationMACAddressFormat OBJECT-TYPE
SYNTAX INTEGER
{
no-delimiter(1),
single-dash(2),
multi-dash(3),
multi-colon(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This value indicates the MAC address format from Radius
MAC authentication.
no-delimiter format: aabbccddeeff
single-dash format: aabbcc-ddeeff
multi-dash format: aa-bb-cc-dd-ee-ff
multi-colon format: aa:bb:cc:dd:ee:ff"
::= { dot11AuthenticationServerEntry 9 }
dot11AuthenticationVLANIDFormat OBJECT-TYPE
SYNTAX INTEGER
{
hex(1),
ascii(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This value indicates the VLAN ID format from Radius server."
::= { dot11AuthenticationServerEntry 10 }
-- **********************************************************************
-- * End of dot11AuthenticationServer TABLE
-- **********************************************************************
-- **********************************************************************
-- * dot11FilteringTable TABLE
-- **********************************************************************
dot11MACAuthenticationFilter OBJECT IDENTIFIER ::= { enterpriseAPdot11 3 }
dot11FilterDefault OBJECT-TYPE
SYNTAX INTEGER
{
allow(1),
deny(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This value indicates the default access for local mac filters."
::= { dot11MACAuthenticationFilter 1 }
dot11FilterTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot11FilterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of status information about
each configured MAC Address Filtering Entry."
::= { dot11MACAuthenticationFilter 2 }
dot11FilterEntry OBJECT-TYPE
SYNTAX Dot11FilterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the table, containing information
about configuration in one radio of the AP."
INDEX { dot11FilterAddress }
::= { dot11FilterTable 1 }
Dot11FilterEntry ::= SEQUENCE
{
dot11FilterAddress MacAddress,
dot11FilterStatus INTEGER
}
dot11FilterAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This value indicates the MAC address of the
filter entry."
::= { dot11FilterEntry 1 }
dot11FilterStatus OBJECT-TYPE
SYNTAX INTEGER
{
allowed(30),
denied(31),
delete(32)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This value indicates the Status of the filter entry.
Ifallowed, the client is allowed access to the network.
If disallowed, the no frames will be forwarded to the
network from the client."
::= { dot11FilterEntry 2 }
-- *********************************************************
-- anilg: 09/22/03 :notifications used for dot11 management
-- *********************************************************
dot11NotificationTree OBJECT IDENTIFIER ::= { enterpriseAPdot11 4 }
dot11NotificationObjects OBJECT IDENTIFIER ::= { dot11NotificationTree 1 }
dot11MacAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Mac Address of the affected interface, returned with traps only."
::= { dot11NotificationObjects 1 }
dot11Station OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This attribute holds the MAC address of the wireless station"
::= { dot11NotificationObjects 2 }
dot11RequestType OBJECT-TYPE
SYNTAX INTEGER
{
unknown(1),
association(2),
reAssociation(3),
authentication(4)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This attribute defines the request type sent by the station.
Value = 1: Unknown request type
Value = 2: Association Request
Value = 3: Re-association Request
Value = 4: Authentication"
::= { dot11NotificationObjects 3 }
dot11ReasonCode OBJECT-TYPE
SYNTAX INTEGER
{
invalidModeOrState(1),
unAuthenticatedStation(2),
internalError(3),
outOfSequenceFrame(4),
unsupportedAlgorithm(5),
invalidFrameLngth(6),
wepRequiredOnAP(7),
wepNotAllowed(8),
challengeTextMismatch(9)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This attribute defines the reason for the failure of an operation.
Value = 1: Invalid mode/state
Value = 2: Station not authenticated.
Value = 3: Internal error
Value = 4: Out of sequence frame
Value = 5: Un-supportd algorithm
Value = 6: Invalid frame length
Value = 7: WEP is required on the AP
Value = 8: WEP not allowed
Value = 9: Challenge text mismatch"
::= { dot11NotificationObjects 4 }
dot11ApIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current