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
|
CTRON-SFPS-SFLSP-MIB DEFINITIONS ::= BEGIN
-- sfps-sflsp-mib.txt
-- Revision: 0.0.06
--
-- 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 API 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,
TimeTicks,
IpAddress,
Counter,
Gauge
FROM RFC1155-SMI
-- These Objects are defined in the file sfps-inc.mib.txt.0.0.1
vlanSflspGeneralVariables, vlanSflspLsdb, vlanSflspInterfaces,
vlanSflspIfMetric, vlanSflspNeighbors, vlanSflspArea,
vlanSflsp1stHop, vlanSflspTracePathAPI, vlanSflspTracePathInternal,
vlanSflspLSDBFlood, vlanSflspLSPStats
FROM CTRON-SFPS-INCLUDE-MIB;
SfpsAddress ::= OCTET STRING (SIZE (6))
-- this will map to a MAC address
-- SFLSP
vlanSflspGeneralSwitchID OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-write
STATUS mandatory
DESCRIPTION
"A 10 byte octet string uniquely identifying the switch in the Switch Fabric.
By convention, to ensure uniqueness the first six bytes should default
to the base mac address and the last four bytes should default to zeroes."
::= { vlanSflspGeneralVariables 1 }
vlanSflspGeneralAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The administrative status of the SFLSP in the switch. The value 'enabled'
denotes that the SFLSP Process is active on at least one interface; 'disabled'
disables it on all interfaces. "
::= { vlanSflspGeneralVariables 2 }
vlanSflspGeneralVersion OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The current version number of the SFLSP protocol is 2 "
::= { vlanSflspGeneralVariables 3 }
vlanSflspGeneralAreaBRStatus OBJECT-TYPE
SYNTAX INTEGER {
true(1),
false(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"A flag to note whether this switch is an area border switch "
::= { vlanSflspGeneralVariables 4 }
vlanSflspGeneralASBRStatus OBJECT-TYPE
SYNTAX INTEGER {
true(1),
false(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"A flag to note whether this switch is an Autonomous System border switch. "
::= { vlanSflspGeneralVariables 5 }
vlanSflspGeneralTOSSupport OBJECT-TYPE
SYNTAX INTEGER {
true(1),
false(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The switch's support for type-of-service switching. Currently, this
is set to false, indicating no type-of-service switching."
::= { vlanSflspGeneralVariables 6 }
vlanSflspGeneralOrgNewLSAs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of new link-state advertisements that have been originated.
This number is incremented each time the switch originates a new LSA."
::= { vlanSflspGeneralVariables 7 }
vlanSflspGeneralRcvNewLSAs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of link-state advertisements received determined to be new.
instantiations. This number does not include newer instantiations of
self-originated link-state advertisements."
::= { vlanSflspGeneralVariables 8 }
vlanSflspGeneralMaxOnQueue OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Maximum number of events on the queue"
::= { vlanSflspGeneralVariables 9 }
vlanSflspGeneralCurOnQueue OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Current number of events on the queue"
::= { vlanSflspGeneralVariables 10 }
vlanSflspGeneralMaxTimeUs OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Maximum length of time to process events on the queue"
::= { vlanSflspGeneralVariables 11 }
vlanSflspGeneralCurTimeUs OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Current length of time to process events on the queue"
::= { vlanSflspGeneralVariables 12 }
vlanSflspGeneralMaxEvents OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Maximum number of events processed at once"
::= { vlanSflspGeneralVariables 13 }
vlanSflspGeneralMaxTimeOccurred OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Maximum length of time occurred at this time"
::= { vlanSflspGeneralVariables 14 }
vlanSflspGeneralMaxOnQOccurred OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Maximum number of events on the queue occurred at this time"
::= { vlanSflspGeneralVariables 15 }
vlanSflspGeneralTotalSwLinks OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Total number of switch links in our database"
::= { vlanSflspGeneralVariables 16 }
vlanSflspGeneralLastChangeDet OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Timestamp of last run of spf due to change detected in topology "
::= { vlanSflspGeneralVariables 17 }
vlanSflspGeneralFloodMask OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { vlanSflspGeneralVariables 18 }
vlanSflspGeneralLowestMac OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { vlanSflspGeneralVariables 19 }
vlanSflspGeneralRootId OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { vlanSflspGeneralVariables 20 }
vlanSflspGeneralFloodAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
""
::= { vlanSflspGeneralVariables 21 }
--LSDB
vlanSflspLsdbTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanSflspLsdbEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The SFLSP Process's Links State Database. "
::= { vlanSflspLsdb 1 }
vlanSflspLsdbEntry OBJECT-TYPE
SYNTAX VlanSflspLsdbEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
" A single Link State Advertisement"
INDEX { vlanSflspLsdbAreaID, vlanSflspLsdbType,
vlanSflspLsdbLSID, vlanSflspLsdbSwitchID }
::= { vlanSflspLsdbTable 1 }
VlanSflspLsdbEntry ::=
SEQUENCE {
vlanSflspLsdbAreaID INTEGER,
vlanSflspLsdbType INTEGER,
vlanSflspLsdbLSID OCTET STRING,
vlanSflspLsdbSwitchID OCTET STRING,
vlanSflspLsdbSequence INTEGER,
vlanSflspLsdbAge INTEGER,
vlanSflspLsdbChecksum INTEGER,
vlanSflspLsdbAdvertisement OCTET STRING,
vlanSflspLsdbUsedInSPF INTEGER
}
vlanSflspLsdbAreaID OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The 32-bit identifier of the Area from which the LSA was received. "
::= { vlanSflspLsdbEntry 1 }
vlanSflspLsdbType OBJECT-TYPE
SYNTAX INTEGER {
switch-link(1),
connection-link(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The type of the link state advertisement. Each link state type has a
seperate advertisement format. "
::= { vlanSflspLsdbEntry 2 }
vlanSflspLsdbLSID OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Link State ID is an LS Type Specific field containing either
a switch ID or a switch port name; it identifies the piece of the
routing domain that is being described by the advertisement. "
::= { vlanSflspLsdbEntry 3 }
vlanSflspLsdbSwitchID OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A 10 byte octet string uniquely identifying the orignating switch in the Switch
Fabric. By convention, to ensure uniqueness the first six bytes should default
to the base mac address and the last four bytes should default to zeroes."
::= { vlanSflspLsdbEntry 4 }
vlanSflspLsdbSequence OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The sequence number field is a signed 32-bit integer.
It is used to detect old and duplicate link state advertisements.
The space of sequence numbers is linearly ordered. The larger the
sequence numbers the more recent the advertisement. "
::= { vlanSflspLsdbEntry 5 }
vlanSflspLsdbAge OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This field is the age of the link state advertisement in seconds ."
::= { vlanSflspLsdbEntry 6 }
vlanSflspLsdbChecksum OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This field is the checksum of the complete contents of the advertisement,
excepting the age field. The age field is excepted so that an advertisement's
age can be incremented without updating th checksum. The checksum used is the
same that is used for ISO connectionless datagrams; it is commonly referred to
as the Fletcher checksum. "
::= { vlanSflspLsdbEntry 7 }
vlanSflspLsdbAdvertisement OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The entire Link State Advertisement, including its header. "
::= { vlanSflspLsdbEntry 8 }
vlanSflspLsdbUsedInSPF OBJECT-TYPE
SYNTAX INTEGER {
-- false(0),
true(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
" "
::= { vlanSflspLsdbEntry 9 }
-- interfaces
vlanSflspInterfacesTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanSflspInterfacesEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The SFLSP Interface Table describes the interfaces from the
viewpoint of SFLSP. "
::= { vlanSflspInterfaces 1 }
vlanSflspInterfacesEntry OBJECT-TYPE
SYNTAX VlanSflspInterfacesEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The SFLSP Interfaces Entry describes one interface from the
viewpoint of SFLSP "
INDEX { vlanSflspInterfacesIFAddress, vlanSflspInterfacesSwAddressLess }
::= { vlanSflspInterfacesTable 1 }
VlanSflspInterfacesEntry ::=
SEQUENCE {
vlanSflspInterfacesIFAddress SfpsAddress,
vlanSflspInterfacesSwAddressLess INTEGER,
vlanSflspInterfacesAreaID IpAddress,
vlanSflspInterfacesIfType INTEGER,
vlanSflspInterfacesAdminStatus INTEGER,
vlanSflspInterfacesSwPriority INTEGER,
vlanSflspInterfacesTransDelay INTEGER,
vlanSflspInterfacesReTransInterval INTEGER,
vlanSflspInterfacesHelloInterval INTEGER,
vlanSflspInterfacesDeadInterval INTEGER,
vlanSflspInterfacesPollInterval INTEGER,
vlanSflspInterfacesState INTEGER,
vlanSflspInterfacesDS SfpsAddress,
vlanSflspInterfacesBDS SfpsAddress,
vlanSflspInterfacesEvents Counter,
vlanSflspInterfacesAuthKey SfpsAddress
}
vlanSflspInterfacesIFAddress OBJECT-TYPE
SYNTAX SfpsAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A 10 byte octet string uniquely identifying the port address.
By convention, to ensure uniqueness the first six bytes should default
to the base mac address and the last four bytes should default to the
port number of the interface."
::= { vlanSflspInterfacesEntry 1 }
vlanSflspInterfacesSwAddressLess OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"For the purpose of easing the instancing of addressed and
addressless interfaces; This variable takes the value 0 on
interfaces with IP Addresses, and the corresponding value of
ifIndex for interfaces having no IP Address. "
::= { vlanSflspInterfacesEntry 2 }
vlanSflspInterfacesAreaID OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"A 32-bit integer uniquely identifying the area to which the
interface connects. Area ID 0.0.0.0 is used for the SFLSP backbone. "
::= { vlanSflspInterfacesEntry 3 }
vlanSflspInterfacesIfType OBJECT-TYPE
SYNTAX INTEGER {
brodcast(1),
nbma(2),
point-to-point(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The SFLSP interface type. Currently all interfaces are handled as
broadcast type. "
::= { vlanSflspInterfacesEntry 4 }
vlanSflspInterfacesAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The SFLSP interface's administrative status. The value 'enabled'
denotes that neighbor relationships may be formed on the interface, and the
interface will be advertised as an internal route to some area.
The value 'disabled' denotes that the interface is external to SFLSP. "
::= { vlanSflspInterfacesEntry 5 }
vlanSflspInterfacesSwPriority OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The priority of this interface. Used in multi-access networks, this field
is used in the designated switch election algorithm. By default all switches
are eligible with a priority of 1. "
::= { vlanSflspInterfacesEntry 6 }
vlanSflspInterfacesTransDelay OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The estimated number of seconds it takes to transmit a link-state update packet
over this interface. "
::= { vlanSflspInterfacesEntry 7 }
vlanSflspInterfacesReTransInterval OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The number of seconds between link-state advertisement retransmissions, for
adjacencies belonging to this interface. This value is also used when re-
transmitting database description and link-state request packets. "
::= { vlanSflspInterfacesEntry 8 }
vlanSflspInterfacesHelloInterval OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The lenght of time, in seconds, between the Hello packets that the switch sends
on the interface. This value must be the same for all switches attached to a
common network. "
::= { vlanSflspInterfacesEntry 9 }
vlanSflspInterfacesDeadInterval OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The number of seconds that a switch's Hello packets have not been seen
before it's neighbors declare the switch down. This should be some multiple of the
Hello interval. This value must be the same for all switches attached to a common network. "
::= { vlanSflspInterfacesEntry 10 }
vlanSflspInterfacesPollInterval OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The larger time interval, in seconds, between the Hello packets sent to an
inactive non-broadcast multi-access neighbor. "
::= { vlanSflspInterfacesEntry 11 }
vlanSflspInterfacesState OBJECT-TYPE
SYNTAX INTEGER {
down(1),
loopback(2),
waiting(3),
point-to-point(4),
dr(5),
bdr(6),
dr-other(7)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The SFLSP Interface State. "
::= { vlanSflspInterfacesEntry 12 }
vlanSflspInterfacesDS OBJECT-TYPE
SYNTAX SfpsAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An octet string uniquely identifying the designated switch in the Switch Fabric.
By convention, to ensure uniqueness this should default to the base mac address."
::= { vlanSflspInterfacesEntry 13 }
vlanSflspInterfacesBDS OBJECT-TYPE
SYNTAX SfpsAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An octet string uniquely identifying the backup designated switch in the Switch Fabric.
By convention, to ensure uniqueness this should default to the base mac address."
::= { vlanSflspInterfacesEntry 14 }
vlanSflspInterfacesEvents OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times this SFLSP interface has changed its
state, or an error has occured. "
::= { vlanSflspInterfacesEntry 15 }
vlanSflspInterfacesAuthKey OBJECT-TYPE
SYNTAX SfpsAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"THe Authentification Key. If the Area's Authorization Type is
simplePassword, and the key length is shorter than 8 octets, the agent will
left adjust and zero fill to 8 octets. "
::= { vlanSflspInterfacesEntry 16 }
-- IfMetric
vlanSflspIfMetricTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanSflspIfMetricEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
" The TOS metrics for a non-virtual interface indentified by the
interface index."
::= { vlanSflspIfMetric 1 }
vlanSflspIfMetricEntry OBJECT-TYPE
SYNTAX VlanSflspIfMetricEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
" A particular TOS metric for a non-virtual interface identified by
the interface index."
INDEX { vlanSflspIfMetricIfAddress, vlanSflspIfMetricIfTOSType }
::= { vlanSflspIfMetricTable 1 }
VlanSflspIfMetricEntry ::=
SEQUENCE {
vlanSflspIfMetricIfAddress OCTET STRING,
vlanSflspIfMetricIfTOSType INTEGER,
vlanSflspIfMetricIfMetric INTEGER,
vlanSflspIfMetricIfStatus INTEGER
}
vlanSflspIfMetricIfAddress OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A 10 byte octet string uniquely identifying the port address.
By convention, to ensure uniqueness the first six bytes should default
to the base mac address and the last four bytes should default to the
port number of the interface."
::= { vlanSflspIfMetricEntry 1 }
vlanSflspIfMetricIfTOSType OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The type of service metric being referenced. On row creation, this can be
derived from the instance.."
::= { vlanSflspIfMetricEntry 2 }
vlanSflspIfMetricIfMetric OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The metric of using this type of service on this interface. The default value of the
TOS 0 Metric is 10^8 / ifSpeed.
The value FFFF is distinguished to mean 'no route via this TOS'. "
::= { vlanSflspIfMetricEntry 3 }
vlanSflspIfMetricIfStatus OBJECT-TYPE
SYNTAX INTEGER {
valid(1),
invalid(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This variable displays the validity or invalidity of the entry.
Setting it to 'invalid' has the effect of rendering it inoperative.
The internal effect (row removal) is implementation dependent "
::= { vlanSflspIfMetricEntry 4 }
-- Neighbors
vlanSflspNeighborsTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanSflspNeighborsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table of non-virtual neighbor information ."
::= { vlanSflspNeighbors 1 }
vlanSflspNeighborsEntry OBJECT-TYPE
SYNTAX VlanSflspNeighborsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The information regarding a single neighbor. "
INDEX { vlanSflspNeighborsPortName }
::= { vlanSflspNeighborsTable 1 }
VlanSflspNeighborsEntry ::=
SEQUENCE {
vlanSflspNeighborsPortName OCTET STRING,
vlanSflspNeighborsSwitchID OCTET STRING,
vlanSflspNeighborsOptions INTEGER,
vlanSflspNeighborsPriority INTEGER,
vlanSflspNeighborsState INTEGER,
vlanSflspNeighborsEvents Counter,
vlanSflspNeighborsLSRetransQLen Gauge,
vlanSflspNeighborsHELLOsRcvd INTEGER,
vlanSflspNeighborsDBDsRcvd INTEGER,
vlanSflspNeighborsLSUsRcvd INTEGER,
vlanSflspNeighborsLSRsRcvd INTEGER,
vlanSflspNeighborsLSACKsRcvd INTEGER,
vlanSflspNeighborsHELLOsSent INTEGER,
vlanSflspNeighborsDBDsSent INTEGER,
vlanSflspNeighborsLSUsSent INTEGER,
vlanSflspNeighborsLSRsSent INTEGER,
vlanSflspNeighborsLSACKsSent INTEGER,
vlanSflspNeighborsNBMAStatus INTEGER,
vlanSflspNeighborsFULLTimeSec TimeTicks
}
vlanSflspNeighborsPortName OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A 10 byte octet string uniquely identifying the neighbor's port address.
By convention, to ensure uniqueness the first six bytes should default
to the base mac address and the last four bytes should default to the
port number of the neighbor's interface."
::= { vlanSflspNeighborsEntry 1 }
vlanSflspNeighborsSwitchID OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An octet string uniquely identifying the neighboring switch in the Switch Fabric.
By convention, to ensure uniqueness this should default to the base mac address."
::= { vlanSflspNeighborsEntry 2 }
vlanSflspNeighborsOptions OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A bit Mask corresponding to the neighbor's options field.
Bit 0, if set, indicates that the area accepts and operates
on external information; if zero, it is a stub area.
Bit 1, if set, indicates that the system will operate on Type
of Service metrics other than TOS 0. If zero, the neighbor
will ignore all metrics except the TOS 0 metric ."
::= { vlanSflspNeighborsEntry 3 }
vlanSflspNeighborsPriority OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
" The priority of this neighbor in the designated switch election
algorithm. The value 0 signifies that the neighbor is not eligible
to become the designated switch on this particular network."
::= { vlanSflspNeighborsEntry 4 }
vlanSflspNeighborsState OBJECT-TYPE
SYNTAX INTEGER {
down(1),
attempt(2),
init(3),
two-way(4),
exchange(5),
exchange-start(6),
loading(7),
full(8)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
" The State of the relationship with this Neighbor."
::= { vlanSflspNeighborsEntry 5 }
vlanSflspNeighborsEvents OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times this neighbor relationship has
changed state, or an error has occurred. "
::= { vlanSflspNeighborsEntry 6 }
vlanSflspNeighborsLSRetransQLen OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
" The current length of the retransmission queue."
::= { vlanSflspNeighborsEntry 7 }
vlanSflspNeighborsHELLOsRcvd OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of hello packets received from this neighbor"
::= { vlanSflspNeighborsEntry 8 }
vlanSflspNeighborsDBDsRcvd OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of database description packets received from this neighbor"
::= { vlanSflspNeighborsEntry 9 }
vlanSflspNeighborsLSUsRcvd OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of link state update packets received from this neighbor"
::= { vlanSflspNeighborsEntry 10 }
vlanSflspNeighborsLSRsRcvd OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of link state request packets received from this neighbor"
::= { vlanSflspNeighborsEntry 11 }
vlanSflspNeighborsLSACKsRcvd OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of link state acknowledgement packets received from this neighbor"
::= { vlanSflspNeighborsEntry 12 }
vlanSflspNeighborsHELLOsSent OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of hello packets sent to this neighbor"
::= { vlanSflspNeighborsEntry 13 }
vlanSflspNeighborsDBDsSent OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of database description packets sent to this neighbor"
::= { vlanSflspNeighborsEntry 14 }
vlanSflspNeighborsLSUsSent OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of link state update packets sent to this neighbor"
::= { vlanSflspNeighborsEntry 15 }
vlanSflspNeighborsLSRsSent OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of link state request packets sent to this neighbor"
::= { vlanSflspNeighborsEntry 16 }
vlanSflspNeighborsLSACKsSent OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of link state acknowledgement packets sent to this neighbor"
::= { vlanSflspNeighborsEntry 17 }
vlanSflspNeighborsNBMAStatus OBJECT-TYPE
SYNTAX INTEGER {
valid(1),
invalid(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
" The variable displays the validity or invalidity of the
entry. Setting it to 'invalid' has the effect of rendering
it inoperative. The internal effect (row removal) is implementation
dependant."
::= { vlanSflspNeighborsEntry 18 }
vlanSflspNeighborsFULLTimeSec OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Neighbor went to FULL state at this time "
::= { vlanSflspNeighborsEntry 19 }
-- Area
vlanSflspAreaTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanSflspAreaEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Information describing the configured parameters and
cumulative statistics of the switches attached areas."
::= { vlanSflspArea 1 }
vlanSflspAreaEntry OBJECT-TYPE
SYNTAX VlanSflspAreaEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Information describing the configured parameters and
cumulative statistics of one of the switches attached
areas."
INDEX { vlanSflspAreaAreaID }
::= { vlanSflspAreaTable 1 }
VlanSflspAreaEntry ::=
SEQUENCE {
vlanSflspAreaAreaID IpAddress,
vlanSflspAreaAuthType INTEGER,
vlanSflspAreaSPFRuns Counter,
vlanSflspAreaABRCount Gauge,
vlanSflspAreaASBRCount Gauge,
vlanSflspAreaAreaLSACnt Gauge,
vlanSflspAreaAreaCheckSum INTEGER,
vlanSflspAreaLastSpfRun TimeTicks
}
vlanSflspAreaAreaID OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A 10 byte octet string uniquely identifying an area."
::= { vlanSflspAreaEntry 1 }
vlanSflspAreaAuthType OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The authentication type specified for an area.
Additional authentication types may be assigned locally
on a per Area basis."
::= { vlanSflspAreaEntry 2 }
vlanSflspAreaSPFRuns OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times that the intra-area route table
has been calculated using this area's link-state
database. This is typically done using Dijkstra's
algorithm."
::= { vlanSflspAreaEntry 3 }
vlanSflspAreaABRCount OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of area border switches reachable
within this area. This is initially zero, and is
calculated in each SPF Pass."
::= { vlanSflspAreaEntry 4 }
vlanSflspAreaASBRCount OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of Autonomous System border switches
reachable within this area. This is initially zero,
and is calculated in each LSP Pass."
::= { vlanSflspAreaEntry 5 }
vlanSflspAreaAreaLSACnt OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of link-state advertisements in this
area's link-state database, excluding AS External LSA's"
::= { vlanSflspAreaEntry 6 }
vlanSflspAreaAreaCheckSum OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The 32-bit unsigned sum of the link-state
advertisements' LS checksums contained in this area's
link-state database. This sum excludes external (LS
type 5) link-state advertisements. The sum can be used
to determine if there has been a change in a switches
link state database, and to compare the link-state
database of two switches."
::= { vlanSflspAreaEntry 7 }
vlanSflspAreaLastSpfRun OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Timestamp of last run of spf"
::= { vlanSflspAreaEntry 8 }
-- 1stHop
vlanSflsp1stHopTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanSflsp1stHopEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains the SecureFast path next-hop table. It
reports various information about the next switch port
address on the path to a particular destination switch
port address."
::= { vlanSflsp1stHop 1 }
vlanSflsp1stHopEntry OBJECT-TYPE
SYNTAX VlanSflsp1stHopEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry describes the next hop switch port addresses for
each destination switch port address."
INDEX { vlanSflsp1stHopDestSwitch }
::= { vlanSflsp1stHopTable 1 }
VlanSflsp1stHopEntry ::=
SEQUENCE {
vlanSflsp1stHopDestSwitch OCTET STRING,
vlanSflsp1stHopPath11stHop OCTET STRING,
vlanSflsp1stHopPath21stHop OCTET STRING,
vlanSflsp1stHopPath31stHop OCTET STRING
}
vlanSflsp1stHopDestSwitch OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is the index to the table, representing destination
switch port addresses for each port address within
the switch fabric."
::= { vlanSflsp1stHopEntry 1 }
vlanSflsp1stHopPath11stHop OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The 1st hop of the 1st path to the destination switch"
::= { vlanSflsp1stHopEntry 2 }
vlanSflsp1stHopPath21stHop OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The 1st host of the 2nd path to the destination switch"
::= { vlanSflsp1stHopEntry 3 }
vlanSflsp1stHopPath31stHop OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The 1st hop of the 3rd path to the destination switch"
::= { vlanSflsp1stHopEntry 4 }
-- Trace Path
vlanSflspTracePathAPIDest OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This is the switch address for which a path list will be
requested in the sfTracePathTable."
::= { vlanSflspTracePathAPI 1 }
vlanSflspTracePathAPIID OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This is an ID to uniquely identify the path list request
in the sfTracePathTable."
::= { vlanSflspTracePathAPI 2 }
vlanSflspTracePathAPIType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
invalid(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The administrative control of the trace path request entry in
the sfTracePathTable. It is used to create or delete a trace
path request entry."
::= { vlanSflspTracePathAPI 3 }
vlanSflspTracePathAPIAction OBJECT-TYPE
SYNTAX INTEGER {
other(1),
activate(2),
suspend(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The action to be performed by the trace path request entry
in the sfTracePathTable."
::= { vlanSflspTracePathAPI 4 }
-- Trace Path
vlanSflspTracePathTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanSflspTracePathEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table allows the determination of paths to known
destinations using the same internal methods used by the
switch to program these paths. It is indexed by
destination switch address and a request identifier.
If successful, the resulting path, which consists of a
list of switch port addresses, is reported in the
sfTracePathReqHopTable."
::= { vlanSflspTracePathInternal 1 }
vlanSflspTracePathEntry OBJECT-TYPE
SYNTAX VlanSflspTracePathEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An SF Trace Path Table entry containing objects for a
particular destination switch."
INDEX { vlanSflspTracePathDest, vlanSflspTracePathID }
::= { vlanSflspTracePathTable 1 }
VlanSflspTracePathEntry ::=
SEQUENCE {
vlanSflspTracePathDest OCTET STRING,
vlanSflspTracePathID INTEGER,
vlanSflspTracePathAction INTEGER,
vlanSflspTracePathStatus INTEGER
}
vlanSflspTracePathDest OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The switch address of the requested destination."
::= { vlanSflspTracePathEntry 1 }
vlanSflspTracePathID OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique identifier for this path request."
::= { vlanSflspTracePathEntry 2 }
vlanSflspTracePathAction OBJECT-TYPE
SYNTAX INTEGER {
other(1),
activate(2),
suspend(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The action to be performed by this trace path entry."
::= { vlanSflspTracePathEntry 3 }
vlanSflspTracePathStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
success(2),
failed(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The results of a trace path request. A result of success(4)
means the device has determined at least one path to the
destination."
::= { vlanSflspTracePathEntry 4 }
-- Trace Path List
vlanSflspTracePathListTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanSflspTracePathListEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains the SecureFast Trace Path List table."
::= { vlanSflspTracePathInternal 2 }
vlanSflspTracePathListEntry OBJECT-TYPE
SYNTAX VlanSflspTracePathListEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains the switch port addresses of each hop
of each path traversed for a particular destination switch.
These paths correspond to trace path requests in the
sfTracePathReqTable."
INDEX { vlanSflspTracePathListDest, vlanSflspTracePathListID, vlanSflspTracePathListPathNum, vlanSflspTracePathListHopNum }
::= { vlanSflspTracePathListTable 1 }
VlanSflspTracePathListEntry ::=
SEQUENCE {
vlanSflspTracePathListDest OCTET STRING,
vlanSflspTracePathListID INTEGER,
vlanSflspTracePathListPathNum INTEGER,
vlanSflspTracePathListHopNum INTEGER,
vlanSflspTracePathListHopAddr OCTET STRING
}
vlanSflspTracePathListDest OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The switch address of the destination for this trace path
entry, corresponding to a requested destination in the
sfTracePathReqTable."
::= { vlanSflspTracePathListEntry 1 }
vlanSflspTracePathListID OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique identifier corresponding to the identifier in a
trace path request in the sfTracePathReqTable."
::= { vlanSflspTracePathListEntry 2 }
vlanSflspTracePathListPathNum OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of this path in the table of networks traversed.
This value represents a unique path id when there are multiple
paths to a single destination."
::= { vlanSflspTracePathListEntry 3 }
vlanSflspTracePathListHopNum OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The hop number in this path."
::= { vlanSflspTracePathListEntry 4 }
vlanSflspTracePathListHopAddr OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The switch port address of this hop on the path."
::= { vlanSflspTracePathListEntry 5 }
--
vlanSflspLSDBFloodTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanSflspLSDBFloodEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
""
::= { vlanSflspLSDBFlood 1 }
vlanSflspLSDBFloodEntry OBJECT-TYPE
SYNTAX VlanSflspLSDBFloodEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
""
INDEX { vlanSflspLSDBFloodAreaID, vlanSflspLSDBFloodType, vlanSflspLSDBFloodLSID, vlanSflspLSDBFloodAdvSwitchID }
::= { vlanSflspLSDBFloodTable 1 }
VlanSflspLSDBFloodEntry ::=
SEQUENCE {
vlanSflspLSDBFloodAreaID INTEGER,
vlanSflspLSDBFloodType INTEGER,
vlanSflspLSDBFloodLSID SfpsAddress,
vlanSflspLSDBFloodAdvSwitchID SfpsAddress,
vlanSflspLSDBFloodSequence INTEGER,
vlanSflspLSDBFloodAge INTEGER,
vlanSflspLSDBFloodChecksum INTEGER,
vlanSflspLSDBFloodAdvertisement SfpsAddress,
vlanSflspLSDBFloodUsedInSPF INTEGER,
vlanSflspLSDBFloodEverUsed INTEGER
}
vlanSflspLSDBFloodAreaID OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { vlanSflspLSDBFloodEntry 1 }
vlanSflspLSDBFloodType OBJECT-TYPE
SYNTAX INTEGER {
switchLink(1),
connectionLink(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { vlanSflspLSDBFloodEntry 2 }
vlanSflspLSDBFloodLSID OBJECT-TYPE
SYNTAX SfpsAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { vlanSflspLSDBFloodEntry 3 }
vlanSflspLSDBFloodAdvSwitchID OBJECT-TYPE
SYNTAX SfpsAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { vlanSflspLSDBFloodEntry 4 }
vlanSflspLSDBFloodSequence OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { vlanSflspLSDBFloodEntry 5 }
vlanSflspLSDBFloodAge OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { vlanSflspLSDBFloodEntry 6 }
vlanSflspLSDBFloodChecksum OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { vlanSflspLSDBFloodEntry 7 }
vlanSflspLSDBFloodAdvertisement OBJECT-TYPE
SYNTAX SfpsAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { vlanSflspLSDBFloodEntry 8 }
vlanSflspLSDBFloodUsedInSPF OBJECT-TYPE
SYNTAX INTEGER {
-- false(0),
true(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { vlanSflspLSDBFloodEntry 9 }
vlanSflspLSDBFloodEverUsed OBJECT-TYPE
SYNTAX INTEGER {
-- false(0),
true(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { vlanSflspLSDBFloodEntry 10 }
--SFLSP Statistics
vlanSflspLSPStatsMaxOnQueue OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { vlanSflspLSPStats 1 }
vlanSflspLSPStatsCurOnQueue OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { vlanSflspLSPStats 2 }
vlanSflspLSPStatsMaxTimeUs OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { vlanSflspLSPStats 3 }
vlanSflspLSPStatsCurTimeUs OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { vlanSflspLSPStats 4 }
vlanSflspLSPStatsMaxTimeOccurred OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { vlanSflspLSPStats 5 }
vlanSflspLSPStatsMaxOnQOccurred OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { vlanSflspLSPStats 6 }
vlanSflspLSPStatsTotalSwLinks OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { vlanSflspLSPStats 7 }
vlanSflspLSPStatsLastChangeDet OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { vlanSflspLSPStats 8 }
vlanSflspLSPStatsNumSPFRuns OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
""
::= { vlanSflspLSPStats 9 }
vlanSflspLSPStatsNumFULLNbrs OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { vlanSflspLSPStats 10 }
vlanSflspLSPStatsNumIntfs OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { vlanSflspLSPStats 11 }
vlanSflspLSPStatsNum1stHops OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { vlanSflspLSPStats 12 }
vlanSflspLSPStatsNumUpdates OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { vlanSflspLSPStats 13 }
vlanSflspLSPStatsLastUpdateRecvd OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { vlanSflspLSPStats 14 }
END
|