-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathCISCO-DOT11-CONTEXT-SERVICES-MIB.mib
1991 lines (1692 loc) · 80 KB
/
CISCO-DOT11-CONTEXT-SERVICES-MIB.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-CONTEXT-SERVICES-MIB.my:
-- May 2003, Raju Datla, Parthasarathy Venkatavaradhan,
-- Prasanna Viswakumar.
--
-- Copyright (c) 2003 by Cisco Systems, Inc.
-- All rights reserved.
-- *******************************************************************
--
CISCO-DOT11-CONTEXT-SERVICES-MIB DEFINITIONS ::= BEGIN
IMPORTS
NOTIFICATION-TYPE,
MODULE-IDENTITY,
OBJECT-TYPE,
Counter32,
Gauge32,
Unsigned32
FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP,
NOTIFICATION-GROUP
FROM SNMPv2-CONF
MacAddress,
TruthValue,
RowStatus,
TimeInterval,
TimeStamp,
TEXTUAL-CONVENTION
FROM SNMPv2-TC
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
CiscoInetAddressMask
FROM CISCO-TC
ciscoExperiment
FROM CISCO-SMI
InterfaceIndex,
ifPhysAddress
FROM IF-MIB
InetAddressType,
InetAddress
FROM INET-ADDRESS-MIB;
ciscoDot11ContextServicesMIB MODULE-IDENTITY
LAST-UPDATED "200309150000Z"
ORGANIZATION "Cisco Systems Inc."
CONTACT-INFO
" Cisco Systems,
Customer Service
Postal: 170 West Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553-NETS
E-mail: [email protected]"
DESCRIPTION
"This MIB supports managing the devices offering
WDS and WNS services.
The hierarchy of the devices offering the wireless
domain and network services looks like the following.
+= = = = +
| |
| WNS | (Campus level)
| |
+= = = = +
/ \
/ \
/ \
/ \
\/ \/
+= = =+ += = =+
| | | |
| WNS | | WNS |
| | | |
+= = =+ += = =+
/ \ \
/ \ \
/ \ \
/ \ \
\/ \/ \/
+=====+ +=====+ +=====+
| | | | | |
| WDS | | WDS | | WDS | ( Subnet
| | | | | | level-
+=====+ +=====+ +=====+ Single
/ \ \ \ broadcast
/ \ \ \ domain )
/ \ \ \
/ \ \ \
/ \ \ \
\/ \/ \/ \/
+~-~-~+ +~-~-~+ +~-~-~+ +~-~-~+
+ + + + + + + +
+ AP + + AP + + AP + + AP +
+ + + + + + + +
+~-~-~+ +~-~-~+ +~-~-~+ +~-~-~+
.. . . .
. . . . .
. . . . .
. . . . .
. . . . .
\/ \/ \/ \/ \/
+.....+ +.....+ +-.-.-.+ +~-~-~+ +......+
+ + + + + + + + + +
+ MN + + MN + + WGB + + AP + + MN +
+ + + + + + + + + +
+.....+ +.....+ +-.-.-.+ +~-~-~+ +......+
. . .
. . .
. . .
. . .
\/ \/ \/
++++++++ +......+ +......+
+ + + + + +
+ EN + + MN + + MN +
+ + + + + +
++++++++ +......+ +......+
The diagram above depicts the overall campus network
hierarchy and the services being offered at various
levels in the hierarchy. Here, Infrastructure Node
Authentication services are offered by the device
providing WNS at the root (Campus) level. WNS
at this level thus span an enterprise campus that
resides in a geographic location.
WNS are offered at various levels as shown in the
hierarchy to achieve scalability. WNS at the
subsequent levels other than the root level include
authentication services for MNs and are typically
confined to a single building.
At the broadcast domain level, the WDS include
authentication and registration services for the APs.
An AP provides Proxy Authentication and registration
services for the MNs. The APs that connect to parent
APs through the wireless interface ( as shown by the
dotted lines ) are Repeater-APs. The WGBs are managed
in the same manner as the MNs. However, the Ethernet
Nodes ( EN ) that are connected to the WGB won't be
served as part of the WDS.
GLOSSARY
Access Point ( AP )
Any entity that contains an 802.11 medium access
control ( MAC ) and physical layer ( PHY ) interface
and provides access to the distribution services via
the wireless medium for associated clients.
Wireless Bridge
An 802.11 entity that provides wireless connectivity
between two wired LAN segments and is used in point-
to-point or point-multipoint configurations.
Mobile Node ( MN )
A roaming 802.11 wireless device in a wireless
network associated with an access point.
WorkGroup Bridge ( WGB )
A work-group bridge is a non-STP AP with an 802.11
primary port and a secondary Ethernet port that
provides access to a non-STP secondary Ethernet LAN
segment. STP refers to the IEEE 802.1D Spanning Tree
Protocol. An 'STP AP' executes the 802.1D STP and
the 802.1D STP is operated on an 'STP link'. A
'non-STP AP' does not execute the 802.1D STP.
Repeater-AP
A repeater is a 'wireless AP' that is attached to a
parent AP on an 802.11 primary port. The Ethernet
port is disabled in a Repeater-AP.
Infrastructure Node ( IN )
This term refers to Access Points, Wireless Bridges
and those devices that implement and offer WNS and
WDS as shown in the network hierarchy.
Ethernet Node ( EN )
The node that gets the uplink to the Wireless AP
via the WGB. This node connects to the WGB through
its primary Ethernet port.
Context
The mobility context for an MN includes its current
mobility bindings with the APs, IP/802 address
bindings, cached configuration parameters, QoS state,
IP group membership, authentication state, accounting
statistics, and other dynamically derived protocol
state information.
Wireless Domain Services
The set of services being offered at a particular
broadcast domain that may be an IP subnet or a
particular VLAN. The services include the following.
1. MN security credential caching to provide seamless,
secure intra-subnet roaming.
2. Authenticated context transfer for roaming client
within the subnet.
Since, by definition, the WDS are bound to one subnet
( broadcast domain ), if implemented in a device
spanning multiple subnets, the implementation should
take care to provide separate set of services for
each of the subnets.
Wireless Network Services
The set of services that can be visualized as being
offered at various levels other than the lowest
(subnet) level of a hierarchical campus network.
At the root level, Infrastructure Authentication
services for all the devices in the network that
provide WNS and WDS are offered. In case if WNS are
not distributed at several levels as shown in the
hierarchy above and is confined to be offered only at
a single root level, the services offered also
include authentication services for the MNs.
WNS Entity
The logical entity that resides in an infrastructure
node and offers WNS to the descendants of that
infrastructure node in the wireless services
hierarchy.
WDS Entity
The logical entity that resides in an infrastructure
node and offers WDS to the descendants of that
infrastructure node in the wireless services
hierarchy.
WS Entity
Refers to one of WNS / WDS Entities.
Parent Node
The node that immediately precedes an infrastructure
node in the hierarchy. For mobile nodes, the parent
APs provide proxy wireless services by talking to
their immediate parent nodes that offer WDS.
Root Node
The infrastructure node that is at the highest level
in the services hierarchy and that offers WNS.
The WNS entity acts as the IN Authenticator
for the rest of the infrastructure nodes. In case if
WNS are not distributed, the root node also acts as
the Mobile Node Authenticator ( See description
below ).
Descendant
A node that is in the sub-tree of the campus hierarchy
tree rooted at the node providing WNS.
Infrastructure Node ( IN ) Authenticator
The logical entity that communicates with the AAA
server and provides authentication Services for the
infrastructure nodes. Details of the IN
Authenticator have to be configured in the device
providing WDS manually. The AP learns about the IN
Authenticator automatically upon registering with its
immediate parent. The WDS also includes MN
authentication services if the entity providing WDS is
at the root level in the hierarchy.
Mobile Node ( MN ) Authenticator
The logical entity that communicates with the AAA
server and provides authentication Services for mobile
nodes. An infrastructure node learns the whereabouts
of the MN Authenticator from the root node.
Wireless Network Manager ( WNM )
The network management system that manages the
entire hierarchy of devices providing WNS and WDS.
Advertisement
The process by which the Access Points identify their
parent nodes providing WDS. APs listen to the
advertisements of the WDS entities and gets registered
with one of those entities to facilitate secured
context transfer.
WLCCP
Wireless LAN Context Control Protocol. Used to
establish and manage the network topology and
securely manage the 'operational context' for mobile
stations in a campus network.
AAA
Authentication, Authorization, Accounting
A node will request network access by executing a
protocol to an authentication server that provides
protocols and services for providing authentication,
authorization and session accounting.
Service Set Identifier ( SSID )
802.11 Service Set Identifier. An SSID identifies a
set of mobile nodes grouped into a logical 'service
set' and the APs that provide access for the service
set.
Wired Equivalent Privacy (WEP)
This protocol uses a pseudo random generator and RC4
stream cipher and is specified by the 802.11 standard
as the algorithm for encryption and authentication
over the wireless segment of the LAN.
Temporal Key Integrity Protocol ( TKIP )
This protocol provides initialization vector hashing
and a Message Integrity Check ( MIC ) to ensure data
integrity. TKIP includes use of dynamic keys to
defeat capture of passive keys. TKIP uses the RC4
cipher as WEP but the difference is that TKIP changes
temporal keys every 10,000 packets thereby providing a
dynamic distribution network that enhances the
security of the network.
Cisco Key Integrity Protocol ( CKIP )
A proprietary implementation similar to TKIP. CKIP
implements key permutation for protecting the CKIP
key against attacks. Other features of CKIP include
expansion of encryption key to 16 bytes of length for
key protection and MIC to ensure data integrity.
Wireless services at subnet level
=================================
+========+
| |
| WDS | ( Subnet level - Broadcast
| | domain )
+========+
/ \
/ \
/ \
/ \
/ \
\/ \/
+~-~-~+ +~-~-~+
+ + + +
+ AP + + AP +
+ + + +
+~-~-~+ +~-~-~+
. . .
. . .
. . .
. . .
. . .
. . .
\/ \/ \/
+......+ +-.-.-.+ +~-~-~-+
+ + + + + +
+ MN + + WGB + + AP +
+ + + + + +
+......+ +-.-.-.+ +~-~-~-+
The above diagram depicts how wireless services are
being offered in an infrastructure node implementing
WDS. In such a network, the WDS entity provides
authentication services to both the infrastructure
and mobile nodes.
The other entities in the diagram are the Mobile Node
( MN ), the Workgroup Bridge (WGB) and another
AP-in-repeater mode. The Repeater-APs first perform
initial authentication with the AAA server ( through
WDS ) and then perform infrastructure authentication
and registration with the WDS entity. The WGBs go
through the same procedure as the MNs for
authentication and registration with the WDS entity. "
REVISION "200309150000Z"
DESCRIPTION
"Initial version of this MIB module. "
::= { ciscoExperiment 110 }
ciscoDot11csMIBNotifications OBJECT IDENTIFIER
::= { ciscoDot11ContextServicesMIB 0 }
ciscoDot11csMIBObjects OBJECT IDENTIFIER
::= { ciscoDot11ContextServicesMIB 1 }
ciscoDot11csMIBConformance OBJECT IDENTIFIER
::= { ciscoDot11ContextServicesMIB 2 }
cDot11csConfigGlobal OBJECT IDENTIFIER
::= { ciscoDot11csMIBObjects 1 }
cDot11csDescendantIn OBJECT IDENTIFIER
::= { ciscoDot11csMIBObjects 2 }
cDot11csMn OBJECT IDENTIFIER
::= { ciscoDot11csMIBObjects 3 }
-- Textual Conventions
CDot11csNodeIndex ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This textual convention defines an identifier that is
used to uniquely identify a WS Entity in the wireless
services hierarchy. "
SYNTAX OCTET STRING (SIZE(8))
--********************************************************************
--* Configuration global parameters
--********************************************************************
cDot11csServiceType OBJECT-TYPE
SYNTAX INTEGER {
none(1),
wds(2),
wns(3),
rootWns(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object identifies the type of service
this infrastructure node will offer.
none(1) - This infrastructure node is not
configured to offer any services.
wds(2) - This infrastructure node is configured
to offer Wireless Domain Services.
To configure this infrastructure node to
offer Wireless Domain Services, cDot11csServiceType
should be set to 'wds' and an entry should be
added to cDot11csWdsInstanceTable to specify the
configuration for the WDS.
wns(3) - This infrastructure node is configured
to offer Wireless Network Services.
To configure this infrastructure node to
offer Wireless Network Services, cDot11csServiceType
should be set to 'wns' and
cDot11csPrimaryRootNodeAddr should be set to the IP
address of the root infrastructure node that
offers WNS.
rootWns(4) - This infrastructure node is configured
to offer Wireless Network Services at the root
level in the wireless services hierarchy.
To configure an infrastructure node as the root
node, cDot11csServiceType should be set to
'rootWns' and cDot11csPrimaryRootNodeAddr should be
set to 0.0.0.0 to imply that this infrastructure
node is the root node in the wireless services
hierarchy. "
DEFVAL { none }
::= { cDot11csConfigGlobal 1 }
cDot11csParentNodeIpAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Represents the type of Internet address stored in
cDot11csParentNodeIpAddress. "
::= { cDot11csConfigGlobal 2 }
cDot11csParentNodeIpAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address of the immediate parent node of
this infrastructure node in the wireless services
hierarchy. The semantics for this object are defined
as follows.
If the value of cDot11csServiceType is 'rootWns' and
the value of this object is 0.0.0.0, then this node
is the root node offering WNS.
If the value of cDot11csServiceType is 'wns', the
value of this object is the IP address of the root
infrastructure node offering WNS.
If the values of cDot11csServiceType,
cDot11csIsRootNode and this object are 'wds', 'true'
and 0.0.0.0 respectively, then this node is the root
node in the wireless services hierarchy.
If the values of cDot11csServiceType and
cDot11csIsRootNode are 'wds' and 'false' respectively,
the value of this object is the IP address of the
immediate parent infrastructure node. "
::= { cDot11csConfigGlobal 3 }
cDot11csPrimaryRootNodeAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Represents the type of Internet address stored in
cDot11csPrimaryRootNodeAddr. "
::= { cDot11csConfigGlobal 4 }
cDot11csPrimaryRootNodeAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP address of the infrastructure node to be
configured as the primary root node. The primary
root node performs infrastructure authentication
for all the infrastructure nodes in the
wireless services network.
The semantics for this object are defined as
follows.
If the value of cDot11csServiceType is 'wds' and this
infrastructure node is the root node in the wireless
services hierarchy, the value configured is
0.0.0.0 to indicate that this node is the root node
in the wireless services hierarchy.
If the value of cDot11csServiceType is 'wds' and this
infrastructure node is not the root node in the
wireless services hierarchy, the value configured is
the IP address of the infrastructure node for which
the value of cDot11csServiceType is 'rootWns'.
If the value of cDot11csServiceType is 'wns', the
value configured is the IP address of the
infrastructure node for which the value of
cDot11csServiceType is 'rootWns'.
If the value of cDot11csServiceType is 'rootWns', the
value 0.0.0.0 is configured to indicate that this
infrastructure node is the root node in the wireless
services hierarchy. "
::= { cDot11csConfigGlobal 5 }
cDot11csSecondaryRootNodeAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Represents the type of Internet address stored in
cWSSecondaryRootNodeAddr. "
::= { cDot11csConfigGlobal 6 }
cDot11csSecondaryRootNodeAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP address of the Secondary root node acting as
a standby for the primary root node. The semantics
for this object are defined as follows.
If the values of cDot11wsServiceType,
cDot11wsIsRootNode and this object are 'wds', 'true'
and 0.0.0.0 respectively, then there is no
secondary root node in the wireless hierarchy.
If the values of cDot11wsServiceType and
cDot11wsIsRootNode are 'wds' and 'false'
respectively, then the value of this object is the
IP address of an infrastructure node that acts as a
backup for the current root node.
If the value of cDot11wsServiceType is 'wns', the
value of this object is the IP address of an
infrastructure node that acts as a backup for the
current root node.
If value of cDot11wsServiceType is 'rootWns', the
value of this object is the IP address of an
infrastructure node that acts as a backup for the
current root node. "
::= { cDot11csConfigGlobal 7 }
cDot11csCurrentRootNodeAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Represents the type of Internet address stored in
cDot11csCurrentRootNodeAddr. "
::= { cDot11csConfigGlobal 8 }
cDot11csCurrentRootNodeAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address of the infrastructure node that is
currently the root node.
This object's value is 0.0.0.0 if this infrastructure
node is the root node. Else, this object's value is
the IP address of the root node.
Thus, the object's value is 0.0.0.0 if either one
of the following is true.
1) this infrastructure node offers WDS and is the
root node.
2) this infrastructure node offers WNS with the
value of cDot11csServiceType equal to 'rootWns'.
The object's value is the IP address of the root node
if the value of cDot11csServiceType is 'wns' for this
node. "
::= { cDot11csConfigGlobal 9 }
cDot11csWnsEntityName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name associated with the WNS being offered by
this infrastructure node. This name is unique
across the wireless services network at the campus
level. This is applicable only if the infrastructure
node offers WNS. This object is not applicable for
read-write operations, if this is an infrastructure
node offering WDS. "
::= { cDot11csConfigGlobal 10 }
cDot11csMnaIpAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Represents the type of Internet address stored in
cDot11csMnaIpAddress. "
::= { cDot11csConfigGlobal 11 }
cDot11csMnaIpAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address of the Mobile Node Authenticator.
The semantics for this object are defined as follows.
If the value of cDot11csServiceType,
cDot11csIsRootNode and this object are 'wds', 'true'
and 0.0.0.0 respectively, this node is the MN
Authenticator.
If the values of cDot11csServiceType is 'wds' and the
value of cDot11csIsRootNode is 'false' indicating that
there is at least one node up in the wireless services
hierarchy that offers Wireless Network Services, the
value of this object is the IP address of the
immediate parent node for which the value of
cDot11csServiceType is 'wns'.
If the values of cDot11csServiceType and this object
are 'wns' and 0.0.0.0 respectively, this
infrastructure node is the MN Authenticator.
This object is not applicable to a root node offering
WNS which is identified by a value of 'rootWns' for
cDot11csServiceType. "
::= { cDot11csConfigGlobal 12 }
cDot11csIsRootNode OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates if this infrastructure node is
the root node. If the value of this object is
'true', this node is the root node. "
::= { cDot11csConfigGlobal 13 }
cDot11csNodeOperationMode OBJECT-TYPE
SYNTAX INTEGER {
adminStandAlone(1),
infrastructure(2),
fallbackStandAlone(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the mode which this
infrastructure node is currently operating in.
The semantics are described as follows.
adminStandAlone - An infrastructure node in this
mode has been configured to be the highest level node
in the wireless services hierarchy and acts as both
the Infrastructure and Mobile Node Authenticator.
For an infrastructure node for which
cDot11csServiceType is configured as 'rootWns', the
mode of operation is always 'adminStandAlone' as it
is the highest level node in the wireless services
hierarchy. An infrastructure node whose
cDot11csServiceType is 'wds' can be in
'adminStandAlone' mode if there is no node offering
Wireless Network Services and is the root node in
the wireless services hierarchy. An infrastructure
node for which the value of cDot11csServiceType is
'wns' can't be in 'adminStandAlone' mode since it
always has another infrastructure node as its parent
for which the value of cDot11csServiceType is
'rootWns' and won't be the root node in the wireless
services hierarchy.
infrastructure - An infrastructure node in this
mode has been configured with an external IN
Authenticator. The external IN Authenticator
in this case is the infrastructure node whose value
of cDot11csServiceType is 'rootWns'. The immediate
parent of this infrastructure node is given by the
object cDot11csParentNodeAddress.
fallbackStandAlone - This infrastructure node has
been configured to function in the 'infrastructure'
mode but the node has dropped back to
'fallbackStandAlone' mode due to loss of
communication with its parent node. From an
operational point of view, 'fallbackStandAlone' mode
is same as 'adminStandAlone' mode. However, in the
'fallbackStandAlone' mode, an infrastructure node
continuously attempts to get back to the
'infrastructure' mode. "
::= { cDot11csConfigGlobal 14 }
cDot11csWnsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CDot11csWnsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table holds the information about the subnets
that are bound to each WNS entity. This WNS-to-WDS
mapping is configured in the root WNS entity. A WDS
entity requests the root WNS entity for the parent
WNS entity.
This table is applicable only for a root node.
A row is added to this table in the root WNS entity
by the administrator through the WNM, each row
holding information about one particular subnet that
is being served by a WNS entity. The name of the
WNS entity is given by the object
cDot11csWnsEntityName. "
::= { cDot11csConfigGlobal 15 }
cDot11csWnsEntry OBJECT-TYPE
SYNTAX CDot11csWnsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry corresponds to one WDS-to-WNS mapping
configured in the root WNS entity. "
INDEX { cDot11csWnsIndex,
cDot11csWnsAddrType,
cDot11csWnsSubnetAddr }
::= { cDot11csWnsTable 1 }
CDot11csWnsEntry ::=
SEQUENCE {
cDot11csWnsIndex SnmpAdminString,
cDot11csWnsAddrType InetAddressType,
cDot11csWnsSubnetAddr InetAddress,
cDot11csWnsSubnetMask CiscoInetAddressMask,
cDot11csWnsRowStatus RowStatus
}
cDot11csWnsIndex OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..32))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name of the WNS entity that serves a given set
of subnets. This object holds the value configured
in cDot11csWnsEntityName. "
::= { cDot11csWnsEntry 1 }
cDot11csWnsAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Represents the type of Internet addresses stored in
cDot11csWnsSubnetAddr and cDot11csWnsSubnetMask. "
::= { cDot11csWnsEntry 2 }
cDot11csWnsSubnetAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The address of the subnet configured to be served
by the WNS entity identified by cDot11csWnsIndex. "
::= { cDot11csWnsEntry 3 }
cDot11csWnsSubnetMask OBJECT-TYPE
SYNTAX CiscoInetAddressMask
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The subnet mask associated with the subnet address
given by cDot11csWnsSubnetAddr. "
::= { cDot11csWnsEntry 4 }
cDot11csWnsRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status column used for creating and deleting
instances of the columnar objects in the
cDot11csWnsTable.
The following information must be provided by the
WNM while creating a row.
The subnet address (cDot11csWnsSubnetAddr), the
subnet mask ( cDot11csWnsSubnetMask) and
Row Status ( cDot11csWnsRowStatus)
The type of the addresses stored by the subnet
address and the subnet mask should also be
specified.
The row, when created with the row status value
of 'createAndGo' is moved to the 'active' state
automatically by the agent and remains in that state
till the time the row is removed through the
'destroy' option. This is used to create an entry
for a new subnet that is assigned to be serviced by
a WNS entity.
The 'destroy' option is used when the administrator
decides to remove the row representing a particular
subnet being served by a WNS entity. "
::= { cDot11csWnsEntry 5 }
cDot11csWnmConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF CDot11csWnmConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table holds the list of IP addresses of those
WNMs that have been identified as recipients of the
notifications sent by a WS entity. In case of
multiple WDS entities running in a single box, this
table is common across all the WDS entities.
Notifications are sent to those WNMs in this table
whose cDot11csConfigWnmAuthenState value is
'authenticated'. A row is added to this table by
the administrator through the WNM to specify a
particular instance of WNM as a recipient of the
notification sent by a infrastructure node
configured to offer WDS/WNS. "
::= { cDot11csConfigGlobal 16 }
cDot11csWnmConfigEntry OBJECT-TYPE
SYNTAX CDot11csWnmConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry corresponds to one WNM instance that is
identified as a recipient of the notifications
sent by an infrastructure node configured to provide
wireless services. "
INDEX { cDot11csWnmConfigIpAddressType,
cDot11csWnmConfigIpAddress }
::= { cDot11csWnmConfigTable 1 }
CDot11csWnmConfigEntry ::=
SEQUENCE {
cDot11csWnmConfigIpAddressType InetAddressType,
cDot11csWnmConfigIpAddress InetAddress,
cDot11csWnmConfigAuthenState INTEGER,
cDot11csWnmConfigRowStatus RowStatus
}
cDot11csWnmConfigIpAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Represents the type of Internet address stored in
cDot11csWnmConfigIpAddress. "
::= { cDot11csWnmConfigEntry 1 }
cDot11csWnmConfigIpAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP address of this WNM. "
::= { cDot11csWnmConfigEntry 2 }
cDot11csWnmConfigAuthenState OBJECT-TYPE
SYNTAX INTEGER {
unauthenticated(1),
authenticationInProgess(2),
authenticationFailed(3),
authenticated(4),
keysSetUpWithWds(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The semantics for this object are defined as follows.
unauthenticated - The WNM hasn't initiated the
authentication process yet.
authenticationInProgress - The WNM has initiated the
the authentication process to get authenticated with
the WS entity and the process is currently underway.
authenticationFailed - The WNM has failed to get
authenticate successfully with the WS Entity.
authenticated - The WNM has got authenticated with
the WS entity and established a mutual trust
relationship with the same.
keysSetUpWithScm - The WNM has got authenticated
with the WS Entity and set secret keys for securing
the communication with the WS Entity.
The WNM initiates authentication process only with
an 'active' WDS entity. (The state of the WDS
entity is given by the object
cDot11csWdsInstanceState). Hence, all the
authentication states other than 'unauthenticated'
are valid only for an 'active' WDS entity. Also,
the 'active' WDS entity ( the entity for which the
the value of cDot11csWdsInstanceState is 'active )
has to be configured with the address of the WNM
before the WNM initiates the authentication process.
The value is always 'unauthenticated' for a
WDS entity in 'backup' state. "
::= { cDot11csWnmConfigEntry 3 }
cDot11csWnmConfigRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status column used for creating and deleting
instances of the columnar objects in
cDot11csWnmConfigTable.
The administrator must specify the following
information while creating a row.
The IP address type (cDot11csWnmConfigIpAddressType)
The IP address of the WNM
(cDot11csWnmConfigIpAddress)
The Row status ( cDot11csWnmConfigRowStatus )
The row, when created, is automatically set to active