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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
|
CTRON-SFPS-BASE-MIB DEFINITIONS ::= BEGIN
-- sfps-base-mib.txt
-- Revision: 0.0.18
-- Cabletron Systems, Inc.
-- 35 Industrial Way, P.O. Box 5005
-- Rochester, NH 03867-0505
-- (603) 332-9400
-- support@ctron.com
-- This module provides authoritative definitions for Cabletron's
-- enterprise specific Fast Packet Switching Services 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 93 Cabletron Systems
--
IMPORTS
OBJECT-TYPE
FROM RFC-1212
DisplayString
FROM RFC1213-MIB
-- enterprises,
-- IpAddress,
-- Counter, Gauge,
TimeTicks
FROM RFC1155-SMI
-- These Objects are defined in the file sfps-inc.mib.txt.0.0.2
sfpsCPResources, sfpsServiceCenter, sfpsBlockSource,
sfpsBlockSourcePort, sfpsBlockSourceAPI, sfpsBlockSourceExclude,
sfpsBlockSourceStats, sfpsBlockSourceOnly, sfpsCSPControl,
sfpsDHCPServerVLAN, sfpsATalkAMRVLANControl
FROM CTRON-SFPS-INCLUDE-MIB;
-- Textual Conventions
HexInteger ::= INTEGER
-- display this integer in hex format
-- SfpsSwitchInstance ::= INTEGER
-- this will map to chassis.module index value
SfpsAddress ::= OCTET STRING (SIZE (6))
-- this will map to a MAC address
--
sfpsCPResourcesTable OBJECT-TYPE
SYNTAX SEQUENCE OF SfpsCPResourcesTableEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains all Call Processors registered with the
CPResources Table and is indexed by the Call Processor id."
::= { sfpsCPResources 1 }
sfpsCPResourcesTableEntry OBJECT-TYPE
SYNTAX SfpsCPResourcesTableEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains information pertaining to a Call Processor."
INDEX { sfpsCPResourcesTableId }
::= { sfpsCPResourcesTable 1 }
SfpsCPResourcesTableEntry ::=
SEQUENCE {
sfpsCPResourcesTableId INTEGER,
sfpsCPResourcesTableName DisplayString,
sfpsCPResourcesTableOperStatus INTEGER,
sfpsCPResourcesTableAdminStatus INTEGER,
sfpsCPResourcesTableStateTime TimeTicks,
sfpsCPResourcesTablePtsIn INTEGER,
sfpsCPResourcesTablePtsUsed INTEGER,
sfpsCPResourcesTablePolicyFlood INTEGER,
sfpsCPResourcesResolveFlood INTEGER,
sfpsCPResourcesConnectOK INTEGER,
sfpsCPResourcesDuplicate INTEGER,
sfpsCPResourcesDiscoverOnly INTEGER,
sfpsCPResourcesDiscoverError INTEGER,
sfpsCPResourcesResolveFail INTEGER,
sfpsCPResourcesResolveError INTEGER,
sfpsCPResourcesPolicyFail INTEGER,
sfpsCPResourcesPolicyError INTEGER,
sfpsCPResourcesConnectFail INTEGER,
sfpsCPResourcesConnectFlood INTEGER,
sfpsCPResourcesConnectError INTEGER,
sfpsCPResourcesConfigTime TimeTicks,
sfpsCPResourcesNeedFlood INTEGER,
sfpsCPResourcesNeedResolve INTEGER,
sfpsCPResourcesNeedDiscover INTEGER,
sfpsCPResourcesDiscoverAll INTEGER,
sfpsCPResourcesNeedProxyOut INTEGER,
sfpsCPResourcesNeedProxyIn INTEGER,
sfpsCPResourcesNeedFilter INTEGER,
sfpsCPResourcesAcceptRate INTEGER,
sfpsCPResourcesTotalRate INTEGER,
sfpsCPResourcesSingleFlood INTEGER,
sfpsCPResourcesNeedValidNet INTEGER,
sfpsCPResourcesInvalidNetDrops INTEGER,
sfpsCPResourcesPersistMask INTEGER
}
sfpsCPResourcesTableId OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Call Processor id used to index into the table."
::= { sfpsCPResourcesTableEntry 1 }
sfpsCPResourcesTableName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The name of the associated Call Processor."
::= { sfpsCPResourcesTableEntry 2 }
sfpsCPResourcesTableOperStatus OBJECT-TYPE
SYNTAX INTEGER {
kStatusRunning(1), -- all is well
kStatusHalted(2), -- admin disabled
kStatusPending(3), -- Trying to run, not there yet
kStatusFaulted(4), -- Internal error, never will recover
kStatusNotStarted(5) -- Not fully started yet
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Operational state of entry."
::= { sfpsCPResourcesTableEntry 3 }
sfpsCPResourcesTableAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value represents the current administration status of the
associated Call Processor. When enabled(3) the Call Processor
is still allowed to call process packets.
When this value is disabled(2) the call processor will not
process any packets."
::= { sfpsCPResourcesTableEntry 4 }
sfpsCPResourcesTableStateTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The last time that this Call Processor has changed states."
::= { sfpsCPResourcesTableEntry 5 }
sfpsCPResourcesTablePtsIn OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of packets that have been sent to this Call
Processor to be handled."
::= { sfpsCPResourcesTableEntry 6 }
sfpsCPResourcesTablePtsUsed OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of packets that have been sent to this Call
Processor and accepted for the purpose of processing."
::= { sfpsCPResourcesTableEntry 7 }
sfpsCPResourcesTablePolicyFlood OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of packets flooded due to Policy."
::= { sfpsCPResourcesTableEntry 8 }
sfpsCPResourcesResolveFlood OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of packets flooded due to not able to Resolve."
::= { sfpsCPResourcesTableEntry 9 }
sfpsCPResourcesConnectOK OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of packets that caused a successful connect."
::= { sfpsCPResourcesTableEntry 10 }
sfpsCPResourcesDuplicate OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of packets that were duplicates of an existing call."
::= { sfpsCPResourcesTableEntry 11 }
sfpsCPResourcesDiscoverOnly OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of packets that the switch only discovered information."
::= { sfpsCPResourcesTableEntry 12 }
sfpsCPResourcesDiscoverError OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of packets that the switch could not discover
information. Something was wrong with the packet."
::= { sfpsCPResourcesTableEntry 13 }
sfpsCPResourcesResolveFail OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of packets which caused the Resolve to fail. The fail
is due to no vlan information was returned."
::= { sfpsCPResourcesTableEntry 14 }
sfpsCPResourcesResolveError OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of packets which caused the Resolve to return an error.
An error could be caused by a bad packet."
::= { sfpsCPResourcesTableEntry 15 }
sfpsCPResourcesPolicyFail OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of packets which caused the Policy to fail. The fail
is caused because the switch has no information on the vlan(s)
returned by Resolve."
::= { sfpsCPResourcesTableEntry 16 }
sfpsCPResourcesPolicyError OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of packets which caused the Policy to return an error.
An error could be caused by a bad packet."
::= { sfpsCPResourcesTableEntry 17 }
sfpsCPResourcesConnectFail OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of packets that caused the Connect to fail."
::= { sfpsCPResourcesTableEntry 18 }
sfpsCPResourcesConnectFlood OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of packets that caused the Connect to flood."
::= { sfpsCPResourcesTableEntry 19 }
sfpsCPResourcesConnectError OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of packets that caused the Connect to return an error."
::= { sfpsCPResourcesTableEntry 20 }
sfpsCPResourcesConfigTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of time ticks since the last configuration change."
::= { sfpsCPResourcesTableEntry 21 }
sfpsCPResourcesNeedFlood OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Set to enabled(1)/disabled(0) if the BaseNeedFlood attribute
is desired. If disabled, then an attempt to resolve is
performed."
::= { sfpsCPResourcesTableEntry 22 }
sfpsCPResourcesNeedResolve OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Set to enabled(1)/disabled(0) if the Resoolve attribute
is desired."
::= { sfpsCPResourcesTableEntry 23 }
sfpsCPResourcesNeedDiscover OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Set to enabled(1)/disabled(0) if the Discover attribute
is desired."
::= { sfpsCPResourcesTableEntry 24 }
sfpsCPResourcesDiscoverAll OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Set to enabled(1)/disabled(0) if the DiscoverAll attribute
is desired."
::= { sfpsCPResourcesTableEntry 25 }
sfpsCPResourcesNeedProxyOut OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Set to enabled(1)/disabled(0) if the Proxy Forward attribute
is desired."
::= { sfpsCPResourcesTableEntry 26 }
sfpsCPResourcesNeedProxyIn OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Set to enabled(1)/disabled(0) if the Proxy Back attribute
is desired."
::= { sfpsCPResourcesTableEntry 27 }
sfpsCPResourcesNeedFilter OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Set to enabled(1)/disabled(0) if the Filter attribute
is desired."
::= { sfpsCPResourcesTableEntry 28 }
sfpsCPResourcesAcceptRate OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of packets per second that have been sent to this
Call Processor to be handled and accepted for processing."
::= { sfpsCPResourcesTableEntry 29 }
sfpsCPResourcesTotalRate OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of packets per second that have been sent to this
Call Processor to be handled."
::= { sfpsCPResourcesTableEntry 30 }
sfpsCPResourcesSingleFlood OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of packets that were unicast (single) flooded."
::= { sfpsCPResourcesTableEntry 34 }
sfpsCPResourcesNeedValidNet OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of packets that were unicast (single) flooded."
::= { sfpsCPResourcesTableEntry 35 }
sfpsCPResourcesInvalidNetDrops OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsCPResourcesTableEntry 36 }
sfpsCPResourcesPersistMask OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsCPResourcesTableEntry 37 }
-- CPResource API
sfpsCPResourcesAPI OBJECT IDENTIFIER ::= { sfpsCPResources 2 }
sfpsCPResourcesAPIID OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Identifier for the call processor."
::= { sfpsCPResourcesAPI 1 }
sfpsCPResourcesAPIAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Administrative status of the call processor."
::= { sfpsCPResourcesAPI 2 }
sfpsCPResourcesAPIAttribute OBJECT-TYPE
SYNTAX INTEGER {
none(1),
noFlood(2),
flood(3),
noResolve(4),
resolve(5),
noDiscover(6),
discover(7),
noDiscoverAll(8),
discoverAll(9),
noProxyIn(10),
proxyIn(11),
noProxyOut(12),
proxyOut(13),
nofilter(14),
filter(15),
noValidateNet(16),
validNet(17)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Call processor attribute/features."
::= { sfpsCPResourcesAPI 3 }
sfpsCPResourcesAPIScope OBJECT-TYPE
SYNTAX INTEGER {
switch(1),
port(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Scope this attribute to switch or port."
::= { sfpsCPResourcesAPI 4 }
sfpsCPResourcesAPIPersistance OBJECT-TYPE
SYNTAX INTEGER {
persistOther(1),
persistDisabled(2),
persistEnabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Parameter to make persistent on switch reset."
::= { sfpsCPResourcesAPI 5 }
sfpsCPResourcesAPIVerb OBJECT-TYPE
SYNTAX INTEGER {
other(1),
set(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Action to perform."
::= { sfpsCPResourcesAPI 6 }
--
sfpsCSPControlTable OBJECT-TYPE
SYNTAX SEQUENCE OF SfpsCSPControlTableEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Cabletron Switch Protocol Control statistics"
::= { sfpsCSPControl 1 }
sfpsCSPControlTableEntry OBJECT-TYPE
SYNTAX SfpsCSPControlTableEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
""
INDEX { sfpsCSPControlTableIndex }
::= { sfpsCSPControlTable 1 }
SfpsCSPControlTableEntry ::=
SEQUENCE {
sfpsCSPControlTableIndex INTEGER,
sfpsCSPControlTableCSPType INTEGER,
sfpsCSPControlTableCSPName DisplayString,
sfpsCSPControlTableAdminStatus INTEGER,
sfpsCSPControlTableSwitchToCallProc INTEGER,
sfpsCSPControlTablePktsProcessed INTEGER,
sfpsCSPControlTablePktRate INTEGER
}
sfpsCSPControlTableIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsCSPControlTableEntry 1 }
sfpsCSPControlTableCSPType OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsCSPControlTableEntry 2 }
sfpsCSPControlTableCSPName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsCSPControlTableEntry 3 }
sfpsCSPControlTableAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disable(2),
enable(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
""
::= { sfpsCSPControlTableEntry 4 }
sfpsCSPControlTableSwitchToCallProc OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disable(2),
enable(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsCSPControlTableEntry 5 }
sfpsCSPControlTablePktsProcessed OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsCSPControlTableEntry 6 }
sfpsCSPControlTablePktRate OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsCSPControlTableEntry 7 }
-- FACILITY
sfpsServiceCenterFacilityTable OBJECT-TYPE
SYNTAX SEQUENCE OF SfpsServiceCenterFacilityEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table gives facility semantics to call processing."
::= { sfpsServiceCenter 9 }
sfpsServiceCenterFacilityEntry OBJECT-TYPE
SYNTAX SfpsServiceCenterFacilityEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains the configuration of the Facility Entry."
INDEX { sfpsServiceCenterFacilityHashLeaf }
::= { sfpsServiceCenterFacilityTable 1 }
SfpsServiceCenterFacilityEntry ::=
SEQUENCE {
sfpsServiceCenterFacilityHashLeaf HexInteger,
sfpsServiceCenterFacilityMetric INTEGER,
sfpsServiceCenterFacilityName DisplayString,
sfpsServiceCenterFacilityOperStatus INTEGER,
sfpsServiceCenterFacilityAdminStatus INTEGER,
sfpsServiceCenterFacilityStatusTime TimeTicks,
sfpsServiceCenterFacilityRequests INTEGER,
sfpsServiceCenterFacilityReply INTEGER
}
sfpsServiceCenterFacilityHashLeaf OBJECT-TYPE
SYNTAX HexInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Server hash, part of instance key."
::= { sfpsServiceCenterFacilityEntry 1 }
sfpsServiceCenterFacilityMetric OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Defines order servers are called low to high."
::= { sfpsServiceCenterFacilityEntry 2 }
sfpsServiceCenterFacilityName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Server name."
::= { sfpsServiceCenterFacilityEntry 3 }
sfpsServiceCenterFacilityOperStatus OBJECT-TYPE
SYNTAX INTEGER {
kStatusRunning(1), -- all is well
kStatusHalted(2), -- admin disabled
kStatusPending(3), -- Trying to run, not there yet
kStatusFaulted(4), -- Internal error, never will recover
kStatusNotStarted(5) -- Not fully started yet
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Operational state of entry."
::= { sfpsServiceCenterFacilityEntry 4 }
sfpsServiceCenterFacilityAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- Not running or stopped
disable(2), -- Please stop
enable(3) -- Go
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Administrative State of Entry."
::= { sfpsServiceCenterFacilityEntry 5 }
sfpsServiceCenterFacilityStatusTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Time Tick of last operStatus change."
::= { sfpsServiceCenterFacilityEntry 6 }
sfpsServiceCenterFacilityRequests OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Requests made to server."
::= { sfpsServiceCenterFacilityEntry 7 }
sfpsServiceCenterFacilityReply OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"GOOD replies by server."
::= { sfpsServiceCenterFacilityEntry 8 }
-- Source Blocker Table
sfpsBlockSourceTable OBJECT-TYPE
SYNTAX SEQUENCE OF SfpsBlockSourceEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The SourceBlocker table lists all nodes (MAC addresses) that
have been heard locally on the switch. Only a certain subset
(if any) of the nodes in this table are blocked."
::= { sfpsBlockSource 1 }
sfpsBlockSourceEntry OBJECT-TYPE
SYNTAX SfpsBlockSourceEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Entry in the SourceBlocker table indexed by a counter."
INDEX { sfpsBlockSourceIndex }
::= { sfpsBlockSourceTable 1 }
SfpsBlockSourceEntry ::=
SEQUENCE {
sfpsBlockSourceIndex INTEGER,
sfpsBlockSourceMAC SfpsAddress,
sfpsBlockSourceElapTimeShort TimeTicks,
sfpsBlockSourceNumCallsShort INTEGER,
sfpsBlockSourceElapTimeLong TimeTicks,
sfpsBlockSourceNumCallLong INTEGER,
sfpsBlockSourceBlockFlag INTEGER,
sfpsBlockSourceUnBlockableFlag INTEGER,
sfpsBlockSourceFilterPresent INTEGER,
sfpsBlockSourceNext INTEGER,
sfpsBlockSourceBlocksOnlyIndex INTEGER
}
sfpsBlockSourceIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index into the table"
::= { sfpsBlockSourceEntry 1 }
sfpsBlockSourceMAC OBJECT-TYPE
SYNTAX SfpsAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The MAC address of the node."
::= { sfpsBlockSourceEntry 2 }
sfpsBlockSourceElapTimeShort OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The elapsed time (seconds) in the current short-threshold
period."
::= { sfpsBlockSourceEntry 3 }
sfpsBlockSourceNumCallsShort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of packets seen from the node during the elapsed
time for the short-threshold."
::= { sfpsBlockSourceEntry 4 }
sfpsBlockSourceElapTimeLong OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The elapsed time (seconds) in the current long-threshold
period."
::= { sfpsBlockSourceEntry 5 }
sfpsBlockSourceNumCallLong OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of packets seen from the node during the elapsed
time for the long-threshold."
::= { sfpsBlockSourceEntry 6 }
sfpsBlockSourceBlockFlag OBJECT-TYPE
SYNTAX INTEGER {
-- notBlocked (0),
blocked (1),
wouldBeBlocked (2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Describes whether the node is blocked or not. There are three
possible integer values for this field: 0-notBlocked,
1-Blocked, 2-WouldBeBlocked. The WouldBeBlocked value is used
to represent a node that would be in the blocked state if the
SourceBlocker was enabled. A node can get into this state only
if the blocker is disabled. If the blocker is enabled at this
point, the node will be blocked, and a connection filter will
be put in place when the next packet is received from this
node."
::= { sfpsBlockSourceEntry 7 }
sfpsBlockSourceUnBlockableFlag OBJECT-TYPE
SYNTAX INTEGER {
-- blockable (0),
unblockable (1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Flags a node as either Blockable(0) or Unblockable(1). When a
node is unblockable, it will never be blocked regardless of the
number of packets it sends. The default setting is blockable.
Any node can be changed to unblockable via the Source Blocker
API (SBAPI)."
::= { sfpsBlockSourceEntry 8 }
sfpsBlockSourceFilterPresent OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
" Flags whether or not a connection filter is in place for the
given node. (This attribute cannot be changed on its own and is
therefore used only for diagnostic purposes. It is used
internally so that only one filter connection will be mapped
per node.)"
::= { sfpsBlockSourceEntry 9 }
sfpsBlockSourceNext OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"If this node entry (instance) is part of a hash chain, the
NEXT leaf will contain the index to the next node entry in
the chain. Otherwise, it will contain -1."
::= { sfpsBlockSourceEntry 10 }
sfpsBlockSourceBlocksOnlyIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the index into the BlockSourceOnly table or the
UnblockableOnly table depending on the entry flags. If the
'blocked flag' is set, this value represents the index into
the BlockSourceOnly table. If the 'unblockable' flag is set,
this value represents the index into the UnblockableOnly
table. Otherwise, this value is set to -1 (representing that
it is not used.)"
::= { sfpsBlockSourceEntry 11 }
-- Source Blocks Only Table
sfpsBlockSourceOnlyTable OBJECT-TYPE
SYNTAX SEQUENCE OF SfpsBlockSourceOnlyEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The format of the BlockSourceOnly Table is exactly the same as the
SourceBlocker Table. The only difference is that the entries in
this table are only a subset of the entries in the SourceBlocker
Table. Only the entries that have a BLOCKFLAG set to 'blocked' or
'would-be-blocked' will reside in this table."
::= { sfpsBlockSourceOnly 1 }
sfpsBlockSourceOnlyEntry OBJECT-TYPE
SYNTAX SfpsBlockSourceOnlyEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Entry in the BlockSourceOnly table indexed by a counter."
INDEX { sfpsBlockSourceOnlyIndex }
::= { sfpsBlockSourceOnlyTable 1 }
SfpsBlockSourceOnlyEntry ::=
SEQUENCE {
sfpsBlockSourceOnlyIndex INTEGER,
sfpsBlockSourceOnlyMAC SfpsAddress,
sfpsBlockSourceOnlyElapTimeShort TimeTicks,
sfpsBlockSourceOnlyNumCallsShort INTEGER,
sfpsBlockSourceOnlyElapTimeLong TimeTicks,
sfpsBlockSourceOnlyNumCallLong INTEGER,
sfpsBlockSourceOnlyBlockFlag INTEGER,
sfpsBlockSourceOnlyUnBlockableFlag INTEGER,
sfpsBlockSourceOnlyFilterPresent INTEGER,
sfpsBlockSourceOnlyNext INTEGER,
sfpsBlockSourceOnlyBlocksOnlyIndex INTEGER
}
sfpsBlockSourceOnlyIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index into the table"
::= { sfpsBlockSourceOnlyEntry 1 }
sfpsBlockSourceOnlyMAC OBJECT-TYPE
SYNTAX SfpsAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The MAC address of the node."
::= { sfpsBlockSourceOnlyEntry 2 }
sfpsBlockSourceOnlyElapTimeShort OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The elapsed time (seconds) in the current short-threshold
period."
::= { sfpsBlockSourceOnlyEntry 3 }
sfpsBlockSourceOnlyNumCallsShort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of packets seen from the node during the elapsed
time for the short-threshold."
::= { sfpsBlockSourceOnlyEntry 4 }
sfpsBlockSourceOnlyElapTimeLong OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The elapsed time (seconds) in the current long-threshold
period."
::= { sfpsBlockSourceOnlyEntry 5 }
sfpsBlockSourceOnlyNumCallLong OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of packets seen from the node during the elapsed
time for the long-threshold."
::= { sfpsBlockSourceOnlyEntry 6 }
sfpsBlockSourceOnlyBlockFlag OBJECT-TYPE
SYNTAX INTEGER {
-- notBlocked (0),
blocked (1),
wouldBeBlocked (2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Describes whether the node is blocked or not. There are three
possible integer values for this field: 0-notBlocked,
1-Blocked, 2-WouldBeBlocked. The WouldBeBlocked value is used
to represent a node that would be in the blocked state if the
SourceBlocker was enabled. A node can get into this state only
if the blocker is disabled. If the blocker is enabled at this
point, the node will be blocked, and a connection filter will
be put in place when the next packet is received from this
node."
::= { sfpsBlockSourceOnlyEntry 7 }
sfpsBlockSourceOnlyUnBlockableFlag OBJECT-TYPE
SYNTAX INTEGER {
-- blockable (0),
unblockable (1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
" Flags a node as either Blockable(0) or Unblockable(1). When a
node is unblockable, it will never be blocked regardless of the
number of packets it sends. The default setting is blockable.
Any node can be changed to unblockable via the Source Blocker
API (SBAPI)."
::= { sfpsBlockSourceOnlyEntry 8 }
sfpsBlockSourceOnlyFilterPresent OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
" Flags whether or not a connection filter is in place for the
given node. (This attribute cannot be changed on its own and is
therefore used only for diagnostic purposes. It is used
internally so that only one filter connection will be mapped
per node.)"
::= { sfpsBlockSourceOnlyEntry 9 }
sfpsBlockSourceOnlyNext OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"If this node entry (instance) is part of a hash chain, the
NEXT leaf will contain the index to the next node entry in
the chain. Otherwise, it will contain -1."
::= { sfpsBlockSourceOnlyEntry 10 }
sfpsBlockSourceOnlyBlocksOnlyIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the index into the BlockSourceOnly table or the
UnblockableOnly table depending on the entry flags. If the
'blocked' flag is set, this value represents the index into
the BlockSourceOnly table. If the 'unblockable' flag is set,
this value represents the index into the UnblockableOnly
table. Otherwise, this value is set to -1 (representing that
it is not used.)"
::= { sfpsBlockSourceOnlyEntry 11 }
-- Source Block Port Table
sfpsBlockSourcePortTable OBJECT-TYPE
SYNTAX SEQUENCE OF SfpsBlockSourcePortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
" The SourceBlock API allows for administratively selecting a port and
flagging it as 'unblockable'. The BlockSourcePort table shows which
ports are set to 'unblockable' and which ones remain set to the default
'blockable' setting."
::= { sfpsBlockSourcePort 1 }
sfpsBlockSourcePortEntry OBJECT-TYPE
SYNTAX SfpsBlockSourcePortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
" Entry into the BlockSourcePort Table"
INDEX { sfpsBlockSourcePortPort }
::= { sfpsBlockSourcePortTable 1 }
SfpsBlockSourcePortEntry ::=
SEQUENCE {
sfpsBlockSourcePortPort INTEGER,
sfpsBlockSourcePortBlockability INTEGER
}
sfpsBlockSourcePortPort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is the instance part of the table. There will be as many
instances as there are logical ports in the device. The attributes
represented in subsequent leaves all pertain to this port instance."
::= { sfpsBlockSourcePortEntry 1 }
sfpsBlockSourcePortBlockability OBJECT-TYPE
SYNTAX INTEGER {
-- blockable(0),
unblockable(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This leaf contains either 0-blockable or 1-unblockable, depending on
whether nodes on this port are allowed to be blocked or not."
::= { sfpsBlockSourcePortEntry 2 }
-- Source Block API
sfpsBlockSourceAPIVerb OBJECT-TYPE
SYNTAX INTEGER {
other(1),
switchToLearning(2),
switchToBlocking(3),
setShortThreshold(4),
setShortPeriod(5),
setLongThreshold(6),
setLongPeriod(7),
clearAll(8),
blockMac(9),
unblockMac(10),
setMacUnblockable(11),
setMacBlockable(12),
setPortUnblockable(13),
setPortBlockable(14),
setReapUserCnx(15)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Other -- N/A
Disable -- disable the source blocker (nodes that are currently
blocked will remain blocked, but no additional nodes will be blocked)
Enable -- enable the source blocker (allow it to start blocking nodes)
ClearAll -- clear the entire block table (this does not remove any
connection filters, and should only be used as a diagnostic tool.)
BlockMac -- administratively block a node (The node's MAC address
must be previously set in the MAC leaf.)
UnblockMac -- administratively unblock a node (The node's MAC address
must be previously set in the MAC leaf.)
SetMacUnblockable -- administratively mark a node as 'unblockable'
so that it cannot be blocked. (The node's MAC must be previously set
in the MAC leaf.) If the relevant node is blocked at the time the
SetMacUnblockable command is issued, the node will automatically be
'unblocked' first.
SetMacBlockable -- administratively mark a node as 'blockable' so that
it can be blocked. (The node's MAC must be previously set in the MAC
leaf.)
SetPortUnblockable -- administratively mark a port as 'unblockable' so
that any nodes on that port cannot be blocked. (The port number must
be previously set in the Port leaf.)
SetPortBlockable -- administratively mark a port as 'blockable' so that
all nodes on that port can be blocked. (The port number must be
previously set in the Port leaf.)
SetReapUserCnx -- administratively mark a port as 'blocked' so that administratively
mark a port as 'blockable' so that.)"
::= { sfpsBlockSourceAPI 1 }
sfpsBlockSourceAPIInputValue OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Set the input value to enter"
::= { sfpsBlockSourceAPI 2 }
sfpsBlockSourceAPIPort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Read/Write leaf used in conjunction with SetPortUnblockable and
SetPortBlockable. (values of 1 through numLogicalPorts are valid."
::= { sfpsBlockSourceAPI 3 }
sfpsBlockSourceAPIMAC OBJECT-TYPE
SYNTAX SfpsAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Leaf used to set the MAC address that will be operated on with one
of the above verbs."
::= { sfpsBlockSourceAPI 4 }
sfpsBlockSourceAPIBlockStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
learning(2),
blocking(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Status of the blocker object (enabled/disabled.) Additional nodes
will be blocked only when this status leaf is in the 'enabled' state."
::= { sfpsBlockSourceAPI 5 }
sfpsBlockSourceAPIShortThreshold OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The number of packets per a SHORTPERIOD that will result in a node
being blocked. This can be changed by writing directly to this leaf.
The only limit imposed on this value is that it has to be positive
(greater than zero.) There is no upper bound except for what is
implied by the size of an integer."
::= { sfpsBlockSourceAPI 6 }
sfpsBlockSourceAPIShortPeriod OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The sample period to use for determining if any given node has
exceeded the SHORTTHRESHOLD. See SHORTTHRESHOLD for bounds checking
for this value"
::= { sfpsBlockSourceAPI 7 }
sfpsBlockSourceAPILongThreshold OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The number of packets per a LONGPERIOD that will result in a node
being blocked. See SHORTTHRESHOLD for bounds checking for this value."
::= { sfpsBlockSourceAPI 8 }
sfpsBlockSourceAPILongPeriod OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The sample period to use for determining if any given node has
exceeded the LONGTHRESHOLD. See SHORTTHRESHOLD for bounds checking
for this value."
::= { sfpsBlockSourceAPI 9 }
sfpsBlockSourceAPIReapUserCnxs OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The sample period to use for determining if any given node has
exceeded the LONGTHRESHOLD. See SHORTTHRESHOLD for bounds checking
for this value."
::= { sfpsBlockSourceAPI 10 }
-- Unblockable Nodes Table
sfpsBlockSourceExcludeTable OBJECT-TYPE
SYNTAX SEQUENCE OF SfpsBlockSourceExcludeEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The format of the UnblockableOnly Table is exactly the same as the
SourceBlocker Table. The only difference is that the entries in this
table are only a subset of the entries in the SourceBlocker Table.
Only the entries that have an UNBLOCKABLEFLAG set to 'unblockable'
will show up in this table."
::= { sfpsBlockSourceExclude 1 }
sfpsBlockSourceExcludeEntry OBJECT-TYPE
SYNTAX SfpsBlockSourceExcludeEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
" Entry in the BlockSourceOnly table indexed by a counter."
INDEX { sfpsBlockSourceExcludeIndex }
::= { sfpsBlockSourceExcludeTable 1 }
SfpsBlockSourceExcludeEntry ::=
SEQUENCE {
sfpsBlockSourceExcludeIndex INTEGER,
sfpsBlockSourceExcludeMAC SfpsAddress,
sfpsBlockSourceExcludeElapTimeShort TimeTicks,
sfpsBlockSourceExcludeNumCallsShort INTEGER,
sfpsBlockSourceExcludeElapTimeLong TimeTicks,
sfpsBlockSourceExcludeNumCallLong INTEGER,
sfpsBlockSourceExcludeBlockFlag INTEGER,
sfpsBlockSourceExcludeUnBlockableFlag INTEGER,
sfpsBlockSourceExcludeFilterPresent INTEGER,
sfpsBlockSourceExcludeNext INTEGER,
sfpsBlockSourceExcludeBlockSourceOnlyIndex INTEGER
}
sfpsBlockSourceExcludeIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
" The index into the table"
::= { sfpsBlockSourceExcludeEntry 1 }
sfpsBlockSourceExcludeMAC OBJECT-TYPE
SYNTAX SfpsAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The MAC address of the node."
::= { sfpsBlockSourceExcludeEntry 2 }
sfpsBlockSourceExcludeElapTimeShort OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The elapsed time (seconds) in the current short-threshold
period."
::= { sfpsBlockSourceExcludeEntry 3 }
sfpsBlockSourceExcludeNumCallsShort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of packets seen from the node during the elapsed
time for the short-threshold"
::= { sfpsBlockSourceExcludeEntry 4 }
sfpsBlockSourceExcludeElapTimeLong OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The elapsed time (seconds) in the current long-threshold
period"
::= { sfpsBlockSourceExcludeEntry 5 }
sfpsBlockSourceExcludeNumCallLong OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of packets seen from the node during the elapsed
time for the long-threshold."
::= { sfpsBlockSourceExcludeEntry 6 }
sfpsBlockSourceExcludeBlockFlag OBJECT-TYPE
SYNTAX INTEGER {
-- notBlocked (0),
blocked (1),
wouldBeBlocked (2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Describes whether the node is blocked or not. There are three
possible integer values for this field: 0-notBlocked,
1-Blocked, 2-WouldBeBlocked. The WouldBeBlocked value is used
to represent a node that would be in the blocked state if the
SourceBlocker was enabled. A node can get into this state only
if the blocker is disabled. If the blocker is enabled at this
point, the node will be blocked, and a connection filter will
be put in place when the next packet is received from this
node"
::= { sfpsBlockSourceExcludeEntry 7 }
sfpsBlockSourceExcludeUnBlockableFlag OBJECT-TYPE
SYNTAX INTEGER {
-- blockable (0),
unblockable (1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Flags a node as either Blockable(0) or Unblockable(1). When a
node is unblockable, it will never be blocked regardless of the
number of packets it sends. The default setting is blockable.
Any node can be changed to unblockable via the Source Blocker
API (SBAPI)."
::= { sfpsBlockSourceExcludeEntry 8 }
sfpsBlockSourceExcludeFilterPresent OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
" Flags whether or not a connection filter is in place for the
given node. (This attribute cannot be changed on its own and is
therefore used only for diagnostic purposes. It is used
internally so that only one filter connection will be mapped
per node.)"
::= { sfpsBlockSourceExcludeEntry 9 }
sfpsBlockSourceExcludeNext OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"If this node entry (instance) is part of a hash chain, the
NEXT leaf will contain the index to the next node entry in
the chain. Otherwise, it will contain -1"
::= { sfpsBlockSourceExcludeEntry 10 }
sfpsBlockSourceExcludeBlockSourceOnlyIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the index into the BlockSourceOnly table or the
UnblockableOnly table depending on the entry flags. If the
'blocked' flag is set, this value represents the index into
the BlockSourceOnly table. If the 'unblockable' flag is set,
this value represents the index into the UnblockableOnly
table. Otherwise, this value is set to -1 (representing that
it is not used"
::= { sfpsBlockSourceExcludeEntry 11 }
-- Source Blocker Stats API
sfpsBlockSourceStatsNumBlocks OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsBlockSourceStats 1 }
sfpsBlockSourceStatsNumCollisions OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of hash collisions resulting in a chain of nodes.
(diagnostic only.)"
::= { sfpsBlockSourceStats 2 }
sfpsBlockSourceStatsLongestChain OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The maximum number of nodes in a linked list chain
(including the hash bucket itself) due to hashing collisions.
(diagnostic only.)"
::= { sfpsBlockSourceStats 3 }
sfpsBlockSourceStatsNumEntries OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of entries in the SourceBlocker table.
(Each new node that is heard has its own entry."
::= { sfpsBlockSourceStats 4 }
sfpsBlockSourceStatsMaxNumEntries OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
" The maximum number of entries that can fit in the SourceBlocker Table.
(This currently mirrors the size of the Directory's NodeTable.)"
::= { sfpsBlockSourceStats 5 }
sfpsBlockSourceStatsSizeOfObj OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The size of the SourceBlocker object itself (in bytes.)"
::= { sfpsBlockSourceStats 6 }
sfpsBlockSourceStatsHashModValue OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The value that is used for the modulus operation in the
hashing algorythm."
::= { sfpsBlockSourceStats 7 }
sfpsBlockSourceStatsHashSlotsSize OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The amount of storage used for the hash buckets (in bytes.)"
::= { sfpsBlockSourceStats 8 }
sfpsBlockSourceStatsTableSize OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The amount of storage used for the SourceBlocker Table (in bytes.)"
::= { sfpsBlockSourceStats 9 }
sfpsBlockSourceStatsBlockSourceOnlySize OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The amount of storage used for the Blocks-Only index array (in bytes.)"
::= { sfpsBlockSourceStats 10 }
sfpsBlockSourceStatsUnblockableSize OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The amount of storage used for the Unblockable-Only index array
(in bytes.)"
::= { sfpsBlockSourceStats 11 }
sfpsBlockSourceStatsPortMaskSize OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The amount of storage used for the port mask object (in bytes.)"
::= { sfpsBlockSourceStats 12 }
sfpsBlockSourceStatsTotalHeapBytes OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total amount of heap memory used for all data storage (above)
including the SourceBlocker object itself (in bytes.)"
::= { sfpsBlockSourceStats 13 }
-- sfpsDHCPServerVLAN
sfpsDHCPServerVLANName OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-write
STATUS mandatory
DESCRIPTION
""
::= { sfpsDHCPServerVLAN 1 }
sfpsDHCPServerVLANSingleFloodStatus OBJECT-TYPE
SYNTAX INTEGER {
on(1),
off(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
""
::= { sfpsDHCPServerVLAN 2 }
sfpsDHCPServerVLANVersion OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDHCPServerVLAN 3 }
-- sfpsATalkAMRVLANControl
sfpsATalkAMRVLANControlName OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-write
STATUS mandatory
DESCRIPTION
""
::= { sfpsATalkAMRVLANControl 1 }
sfpsATalkAMRVLANControlVersion OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsATalkAMRVLANControl 2 }
END
|