This repository has been archived by the owner. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathCISCO-DOT11-IF-MIB
4482 lines (4020 loc) · 184 KB
/
CISCO-DOT11-IF-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
-- *****************************************************************
-- CISCO-DOT11-IF-MIB.my: CISCO IEEE 802.11 INTERFACE MIB file
--
-- April 2002, Francis Pang
--
-- Copyright (c) 2002-2007 by Cisco Systems, Inc.
-- All rights reserved.
-- *****************************************************************
--
CISCO-DOT11-IF-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
NOTIFICATION-TYPE,
Integer32,
Unsigned32,
Counter32
FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP,
NOTIFICATION-GROUP
FROM SNMPv2-CONF
TEXTUAL-CONVENTION,
MacAddress,
RowStatus,
TruthValue
FROM SNMPv2-TC
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
ifIndex
FROM IF-MIB
dot11AuthenticationAlgorithmsIndex,
dot11SupportedDataRatesRxIndex
FROM IEEE802dot11-MIB
ciscoMgmt
FROM CISCO-SMI;
-- ********************************************************************
-- * MODULE IDENTITY
-- ********************************************************************
ciscoDot11IfMIB MODULE-IDENTITY
LAST-UPDATED "200612200000Z"
ORGANIZATION "Cisco System Inc."
CONTACT-INFO
" Cisco Systems
Customer Service
Postal: 170 West Tasman Drive,
San Jose CA 95134-1706.
USA
Tel: +1 800 553-NETS
E-mail: [email protected]"
DESCRIPTION
"This MIB module provides network management
support for Cisco IEEE 802.11 Wireless LAN
type device (Access Point) radio interfaces.
ACRONYMS
AES
Advanced Encryption Standard
AP
Access point
AID
Association IDentifier for wireless stations.
BSS
IEEE 802.11 Basic Service Set.
CCMP
Code Mode/CBC Mac Protocol
CEPT
European Conference of Postal and
Telecommunications Administrations.
CRC
Cyclic Redundancy Check.
DSSS
Direct-Sequence Spread Spectrum.
EAP
Extensible Authentication Protocol.
ERP
Extended Rate PHY
FHSS
Frequency-Hopping Spread Spectrum.
IAPP
Inter-Access-Point Protocol.
ICV
Integrity Check Value.
ISM
Industrial, Scientific, and Medical.
MBSSID
Multiple Broadcast SSID
MIC
Message Integrity Check.
MMH
Multi-Modal Hashing.
OFDM
Orthogonal Frequency Division Multiplexing.
PHY
Physical Layer (Layer 1 in network model).
PLCP
Physical Layer Convergence Procedure.
PMD
Physical Medium Dependent.
PSPF
Public Secure Packet Forwarding.
RF
Radio Frequency.
SS
Spread-spectrum.
SSID
Radio Service Set ID.
STA
IEEE 802.11 wireless station.
U-NII
Unlicensed National information Infrastructure
VLAN
Virtual LAN.
WEP
Wired Equivalent Privacy.
WGB
Work-group Bridge
WPA
WiFi Protected Access
GLOSSARY
Access point
Transmitter/receiver (transceiver) device
that commonly connects and transports data
between a wireless network and a wired network.
Association
The service used to establish access point
or station mapping and enable STA invocation
of the distribution system services.
(Wireless clients attempt to connect to
access points.)
Basic Rate
A data rate that is mandatory for client
devices to support in order for them to achieve
successful association.
Basic Service Set
The IEEE 802.11 BSS of an AP comprises of the
stations directly associating with the AP.
Bridge
Device that connects two or more segments
and reduces traffic by analyzing the
destination address, filtering the frame,
and forwarding the frame to all connected
segments.
Bridge AP
It is an AP that functions as a transparent
bridge between 2 wired LAN segments.
Broadcast SSID
Clients can send out Broadcast SSID Probe
Requests to a nearby AP, and the AP will
broadcast its own SSID within its beacons
to response to the clients. Clients can use
this Broadcast SSID to associate and
communicate with the AP.
Cyclic Redundancy Check
CRC is an error detect mechanism that applies
to frame transmission.
Direct-Sequence Spread Spectrum
DSSS combines a data signal at the sending
station with a higher data rate bit sequence,
which many refer to as a chipping code (also
known as processing gain). A high processing gain
increases the signals resistance to interference.
DSSS sends a specific string of bits for each data
bit sent.
ERP-CCK Modulation
This signal modulation technique is supported in
PHY implementing IEEE 802.11b/g Protocol.
ERP-OFDM Modulation
This signal modulation technique is supported in
PHY implementing IEEE 802.11g Protocol.
Extensible Authentication Protocol
EAP acts as the interface between a wireless
client and an authentication server, such as a
RADIUS server, to which the access point
communicates over the wired network.
Extended Rate PHY
This PHY implements the IEEE 802.11g Protocol.
Frequency-Hopping Spread Spectrum
In FHSS, a hopping code determines the frequencies
the radio will transmit and in which order. To
properly receive the signal, the receiver must be
set to same hopping code and listen to the
incoming signal at the right time and correct
frequency. The code pattern maintains a single
logical channel.
IEEE 802.11
Standard to encourage interoperability among
wireless networking equipment.
IEEE 802.11b
High-rate wireless LAN standard for wireless
data transfer at up to 11 Mbps.
IEEE P802.11g
Higher Speed Physical Layer (PHY) Extension to
IEEE 802.11b, will boost wireless LAN speed to 54
Mbps by using OFDM (orthogonal frequency division
multiplexing). The IEEE 802.11g specification is
backward compatible with the widely deployed IEEE
802.11b standard.
Inter-Access-Point Protocol
The IEEE 802.11 standard does not define how
access points track moving users or how to
negotiate a handoff from one access point to the
next, a process referred to as roaming. IAPP is
a Cisco proprietary protocol to support roaming.
However, IAPP does not address how the wireless
system tracks users moving from one subnet to
another.
Independent network
Network that provides peer-to-peer connectivity
without relying on a complete network
infrastructure.
Integrity Check Value
The WEP ICV shall be a 32-bit value containing
the 32-bit cyclic redundancy code designed for
verifying wireless data frame integrity.
Message Integrity Check
A MIC can, optionally, be added to WEP-encrypted
802.11 frames. MIC prevents attacks on encrypted
packets. MIC, implemented on both the access point
and all associated client devices, adds a few bytes
to each packet to make the packets tamper-proof.
Native VLAN ID
A switch port and/or AP can be configured with a
'native VLAN ID'. Untagged or priority-tagged
frames are implicitly associated with the native
VLAN ID. The default native VLAN ID is '1' if
VLAN tagging is enabled. The native VLAN ID is '0'
or 'no VLAN ID' if VLAN tagging is not enabled.
Node
Device on a network; has its own unique network
address and name.
Non-Root Bridge
This wireless bridge does not connect to the main
wired LAN segment. It connects to a remote wired
LAN segment and can associate with root bridges and
other non-root bridges that accept client
associations. It also can accept associations from
other non-root bridges, repeater access points,
and client devices.
Physical Layer Convergence Procedure
In IEEE 802.11 wireless LANs, PLCP defines a method
of mapping the IEEE 802.11 MAC sublayer protocol
data units into a framing format suitable for
sending and receiving user data and management
information between two or more wireless stations
using the associated PMD system.
Physical Medium Dependent
In IEEE 802.11 wireless LANs, a PMD system, whose
function defines the characteristics of, and method
of transmitting and receiving data through, a
wireless medium between two or more wireless
stations each using the DSSS.
Preamble
The radio preamble are data at the head of a
packet that contains information access points
and client devices required by IEEE 802.11 when
sending and receiving packets.
Primary LAN
In an AP, if the destinations of inbound unicast
frames are unknown, the frames are sent toward
the primary LAN defined on the device.
Radio carrier
Radio waves that deliver energy to a remote
receiver; in other words, radio waves in a
wireless LAN environment.
Repeater
Device that connects multiple segments,
listening to each and regenerating the signal
on one to every other connected one; so that
the signal can travel further.
Repeater or Non-root Access Point
The repeater access point is not connected
to the wired LAN. The Repeater is a wireless
LAN transceiver that transfers data between
a client and another access point, another
repeater, or between two bridges. The repeater
is placed within radio range of an access point
connected to the wired LAN, another repeater, or
an non-root bridge to extend the range of the
infrastructure.
Radio Frequency
Radio wave and modulation process or operation.
Root Access Point
This access point connects clients to the main
wired LAN.
Root (Wireless) Bridge
This wireless bridge connects to the main wired
LAN. It can communicate with non-root wireless
bridges, repeater access points, and client
devices but not with another wireless root
bridge. Only one wireless bridge in a wireless
LAN can be set as the wireless root bridge.
Spread-spectrum
Wideband radio frequency technique that
consumes more bandwidth than the narrow-band
alternative but produces a signal that is louder
and easier to detect. There are two types of
spread-spectrum radio: frequency hopping and
direct sequence.
Radio Service Set ID
SSID is a unique identifier that APs and clients
use to identify with each other. SSID is a simple
means of access control and is not for security.
The SSID can be any alphanumeric entry up to 32
characters.
Tag header
A 'tag header' is as defined in the IEEE 802.1Q
standard. An 802.1Q tag header contains a 3-bit
priority field and a 12-bit VLAN ID field.
A 'priority tag' has a VLAN ID of 0, to indicate
'no VLAN ID'. A 'VLAN tag' has a non-zero
VLAN ID.
Virtual LAN
VLAN defined in the IEEE 802.1Q VLAN standard
supports logically segmenting of LAN
infrastructure into different subnets or
workgroups so that packets are switched only
between ports within the same VLAN.
VLAN ID
Each VLAN is identified by a 12-bit 'VLAN ID'.
A VLAN ID of '0' is used to indicate
'no VLAN ID'. Valid VLAN IDs range from '1' to
'4095'. VLAN of ID '4095' is the default VLAN
for Cisco VoIP Phones.
Wired Equivalent Privacy
WEP is generally used to refer to 802.11
encryption.
Work-group Bridge
It is a client to APs or wireless root bridges.
The radio port of a WGB serves as the uplink to
the main network and the Ethernet port provides
network access for devices like PC or IP phone.
Upgrade of Frequencies
As per the latest regulations proposed by the
Japanese Government, the four channels 34
( 5170 GHz ), 38 ( 5190 GHz), 42 ( 5210 ) and
44 ( 5230 ) in the 5150-5250 MHz band has been
shifted by 10 MHz. Thus, the new channels in the
5150-5250 MHz band are 36 ( 5180 ), 40 ( 5200 )
and 44 ( 5220 ) and 48 ( 5240 )."
REVISION "200612200000Z"
DESCRIPTION
"- Added following objects in cd11IfStationConfigTable
cd11IfMobileStationListIgnore
cd11IfMobileStationScanChannel.
- Added cd11Ifdot11MobileStationScanGroup OBJECT-GROUP
- Added ciscoDot11IfComplianceRev4 MODULE-COMPLIANCE."
REVISION "200503100000Z"
DESCRIPTION
"Updated the cd11IfCurrentCarrierSet to define new
carrier types."
REVISION "200406060000Z"
DESCRIPTION
"Modified the cd11IfPhyNativePowerUseStandard to
read-write and updated cd11IfNativeTxPowerSupportTable
and cd11IfRfNativePowerTable to add the object
cd11IfRadioModulationClass as indices."
REVISION "200405060000Z"
DESCRIPTION
"Added cd11IfStationSwitchOverNotif and
cd11IfRogueApDetectedNotif notifications"
REVISION "200404170000Z"
DESCRIPTION
"Added cd11IfVlanPsPacketForwardEnable and
cd11IfPsPacketForwardEnable for PSPF support.
Added cd11IfMultipleBssidEnable for MBSSID support.
Modified Cd11IfVlanEncryptKeyEntry to add objects
for WEP encryption support. Added
cd11IfRogueApDetectedTable for rogue AP detection
information. Added cd11IfFrequencyBandTable,
cd11IfRfNativePowerTable, and
cd11IfNativeTxPowerSupportTable to support per
radio frequency band power configuration. Added
cd11IfDataRatesSensitivityTable for receive
sensitivity specifications of IEEE 802.11 radio."
REVISION "200402270000Z"
DESCRIPTION
"Updated the cd11IfStationRole object description.
Modified CDot11IfCipherType textual convention to
match the latest design. Updated
cd11IfClientTxPowerTable power levels to allow
negative dBm power. Modified the
MODULE-COMPLIANCE for this MIB."
REVISION "200311170000Z"
DESCRIPTION
"Added cd11IfWorldModeCountry, cd11IfWorldMode, and
cd11IfMobileStationScanParent to
cd11IfStationConfigEntry. Added cd11IfPhyConcatenation
to cd11IfPhyOperationEntry. Added
cd11IfVlanEncryptKeyTransmit to
Cd11IfVlanEncryptKeyEntry. Added
cd11IfClientTxPowerTable, cd11IfOfdmTxPowerTable,
cd11IfRadioMonitoringTable, and
cd11IfVlanSecurityTable. Modified the
MODULE-COMPLIANCE for this MIB."
REVISION "200307130000Z"
DESCRIPTION
"Added cd11IfPhyBasicRateSet to identify if a rate
in the dot11OperationalRateSet is a Basic Rate, added
cd11IfPhyMacSpecification to identify the IEEE 802.11
Standard being applied to the radio, modified the
cd11IfPhyDsssCurrentChannel and cd11IfChanSelectChannel
ranges to support 802.11A radio, and added new device
types to cd11IfStationRole.
Added cd11IfAuxSsidAuthAlgEapMethod,
cd11IfAuxSsidAuthAlgMacMethod, cd11IfAuthAlgEapMethod,
and cd11IfAuthAlgMacAddrMethod to specify the
authentication method list."
REVISION "200212290000Z"
DESCRIPTION
"Added a new cd11IfVlanEncryptKeyTable to support
per interface and VLAN encryption key and
cd11IfDomainCapabilitySet to support the
IEEE 802.11 dot11MultiDomainCapabilityTable."
REVISION "200208010000Z"
DESCRIPTION
"Corrected the description of roleBridge(2) of
the cd11IfStationRole object and changed the roleAP(1)
to roleWgb(1)."
REVISION "200207040000Z"
DESCRIPTION
"Changed cd11IfAuxSsidBroadcastSsid from read-only
to read-write."
REVISION "200205100000Z"
DESCRIPTION
"The maximum value for cd11IfAuxiliarySsidLength is
changed to '4095'. The new cd11IfAuxSsidIndex replaces
cd11IfAuxSsid as the cd11IfAuxSsidTable index. New
enumerate values are added to cd11IfStationRole. New
MAC address authentication cd11IfAuthAlgRequireMacAddr
and cd11IfAuxSsidAuthAlgRequireMac objects are added to
the authentication algorithm tables."
REVISION "200204110000Z"
DESCRIPTION
"This is the initial version of this MIB module."
::= { ciscoMgmt 272 }
ciscoDot11IfMIBNotifications OBJECT IDENTIFIER
::= { ciscoDot11IfMIB 0 }
ciscoDot11IfMIBObjects OBJECT IDENTIFIER
::= { ciscoDot11IfMIB 1 }
cd11IfConfigurations OBJECT IDENTIFIER
::= { ciscoDot11IfMIBObjects 1 }
cd11IfStatistics OBJECT IDENTIFIER
::= { ciscoDot11IfMIBObjects 2 }
cd11IfManagement OBJECT IDENTIFIER
::= { cd11IfConfigurations 1 }
cd11IfPhyConfig OBJECT IDENTIFIER
::= { cd11IfConfigurations 2 }
cd11IfMacStatistics OBJECT IDENTIFIER
::= { cd11IfStatistics 1 }
-- Textual Conventions
CDot11IfVlanIdOrZero ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This is a 12-bit VLAN ID used in the VLAN Tag
header. A value of '0' indicates NULL or no VLAN ID.
and '4095' is the default VLAN for Cisco VoIP Phones.
This textual convention differs from the VlanId
textual convention, defined by the Q-BRIDGE-MIB
in RFC-2674, because VlanId does not permit the
value '0' and '4095'."
REFERENCE
"RFC-2674, Bridge MIB Extensions, August 1999,
Q-BRIDGE-MIB, E. Bell."
SYNTAX Unsigned32 (0..4095)
WepKeyType128 ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"WEP shared secret encryption key, 128-bits or 16
octets. Only the first 13 octets are accessible to
users among the total 16 octets."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, Section 8.3.2."
SYNTAX OCTET STRING (SIZE (5..13))
CDot11IfMicAlgorithm ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Auxiliary MIC calculated on WEP-encoded packets
to validate that they have not been modified.
This is in addition to the standard 802.11 ICV.
The two options are:
micNone(1) - do not apply MIC,
micMXX(2) - apply MMH MIC,
micMichael(3) - Michael MIC."
SYNTAX INTEGER {
micNone(1),
micMXX(2),
micMichael(3)
}
CDot11IfWepKeyPermuteAlgorithm ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This defines the function through which the WEP
encryption key is permuted between key renewal
periods.
wepPermuteNone(1) - no WEP key permutation,
wepPermuteIV(2) - WEP key permutation with
initialization vector."
SYNTAX INTEGER {
wepPermuteNone(1),
wepPermuteIV(2)
}
CDot11IfCipherType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"These are the frame encryption cipher types for
frames on IEEE 802.11 radio interfaces.
ckip Cisco Per packet key hashing,
cmic Cisco MMH MIC,
tkip WPA Temporal Key encryption,
wep40 40-bit WEP key,
wep128 128-bit WEP key,
aesccm WPA AES CCMP encryption."
SYNTAX BITS {
ckip(0),
cmic(1),
tkip(2),
wep40(3),
wep128(4),
aesccm(5)
}
CDot11RadioFrequencyBandType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"These are the radio frequency band names
the IEEE 802.11 radio is operating on:
ism24G(0) - ISM 2.4 GHz band,
unii1(1) - U-NII-1 band (5.15-5.25 GHz),
unii2(2) - U-NII-2 band (5.25-5.35 GHz),
unii3(3) - U-NII-3 band (5.725-5.825 GHz),
cept(4) - CEPT band B (5.47-5.725 GHz),
japan49G(5) - Japan 4.9 band (4.9-5.0 GHz),
japan50G(6) - Japan 5.0 band (5.03-5.091 GHz)."
SYNTAX BITS {
ism24G(0),
unii1(1),
unii2(2),
unii3(3),
cept(4),
japan49G(5),
japan50G(6)
}
CDot11RadioModulationClass ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"These are classifications of radio modulation
techniques used by the various Physical Layers
of IEEE 802.11 radios:
dsss(1) - modulation schemes associated
with DSSS type PHYs,
ofdm(2) - modulation schemes associated
with OFDM type PHYs."
SYNTAX INTEGER {
dsss(1),
ofdm(2)
}
Cd11IfDot11UpgradeStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"These are the various status on the
Radio Upgrade:
unknown(1) - upgrade status unknown,
upgradeNotApplicable(2) - Regulatory domain upgrade
is not applicable for 11b/g
radios and 11a radios not in
Japan regulatory domain,
upgradeNotDone(3) - 11a radio is in Japan domain but
yet to be upgraded,
upgradeNotNeeded(4) - 11a radio is already configured to
operate in the W52 domain and that
the upgrade is not needed,
upgradeDone(5) - upgrade has been done from J52 to W52."
SYNTAX INTEGER {
unknown(1),
upgradeNotApplicable(2),
upgradeNotDone(3),
upgradeNotNeeded(4),
upgradeDone(5)
}
-- ********************************************************************
-- * Cisco IEEE 802.11 Interface Extension
-- ********************************************************************
-- Configuration Objects
cd11IfStationConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cd11IfStationConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains attributes to configure radio
interfaces managed by this agent. The attributes
are extensions to the configuration parameters in
the dot11StationConfigTable defined in the
IEEE802dot11-MIB. This table configures the station
role of the interface, proprietary extensions,
hierarchy, security option and parameters, and
communication settings. This table has a sparse
dependent relationship on the ifTable.
For each entry in this table, there exists an entry
in the ifTable of ifType ieee80211(71).
Entries in this table cannot be created or deleted
by the network management system. All entries are
created or deleted by the agent."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, IEEE802dot11-MIB."
::= { cd11IfManagement 1 }
cd11IfStationConfigEntry OBJECT-TYPE
SYNTAX Cd11IfStationConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A collection of configuration attributes for
an IEEE 802.11 radio interface. These attributes
are supplements to attributes defined in the
dot11StationConfigTable in IEEE802dot11-MIB."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, IEEE802dot11-MIB."
INDEX { ifIndex }
::= { cd11IfStationConfigTable 1 }
Cd11IfStationConfigEntry ::=
SEQUENCE {
cd11IfStationRole INTEGER,
cd11IfCiscoExtensionsEnable TruthValue,
cd11IfAllowBroadcastSsidAssoc TruthValue,
cd11IfPrivacyOptionMaxRate Integer32,
cd11IfEthernetEncapsulDefault INTEGER,
cd11IfBridgeSpacing Unsigned32,
cd11IfDesiredSsidMaxAssocSta Unsigned32,
cd11IfAuxiliarySsidLength Unsigned32,
cd11IfVoipExtensionsEnable TruthValue,
cd11IfDesiredSsidMicAlgorithm CDot11IfMicAlgorithm,
cd11IfDesiredSsidWepPermuteAlg
CDot11IfWepKeyPermuteAlgorithm,
cd11IfWorldMode INTEGER,
cd11IfWorldModeCountry OCTET STRING,
cd11IfMobileStationScanParent TruthValue,
cd11IfPsPacketForwardEnable TruthValue,
cd11IfMultipleBssidEnable TruthValue,
cd11IfMobileStationListIgnore TruthValue,
cd11IfMobileStationScanChannel OCTET STRING
}
cd11IfStationRole OBJECT-TYPE
SYNTAX INTEGER {
roleWgb(1),
roleBridge(2),
roleClient(3),
roleRoot(4),
roleRepeater(5),
roleApBridge(6),
roleApRepeater(7),
roleIBSS(8),
roleNrBridge(9),
roleApNrBridge(10),
roleScanner(11)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This defines the role of this station itself within
the 802.11 BSS of which it is a member. The roles are:
roleWgb(1) - infrastructure type WGB
client,
roleBridge(2) - root bridge,
roleClient(3) - independent BBS type
WGB client,
roleRoot(4) - root access point,
roleRepeater(5) - repeater,
roleApBridge(6) - AP and root bridge,
roleApRepeater(7) - AP and repeater,
roleIBSS(8) - independent BSS,
roleNrBridge(9) - non-root bridge,
roleApNrBridge(10) - AP and non-root bridge,
roleScanner(11) - scanner for rogue APs
and clients.
The default role is roleRoot(4)."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, section 3."
::= { cd11IfStationConfigEntry 1 }
cd11IfCiscoExtensionsEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Cisco Aironet extensions to the basic IEEE
802.11 protocols are enabled if the value is
'true'. The extension enables better BSS
performance and faster roaming. If the value
is 'false', only the basic IEEE 802.11 protocols
are used. This ensures maximum compatibility
with non-Cisco equipment. The default value is
'true'."
::= { cd11IfStationConfigEntry 2 }
cd11IfAllowBroadcastSsidAssoc OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If the value of cd11IfStationRole is either
'roleRoot' or 'roleRepeater', and if
cd11IfAllowBroadcastSsidAssoc is 'true',
the device radio driver will respond
to Broadcast SSID Probe Requests and will
broadcast its own SSID within its beacons.
If cd11IfAllowBroadcastSsidAssoc is 'false',
the radio will not respond to the Broadcast
SSID and will not broadcast its SSID within
beacons. The default value is 'true'."
::= { cd11IfStationConfigEntry 3 }
cd11IfPrivacyOptionMaxRate OBJECT-TYPE
SYNTAX Integer32 (2..127)
UNITS "500 Kb per second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the maximum transmit bit
rate supported by the radio when using, for example,
WEP encryption. The rate is expressed in standard
IEEE 802.11 increments of 500Kb/sec."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, section 8.1.2."
::= { cd11IfStationConfigEntry 4 }
cd11IfEthernetEncapsulDefault OBJECT-TYPE
SYNTAX INTEGER {
encap802dot1H(1),
encapRfc1042(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the Ethernet encapsulation
transform type used within the BSS. The encapsulations
allowed are either IEEE 802.1H type or RFC-1042 type.
IEEE 802.1H designates the Subnetwork Access Protocol
(SNAP) mechanism as the Ethernet encapsulation protocol.
Subsequently, other (non-IP) uses of the RFC-1042
mechanism. RFC-1042 specifies a translation for
Ethernet frames, such that they can be exchanged with
end stations on LANs that do not provide an Ethernet
service.
encap802dot1H(1) - IEEE 802.1H SNAP encapsulation
encapRfc1042(2) - RFC-1042 encapsulation.
The default encapsulation type is encap802dot1H(1)."
REFERENCE
"IEEE Std 802.1H-1997, Media Access Control
Bridging of Ethernet V2.0 in Local Area
Networks. RFC-1042, February 1988, A Standard for
the Transmission of IP Datagrams over IEEE 802
Networks, J. Postel and J. Reynolds."
::= { cd11IfStationConfigEntry 5 }
cd11IfBridgeSpacing OBJECT-TYPE
SYNTAX Unsigned32 (0..38640)
UNITS "Kilometers"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If this device is a root wireless bridge,
this value is the distance in kilometers
reported between this device and its
farthest non-root bridge client."
::= { cd11IfStationConfigEntry 6 }
cd11IfDesiredSsidMaxAssocSta OBJECT-TYPE
SYNTAX Unsigned32 (0..2007)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object defines the maximum number of IEEE
802.11 stations which may associate with this radio
interface through IEEE802dot11-MIB dot11DesiredSSID.
If this value is '0', the maximum number is limited
only by the IEEE 802.11 standard and any hardware or
radio firmware limitations of the access point. The
default value is '0'."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, section 5.7."
::= { cd11IfStationConfigEntry 7 }
cd11IfAuxiliarySsidLength OBJECT-TYPE
SYNTAX Unsigned32 (0..4095)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the maximum number of SSIDs
allowed for a radio interface or the number of SSID
entries per radio interface in the cd11IfAuxSsidTable.
The default value is '25'."
::= { cd11IfStationConfigEntry 8 }
cd11IfVoipExtensionsEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object enables the radio generate proprietary
elements in its beacons and probe responses to support
Voice-over-IP (VoIP) phones. The default value is
'true'."
::= { cd11IfStationConfigEntry 9 }
cd11IfDesiredSsidMicAlgorithm OBJECT-TYPE
SYNTAX CDot11IfMicAlgorithm
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object defines the auxiliary MIC calculated
on WEP-encoded packets of stations associated with
this radio interface through IEEE802dot11-MIB
dot11DesiredSSID. The default value is micNone(1)."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, section 8.2.3."
::= { cd11IfStationConfigEntry 10 }
cd11IfDesiredSsidWepPermuteAlg OBJECT-TYPE
SYNTAX CDot11IfWepKeyPermuteAlgorithm
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object defines the function through which
the WEP encryption key is permuted between key
renewal periods for stations associated with this
radio interface through IEEE802dot11-MIB
dot11DesiredSSID. The default value is
wepPermuteNone(1)."
REFERENCE
"IEEE Std 802.11-Jan 14 1999, Wireless LAN Medium
Access Control and Physical Layer Specifications,
LAN MAN Standards Committee of the IEEE Computer
Society, section 8.2.3."
::= { cd11IfStationConfigEntry 11 }
cd11IfWorldMode OBJECT-TYPE
SYNTAX INTEGER {
none(1),
legacy(2),
dot11d(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object sets the World-Mode function of the
radio to allow it to function in countries other
than it was manufactured for.
none(1) - No world mode setting,
legacy(2) - compatible with legacy hardware,
dot11d(3) - use IEEE 802.11d mechanism."
DEFVAL { none }
::= { cd11IfStationConfigEntry 12 }
cd11IfWorldModeCountry OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(3))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object sets the dot11CountryString in the
IEEE802dot11-MIB identifying the country in which
the radio is operating. When cd11IfWorldMode is
either legacy(2) or dot11d(3), this object value
will be sent in the radio management frame.
The first two octets of this string is the two
character country code as described in document
ISO/IEC 3166-1. The third octet shall be one of
the following: