forked from kcsinclair/mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AIRESPACE-SWITCHING-MIB.my
4068 lines (3591 loc) · 147 KB
/
AIRESPACE-SWITCHING-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
-- *******************************************************************
-- Airespace Switching MIB
-- Copyright 2001 Airespace, Inc. All rights reserved.
-- This SNMP Management Information Specification
-- embodies Airespace's confidential and proprietary
-- intellectual property. LVL7 Systems retains all title
-- and ownership in the Specification including any revisions.
-- This Specification is supplied "AS IS", Airespace
-- makes no warranty, either expressed or implied,
-- as to the use, operation, condition, or performance of the
-- Specification.
-- Status: Release
-- Version: 3.2
-- Internal Source Code Version:1.75
-- Date: 19 Dec 2005
-- *******************************************************************
AIRESPACE-SWITCHING-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, IpAddress,
Counter32, Integer32, Unsigned32, TimeTicks
FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP,
NOTIFICATION-GROUP FROM SNMPv2-CONF
DisplayString, PhysAddress,
RowStatus, MacAddress, TruthValue FROM SNMPv2-TC
airespace FROM AIRESPACE-REF-MIB
dot1qVlanIndex, dot1qFdbId FROM Q-BRIDGE-MIB
IANAifType FROM IANAifType-MIB;
--********************************************************************
--* MODULE IDENTITY
--********************************************************************
bsnSwitching MODULE-IDENTITY
LAST-UPDATED "200604100000Z"
ORGANIZATION "Airespace, Inc."
CONTACT-INFO
" Cisco Systems,
Customer Service
Postal: 170 West Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553-NETS
Email: [email protected]"
DESCRIPTION
"This MIB is intended to be implemented on all those
devices operating as Central Controllers (CC) that
terminate the Light Weight Access Point Protocol
tunnel from Light-weight LWAPP Access Points.
This MIB provides configuration, statistics and
status information about the controller.
This includes controller statistics and provides
information such as Inventory, Trap logs, memory and
CPU. This MIB also provides configuration of CLI,
SNMP, LAG, DHCP, Spanning Tree, etc.
The relationship between controller and the LWAPP APs
can be depicted as follows:
+......+ +......+ +......+ +......+
+ + + + + + + +
+ CC + + CC + + CC + + CC +
+ + + + + + + +
+......+ +......+ +......+ +......+
.. . . .
.. . . .
. . . . .
. . . . .
. . . . .
. . . . .
+......+ +......+ +......+ +......+ +......+
+ + + + + + + + + +
+ AP + + AP + + AP + + AP + + AP +
+ + + + + + + + + +
+......+ +......+ +......+ +......+ +......+
. . . .
. . . . .
. . . . .
. . . . .
. . . . .
+......+ +......+ +......+ +......+ +......+
+ + + + + + + + + +
+ MN + + MN + + MN + + MN + + MN +
+ + + + + + + + + +
+......+ +......+ +......+ +......+ +......+
The LWAPP tunnel exists between the controller and
the APs. The MNs communicate with the APs through
the protocol defined by the 802.11 standard.
LWAPP APs, upon bootup, discover and join one of the
controllers and the controller pushes the configuration,
that includes the WLAN parameters, to the LWAPP APs.
The APs then encapsulate all the 802.11 frames from
wireless clients inside LWAPP frames and forward
the LWAPP frames to the controller.
GLOSSARY
Access Point ( AP )
An 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.
LWAPP APs encapsulate all the 802.11 frames in
LWAPP frames and sends it to the controller to which
it is logically connected.
Basic Service Set Identifier (BSSID)
The identifier for the service set comprising of
all the 802.11 stations under the control of
one coordinating Access Point. This identifier
happens to be the MAC address of the dot11 radio
interface of the Access Point. The wireless
clients that associate with the Access Point
get the wired uplink through this particular
dot11 interface.
Central Controller ( CC )
The central entity that terminates the LWAPP protocol
tunnel from the LWAPP APs. Throughout this MIB,
this entity also referred to as 'controller'.
Light Weight Access Point Protocol ( LWAPP )
This is a generic protocol that defines the
communication between the Access Points and the
Central Controller.
Mobile Node ( MN )
A roaming 802.11 wireless device in a wireless
network associated with an access point.
Station Management (SMT)
This term refers to the internal management of the
802.11 protocol operations by the AP to work
cooperatively with the other APs and 802.11
devices in the network.
REFERENCE
[1] Part 11 Wireless LAN Medium Access Control ( MAC )
and Physical Layer ( PHY ) Specifications.
[2] Draft-obara-capwap-lwapp-00.txt, IETF Light
Weight Access Point Protocol. "
REVISION "200604100000Z"
DESCRIPTION
"Updated MIB with description and format"
::= { airespace 1 }
--********************************************************************
-- Major sections
--********************************************************************
agentInfoGroup OBJECT IDENTIFIER ::= { bsnSwitching 1 }
agentConfigGroup OBJECT IDENTIFIER ::= { bsnSwitching 2 }
agentSystemGroup OBJECT IDENTIFIER ::= { bsnSwitching 3 }
stats OBJECT IDENTIFIER ::= { bsnSwitching 4 }
switchingTraps OBJECT IDENTIFIER ::= { bsnSwitching 50 }
bsnSwitchingGroups OBJECT IDENTIFIER ::= { bsnSwitching 51 }
bsnSwitchingCompliances OBJECT IDENTIFIER ::= { bsnSwitching 52 }
--********************************************************************
-- agentInventoryGroup
--********************************************************************
agentInventoryGroup OBJECT IDENTIFIER ::= { agentInfoGroup 1 }
agentInventorySysDescription OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The switch's Inventory system description."
::= { agentInventoryGroup 1 }
agentInventoryMachineType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of the Machine used in the Switch."
::= { agentInventoryGroup 2 }
agentInventoryMachineModel OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The switch's Machine Model. "
::= { agentInventoryGroup 3 }
agentInventorySerialNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Serial number of the switch."
::= { agentInventoryGroup 4 }
agentInventoryMaintenanceLevel OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The switch's Inventory Maintenance Level"
::= { agentInventoryGroup 6 }
agentInventoryBurnedInMacAddress OBJECT-TYPE
SYNTAX PhysAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Burned-In MAC Address"
::= { agentInventoryGroup 9 }
agentInventoryOperatingSystem OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Operating System running on this unit"
::= { agentInventoryGroup 10 }
agentInventoryManufacturerName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the switch manufacturer."
::= { agentInventoryGroup 12 }
agentInventoryProductName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the product."
::= { agentInventoryGroup 13 }
agentInventoryProductVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Version of the product."
::= { agentInventoryGroup 14 }
agentInventoryIsGigECardPresent OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"True if the Switch contains a Gigabit ethernet
card
."
::= { agentInventoryGroup 15 }
agentInventoryIsCryptoCardPresent OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"True if the switch is carrying a Crypto card."
::= { agentInventoryGroup 16 }
agentInventoryIsForeignAPSupported OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"States whether the switch supports third party
Access Points."
::= { agentInventoryGroup 17 }
agentInventoryMaxNumberOfAPsSupported OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum number of APs supported with this
Controller."
::= { agentInventoryGroup 18 }
agentInventoryIsCryptoCard2Present OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"True if the switch is carrying second Crypto
card for 4400 controller."
::= { agentInventoryGroup 19 }
agentInventoryFipsModeEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"True if FIPS (Federal Information Processing
Standards) mode has been enabled on the
controller.False if FIPS mode has not been
enabled. FIPS mode can only be enabled through
console."
DEFVAL {false}
::= { agentInventoryGroup 20 }
--********************************************************************
-- agentTrapLogGroup
--********************************************************************
agentTrapLogGroup OBJECT IDENTIFIER ::= { agentInfoGroup 2}
agentTrapLogTotal OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of traps sent since last
reset."
::= { agentTrapLogGroup 1 }
agentTrapLogTotalSinceLastViewed OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of traps sent since last viewed."
::= { agentTrapLogGroup 3 }
agentRadioUpDownTrapCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of AP Up/Down traps sent since
last reset."
::= { agentTrapLogGroup 5 }
agentApAssociateDisassociateTrapCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of AP Associate/Disassociate
traps sent since last reset."
::= { agentTrapLogGroup 6 }
agentApLoadProfileFailTrapCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of AP Load Profile Failure
traps sent since last reset."
::= { agentTrapLogGroup 7 }
agentApNoiseProfileFailTrapCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of AP Noise Profile Failure
traps sent since last reset."
::= { agentTrapLogGroup 8 }
agentApInterferenceProfileFailTrapCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of AP Interference Profile
Failure traps sent since last reset."
::= { agentTrapLogGroup 9 }
agentApCoverageProfileFailTrapCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of AP Coverge Profile Failure
traps sent since last reset."
::= { agentTrapLogGroup 10 }
--********************************************************************
-- agentTrapLogTable
--********************************************************************
agentTrapLogTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentTrapLogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Agent Trap Log"
::= { agentTrapLogGroup 4 }
agentTrapLogEntry OBJECT-TYPE
SYNTAX AgentTrapLogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Agent trap log entry"
INDEX { agentTrapLogIndex }
::= { agentTrapLogTable 1 }
AgentTrapLogEntry ::= SEQUENCE {
agentTrapLogIndex Integer32,
agentTrapLogSystemTime DisplayString,
agentTrapLogTrap OCTET STRING
}
agentTrapLogIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unique index of trap entry"
::= { agentTrapLogEntry 1 }
agentTrapLogSystemTime OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"System uptime when trap was sent. This entry
shows how long the system has been up when the
trap occurred."
::= { agentTrapLogEntry 2 }
agentTrapLogTrap OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..512))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description of the trap sent."
::= { agentTrapLogEntry 22 }
--********************************************************************
-- agentSwitchInfoGroup
--********************************************************************
agentSwitchInfoGroup OBJECT IDENTIFIER ::= { agentInfoGroup 3 }
agentSwitchInfoLwappTransportMode OBJECT-TYPE
SYNTAX INTEGER {
layer2(1),
layer3(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The LWAPP transport mode specifies if the switch
is operating in Layer2 or Layer3 mode. This
attribute gives the current mode the switch is
operating on."
::= { agentSwitchInfoGroup 1 }
agentSwitchInfoPowerSupply1Present OBJECT-TYPE
SYNTAX INTEGER {
false(0),
true(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is to indicate if the switch has Power
Supply 1 present on it. This is applicable to
the 4200 series and will always return true for
the earlier device versions."
::= { agentSwitchInfoGroup 2 }
agentSwitchInfoPowerSupply1Operational OBJECT-TYPE
SYNTAX INTEGER {
false(0),
true(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is to indicate if the switch's Power Supply
1 is operational. This is applicable to the
4200 series and will always return true for the
earlier device versions."
::= { agentSwitchInfoGroup 3 }
agentSwitchInfoPowerSupply2Present OBJECT-TYPE
SYNTAX INTEGER {
false(0),
true(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is to indicate if the switch has Power
Supply 2 present on it. This is applicable to
the 4200 series and will always return false for
the earlier device versions."
::= { agentSwitchInfoGroup 4 }
agentSwitchInfoPowerSupply2Operational OBJECT-TYPE
SYNTAX INTEGER {
false(0),
true(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is to indicate if the switch's Power Supply
2 is operational.This is applicable to the 4200
series and will always return false for the
earlier device versions."
::= { agentSwitchInfoGroup 5 }
--********************************************************************
-- agentResourceInfoGroup
--********************************************************************
agentResourceInfoGroup OBJECT IDENTIFIER ::= { agentInfoGroup 5 }
agentCurrentCPUUtilization OBJECT-TYPE
SYNTAX INTEGER(0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current CPU Load of the switch in percentage."
::= { agentResourceInfoGroup 1 }
agentTotalMemory OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total RAM of the switch in Kbytes."
::= { agentResourceInfoGroup 2 }
agentFreeMemory OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Free RAM of the switch in Kbytes."
::= { agentResourceInfoGroup 3 }
--********************************************************************
-- agentWcpInfoGroup
--********************************************************************
agentWcpInfoGroup OBJECT IDENTIFIER ::= { agentInfoGroup 6 }
agentWcpDeviceName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the name of the device this controller
is residing on."
::= { agentWcpInfoGroup 1 }
agentWcpSlotNumber OBJECT-TYPE
SYNTAX Unsigned32(1..16)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The slot number on the Wcp Device that this
controller is residing on."
::= { agentWcpInfoGroup 2 }
agentWcpPortNumber OBJECT-TYPE
SYNTAX Unsigned32(1..2)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The port number on the Wcp Device that this
controller is residing on."
::= { agentWcpInfoGroup 3 }
agentWcpPeerPortNumber OBJECT-TYPE
SYNTAX Unsigned32(1..2)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The port number of this controller's peer on the
same slot on Wcp Device that this controller is
residing on."
::= { agentWcpInfoGroup 4 }
agentWcpPeerIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP Address of this controller's peer on the
same slot on Wcp Device that this controller is
residing on."
::= { agentWcpInfoGroup 5 }
agentWcpControllerTableChecksum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the checksum that tracks the changes in
the agentWcpControllerInfoTable. If there is any
change in the information on this table, the
checksum changes."
::= { agentWcpInfoGroup 6 }
agentWcpControllerInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentWcpControllerInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of the wireless controllers on a WCP
device."
::= { agentWcpInfoGroup 7 }
agentWcpControllerInfoEntry OBJECT-TYPE
SYNTAX AgentWcpControllerInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry for a wireless controller on a WCP
device."
INDEX { agentWcpControllerInfoSlotNumber,
agentWcpControllerInfoPortNumber }
::= { agentWcpControllerInfoTable 1 }
AgentWcpControllerInfoEntry ::= SEQUENCE {
agentWcpControllerInfoSlotNumber Unsigned32,
agentWcpControllerInfoPortNumber Unsigned32,
agentWcpControllerInfoIpAddress IpAddress
}
agentWcpControllerInfoSlotNumber OBJECT-TYPE
SYNTAX Unsigned32(1..16)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The slot number on the Wcp device that a
controller is residing on."
::= { agentWcpControllerInfoEntry 1 }
agentWcpControllerInfoPortNumber OBJECT-TYPE
SYNTAX Unsigned32(1..2)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The port number on the Wcp Device that a
controller is residing on."
::= { agentWcpControllerInfoEntry 2 }
agentWcpControllerInfoIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The management IP Address of a controller."
::= { agentWcpControllerInfoEntry 10 }
--********************************************************************
-- agentProductGroup
--********************************************************************
agentProductGroup OBJECT IDENTIFIER ::= { agentInfoGroup 4 }
--********************************************************************
-- productGroup1. This includes the 4000 switch series: 4012, 4024 and
-- the 4100 appliance series: 4101 and 4102
--********************************************************************
productGroup1 OBJECT IDENTIFIER ::= { agentProductGroup 1 }
--********************************************************************
-- productGroup2. This includes the Branch Office Switch series
--********************************************************************
productGroup2 OBJECT IDENTIFIER ::= { agentProductGroup 2 }
--********************************************************************
-- productGroup3. This includes the 4200 switch series: 4202 and 4204
--
--********************************************************************
productGroup3 OBJECT IDENTIFIER ::= { agentProductGroup 3 }
--********************************************************************
-- productGroup4. This includes the Catalyst 6k series with 2
-- 4204s on a single blade
--********************************************************************
productGroup4 OBJECT IDENTIFIER ::= { agentProductGroup 4 }
--********************************************************************
agentCLIConfigGroup OBJECT IDENTIFIER ::= { agentConfigGroup 1 }
--********************************************************************
-- agentLoginSessionTable
--********************************************************************
agentLoginSessionTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentLoginSessionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of the switch's login session"
::= { agentCLIConfigGroup 1 }
agentLoginSessionEntry OBJECT-TYPE
SYNTAX AgentLoginSessionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Login Session Entry"
INDEX { agentLoginSessionIndex }
::= { agentLoginSessionTable 1 }
AgentLoginSessionEntry ::= SEQUENCE {
agentLoginSessionIndex Integer32,
agentLoginSessionUserName DisplayString,
agentLoginSessionIPAddress IpAddress,
agentLoginSessionConnectionType INTEGER,
agentLoginSessionIdleTime TimeTicks,
agentLoginSessionSessionTime TimeTicks,
agentLoginSessionStatus RowStatus
}
agentLoginSessionIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Agent Login Session Index of the switch"
::= { agentLoginSessionEntry 1 }
agentLoginSessionUserName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Agent Login Session UserName of the switch"
::= { agentLoginSessionEntry 2 }
agentLoginSessionIPAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Agent Login Session IP Address of the switch"
::= { agentLoginSessionEntry 3 }
agentLoginSessionConnectionType OBJECT-TYPE
SYNTAX INTEGER {
serial(1),
telnet(2),
web(3),
ssl(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Agent Login Session Connection Type of the
switch"
::= { agentLoginSessionEntry 4 }
agentLoginSessionIdleTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Agent Login Session Idle Time of the switch"
::= { agentLoginSessionEntry 5 }
agentLoginSessionSessionTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Agent Login Session Time of the switch"
::= { agentLoginSessionEntry 6 }
agentLoginSessionStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Status of the user.
active(1) - This connection is active.
destroy(6) - Set to this value to disconnect
this user."
::= { agentLoginSessionEntry 26 }
--********************************************************************
-- agentTelnetConfigGroup
--********************************************************************
agentTelnetConfigGroup OBJECT IDENTIFIER ::= {agentCLIConfigGroup 2}
agentTelnetLoginTimeout OBJECT-TYPE
SYNTAX Integer32 (0..160)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Telnet login timeout (minutes)
Config telnet timeout will set the telnet
session timeout value. A session is active as
long as the session has not remained idle for
the value set. Specify a value from 0 to 160.
A value of 0 indicates that a Telnet session
remains active indefinitely.
Note: Changing the timeout value for active
sessions does not become effective until the
session is reaccessed. Any keystroke will
also activate the new timeout duration."
::= { agentTelnetConfigGroup 1 }
agentTelnetMaxSessions OBJECT-TYPE
SYNTAX Integer32 (0..5)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum number of Telnet Sessions
Config telnet maxsessions is an integer value
from 0 to 5 that specifies the maximum number of
telnet sessions that can be established. If the
value is 0, no Telnet session can be established."
::= { agentTelnetConfigGroup 2 }
agentTelnetAllowNewMode OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Allow new telnet sessions (enable or disable)
Config telnet disable means that no new Telnet
sessions are to be established. Any already
established session remains active until
the session is ended or an abnormal network error
ends it. "
::= { agentTelnetConfigGroup 3 }
agentSSHAllowNewMode OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Allow new SSH sessions (enable or disable)
Config SSH disable means that no new SSH sessions
are to be established. Any already established
session remains active until the session is ended
or an abnormal network error ends it."
::= { agentTelnetConfigGroup 4 }
--********************************************************************
-- agentSerialGroup
--********************************************************************
agentSerialGroup OBJECT IDENTIFIER ::= { agentCLIConfigGroup 5 }
agentSerialTimeout OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Agent Serial Timeout "
::= { agentSerialGroup 1 }
agentSerialBaudrate OBJECT-TYPE
SYNTAX INTEGER {
baud1200(1),
baud2400(2),
baud4800(3),
baud9600(4),
baud19200(5),
baud38400(6),
baud57600(7),
baud115200(8)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" Agent Serial Baudrate"
::= { agentSerialGroup 2 }
agentSerialCharacterSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Agent Serial Character Size"
::= { agentSerialGroup 3 }
agentSerialHWFlowControlMode OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Agent Serial Hardware Flow Control."
::= { agentSerialGroup 4 }
agentSerialStopBits OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Agent Serial Stop Bits"
::= { agentSerialGroup 5 }
agentSerialParityType OBJECT-TYPE
SYNTAX INTEGER {
even(1),
odd(2),
none(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Agent Serial Parity Type"
::= { agentSerialGroup 6 }
--*******************************************************************
-- agentLagConfigGroup
--********************************************************************
agentLagConfigGroup OBJECT IDENTIFIER ::= { agentConfigGroup 2 }
agentLagConfigCreate OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..15))
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"Agent Lag Create.
When this object is set with a non-empty string,
a new lag will be created.if possible with the
entered string as it's name."
::= { agentLagConfigGroup 1 }
agentLagSummaryConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentLagSummaryConfigEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"A summary table of the switch's lag config
entries"
::= { agentLagConfigGroup 2 }
agentLagSummaryConfigEntry OBJECT-TYPE
SYNTAX AgentLagSummaryConfigEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"Switch's lag config entry"
INDEX { agentLagSummaryName }
::= { agentLagSummaryConfigTable 1 }
AgentLagSummaryConfigEntry ::= SEQUENCE {
agentLagSummaryName DisplayString,