-
Notifications
You must be signed in to change notification settings - Fork 29
/
AWCVX-MIB.my
8045 lines (7217 loc) · 314 KB
/
AWCVX-MIB.my
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- *****************************************************************
-- AWCVX-MIB.my: Cisco Aironet Wireless LAN Access Point MIB file
--
-- October 2002, Victor Griswold
--
-- Copyright (c) 2002-2003 by Cisco Systems, Inc.
-- All rights reserved.
-- *****************************************************************
--
-- ********************************************************************
-- * awcVx Management Information Base
-- ********************************************************************
AWCVX-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
NOTIFICATION-TYPE,
enterprises,
Integer32,
Counter32,
IpAddress,
Unsigned32
FROM SNMPv2-SMI
dot1dTpPort
FROM BRIDGE-MIB
MODULE-COMPLIANCE,
NOTIFICATION-GROUP,
OBJECT-GROUP
FROM SNMPv2-CONF
TEXTUAL-CONVENTION,
DisplayString,
RowStatus,
MacAddress,
TruthValue
FROM SNMPv2-TC
ifIndex
FROM RFC1213-MIB;
-- ********************************************************************
-- * MODULE IDENTITY
-- ********************************************************************
awcVx MODULE-IDENTITY
LAST-UPDATED "200304210000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
" Cisco Systems
Customer Service
Postal: 170 W Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553-NETS
E-mail: [email protected]"
DESCRIPTION
"The MIB module for Aironet entities.
iso(1).org(3).dod(6).internet(1).private(4).
enterprises(1).aironet(522).awcVx(3).
This MIB provides network management
support for Cisco IEEE 802.11 Wireless LAN
type devices such as Access Point and Wireless
Access Bridge."
REVISION "200304210000Z"
DESCRIPTION
"Added awcDot11NonRootMobility to determine if a
radio should look for a better parent AP in heavy
traffic and awcFtEnableMcastMapping for multicast
forwarding configuration."
REVISION "200212030000Z"
DESCRIPTION
"This revision adds awcDot11QoSTable QoS support,
awcIfOutDiscardsCoSx statistics to awcIfTable,
awcPolGrpTable policy group, 802.11A 5GHz radio
support, and action when Ethernet is lost. Corrected
the ranges for awcDot11AuthenticationAlgorithmsIndex
and awcPolGrpId."
::= { enterprises 522 3 }
aironet OBJECT IDENTIFIER ::= { enterprises 522 }
-- ********************************************************************
-- * Major sections
-- ********************************************************************
-- Aironet Wireless Communications System (awcSystem) Attributes
-- DEFINED AS "The awcSystem object class provides all
-- standard information to support operation of an Aironet
-- Access Point such as versions, system flags, and what
-- features are enabled.";
awcSystem OBJECT IDENTIFIER ::= {awcVx 1}
-- bootconfig VxWorks (bootconfigVx) Attributes
-- DEFINED AS "The bootconfigVx object class provides all
-- standard information to support operation of the boot
-- server.";
bootconfigVx OBJECT IDENTIFIER ::= {awcVx 2}
-- Aironet Wireless Communication Serial Device (awcSerialDev)
-- Attributes DEFINED AS "The awcSerialDev object class
-- provides all standard information to support configuration
-- of serial ports.";
awcSerialDev OBJECT IDENTIFIER ::= {awcVx 3}
-- Aironet Wireless Communication FTP (awcFtp) Attributes
-- DEFINED AS "The awcFTP object class provides all standard
-- information to support configuration of the FTP protocol.";
awcFtp OBJECT IDENTIFIER ::= {awcVx 4}
-- Aironet Wireless Communication 802.11 (awc802dot11) Attributes
-- DEFINED AS "The awc802dot11 object class provides all
-- standard information to support configuration of the 802.11
-- protocol. This class also provides various statistics of
-- 802.11 stations.";
awc802dot11 OBJECT IDENTIFIER ::= {awcVx 6}
-- Aironet Wireless Communication UserManager (awcUserMgr) Attributes
-- DEFINED AS "The awcUserMgr object class provides all
-- standard information to support configuration of the User
-- Manager.";
awcUserMgr OBJECT IDENTIFIER ::= {awcVx 7}
-- Aironet Wireless Communication HTTPd (awcHttpd) Attributes
-- DEFINED AS "The awcHttpd object class provides all standard
-- information to support configuration of the Web Server.";
awcHttpd OBJECT IDENTIFIER ::= {awcVx 8}
-- Aironet Wireless Communication DNS Resolver (awcDnsRes) Attributes
-- DEFINED AS "The awcDnsRes object class provides all
-- standard information to support configuration of the DNS
-- Resolver.";
awcDnsRes OBJECT IDENTIFIER ::= {awcVx 9}
-- Aironet Wireless Communication SNMP (awcSnmp) Attributes
-- DEFINED AS "The awcSnmp object class provides all standard
-- information to support configuration of the SNMP
-- protocol.";
awcSnmp OBJECT IDENTIFIER ::= {awcVx 10}
-- Aironet Wireless Communication SNTP (awcSntp) Attributes
-- DEFINED AS "The awcSntp object class provides all standard
-- information to support configuration of the SNTP
-- protocol.";
awcSntp OBJECT IDENTIFIER ::= {awcVx 11}
-- Aironet Wireless Communication Forwarding Table (awcForwardTbl)
-- Attributes
-- DEFINED AS "The awcForwardTbl object class provides all
-- standard information to support configuration of the
-- Forwarding Table.";
awcForwardTbl OBJECT IDENTIFIER ::= {awcVx 12}
-- Aironet Wireless Communication RIP (awcRipConfig) Attributes
-- DEFINED AS "The awcRipConfig object class provides all
-- standard information to support configuration of the RIP
-- Protocol.";
awcRipConfig OBJECT IDENTIFIER ::= {awcVx 13}
-- Aironet Wireless Communications Event Log (awcEventLog) Attributes
-- DEFINED AS "The awcEventLog object class provides all
-- standard information to support operation of the Event
-- Log.";
awcEventLog OBJECT IDENTIFIER ::= {awcVx 14}
-- Aironet Wireless Communications Ethernet Controller (awcEtherMIB)
-- Attributes
-- DEFINED AS "The awcEtherMIB object class provides all
-- standard information to support operation of the Ethernet
-- Controller.";
awcEtherMIB OBJECT IDENTIFIER ::= {awcVx 15}
-- Aironet Wireless Communications Policy Groups (awcPolicyGroups)
-- Attributes
-- DEFINED AS "The awcPolicyGroups object class provides all
-- standard information to support specification of named
-- groups of related protocol filters.";
awcPolicyGroups OBJECT IDENTIFIER ::= {awcVx 16}
-- Aironet Wireless Communications DDP/IAPP (awcDdpIAPP) Attributes
-- DEFINED AS "The awcDdpIAPP object class provides all
-- standard information to support operation of the DDP and
-- IAPP protocols.";
awcDdpIAPP OBJECT IDENTIFIER ::= {awcVx 17}
-- Aironet Wireless Communications Hot Standby (awcHotStandby)
-- Attributes
-- DEFINED AS "The awcHotStandby object class provides all
-- standard information to support operation of an AP in the
-- Hot Standby mode.";
awcHotStandby OBJECT IDENTIFIER ::= {awcVx 18}
-- Aironet Wireless Communications Authentication, Authorization, and
-- Accounting (awcAaa) Attributes .
-- DEFINED AS "The awcAaa object class provides all standard
-- information to support configuration of RADIUS and TACACS+
-- client operation.";
awcAaa OBJECT IDENTIFIER ::= {awcVx 19}
-- Aironet Wireless Communications Authentication, Authorization, and
-- Accounting (awcAaa)'s accounting configuration
-- DEFINED AS "The awcAcctConfig object provides all the
-- configuration for accounting.";
awcAcctConfig OBJECT IDENTIFIER ::= { awcAaa 3 }
-- Aironet Wireless Communications Protocol Filters
-- (awcProtocolFilters) Attributes
-- DEFINED AS "The awcProtocolFilters object class provides
-- all standard information to support configuration of static
-- protocol filters on the AP.";
awcProtocolFilters OBJECT IDENTIFIER ::= {awcVx 20}
-- Aironet Wireless Communications Mobile IP
-- (awcMobileIP) Attributes
-- DEFINED AS "The awcMobileIP object class provides
-- all standard information to support configuration of proxy
-- mobileIP on the AP.";
awcMobileIP OBJECT IDENTIFIER ::= {awcVx 22}
-- Aironet Wireless Communications Experimental (awcExperimental)
-- Attributes
-- DEFINED AS "The awcExperimental object class provides all
-- standard information to support experimental functions.";
-- awcExperimental OBJECT IDENTIFIER ::= {awcVx 99}
-- ********************************************************************
-- * MIB attribute OBJECT-TYPE definitions follow
-- ********************************************************************
AwcVlanId ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"A 12-bit VLAN ID used in the VLAN Tag header. A value
of 0 indicates NULL or no VLAN ID."
SYNTAX INTEGER (0..4094)
AwcPolId ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"A 10-bit Policy Group identifier. A value
of 0 indicates that no Policy Group is specified."
SYNTAX INTEGER (0..1023)
WEPKeytype128 ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Wired Equivalent Privacy (WEP) shared secret
encryption key, 128-bits."
SYNTAX OCTET STRING (SIZE (5..13))
AwcInvokeCommand ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Command directive to control asynchronous operations
on the host system of the SNMP agent. Not all
asynchronous operations support all directives. For
example, not all operations support 'restart' or
'restartNotify' commands.
inactive - No operation is either started or
in progress.
start - Start the operation. Perform the
operation to completion.
startNotify - Start the operation. Perform the
operation to completion, then
notify the requesting SNMP Manager
via a Trap.
restart - If the operation is not already
started, start it. If it is already
started, re-initialize the operation
in a graceful manner and start it
over again. Do not alter the Notify
option of the corresponding Start
command.
restartNotify - If the operation is not already
started, start it. If it is
already started, re-initialize the
operation in a graceful manner and
start it over again. When the
operation is complete, notify the
requesting SNMP Manager via a Trap.
cancel - If the operation, is not started, do
nothing. If it is started, stop the
operation gracefully. Notify the SNMP
Manager via a Trap in accordance with
whether {Re}Start or {Re}StartNotify
was used.
Multiple use of 'start' before an operation completes
is ignored. Multiple use of 'startNotify' before an
operation completes adds the Notify option of the
operation."
SYNTAX INTEGER { inactive(1),
start(2),
startNotify(3),
restart(4),
restartNotify(5),
cancel(6) }
AwcDot11MicAlgorithm ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Auxiliary Message Integrity Check (MIC) calculated
on WEP-encoded packets to validate that they have
not been modified. This is in addition to the
standard 802.11 ICV."
SYNTAX INTEGER { micNone(1),
micMMH(2) }
AwcDot11WEPKeyPermuteAlgorithm ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Function through which the WEP encryption key is
permuted between key renewal periods."
SYNTAX INTEGER { wepPermuteNone(1),
wepPermuteIV(2) }
AwcEventDisposition ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specifies the manner in which an event should be
handled by the system. Events can be counted,
displayed on the console, recorded in the system's
event log memory, or an external device can be
notified of the event. Each degree of handling
implies all lower degrees."
SYNTAX INTEGER { count(1),
displayConsole(2),
record(3),
notify(4) }
AwcDot11EventDisposition ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specifies options to handled standard IEEE 802.11 traps
on this system"
SYNTAX INTEGER { noNotification(1),
eventLogOnly(2),
ieeeTrapOnly(3),
eventLogAndIeeeTrap(4) }
AwcHotStandbyStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The status of the hot standby access point:
normal(0) - AP hot standby is running.
initializing(1) - AP hot standby is
being initialized.
takeover(2) - AP takeovers as new
active access point.
stopped(3) - AP hot standby stopped.
associating(4) - Standby AP associates to
active access point.
rootMacFailed(5) - Cannot detect root AP
MAC address.
interfaceMerge(6) - Interface merge.
associationFail(7) - Association failed.
etherTestFail(8) - Hot standby test on
Ethernet failed.
radioTestFail(9) - Hot standby test on
radio failed.
error(10) - Hot standby system error."
SYNTAX INTEGER { normal(0),
initializing(1),
takeover(2),
stopped(3),
associating(4),
rootMacFailed(5),
interfaceMerge(6),
associationFail(7),
etherTestFail(8),
radioTestFail(9),
error(10) }
-- ********************************************************************
-- * awcSystem parameters
-- ********************************************************************
vxWorksVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The version of the underlying VxWorks
operating system."
::= { awcSystem 1 }
creationDate OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The date and time the Access Point system code
was initially compiled."
::= { awcSystem 2 }
awcVxVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The version of the Access Point system code."
::= { awcSystem 3 }
sysFlags OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The VxWorks sysFlags system-configuration
flags in use by the Access Point system. Not
used by system code with awcVxVersion from
10.00 to 11.06."
DEFVAL { 192 }
::= { awcSystem 4 }
languageCode OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The language currently in use by the system.
Max. string length is 128 octets."
DEFVAL { "en-US" }
::= { awcSystem 5 }
awcDevID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Aironet DDP protocol device ID of the
system when using the full capabilities
with which the system is licensed. Note
that a system may be configured to use
fewer capabilities that those for which
it is licensed. For example, a Bridge
may be configured for use as an Access Point."
::= { awcSystem 6 }
awcDevIDtxt OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Textual representation of awcDevID.
Max. string length is 128 octets."
::= { awcSystem 7 }
enableHTTP OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If true, the Access Point's HTTP server
can accept connections from other network
devices. If false, the Access Point's HTTP
server will only accept connections from the
Access Point's console or indirectly over
TELNET."
DEFVAL { true }
::= { awcSystem 8 }
enableTelnet OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If true, the Access Point's TELNET server
can accept connections from other network
devices. If false, all TELNET connections
will be refused."
DEFVAL { true }
::= { awcSystem 9 }
enableSNMP OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If true, the Access Point's SNMP agent can
accept connections from other network
devices. If false, all SNMP connections
will be refused. Note that this can only
be set to false by an SNMP management
station. If false, it can only be set to true
by non-SNMP means."
DEFVAL { false }
::= { awcSystem 10 }
enableDnsResolver OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If true, the Access Point will attempt to
resolve IP address references through all
configured DNS servers and will attempt to
perform reverse-lookup via all configured
DNS servers when displaying IP addresses.
If false, the Access Point will interpret
and display only explicit numeric IP
addresses."
DEFVAL { true }
::= { awcSystem 11 }
enableSNTP OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If true, the Access Point will attempt to
periodically update its wall-clock time via a
configured SNTP server. If false, the Access
Point wall-clock time must be manually
adjusted."
DEFVAL { false }
::= { awcSystem 13 }
enableWDB OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If true, the Access Point will enable use of
the VxWorks WDB debugger upon its next reboot.
If false, no WDB debugging services will be
available after the next reboot. The value
of enableWDB is applicable only to special
diagnostic versions of the Access Point
system code."
DEFVAL { false }
::= { awcSystem 14 }
pingTxLen OBJECT-TYPE
SYNTAX Unsigned32 (12..4096)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The size in octets of ping packets transmitted
by the Access Point. Default 64."
DEFVAL { 64 }
::= { awcSystem 15 }
awcFirstBoot OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If true, no user-specified configuration has
been saved by the Access Point since either
the system left Cisco manufacturing or since
the user performed a Reset All System Factory
Defaults operation. If false, a change in
configuration has been saved by the user.
Note that configurations specified solely via
boot protocols such as DHCP or BOOTP are not
considered user-specified for purposes of
changing awcFirstBoot."
DEFVAL { true }
::= { awcSystem 16 }
awcOemOUI OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IEEE Organizationally Unique Identifier of
the reseller for which this system is
branded."
::= { awcSystem 17 }
awcOemName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The full name of the reseller for which this
system is branded."
::= { awcSystem 18 }
awcOemNameShort OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An abbreviated name of the reseller for which
this system is branded."
::= { awcSystem 19 }
awcOemHomeURL OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The URL of the corporate HTML home page of the
reseller for which this system is branded."
::= { awcSystem 20 }
enablePSPF OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If true, Publicly-Secure Packet Forwarding
mode is enabled (i.e. clients can not
communicate with each other). If false,
normal packet forwarding is used."
DEFVAL { false }
::= { awcSystem 21 }
sysExceptionReboot OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If true, all access violations or other
general faults in any task will result in a
reboot of the system. If false, such errors
will not result in a reboot, and thus
diagnostics can be performed on the system."
DEFVAL { true }
::= { awcSystem 24 }
bootblockVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The version of the Access Point boot block
(bootstrap loader) code."
::= { awcSystem 25 }
motherboardRevision OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Revision number of the Access Point
system motherboard."
::= { awcSystem 26 }
enableSTP OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If true and the system is licensed with Bridge
capabilities, the IEEE 802.1D Spanning Tree
Protocol will be be used to control packet
forwarding on all network interfaces. If
false or the system is not licensed with
Bridge capabilities, the system will use
Access Point heuristics to control packet
forwarding on all network interfaces."
::= { awcSystem 27 }
enableRebootKey OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If true, the VxWorks Monitor Trap keystroke
is enabled from the console and from Telnet.
By default, this is <control-X>. Entering
this character initiates a warm-restart of
the system. If false, the VxWorks Monitor
Trap keystroke is disabled."
DEFVAL { false }
::= { awcSystem 28 }
awcLocateUnit OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If true, the unit will immediately begin
flashing all three of its Status LEDs with
an alternating pattern of amber and off.
If false, the Status LEDs operate in their
normal fashion."
DEFVAL { false }
::= { awcSystem 29 }
-- ********************************************************************
-- * End of awcSystem parameters
-- ********************************************************************
-- ********************************************************************
-- * bootconfigVx parameters
-- ********************************************************************
bootconfigBootProtocol OBJECT-TYPE
SYNTAX INTEGER {none(1), bootp(2), dhcp(3)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The protocol to be used for automatic
configuration at the time of system
bootstrap/reboot. Options BOOTP, DHCP,
or none."
DEFVAL { dhcp }
::= { bootconfigVx 1 }
bootconfigReadINI OBJECT-TYPE
SYNTAX INTEGER {always(1), never(2), ifSpecified(3)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If always, the system will attempt to read a
.ini-formatted configuration file upon every
reboot. If never, the system will not attempt
to read a .ini file upon reboot, even if a
boot protocol is in use and the boot server
specifies a file to be read. If ifSpecified,
the system will attempt to read a .ini file
upon reboot if and only if a boot protocol
is in use and the boot server explicitly
specifies a file to be read. The system
attempts several filenames in the process of
retrieving a .ini file without error. In
order, these filenames are based on the
system's BOOTP- or DHCP-assigned client name,
then the MIB2 sysName, then the system's IP
address, then, as a last resort, the BOOTP- or
DHCP-assigned boot file name. For each
filename, the system attempts to read first
from the designated defaultFileServer, then,
if not successful, from one of either the
BOOTP/DHCP server itself or
bootconfigFileServerAddr (if specified by the
BOOTP/DHCP server)."
DEFVAL { ifSpecified }
::= { bootconfigVx 2 }
bootconfigServerConfigTimeout OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The time in seconds which the system should
wait for a configuration response from a
BOOTP server before falling back to the
stored configuration."
DEFVAL { 120 }
::= { bootconfigVx 3 }
bootconfigMultOfferTimeout OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The time, in seconds, which the system should
wait for a better offer configuration response
from a DHCP or BOOTP server before choosing
the best current offer."
DEFVAL { 5 }
::= { bootconfigVx 4 }
bootconfigReqLeaseDuration OBJECT-TYPE
SYNTAX Unsigned32
UNITS "minutes"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The requested DHCP lease duration, in
minutes."
DEFVAL { 1440 }
::= { bootconfigVx 5 }
bootconfigMinLeaseDuration OBJECT-TYPE
SYNTAX Unsigned32
UNITS "minutes"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The minimum acceptable DHCP lease duration,
in minutes."
DEFVAL { 0 }
::= { bootconfigVx 6 }
bootconfigDev OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Text string identifying the network device
used for bootstrapping the system via BOOTP or
DHCP. This is only applicable in BOOTP mode
or when the system is configured as a router,
when not all the network interfaces share the
same ifPhysAddress."
::= { bootconfigVx 7 }
bootconfigClientAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IPv4 network address of this device, as
determined by the BOOTP or DHCP protocol."
::= { bootconfigVx 8 }
bootconfigHostAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IPv4 network address of the BOOTP or DHCP
server from which the configuration
of this device was leased."
::= { bootconfigVx 9 }
bootconfigBootFile OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the default boot configuration file,
specified by the BOOTP or DHCP server,
containing the system configuration to be
utilized by this device. This is considered
a default configuration file because many
DHCP servers are not capable of distinguishing
boot files between different clients."
::= { bootconfigVx 10 }
bootconfigSubnetMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IPv4 network subnet mask to be used by this
device, as determined by the BOOTP or DHCP
protocol."
::= { bootconfigVx 11 }
bootconfigGateway OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IPv4 network address of the default network
gateway to be used by this device, as
determined by the BOOTP or DHCP protocol."
::= { bootconfigVx 12 }
bootconfigHostName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Textual name of the BOOTP or DHCP server from
which the configuration of this device was
leased. This should be a DNS-recognizable
host name."
::= { bootconfigVx 13 }
bootconfigClientName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Textual name of this device, as determined by
the BOOTP or DHCP protocol. This should be a
DNS-recognizable host name."
::= { bootconfigVx 14 }
bootconfigNameServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF BootconfigNameServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of DNS Name Servers provided by the
bootconfigHostAddr Boot Server."
::= { bootconfigVx 15 }
bootconfigNameServerEntry OBJECT-TYPE
SYNTAX BootconfigNameServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in bootconfigNameServerTable."
INDEX {bootconfigNameServerPriority}
::= { bootconfigNameServerTable 1 }
BootconfigNameServerEntry ::=
SEQUENCE {
bootconfigNameServerPriority INTEGER,
bootconfigNameServer IpAddress}
bootconfigNameServerPriority OBJECT-TYPE
SYNTAX INTEGER (1..3)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The priority order in which a domain name
server is queried. Lower values are queried
first."
::= { bootconfigNameServerEntry 1 }
bootconfigNameServer OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IPv4 address of a domain name server."
::= { bootconfigNameServerEntry 2 }
bootconfigDomainName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the IP domain of which this device
is a member, as determined by the BOOTP or
DHCP protocol."
::= { bootconfigVx 16 }
bootconfigSntpServer OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IPv4 network address of SNTP server for use
by this device, as determined by the BOOTP or
DHCP protocol."
::= { bootconfigVx 17 }
bootconfigSaveServerResponse OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If true, the leased configuration from a boot
server is saved as the new system defaults.
If false, system defaults remain unchanged
when a new configuration is leased."
DEFVAL { true }
::= { bootconfigVx 18 }
bootconfigCmdInvokeIniLoad OBJECT-TYPE
SYNTAX AwcInvokeCommand
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Initiate loading of an initialization
script '.ini' file from the file server
into the system FLASH.
Commands recognized: start."
::= { bootconfigVx 19 }
bootconfigCmdStatusIniLoad OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Status of the most recent command to load
an initialization script '.ini' file.
Possible values:
0 = Operation completed successfully (or
has not taken place).
2 = The '.ini' file was not found on the
file server.
12 = Insufficient memory to load the
'.ini' file.