-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCTRON-SFCS-MIB
5553 lines (4892 loc) · 196 KB
/
CTRON-SFCS-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
CTRON-SFCS-MIB DEFINITIONS ::= BEGIN
-- ctron-sfcs-mib.txt
-- Revision: 1.00.01
-- Date: March 23, 1999
-- Cabletron Systems, Inc.
-- 35 Industrial Way, P.O. Box 5005
-- Rochester, NH 03867-0505
-- (603) 332-9400
-- This module provides authoritative definitions for Cabletron's
-- enterprise specific Secure Fast Cell Switching MIB.
--
-- This module will be extended, as required.
--
-- Cabletron Systems reserves the right to make changes in
-- specification and other information contained in this document
-- without prior notice. The reader should consult Cabletron Systems
-- to determine whether any such changes have been made.
--
-- In no event shall Cabletron Systems be liable for any incidental,
-- indirect, special, or consequential damages whatsoever (including
-- but not limited to lost profits) arising out of or related to this
-- document or the information contained in it, even if Cabletron
-- Systems has been advised of, known, or should have known, the
-- possibility of such damages.
--
-- Cabletron grants vendors, end-users, and other interested parties
-- a non-exclusive license to use this Specification in connection
-- with the management of Cabletron products.
-- Copyright October 98 Cabletron Systems
--
IMPORTS
OBJECT-TYPE
FROM RFC-1212
DisplayString
FROM RFC1213-MIB
enterprises, IpAddress, TimeTicks
FROM RFC1155-SMI
TruthValue
FROM SNMPv2-TC
atmVcCrossConnectIndex, atmVcCrossConnectLowIfIndex,
atmVcCrossConnectLowVpi, atmVcCrossConnectLowVci,
atmVcCrossConnectHighIfIndex, atmVcCrossConnectHighVpi,
atmVcCrossConnectHighVci
FROM ATM-MIB;
cabletron OBJECT IDENTIFIER ::= { enterprises 52 }
mibs OBJECT IDENTIFIER ::= { cabletron 4 }
ctron OBJECT IDENTIFIER ::= { mibs 1 }
ctDataLink OBJECT IDENTIFIER ::= { ctron 2 }
ctSwitch OBJECT IDENTIFIER ::= { ctDataLink 11 }
ctsfSwitch OBJECT IDENTIFIER ::= { ctSwitch 1 }
ctSFCS OBJECT IDENTIFIER ::= { ctsfSwitch 1 }
-- The SFCS Groups.
-- The SFCS System Groups (switch system)
sfcsSystem OBJECT IDENTIFIER ::= { ctSFCS 1 }
sfcsSysConfig OBJECT IDENTIFIER ::= { sfcsSystem 1 }
sfcsSysStatus OBJECT IDENTIFIER ::= { sfcsSystem 2 }
sfcsSysSystemCfg OBJECT IDENTIFIER ::= { sfcsSystem 3 }
sfcsSysBPCfg OBJECT IDENTIFIER ::= { sfcsSystem 4 }
-- All groups from here on represent a single switch module
-- The SFCS Engine Groups
sfcsEngine OBJECT IDENTIFIER ::= { ctSFCS 2 }
sfcsConfig OBJECT IDENTIFIER ::= { sfcsEngine 1 }
sfcsStatus OBJECT IDENTIFIER ::= { sfcsEngine 2 }
sfcsUPCEngine OBJECT IDENTIFIER ::= { sfcsEngine 3 }
sfcsStatisticsEngine OBJECT IDENTIFIER ::= { sfcsEngine 4 }
sfcsPacketDiscardEngine OBJECT IDENTIFIER ::= { sfcsEngine 5 }
-- The SFCS ANIM Groups
sfcsANIM OBJECT IDENTIFIER ::= { ctSFCS 3 }
sfcsANIMConfig OBJECT IDENTIFIER ::= { sfcsANIM 1 }
sfcsANIMStatistics OBJECT IDENTIFIER ::= { sfcsANIM 2 }
sfcsANIMPic OBJECT IDENTIFIER ::= { sfcsANIM 3 }
-- The SFCS Interface Groups
sfcsInterface OBJECT IDENTIFIER ::= { ctSFCS 4 }
sfcsInterfaceConfig OBJECT IDENTIFIER ::= { sfcsInterface 1 }
sfcsInterfaceStatistics OBJECT IDENTIFIER ::= { sfcsInterface 2 }
-- The SFCS Queue Groups
sfcsQueue OBJECT IDENTIFIER ::= { ctSFCS 5 }
sfcsQueueConfig OBJECT IDENTIFIER ::= { sfcsQueue 1 }
sfcsQueueStatistics OBJECT IDENTIFIER ::= { sfcsQueue 2 }
-- The SFCS Connection Groups
sfcsConnection OBJECT IDENTIFIER ::= { ctSFCS 7 }
sfcsConnectionConfig OBJECT IDENTIFIER ::= { sfcsConnection 1 }
sfcsConnectionStatistics OBJECT IDENTIFIER ::= { sfcsConnection 2 }
sfcsConnectionError OBJECT IDENTIFIER ::= { sfcsConnection 3 }
-- The SFCS Connection API Group
sfcsConnectionAPI OBJECT IDENTIFIER ::= { ctSFCS 8 }
-- The SFCS CTM Groups
sfcsCTM OBJECT IDENTIFIER ::= { ctSFCS 9 }
sfcsCTMInterfaceConfig OBJECT IDENTIFIER ::= { sfcsCTM 1 }
sfcsCTMInterfaceStatistics OBJECT IDENTIFIER ::= { sfcsCTM 2 }
sfcsCTMQueueConfig OBJECT IDENTIFIER ::= { sfcsCTM 3 }
sfcsCTMQueueStatistics OBJECT IDENTIFIER ::= { sfcsCTM 4 }
-- The SFCS Bandwidth Managment Groups
sfcsBWMgr OBJECT IDENTIFIER ::= { ctSFCS 12 }
sfcsBwNims OBJECT IDENTIFIER ::= { sfcsBWMgr 1 }
sfcsBwPorts OBJECT IDENTIFIER ::= { sfcsBWMgr 2 }
sfcsBwPortPools OBJECT IDENTIFIER ::= { sfcsBWMgr 3 }
sfcsBuffPools OBJECT IDENTIFIER ::= { sfcsBWMgr 4 }
-- The ANIM Proxy Groups
sfcsProxy OBJECT IDENTIFIER ::= { ctSFCS 13 }
sfcsProxyConfig OBJECT IDENTIFIER ::= { sfcsProxy 1 }
sfcsProxyTrans OBJECT IDENTIFIER ::= { sfcsProxy 2 }
sfcsProxyRead OBJECT IDENTIFIER ::= { sfcsProxy 3 }
sfcsSysConfigTable OBJECT IDENTIFIER ::= { sfcsSysConfig 1 }
sfcsSysConfigEnt OBJECT IDENTIFIER ::= { sfcsSysConfigTable 1 }
sfcsSysConfigAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled(1), -- startup the SFCS
disabled(2), -- shutdown the SFCS
other(3) -- none of the following
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the administrative state of the SFCS switching
services for this virtual switch. This controls the
SFCS state at a chassis level. Regardless of the
per-interface state of each SFCS switching element
and the state of active connections, writing the value
disabled(2) will cause the entire switch to immediately
shutdown.
enabled(1) -- startup the SFCS
disabled(2) -- shutdown the SFCS
other(3) -- none of the following"
::= { sfcsSysConfigEnt 1 }
sfcsSysConfigOperStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled(1), -- running
disabled(2), -- not running
other(3), -- none of the following
pending-disable(4), -- shut-down in progress
pending-enable(5), -- start-up in progress
invalid-config(6) -- not running,invalid config
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the current operating condition of this switch.
enabled(1) -- running
disabled(2) -- not running
other(3) -- none of the following
pending-disable(4) -- shut-down in progress
pending-enable(5) -- start-up in progress
invalid-config(6) -- not running,invalid config"
::= { sfcsSysConfigEnt 2 }
sfcsSysConfigOperTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the amount of time (# of time ticks) that
this switch system has been in its current operational
state."
::= { sfcsSysConfigEnt 3 }
sfcsSysConfigLastChange OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the last time a change was made to the
configuration entry for this switch."
::= { sfcsSysConfigEnt 4 }
sfcsSysConfigSwitchCapacity OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the maximum front panel bandwidth based on current
hardware configuration of the switch in Mbps"
::= { sfcsSysConfigEnt 5 }
sfcsSysConfigMaxCnxEntries OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the maximum number of connections which
can be established on this switch."
::= { sfcsSysConfigEnt 6 }
sfcsSysConfigMaxStatEntries OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the maximum number of stats enabled VCs for this
switch."
::= { sfcsSysConfigEnt 7 }
sfcsSysConfigMaxUpcEntries OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the maximum number of UPC enabled VCs for this
switch."
::= { sfcsSysConfigEnt 8 }
sfcsSysConfigNumberANIMS OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the number of ATM Network Inteface Modules
currently configured on this switch."
::= { sfcsSysConfigEnt 9 }
sfcsSysConfigInterfaceCapability OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total bandwidth capability(of the engine)
for this switch expressed in Mbps."
::= { sfcsSysConfigEnt 10 }
sfcsSysConfigTypeofSwitch OBJECT-TYPE
SYNTAX INTEGER {
other (1),
sfcellswitch (2),
sfpacketswitch (3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates what type of switch this is.
other(1)
sfcellswitch(2)
sfpacketswitch(3)"
::= { sfcsSysConfigEnt 11 }
sfcsSysConfigPolicingSupport OBJECT-TYPE
SYNTAX TruthValue
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates whether or not this switch supports policing.
supported(1)
not supported(2)"
::= { sfcsSysConfigEnt 12 }
sfcsSysConfigPnniNsapPrefix OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(13))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This is the 13 byte NSAP prefix to use
with address registration."
::= { sfcsSysConfigEnt 13 }
sfcsSysConfigPnniNodeLevel OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This is the PNNI node level value.
The range can be from 0 to 104."
::= { sfcsSysConfigEnt 14 }
sfcsSysConfigPnniAddessingMode OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This is the PNNI addressing mode - that
can range from 0 to 2.
0 - Auto Mode using MAC
1 - Auto Mode using board#
2 - Manual "
::= { sfcsSysConfigEnt 15 }
sfcsSysConfigPnniAddessingAdmnStatus OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This is the PNNI addressing admn status.
Down - 2. Up - 1."
::= { sfcsSysConfigEnt 16 }
sfcsSysConfigFMVer OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is the Firmware Revision of the switch."
::= { sfcsSysConfigEnt 17 }
sfcsSysConfigCTMSlotMask OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is the slot mask for all ctm boards in the chassis.
The least significant bit represents slot 1."
::= { sfcsSysConfigEnt 18 }
sfcsSysConfigMaxfreecva OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This is the maximum number of CAC connection blocks that
CAC will allow on its free list. The default is 1024. If too low
CAC performance will degrade (thrashing control blocks), If too high,
memory exhaustion may occur.
"
::= { sfcsSysConfigEnt 19 }
sfcsSysConfigUBR OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"For the set operation: UBR_Cfg is set across all boards in the
chassis (that are operational and manageable).
For the get operation: UBR_Cfg setting is retrived from the
current chassis manager only (one slot only).
IF boards are introduced or re-introduced to the chassis their
UBR value will be 0. In order to insure a required UBR_Cfg value
the set operation should be proformed after slot insertions or
re-insertions are completed to the chassis. "
::= { sfcsSysConfigEnt 20 }
-- SFCS System Status Table
-- This table contains the objects that pertain to the operational status
-- of a virtual switch.
sfcsSysStatusTable OBJECT IDENTIFIER ::= { sfcsSysStatus 1 }
sfcsSysStatusEnt OBJECT IDENTIFIER ::= { sfcsSysStatusTable 1 }
sfcsSysStatusTdmCellCount OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of cells being transfered
across the TDM for the entire switch."
::= { sfcsSysStatusEnt 1 }
sfcsSysStatusTdmUtilization OBJECT-TYPE
SYNTAX INTEGER (0..100)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total percentage TDM utilization for the switch."
::= { sfcsSysStatusEnt 2 }
sfcsSysStatusCurrCnxEntries OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the current number of connection entries for
this switch."
::= { sfcsSysStatusEnt 3 }
sfcsSysStatusCurrUPCEntries OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the current number of UPC entries for this
switch."
::= { sfcsSysStatusEnt 4 }
sfcsSysStatusCurrStatsEntries OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the current number of statistics entries for
this switch."
::= { sfcsSysStatusEnt 5 }
sfcsSysStatusAllocatedBw OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the current allocated bandwidth of the switch in
bits per second."
::= { sfcsSysStatusEnt 6 }
-- SFCS System Configuration Table set up as a SYSTEM MIB
-- This table contains the objects that pertain to the setup and
-- configuration of the virtual switch.
sfcsSysSystemCfgTable OBJECT IDENTIFIER ::= { sfcsSysSystemCfg 1 }
sfcsSysSystemCfgEnt OBJECT IDENTIFIER ::= { sfcsSysSystemCfgTable 1 }
sfcsSysConfigAdminReset OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
reset(2) -- force a reset
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Resets this virtual switch. Writing a value of
reset(2) will force a restart of the entire switch,
without any graceful shutdown. Any active
connections or services will be interrupted.
other(1) -- none of the following
reset(2) -- force a reset"
::= { sfcsSysSystemCfgEnt 1 }
sfcsSysConfigATOMPersistance OBJECT-TYPE
SYNTAX INTEGER {
enabled (1),
disabled (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This enables or disables ATOM mib persistance.
enabled(1)
disabled(2)"
::= { sfcsSysSystemCfgEnt 2 }
sfcsSysConfigVcSize OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This entry is the size of VCs allocated for all
VPs in the switch."
::= { sfcsSysSystemCfgEnt 3 }
sfcsSysConfigPowerUpDiags OBJECT-TYPE
SYNTAX INTEGER {
enabled (1),
disabled (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This enables or disables power up diags.
enabled(1)
disabled(2)"
::= { sfcsSysSystemCfgEnt 4 }
-- SFCS System Back Plane Table set up as a SYSTEM MIB
-- This table contains the objects that pertain to the setup and
-- configuration of the virtual switch.
sfcsSysBPTable OBJECT IDENTIFIER ::= { sfcsSysBPCfg 1 }
sfcsSysBPEnt OBJECT IDENTIFIER ::= { sfcsSysBPTable 1 }
sfcsSysBPClkSelect OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This enables one of two backplane clocks from any slot.
A valid entry is any number that correspond to a slot
having a board supporting this mib. A write to this mib
will fail if the board with the number selected is deriving
its clock from the backplane. A value of 0 indicates that no
board is driving the backplane."
::= { sfcsSysBPEnt 1 }
-- From here forward, all objects represent the switch modules.
-- SFCS Engine Group
-- This group contains the objects that pertain to switching engines at
-- a switch module, slot-instanced level. This group contains four sub-groups:
-- configuration status, statistics, UPC Engine, and statistics engine.
-- SFCS Engine Configuration Table
-- This table contains the objects that pertain to the setup and
-- configuration of a single SFCS module.
sfcsConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF SfcsConfigEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains the configuration and administrative
information for each SFCS module. Essentially, a
separate SFCS instance exists for each switch module.
If SFCS is not configured on a module, than an entry
will not exist."
::= { sfcsConfig 1 }
sfcsConfigEntry OBJECT-TYPE
SYNTAX SfcsConfigEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry specifies the SFCS configuration for the
SFCS module."
INDEX { sfcsConfigSlotIndex }
::= { sfcsConfigTable 1 }
SfcsConfigEntry ::=
SEQUENCE {
sfcsConfigSlotIndex INTEGER,
sfcsConfigAdminStatus INTEGER,
sfcsConfigAdminReset INTEGER,
sfcsConfigOperStatus INTEGER,
sfcsConfigOperTime TimeTicks,
sfcsConfigLastChange TimeTicks,
sfcsConfigVersion INTEGER,
sfcsConfigMibRev DisplayString,
sfcsConfigSwitchHostPort INTEGER,
sfcsConfigHostCtrlATMAddr OCTET STRING,
sfcsConfigSwitchCapacity INTEGER,
sfcsConfigMaxCnxEntries INTEGER,
sfcsConfigMaxStatEntries INTEGER,
sfcsConfigMaxUpcEntries INTEGER,
sfcsConfigNumberANIMS INTEGER,
sfcsConfigBwCapability INTEGER,
sfcsConfigMasterClock1Source INTEGER,
sfcsConfigMasterClock2Source INTEGER,
sfcsConfigMasterClock1Standby INTEGER,
sfcsConfigMasterClock2Standby INTEGER
}
sfcsConfigSlotIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The primary index to the SFCS switch table. This
identifies the chassis slot number for this switch
module."
::= { sfcsConfigEntry 1 }
sfcsConfigAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled(1), -- startup the SFCS
disabled(2), -- shutdown the SFCS
other(3) -- none of the following
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the administrative state of the SFCS switching
services for this SFCS module. This controls the
SFCS state at a module level. Regardless of the
per-interface state of each SFCS switching interface
and the state of active connections, writing the value
disabled(2) will cause the SFCS to immediately
shutdown. A gracefull shutdown will be attempted.
enabled(1) -- startup the SFCS
disabled(2) -- shutdown the SFCS
other(3) -- none of the following"
::= { sfcsConfigEntry 2 }
sfcsConfigAdminReset OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
reset(2) -- force a reset
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Resets this SFCS module. Writing a value of
reset(2) will force a soft restart of the SFCS
without any graceful shutdown. Any active
connections or services will be interrupted.
other(1) -- none of the following
reset(2) -- force a reset"
::= { sfcsConfigEntry 3 }
sfcsConfigOperStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled(1), -- running
disabled(2), -- not running
other(3), -- none of the following
pending-disable(4), -- shut-down in progress
pending-enable(5), -- start-up in progress
invalid-config(6) -- not running,invalid config
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the current operating condition of the SFCS
module.
enabled(1) -- running
disabled(2) -- not running
other(3) -- none of the following
pending-disable(4) -- shut-down in progress
pending-enable(5) -- start-up in progress
invalid-config(6) -- not running,invalid config"
::= { sfcsConfigEntry 4 }
sfcsConfigOperTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the amount of time (# of time ticks) that this
SFCS module has been in its current operational state."
::= { sfcsConfigEntry 5 }
sfcsConfigLastChange OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the last time a change was made to the
configuration entry for this SFCS switch module."
::= { sfcsConfigEntry 6 }
sfcsConfigVersion OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the current revision level of the SFCS MIB
for this switch module expressed as an integer."
::= { sfcsConfigEntry 7 }
sfcsConfigMibRev OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates in textual format the current revision level
of the Cabletron SFCS MIB for this switch module."
::= { sfcsConfigEntry 8 }
sfcsConfigSwitchHostPort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the switch port that is attached to the host."
::= { sfcsConfigEntry 9 }
sfcsConfigHostCtrlATMAddr OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the ATM address of the host. (SAR)"
::= { sfcsConfigEntry 10 }
sfcsConfigSwitchCapacity OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the front panel bandwidth based on the hardware
that is currently installed, in Mbps.
(number of ports and the port type)"
::= { sfcsConfigEntry 11 }
sfcsConfigMaxCnxEntries OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the maximum number of connections which
can be established on this switch module."
::= { sfcsConfigEntry 12 }
sfcsConfigMaxStatEntries OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the maximum number of stats enabled VCs for this
switch module."
::= { sfcsConfigEntry 13 }
sfcsConfigMaxUpcEntries OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the maximum number of UPC enabled VCs for this
switch module."
::= { sfcsConfigEntry 14 }
sfcsConfigNumberANIMS OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the number of ATM Network Inteface Modules
currently configured on this switch module."
::= { sfcsConfigEntry 15 }
sfcsConfigBwCapability OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total bandwidth capability for this
switch engine expressed in Mbps."
::= { sfcsConfigEntry 16 }
sfcsConfigMasterClock1Source OBJECT-TYPE
SYNTAX INTEGER{
anim-one-clk(1),
anim-two-clk(2),
anim-three-clk(3),
anim-four-clk(4),
backplane-one(5),
backplane-two(6)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Indicates the clocking source for MasterClock1 on each board.
The write will fail if it is also currently the source of the
backplane. The write will also fail if the board does not support
backplane clocking."
::= { sfcsConfigEntry 17 }
sfcsConfigMasterClock2Source OBJECT-TYPE
SYNTAX INTEGER{
anim-one-clk(1),
anim-two-clk(2),
anim-three-clk(3),
anim-four-clk(4),
backplane-one(5),
backplane-two(6)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Indicates the clocking source for MasterClock2 on each board.
The write will fail if it is also currently the source of the
backplane. The write will also fail if the board does not support
backplane clocking."
::= { sfcsConfigEntry 18 }
sfcsConfigMasterClock1Standby OBJECT-TYPE
SYNTAX INTEGER{
anim-one-clk(1),
anim-two-clk(2),
anim-three-clk(3),
anim-four-clk(4),
backplane-one(5),
backplane-two(6),
none(7)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Indicates the clocking stand-by for MasterClock1 on each board.
The write will fail if it is also currently the source of the
backplane. The write will also fail if the board does not support
backplane clocking. If this value is none(7) and an interrupt on
the primary interface for MasterClock1 is received. MasterClock1
will switch to that anims local clock."
::= { sfcsConfigEntry 19 }
sfcsConfigMasterClock2Standby OBJECT-TYPE
SYNTAX INTEGER{
anim-one-clk(1),
anim-two-clk(2),
anim-three-clk(3),
anim-four-clk(4),
backplane-one(5),
backplane-two(6),
none(7)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Indicates the clocking stand-by for MasterClock2 on each board.
The write will fail if it is also currently the source of the
backplane. The write will also fail if the board does not support
backplane clocking. If this value is none(7) and an interrupt on
the primary interface for MasterClock1 is received. MasterClock1
will switch to that anims local clock."
::= { sfcsConfigEntry 20 }
-- SFCS Status Table
-- This table contains the objects that pertain to the operational status
-- of a single SFCS module.
sfcsStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF SfcsStatusEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains the status information for each SFCS
switch module."
::= { sfcsStatus 1 }
sfcsStatusEntry OBJECT-TYPE
SYNTAX SfcsStatusEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains the SFCS statistics for the SFCS
instance."
INDEX { sfcsStatusSlotIndex }
::= { sfcsStatusTable 1 }
SfcsStatusEntry ::=
SEQUENCE {
sfcsStatusSlotIndex INTEGER,
sfcsStatusTdmCellCount OCTET STRING,
sfcsStatusTdmUtilization INTEGER,
sfcsStatusCurrCnxEntries INTEGER,
sfcsStatusCurrUPCEntries INTEGER,
sfcsStatusCurrStatsEntries INTEGER,
sfcsStatusCurrCtmAgent INTEGER
}
sfcsStatusSlotIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The primary index to the SFCS switch table. This
identifies the chassis slot number for this SFCS module."
::= { sfcsStatusEntry 1 }
sfcsStatusTdmCellCount OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of cells being transfered
across the TDM for this switch module."
::= { sfcsStatusEntry 2 }
sfcsStatusTdmUtilization OBJECT-TYPE
SYNTAX INTEGER (0..100)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the percentage TDM utilization for this switch
module."
::= { sfcsStatusEntry 3 }
sfcsStatusCurrCnxEntries OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the current number of connection entries for
this switch module."
::= { sfcsStatusEntry 4 }
sfcsStatusCurrUPCEntries OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the current number of UPC entries for this
switch module."
::= { sfcsStatusEntry 5 }
sfcsStatusCurrStatsEntries OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the current number of statistics entries for
this switch module."
::= { sfcsStatusEntry 6 }
sfcsStatusCurrCtmAgent OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the current board number of
the ctm agent for this switch module."
::= { sfcsStatusEntry 7 }
-- SFCS UPC Engine Table
-- This table contains the objects that pertain to UPC Engine
-- monitoring and statistics of a single instance, slot number indexed
-- SFCS module.
sfcsUPCTable OBJECT-TYPE
SYNTAX SEQUENCE OF SfcsUPCEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains the Usage Parameter Control info
for this SFCS module."
::= { sfcsUPCEngine 1 }
sfcsUPCEntry OBJECT-TYPE
SYNTAX SfcsUPCEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains the UPC data for the SFCS instance."
INDEX { sfcsUPCSlotIndex }
::= { sfcsUPCTable 1 }
SfcsUPCEntry ::=
SEQUENCE {
sfcsUPCSlotIndex INTEGER,
sfcsUPCAdminStatus INTEGER,
sfcsUPCOperStatus INTEGER,
sfcsUPCReset INTEGER,
sfcsUPCOperTime TimeTicks
}
sfcsUPCSlotIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The primary index to the SFCS switch table. This
identifies the slot number for this SFCS module."
::= { sfcsUPCEntry 1 }
sfcsUPCAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2),
other(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the administrative state of the SFCS module's
UPC engine.
enabled(1)
disabled(2)
other(3)"
::= { sfcsUPCEntry 2 }
sfcsUPCOperStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2),
other(3)
}
ACCESS read-only