forked from kcsinclair/mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ASANTE-SWITCH-MIB
2846 lines (2472 loc) · 77.2 KB
/
ASANTE-SWITCH-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
-- Date: 28March2000
-- Information in this document is subject to change without notice
-- and does not represent a commitment on the part of
-- Asante Technologies, Inc. No part of this document, or any
-- associated software, product design or design concept,
-- may be copied, reproduced or stored, in whole or in part, in any
-- form or by any means mechanical, electronic, optical, photocopying,
-- recording or otherwise, including translation to another language
-- or format, except for your own internal use, without the express
-- written consent of Asante Technologies, Inc.
-- Copyright 1994-2000 by Asante Technologies, Inc. All rights
-- reserved.
ASANTE-SWITCH-MIB DEFINITIONS ::= BEGIN
IMPORTS
IpAddress, TimeTicks, enterprises
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
DisplayString
FROM RFC1213-MIB
TRAP-TYPE
FROM RFC-1215;
-- *******************************************************************
-- Type Aliases
-- *******************************************************************
MacAddress ::= OCTET STRING (SIZE(6))
-- *******************************************************************
-- High-level identifiers
-- *******************************************************************
asante OBJECT IDENTIFIER ::= { enterprises 298 }
products OBJECT IDENTIFIER ::= { asante 1 }
snmpAgent OBJECT IDENTIFIER ::= { products 1 }
agentSw OBJECT IDENTIFIER ::= { snmpAgent 1 }
agentFw OBJECT IDENTIFIER ::= { snmpAgent 2 }
agentHw OBJECT IDENTIFIER ::= { snmpAgent 3 }
agentNetProtocol OBJECT IDENTIFIER ::= { snmpAgent 5 }
ipagentProtocol OBJECT IDENTIFIER ::= { agentNetProtocol 1 }
switch OBJECT IDENTIFIER ::= { products 5 }
eAsntSwitch OBJECT IDENTIFIER ::= { switch 1 }
eSWAgent OBJECT IDENTIFIER ::= { eAsntSwitch 1 }
eSWAgentSW OBJECT IDENTIFIER ::= { eSWAgent 1 }
eSWAgentHW OBJECT IDENTIFIER ::= { eSWAgent 2 }
eSWAgentFW OBJECT IDENTIFIER ::= { eSWAgent 3 }
eSWBasic OBJECT IDENTIFIER ::= { eAsntSwitch 2 }
eSWCtrl OBJECT IDENTIFIER ::= { eAsntSwitch 3 }
eSWMonitor OBJECT IDENTIFIER ::= { eAsntSwitch 4 }
productId OBJECT IDENTIFIER ::= { asante 2 }
concProductId OBJECT IDENTIFIER ::= { productId 2 }
intraswitch OBJECT IDENTIFIER ::= { concProductId 11 }
intrastack OBJECT IDENTIFIER ::= { concProductId 12 }
friendlyswitch OBJECT IDENTIFIER ::= { concProductId 13 }
intraSwitch6216M OBJECT IDENTIFIER ::= { concProductId 16 }
intraSwitch6224 OBJECT IDENTIFIER ::= { concProductId 17 }
intraCore8000 OBJECT IDENTIFIER ::= { concProductId 22 }
intraCore9000 OBJECT IDENTIFIER ::= { concProductId 23 }
-- the agent Sw group
agentRunTimeImageMajorVer OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The major software version number of the agent
runtime image."
::= { agentSw 1 }
agentRunTimeImageMinorVer OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The minor software version number of the agent
runtime image."
::= { agentSw 2 }
agentImageLoadMode OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- Unknown
localBoot(2), -- Load image from local
netBoot(3) -- Load image from remote
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Tells agent device whether the software image
is to be loaded from the FLASH EPROM or from
over the network."
::= { agentSw 3 }
agentRemoteBootInfo OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- use boot protocol
eepromBootInfo(2) -- use EEPROM boot parameters
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The method for getting boot information."
::= { agentSw 4 }
agentRemoteBootProtocol OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- Unknown boot protocol
bootp-tftp(2), -- use bootp-tftp protocol
tftp-only(3) -- use tftp protocol
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The boot protocol that is used to load the
agent image software."
::= { agentSw 5 }
agentRemoteBootFile OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..64))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The boot file name that is sent to the boot
file server by agent boot code during boot time.
For IntraStack switch, this file is the image
file."
::= { agentSw 6 }
agentOutBandDialString OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..64))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This is the initialization string used by
the Network Management station to establish an
out-of-band connection."
::= { agentSw 7 }
agentOutBandBaudRate OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- Unknown baud rate
b1200(2), -- 1200 baud rate
b2400(3), -- 2400 baud rate
b4800(4), -- 4800 baud rate
b9600(5), -- 9600 baud rate
b19200(6) -- 19200 baud rate
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The baud rate setting for the out-of-band
port."
::= { agentSw 8 }
agentReset OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- Unknown
reset(2), -- system reset
not-reset(3) -- normal operation
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The object to allow software to perform
'push-button' system reset."
::= { agentSw 9 }
-- the agent Hw group
agentHwReVer OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The hardware version number of the switch."
::= { agentHw 1 }
agentHwVer OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The hardware model number of the switch."
::= { agentHw 2 }
-- the agent Fw group
agentFwMajorVer OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The major firmware version number of the agent
PROM code."
::= { agentFw 1 }
agentFwMinorVer OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The minor firmware version number of the agent
PROM code."
::= { agentFw 2 }
-- the agent network protocol stack capability map
agentNetProtoStkCapMap OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(4))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This octet string represents the current
protocol stack configuration supported
by the agent, encoded as a bit string.
Each protocol statck is represented
by a single bit. When the value of a
bit = 1, it indicates that the protocol
stack on the agent represented by that
bit is supported; when zero, the protocol
stack is not supported. The first protocol
stack will encode in the least significant
bit of the first octet. Currently, only
IP Stack(bit 0) and IPX Stack(bit 1) are
defined; all other bits should be zero."
::= { snmpAgent 4 }
-- the ipagent protocol group
ipagentIpAddr OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The IP agent's administrative IP address.
The current operational IP address can be
obtained from ipAdEntAddr in the ipAddrTable.
This parameter will take effect only after an
agent restart or reset. This parameter will
always be updated in EEPROM."
::= { ipagentProtocol 1 }
ipagentIpNetMask OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The ipagent's administrative IP subnet mask.
The current operational IP subnet mask can be
obtained from ipAdEntMask in the ipAddrTable.
This parameter will take effect only after a
agent restart or agent reset. This parameter
will always be updated in the EEPROM."
::= { ipagentProtocol 2 }
ipagentDefaultGateway OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The ip agent's administrative default
gateway IP address. The current operational IP
default gateway IP address can be obtained from
ipRouteDest in the ipRouteTable. This parameter
will take effect only after an agent restart
or reset. This parameter will always be updated
in EEPROM."
::= { ipagentProtocol 3 }
ipagentBootServerAddr OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The IP address of the boot server that is used
to boot this ipagent. This parameter will always
be updated in the EEPROM."
::= { ipagentProtocol 4 }
ipagentUnAuthIP OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The IP address of the last station that tried
to access this ipagent with an invalid community
string."
::= { ipagentProtocol 5 }
ipagentUnAuthComm OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The community string of the last station that
tried to access this ipagent with an invalid
community string."
::= { ipagentProtocol 6 }
-- the ipagent trap receiver table group
ipagentTrapRcvrTable OBJECT-TYPE
SYNTAX SEQUENCE OF IpagentTrapRcvrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Table listing the Network Management Stations
that are to receive traps generated by this
agent."
::= { agentNetProtocol 2 }
ipagentTrapRcvrEntry OBJECT-TYPE
SYNTAX IpagentTrapRcvrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Destination IP address and community string for a
particular trap receiver. Entries can be added or
deleted. To add an entry, all objects which have
read-write access defined in the same table should
be set in one set request with a valid value in
the object ipagentTrapRcvrStatus. To delete an
entry, set ipagentTrapRcvrStatus to invalid."
INDEX { ipagentTrapRcvrIpAddr }
::= { ipagentTrapRcvrTable 1 }
IpagentTrapRcvrEntry ::= SEQUENCE {
ipagentTrapRcvrIpAddr
IpAddress,
ipagentTrapRcvrStatus
INTEGER,
ipagentTrapRcvrComm
DisplayString
}
ipagentTrapRcvrIpAddr OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"IP address of the management station to receive
traps."
::= { ipagentTrapRcvrEntry 1 }
ipagentTrapRcvrStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
valid(2),
invalid(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Validation status of this entry. If the
value of this object is set to invalid(3),
then that particular entry is deemed invalid,
meaning that the address for that entry is no
longer valid because the entry has been removed
from the table."
::= { ipagentTrapRcvrEntry 2 }
ipagentTrapRcvrComm OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Community string for traps sent to this trap
receiver."
::= { ipagentTrapRcvrEntry 3 }
-- switch agent information
eSWUpDownloadAction OBJECT-TYPE
SYNTAX INTEGER {
other(1),
off(2), -- agent not in Up/download mode
download(3), -- agent in the downloading mode
upload(4) -- agent in the uploading mode
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Agent upload/download action. May refer to the
configuration file or image file. The upload
action is valid only for the configuration file."
::= { eSWAgentSW 1 }
eSWUpDownloadStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
action-Success(2), -- action result, success
action-Failure(3), -- action result, failure
in-Progress(4),
no-Action(5),
configError(6) -- Tftp Download successful but
-- Configuration File Error
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Result of the last upload/download request by
this agent."
::= { eSWAgentSW 2 }
eSWRemoteDownloadFile OBJECT-TYPE
SYNTAX INTEGER {
other(1),
config-File(2), -- configuration file
image-File(3) -- image file
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Downloading what kind of file. The
configuration file name should be stored in the
agentRemoteBootFile MIB object, and the image file
name should be stored in the eSWImageFileName
MIB object. If this object has the value
Config-File(1), agentRemoteBootProtocol cannot be
set to bootp-tftp(2). If agentRemoteBootProtocol
is set to bootp-tftp(2), this object cannot be
set to Config-File(1).
This object value is meaningful only at download
time."
::= { eSWAgentSW 3 }
eSWRemoteConfigServer OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The IP address of the configuration file server."
::= { eSWAgentSW 4 }
eSWRemoteConfigFileName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..64))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The name of switch configuration file. The
server's IP address is in eSWRemoteConfigServer."
::= { eSWAgentSW 5 }
eSWConfigRetryCounter OBJECT-TYPE
SYNTAX INTEGER (1..20)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The number of times the agent will retry a
failed image file download."
::= { eSWAgentSW 6 }
eSWRemoteImageServer OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The IP address of the image file server."
::= { eSWAgentSW 7 }
eSWRemoteImageFileName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..64))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The name of the switch image file."
::= { eSWAgentSW 8 }
eSWImageRetryCounter OBJECT-TYPE
SYNTAX INTEGER (1..20)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The number of times the agent will retry a
failed configuration file download."
::= { eSWAgentSW 9 }
eSWActiveImageBank OBJECT-TYPE
SYNTAX INTEGER {
other(1),
bank1(2), -- First Bank
bank2(3) -- Second Bank
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The image bank from which runtime code will
be loaded at next boot. If the value is set to
other(1) the agent will boot from the default
bank, i.e. Bank1(2)."
::= { eSWAgentSW 10 }
eSWRemoteDownloadImageBank OBJECT-TYPE
SYNTAX INTEGER {
other(1),
bank1(2), -- First Bank
bank2(3) -- Second Bank
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The number of the destination bank to which
the image will be downloaded. 'other' will be
recognized as the default bank, i.e. bank 1."
::= { eSWAgentSW 11 }
eSWResetWaitTime OBJECT-TYPE
SYNTAX INTEGER(1..86400)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The time to wait before executing a reset of
the agent. The time is in seconds, with a range
of 1 second to 1 day."
::= { eSWAgentSW 12 }
eSWResetLeftTime OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Time left until the agent will reset. If a
reset request is not in progress, this should
have a value of 0."
::= { eSWAgentSW 13 }
eSWBankImageInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF ESWBankImageInfoEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table of information about the switch's
image banks."
::= { eSWAgentSW 14 }
eSWBankImageInfoEntry OBJECT-TYPE
SYNTAX ESWBankImageInfoEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A row in the image bank table containing
information about a specific bank."
INDEX { eSWBankIndex }
::= { eSWBankImageInfoTable 1 }
ESWBankImageInfoEntry ::= SEQUENCE {
eSWBankIndex
INTEGER,
eSWMajorVer
INTEGER,
eSWMinorVer
INTEGER,
eSWDateTime
DisplayString
}
eSWBankIndex OBJECT-TYPE
SYNTAX INTEGER (1..2)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index of bank image information table. It
is the number of the image bank. Currently the
IntraSwitch 62xx family supports 2 image banks."
::= { eSWBankImageInfoEntry 1 }
eSWMajorVer OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The major version of the image file loaded in
the bank. If this object and eSWMinorVer both have
zero values, the bank has no image code loaded."
::= { eSWBankImageInfoEntry 2 }
eSWMinorVer OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The minor version number of the bank image
software. If this object and eSWMajorVer both
have zero values, the bank has no image code
loaded."
::= { eSWBankImageInfoEntry 3 }
eSWDateTime OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The date and time of the image software loaded
in this bank."
::= { eSWBankImageInfoEntry 4 }
eSWTelnetSessions OBJECT-TYPE
SYNTAX INTEGER (1..4)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of concurrent Telnet sessions the agent
will support."
::= { eSWAgentSW 15 }
eSWTelnetSessionActive OBJECT-TYPE
SYNTAX INTEGER (1..4)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of Telnet sessions active. This
value cannot be greater than the value of
eSWTelnetSessions."
::= { eSWAgentSW 16 }
eSWTelnetTimeOut OBJECT-TYPE
SYNTAX INTEGER (1..60)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Telnet session time-out value, in minutes. The
default for this object is 5 minutes."
::= { eSWAgentSW 17 }
eSWSTP OBJECT-TYPE
SYNTAX INTEGER {
other(1),
enable(2), -- Spanning Tree Task is running
disable(3) -- Spanning Tree Task is suspended
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Setting this value to enable(2) will cause the
switch to perform the Spanning Tree Algorithm as
described in IEEE 802.1d.Setting it to disable(3)
will stop the Spanning Tree Algorithm for all
ports on the switch. If STP is disabled, the
state of all ports in this switch should be set to
Forwarding. When STP is changed from Disabled(3)
to Enabled(2), the state of all enabled ports
will be changed from forwarding to blocking, and
the switch will recalculate the spanning tree."
::= { eSWAgentSW 18 }
eSWUserInterfaceTimeOut OBJECT-TYPE
SYNTAX INTEGER (0..60)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The console interface time-out value, in minutes.
A value of 0 means that the console interface
will not time out. The default is 5 minutes."
::= { eSWAgentSW 19 }
eSWBCastMcastThreshold OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The switch will detect a Broadcast or Multicast
storm on the network based on the value of this
object. This value is represented as number of
packets per second. The value must be greater
than or equal to 7000 packets per second."
::= { eSWAgentSW 20 }
eSWBCastMcastDuration OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The switch will detect a Broadcast or
Multicast storm on the network based on the
value represented by this object. The switch
will declare that a storm is present if the
bcast/mcast rate is over the threshold
defined by eSWBCastMcastThreshold for this
duration of time. The value must be greater than
or equal to 2 seconds."
::= { eSWAgentSW 21 }
eSWCfgFileErrStatus OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(2)) ACCESS read-only STATUS
mandatory DESCRIPTION
"This object represents the results of previous
Config File download operation. Each bit from
least Significant bit represent a configuration
section in the switch. Value 1 for a bit
indicates that the corresponding section had
error in previous config file configuration
operation. Following is the detatiled section
information.
Bit 0 - System Administration section
Bit 1 - IP section
Bit 2 - Bootstrap section
Bit 3 - SNMP section
Bit 4 - Port section
Bit 5 - STP section
Bit 6 - VLAN section
Bit 7 - NW Security section
Bit 8 - Switch Stats and Duplicate IP Trap section
Bit 9:15 - Reserved."
::= { eSWAgentSW 22 }
eSWDRAMSize OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"DRAM installed on the switch, in bytes."
::= { eSWAgentHW 1 }
eSWFlashRAMSize OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Flash RAM installed on the switch, in bytes."
::= { eSWAgentHW 2 }
eSWEEPROMSize OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"EEPROM installed on the switch, in bytes."
::= { eSWAgentHW 3 }
-- switch basic information group
eSWType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
thunderBird(2), -- ThunderBird Project
intraStack(3), -- IntraStack
intraSwitch(4), -- Asante ASIC
intraCore8000(5),
intraCore9000(6)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The ethernet switch type."
::= { eSWBasic 1 }
eSWBkpType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
no-Bkp(2),
intraStack(3),
intraSwitch6216M(4),
intraSwitch6224(5),
intraSwitch6224M(6),
intraCore8000(7),
intraCore9000(8)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The backplane type of this switch."
::= { eSWBasic 2 }
eSWGroupCapacity OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of groups that can be contained
within the switch."
::= { eSWBasic 3 }
eSWStackLastChange OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The value of sysUpTime at the last change of
stack status. If no change has occurred since
the stack was in operation, the value is zero."
::= { eSWBasic 4 }
eSWGroupInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF ESWGroupInfoEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This is the table to describe basic information
for each group of ports in the switch."
::= { eSWBasic 5 }
eSWGroupInfoEntry OBJECT-TYPE
SYNTAX ESWGroupInfoEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This is the entry to describe basic information
for a particular group of ports."
INDEX { eSWGrpIndex }
::= { eSWGroupInfoTable 1 }
ESWGroupInfoEntry ::= SEQUENCE {
eSWGrpIndex INTEGER,
eSWGrpID MacAddress,
eSWGrpState INTEGER,
eSWGrpNumofPorts INTEGER,
eSWGrpType INTEGER,
eSWGrpDescrption DisplayString,
eSWGrpLED OCTET STRING,
eSWGrpFanStatus INTEGER,
eSWGrpNumofExpPorts INTEGER,
eSWGrpLastChange TimeTicks,
eSWGrpReset INTEGER
}
eSWGrpIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The group number, which is the index of the table."
::= { eSWGroupInfoEntry 1 }
eSWGrpID OBJECT-TYPE
SYNTAX MacAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The ID of this group module. This is the MAC address
of the first port in the group."
::= { eSWGroupInfoEntry 2 }
eSWGrpState OBJECT-TYPE
SYNTAX INTEGER {
other(1),
enable(2),
disable(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"A command to disable or enable a physical module
in the switch device stack."
::= { eSWGroupInfoEntry 3 }
eSWGrpNumofPorts OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of ports including expansion ports
in the group."
::= { eSWGroupInfoEntry 4 }
eSWGrpType OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- unknown
empty(2), -- group empty
intraSwitch(3), -- IntraSwitch switch
intraStack-Base(4), -- IntraStack switch
intraStack-FX8(5), -- IntraStack FX module
intraStack-TX16(6), -- IntraStack TX module
enterprise6216M-TX16(7),-- Enterprise TX 16 Port module
enterprise6224M-TX24(8),-- Enterprise TX 24 Port module
intraCore8000(9), -- IC8000 base module
intraCore-RJ45(10), -- IC9000 24 Port RJ45 module
intraCore-RJ21(11), -- IC9000 24 Port RJ21 module
intraCore-GIGA(12) -- IC9000 Giga Port module
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The type of group module described by this entry."
::= { eSWGroupInfoEntry 5 }
eSWGrpDescrption OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A description of the group module described by
this entry."
::= { eSWGroupInfoEntry 6 }
-- Group LED Status
eSWGrpLED OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(128))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This octet string represents the current LED
setting for this slot/group. Each octet in the
string represents one led. LEDs on the front
panel of the slot module are ordered from the top
to the bottom and order in left to right.
Each LED uses two bits for its action and state,
two bits for color, and has four reserved bits.
Bits 0-1:
00 -- LED on
01 -- LED off
10 -- LED blink.
Bits 6-7:
00 -- unknown color,
01 -- green,
10 -- yellow,
11 -- amber.
Bits 2-5 are reserved.
The 62XX LEDs on the front panel are ordered by port
LEDs followed by power, two MII (for 6216) and eight
utilization LEDs(for 6224).
The Octet String will be
Port1, Port2, port3 ... , PortN
0 - 3, 4 - 7, 8 -11 ... , (N - 1) * 4 - (( N * 4) - 1).
For the 6216, LED#65 is the power LED and 66 & 67
are MII LEDs.
For the 6224, LED#97 represents the power and
LEDs 98 - 105 represent utilization information.
Port octets meaning :
Octet 3 : Link Status.
Octet 2 : Data RX/TX.
Octet 1 : FDP.
Octet 0 : Speed.
Utilization octets meaning:
Octet 7 : 90+ %
Octet 6 : 75 - 90 %
Octet 5 : 50 - 75 %
Octet 4 : 25 - 50 %
Octet 3 : 10 - 25 %
Octet 2 : 5 - 10 %
Octet 1 : 3 - 5 %
Octet 0 : 1 - 3 %."
::= { eSWGroupInfoEntry 7 }
-- Group Fan Status
eSWGrpFanStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- unknown, cannot read status
no-fan(2), -- no fan is found in this module
normal(3), -- fan in good condition
fail(4), -- fan in failed condition
fan-1-bad(5),
fan-2-bad(6),
fan-1-2-bad(7)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The value of this object describes the fan status.
If there is more than one fan within the device,
the indication shows any failure among the fans."
::= { eSWGroupInfoEntry 8 }
eSWGrpNumofExpPorts OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of expansion ports in this group."
::= { eSWGroupInfoEntry 9 }
eSWGrpLastChange OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only