This repository has been archived by the owner. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathCTRON-SFPS-SFLSP-MIB
1508 lines (1328 loc) · 54.7 KB
/
CTRON-SFPS-SFLSP-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-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
--
-- 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