-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathCISCO-IETF-ISIS-MIB-V1SMI.my
3668 lines (3350 loc) · 106 KB
/
CISCO-IETF-ISIS-MIB-V1SMI.my
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
-- MIB file created 19-Aug-2005 19:31:15, by
-- SMICng version 2.2.11-beta(PRO)(Solaris), January 20, 2001. Enterprise key cisco.com
CISCO-IETF-ISIS-MIB DEFINITIONS ::= BEGIN
-- From file: "CISCO-IETF-ISIS-MIB.my"
-- Compile options "4 7 F H N O W 03 06 0B 0G 0N 0T"
IMPORTS
RowStatus, TruthValue
FROM SNMPv2-TC-v1
ciscoExperiment
FROM CISCO-SMI
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
IndexIntegerNextFree
FROM DIFFSERV-MIB
InterfaceIndex
FROM IF-MIB
InetAddressType, InetAddress, InetAddressPrefixLength
FROM INET-ADDRESS-MIB
Counter, Gauge, TimeTicks
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
TRAP-TYPE
FROM RFC-1215;
ciscoIetfIsisMIB OBJECT IDENTIFIER ::= { ciscoExperiment 118 }
-- MODULE-IDENTITY
-- LastUpdated
-- 200508161200Z
-- OrgName
-- Cisco Systems, Inc.
-- ContactInfo
-- Cisco Systems
-- Customer Service
--
-- Postal: 170 W. Tasman Drive
-- San Jose, CA 95134
-- USA
--
-- Tel: +1 800 553-NETS
--
-- E-mail: [email protected]
-- Descr
-- This document describes a management information base for
-- the IS-IS Routing protocol, as described in ISO 10589,
-- when it is used to construct routing tables for IP networks,
-- as described in RFC 1195. This MIB is entirely based upon
-- the IETF draft draft-ietf-isis-wg-mib-16.
-- RevDate
-- 200508161200Z
-- RevDescr
-- Corrected DESCRIPTION clause for ciiAreaAddrTable,
-- ciiAreaAddrEntry, ciiAreaAddr and for
-- ciiSysLevelOverloadState based on similar
-- definitions in draft-ietf-isis-wg-mib-18.txt.
-- RevDate
-- 200502081200Z
-- RevDescr
-- Initial version.
ciscoIetfIsisMIBNotifs OBJECT IDENTIFIER ::= { ciscoIetfIsisMIB 0 }
ciscoIetfIsisMIBObjects OBJECT IDENTIFIER ::= { ciscoIetfIsisMIB 1 }
ciscoIetfIsisMIBConform OBJECT IDENTIFIER ::= { ciscoIetfIsisMIB 2 }
ciiSystem OBJECT IDENTIFIER ::= { ciscoIetfIsisMIBObjects 1 }
ciiSysLevel OBJECT IDENTIFIER ::= { ciscoIetfIsisMIBObjects 2 }
ciiCirc OBJECT IDENTIFIER ::= { ciscoIetfIsisMIBObjects 3 }
ciiCircLevelValues OBJECT IDENTIFIER ::= { ciscoIetfIsisMIBObjects 4 }
ciiCounters OBJECT IDENTIFIER ::= { ciscoIetfIsisMIBObjects 5 }
ciiISAdj OBJECT IDENTIFIER ::= { ciscoIetfIsisMIBObjects 6 }
ciiReachAddr OBJECT IDENTIFIER ::= { ciscoIetfIsisMIBObjects 7 }
ciiIPReachAddr OBJECT IDENTIFIER ::= { ciscoIetfIsisMIBObjects 8 }
ciiLSPDataBase OBJECT IDENTIFIER ::= { ciscoIetfIsisMIBObjects 9 }
ciiNotification OBJECT IDENTIFIER ::= { ciscoIetfIsisMIBObjects 10 }
ciiSysObject OBJECT IDENTIFIER ::= { ciiSystem 1 }
ciiNotificationEntry OBJECT IDENTIFIER ::= { ciiNotification 1 }
ciscoIetfIsisMIBGroups OBJECT IDENTIFIER ::= { ciscoIetfIsisMIBConform 1 }
ciscoIetfIsisMIBCompliances OBJECT IDENTIFIER ::= { ciscoIetfIsisMIBConform 2 }
CiiOSINSAddress ::= OCTET STRING(SIZE(0..20))
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- OSI Network Service Address, e.g. NSAP, SNPA, or Network
-- Entity Title
CiiSystemID ::= OCTET STRING(SIZE(6))
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- A system ID.
CiiLinkStatePDUID ::= OCTET STRING(SIZE(0|8))
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- A Link State PDU Identifier.
CiiAdminState ::= INTEGER {
on(1),
off(2)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- Type used in enabling and disabling a row.
-- Values match those in RFC 2863.
CiiLSPBuffSize ::= INTEGER(512..16000)
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- Integer sub range for LSP size.
CiiLevelState ::= INTEGER {
off(1),
on(2),
waiting(3),
overloaded(4)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- States of the IS-IS protocol.
CiiSupportedProtocol ::= INTEGER {
iso8473(129),
ipV6(142),
ip(204)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- Types of network protocol supported by Integrated IS-IS.
-- The values for ISO8473 and IP are those registered for
-- these protocols in ISO TR9577.
CiiDefaultMetric ::= INTEGER(0..63)
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- Integer sub-range for default metric for single hop.
-- ISO 10589 provides for 4 types of metric. Only the
-- 'default' metric is used in practice.
CiiWideMetric ::= Gauge(0..16777215)
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- Wide Metric for IS Neighbors. ISO 10589 provides a
-- 6 bit metric. Traffic Engineering extensions provide
-- 24 bit metrics.
CiiFullMetric ::= Gauge
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- Full Metric for IP Routes. Traffic Engineering extensions
-- provide 32 bit metrics.
CiiMetricType ::= INTEGER {
internal(1),
external(2)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- Is this an Internal or External Metric?
CiiMetricStyle ::= INTEGER {
narrow(1),
wide(2),
both(3)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- Do we use 1195 style Metrics or wide metrics.
CiiISLevel ::= INTEGER {
--?? enum value of zero may cause problems
none(0),
area(1),
domain(2)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- Identifies a level.
CiiPDUHeader ::= OCTET STRING(SIZE(0..64))
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- A block to contain the header from a PDU.
CiiCircuitID ::= OCTET STRING(SIZE(0|7))
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- ID for a circuit.
CiiISPriority ::= INTEGER(0..127)
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- Integer sub-range for IS-IS priority.
CiiUnsigned16TC ::= Gauge(0..65535)
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- An Unsigned32 further restricted to 16 Bits. Note that
-- the ASN.1 BER encoding may still require 24 Bits for
-- some values.
CiiUnsigned8TC ::= Gauge(0..255)
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- An Unsigned32 further restricted to 8 Bits. Note that
-- the ASN.1 BER encoding may still require 16 Bits for
-- some values.
ciiSysVersion OBJECT-TYPE
SYNTAX INTEGER {
--?? enum value of zero may cause problems
unknown(0),
one(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The version number of the IS-IS protocol that
is implemented."
REFERENCE
"{ISIS.aoi version (1)}"
DEFVAL { one }
::= { ciiSysObject 1 }
ciiSysType OBJECT-TYPE
SYNTAX INTEGER {
level1IS(1),
level2IS(2),
level1L2IS(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"At which levels is the Intermediate System
running? This object follows the
replaceOnlyWhileDisabled behavior."
REFERENCE
"{ISIS.aoi iSType (2)}"
DEFVAL { level1L2IS }
::= { ciiSysObject 2 }
ciiSysID OBJECT-TYPE
SYNTAX CiiSystemID
-- Rsyntax OCTET STRING(SIZE(6))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The ID for this Intermediate System.
This value is appended to each of the
area addresses to form the Network Entity Titles.
The derivation of a value for this object is
implementation-specific. Some implementations may
automatically assign values and not permit an
SNMP write, while others may require the value
to be set manually."
REFERENCE
"{ISIS.aoi systemId (119)}"
::= { ciiSysObject 3 }
ciiSysMaxPathSplits OBJECT-TYPE
SYNTAX INTEGER(1..32)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Maximum number of paths with equal routing metric value
which it is permitted to split between. This object
follows the replaceOnlyWhileDisabled behavior."
REFERENCE
"{ISIS.aoi maximumPathSplits (3)}"
DEFVAL { 2 }
::= { ciiSysObject 4 }
ciiSysMaxLSPGenInt OBJECT-TYPE
SYNTAX INTEGER(1..65235)
-- Units
-- seconds
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Maximum interval, in seconds, between generated LSPs
by this Intermediate System. This object follows
the resettingTimer behavior. The value must be
greater than any value configured for
ciiSysLevelMinLSPGenInt, and should be at least 300
seconds less than ciiSysMaxAge."
REFERENCE
"{ISIS.aoi maximumLSPGenerationInterval (6)}"
DEFVAL { 900 }
::= { ciiSysObject 5 }
ciiSysPollESHelloRate OBJECT-TYPE
SYNTAX CiiUnsigned16TC(1..65535)
-- Rsyntax Gauge(1..65535)
-- Units
-- seconds
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value, in seconds, to be used for the suggested ES
configuration timer in ISH PDUs when soliciting the ES
configuration."
REFERENCE
"{ISIS.aoi pollESHelloRate (13)}"
DEFVAL { 50 }
::= { ciiSysObject 6 }
ciiSysWaitTime OBJECT-TYPE
SYNTAX CiiUnsigned16TC(1..65535)
-- Rsyntax Gauge(1..65535)
-- Units
-- seconds
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Number of seconds to delay in 'waiting' state before
entering 'on' state. This object follows the resettingTimer
behavior."
REFERENCE
"{ISIS.aoi waitingTime (15)}"
DEFVAL { 60 }
::= { ciiSysObject 7 }
ciiSysAdminState OBJECT-TYPE
SYNTAX CiiAdminState
-- Rsyntax INTEGER {
-- on(1),
-- off(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The administrative state of this Intermediate
System. Setting this object to the value 'on'
when its current value is 'off' enables
the Intermediate System."
DEFVAL { off }
::= { ciiSysObject 8 }
ciiSysL2toL1Leaking OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"If true, allow the router to leak L2 routes into L1."
DEFVAL { false }
::= { ciiSysObject 9 }
ciiSysMaxAge OBJECT-TYPE
SYNTAX CiiUnsigned16TC(350..65535)
-- Rsyntax Gauge(350..65535)
-- Units
-- seconds
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Value to place in RemainingLifeTime field of
the LSPs we generate.
This should be at least 300 seconds greater than
ciiSysMaxLSPGenInt."
DEFVAL { 1200 }
::= { ciiSysObject 10 }
ciiSysReceiveLSPBufferSize OBJECT-TYPE
SYNTAX CiiUnsigned16TC(1492..16000)
-- Rsyntax Gauge(1492..16000)
-- Units
-- bytes
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Size of the largest Buffer we are designed or
configured to store. This should be at least
as big as the maximum ciiSysLevelOrigLSPBuffSize
supported by the system.
If resources allow, we will store and flood LSPs
larger than ciiSysReceiveLSPBufferSize, as this
can help avoid problems in networks with different
values for ciiSysLevelOrigLSPBuffSize."
DEFVAL { 1492 }
::= { ciiSysObject 11 }
ciiManAreaAddrTable OBJECT-TYPE
SYNTAX SEQUENCE OF CiiManAreaAddrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The set of manual area addresses configured on this
Intermediate System."
REFERENCE
"{ISIS.aoi manualAreaAddresses (10)}"
::= { ciiSystem 2 }
ciiManAreaAddrEntry OBJECT-TYPE
SYNTAX CiiManAreaAddrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains one area address manually configured
on this system"
INDEX { ciiManAreaAddr }
::= { ciiManAreaAddrTable 1 }
CiiManAreaAddrEntry ::= SEQUENCE {
ciiManAreaAddr CiiOSINSAddress,
ciiManAreaAddrExistState RowStatus
}
ciiManAreaAddr OBJECT-TYPE
SYNTAX CiiOSINSAddress
-- Rsyntax OCTET STRING(SIZE(0..20))
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A manually configured area address for this system. This
object follows the index behavior.
Note: an index for the entry {1, {49.0001} active} in
this table would be the ordered pair
(1, (0x03 0x49 0x00 0x01)), as the length of an Octet
string is part of the OID."
::= { ciiManAreaAddrEntry 1 }
ciiManAreaAddrExistState OBJECT-TYPE
SYNTAX RowStatus
-- Rsyntax INTEGER {
-- active(1),
-- notInService(2),
-- notReady(3),
-- createAndGo(4),
-- createAndWait(5),
-- destroy(6)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The state of the ciiManAreaAddrEntry. This object
follows the Row Status behavior. If the ciiSysAdminState
for this Intermediate System is 'on', and an
attempt is made to set this object to the value 'destroy'
or 'notInService' when this is the only
ciiManAreaAddrEntry in state 'active' for this
Intermediate System should return inconsistentValue."
::= { ciiManAreaAddrEntry 2 }
ciiAreaAddrTable OBJECT-TYPE
SYNTAX SEQUENCE OF CiiAreaAddrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The union of the sets of area addresses reported in all
Level 1 LSPs with fragment number zero generated by this
Intermediate System, or received from other Intermediate
Systems which are reachable via Level 1 routing."
REFERENCE
"{ISIS.aoi areaAddresses (18)}"
::= { ciiSystem 3 }
ciiAreaAddrEntry OBJECT-TYPE
SYNTAX CiiAreaAddrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains one area address reported in a
Level 1 LSP generated or received by this Intermediate
System."
INDEX { ciiAreaAddr }
::= { ciiAreaAddrTable 1 }
CiiAreaAddrEntry ::= SEQUENCE {
ciiAreaAddr CiiOSINSAddress
}
ciiAreaAddr OBJECT-TYPE
SYNTAX CiiOSINSAddress
-- Rsyntax OCTET STRING(SIZE(0..20))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An area address reported in a Level 1 LSP."
::= { ciiAreaAddrEntry 1 }
ciiSysProtSuppTable OBJECT-TYPE
SYNTAX SEQUENCE OF CiiSysProtSuppEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains the manually configured set of
protocols supported by this Intermediate System."
::= { ciiSystem 4 }
ciiSysProtSuppEntry OBJECT-TYPE
SYNTAX CiiSysProtSuppEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains one protocol supported by
this Intermediate System."
INDEX { ciiSysProtSuppProtocol }
::= { ciiSysProtSuppTable 1 }
CiiSysProtSuppEntry ::= SEQUENCE {
ciiSysProtSuppProtocol CiiSupportedProtocol,
ciiSysProtSuppExistState RowStatus
}
ciiSysProtSuppProtocol OBJECT-TYPE
SYNTAX CiiSupportedProtocol
-- Rsyntax INTEGER {
-- iso8473(129),
-- ipV6(142),
-- ip(204)
-- }
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"One supported protocol. This object follows the index
behavior."
::= { ciiSysProtSuppEntry 1 }
ciiSysProtSuppExistState OBJECT-TYPE
SYNTAX RowStatus
-- Rsyntax INTEGER {
-- active(1),
-- notInService(2),
-- notReady(3),
-- createAndGo(4),
-- createAndWait(5),
-- destroy(6)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The state of the ciiSysProtSuppEntry. This object
follows the RowStatus behavior."
::= { ciiSysProtSuppEntry 2 }
ciiSummAddrTable OBJECT-TYPE
SYNTAX SEQUENCE OF CiiSummAddrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The set of IP summary addresses to use in forming
summary TLVs originated by this Intermediate System.
An administrator may use a summary address to combine
and modify IP Reachability announcements. If the
Intermediate system can reach any subset of the summary
address, the summary address will be announced instead,
at the configured metric."
::= { ciiSystem 5 }
ciiSummAddrEntry OBJECT-TYPE
SYNTAX CiiSummAddrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains one IP summary address."
INDEX { ciiSummAddressType, ciiSummAddress, ciiSummAddrPrefixLen }
::= { ciiSummAddrTable 1 }
CiiSummAddrEntry ::= SEQUENCE {
ciiSummAddressType InetAddressType,
ciiSummAddress InetAddress,
ciiSummAddrPrefixLen InetAddressPrefixLength,
ciiSummAddrExistState RowStatus,
ciiSummAddrMetric CiiDefaultMetric,
ciiSummAddrFullMetric CiiFullMetric
}
ciiSummAddressType OBJECT-TYPE
SYNTAX InetAddressType
-- Rsyntax INTEGER {
-- ?? enum value of zero may cause problems
-- unknown(0),
-- ipv4(1),
-- ipv6(2),
-- ipv4z(3),
-- ipv6z(4),
-- dns(16)
-- }
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The Type of IP address for this summary address.
This object follows the index behavior."
::= { ciiSummAddrEntry 1 }
ciiSummAddress OBJECT-TYPE
SYNTAX InetAddress(SIZE(4|16))
-- Rsyntax OCTET STRING(SIZE(4|16))
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The IP Address value for this summary address.
This object follows the index behavior."
::= { ciiSummAddrEntry 2 }
ciiSummAddrPrefixLen OBJECT-TYPE
SYNTAX InetAddressPrefixLength(0..128)
-- Rsyntax Gauge(0..128)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The Length of the IP NetMask for this summary address."
::= { ciiSummAddrEntry 3 }
ciiSummAddrExistState OBJECT-TYPE
SYNTAX RowStatus
-- Rsyntax INTEGER {
-- active(1),
-- notInService(2),
-- notReady(3),
-- createAndGo(4),
-- createAndWait(5),
-- destroy(6)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The existence state of this summary address. This object
follows the row status behavior."
::= { ciiSummAddrEntry 4 }
ciiSummAddrMetric OBJECT-TYPE
SYNTAX CiiDefaultMetric
-- Rsyntax INTEGER(0..63)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The metric value to announce this summary
address with in LSPs generated by this system."
DEFVAL { 20 }
::= { ciiSummAddrEntry 5 }
ciiSummAddrFullMetric OBJECT-TYPE
SYNTAX CiiFullMetric
-- Rsyntax Gauge
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The wide metric value to announce this summary
address with in LSPs generated by this system."
DEFVAL { 20 }
::= { ciiSummAddrEntry 6 }
ciiRedistributeAddrTable OBJECT-TYPE
SYNTAX SEQUENCE OF CiiRedistributeAddrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table provides criteria to decide if a route should
be leaked from L2 to L1 when Domain Wide Prefix leaking is
enabled.
Addresses that match the summary mask in the table will
be announced at L1 by routers when ciiSysL2toL1Leaking
is enabled. Routes that fall into the ranges specified
are announced as is, without being summarized. Routes
that do not match a summary mask are not announced."
::= { ciiSystem 6 }
ciiRedistributeAddrEntry OBJECT-TYPE
SYNTAX CiiRedistributeAddrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains one IP summary address to
manage leaking L2 addresses into L1."
INDEX { ciiRedistributeAddrType, ciiRedistributeAddrAddress, ciiRedistributeAddrPrefixLen }
::= { ciiRedistributeAddrTable 1 }
CiiRedistributeAddrEntry ::= SEQUENCE {
ciiRedistributeAddrType InetAddressType,
ciiRedistributeAddrAddress InetAddress,
ciiRedistributeAddrPrefixLen InetAddressPrefixLength,
ciiRedistributeAddrExistState RowStatus
}
ciiRedistributeAddrType OBJECT-TYPE
SYNTAX InetAddressType
-- Rsyntax INTEGER {
-- ?? enum value of zero may cause problems
-- unknown(0),
-- ipv4(1),
-- ipv6(2),
-- ipv4z(3),
-- ipv6z(4),
-- dns(16)
-- }
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The Type of IP address for this summary address.
This object follows the index behavior."
::= { ciiRedistributeAddrEntry 1 }
ciiRedistributeAddrAddress OBJECT-TYPE
SYNTAX InetAddress(SIZE(4|16))
-- Rsyntax OCTET STRING(SIZE(4|16))
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The IP Address value for this summary address.
This object follows the index behavior."
::= { ciiRedistributeAddrEntry 2 }
ciiRedistributeAddrPrefixLen OBJECT-TYPE
SYNTAX InetAddressPrefixLength(0..128)
-- Rsyntax Gauge(0..128)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The Length of the IP NetMask for this summary address."
::= { ciiRedistributeAddrEntry 3 }
ciiRedistributeAddrExistState OBJECT-TYPE
SYNTAX RowStatus
-- Rsyntax INTEGER {
-- active(1),
-- notInService(2),
-- notReady(3),
-- createAndGo(4),
-- createAndWait(5),
-- destroy(6)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The existence state of this summary address. This object
follows the row status behavior."
::= { ciiRedistributeAddrEntry 4 }
ciiRouterTable OBJECT-TYPE
SYNTAX SEQUENCE OF CiiRouterEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The set of hostnames and router ID."
::= { ciiSystem 7 }
ciiRouterEntry OBJECT-TYPE
SYNTAX CiiRouterEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry tracks information about one peer at
one level."
INDEX { ciiRouterSysID, ciiRouterLevel }
::= { ciiRouterTable 1 }
CiiRouterEntry ::= SEQUENCE {
ciiRouterSysID CiiSystemID,
ciiRouterLevel CiiISLevel,
ciiRouterHostName SnmpAdminString,
ciiRouterID Gauge
}
ciiRouterSysID OBJECT-TYPE
SYNTAX CiiSystemID
-- Rsyntax OCTET STRING(SIZE(6))
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The System ID of the Router Peer."
::= { ciiRouterEntry 1 }
ciiRouterLevel OBJECT-TYPE
SYNTAX CiiISLevel
-- Rsyntax INTEGER {
-- ?? enum value of zero may cause problems
-- none(0),
-- area(1),
-- domain(2)
-- }
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The level of this Intermediate System."
::= { ciiRouterEntry 2 }
ciiRouterHostName OBJECT-TYPE
SYNTAX SnmpAdminString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The hostname listed in LSP, or zero-length string if none."
::= { ciiRouterEntry 3 }
ciiRouterID OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Router ID of the Peer found in LSP, or zero if none."
::= { ciiRouterEntry 4 }
ciiSysLevelTable OBJECT-TYPE
SYNTAX SEQUENCE OF CiiSysLevelEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Level specific information about the System."
::= { ciiSysLevel 1 }
ciiSysLevelEntry OBJECT-TYPE
SYNTAX CiiSysLevelEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Describe variables defined for Area or Domain."
INDEX { ciiSysLevelIndex }
::= { ciiSysLevelTable 1 }
CiiSysLevelEntry ::= SEQUENCE {
ciiSysLevelIndex INTEGER,
ciiSysLevelOrigLSPBuffSize CiiLSPBuffSize,
ciiSysLevelMinLSPGenInt CiiUnsigned16TC,
ciiSysLevelOverloadState CiiLevelState,
ciiSysLevelSetOverload TruthValue,
ciiSysLevelSetOverloadUntil TimeTicks,
ciiSysLevelMetricStyle CiiMetricStyle,
ciiSysLevelSPFConsiders CiiMetricStyle,
ciiSysLevelTEEnabled TruthValue
}
ciiSysLevelIndex OBJECT-TYPE
SYNTAX INTEGER {
level1IS(1),
level2IS(2)
}
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The level that this entry describes."
::= { ciiSysLevelEntry 1 }
ciiSysLevelOrigLSPBuffSize OBJECT-TYPE
SYNTAX CiiLSPBuffSize
-- Rsyntax INTEGER(512..16000)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The maximum size of LSPs and SNPs originated by
this Intermediate System at this level.
This object follows the replaceOnlyWhileDisabled
behavior."
REFERENCE
"{ISIS.aoi originatingL1LSPBufferSize (9)}"
DEFVAL { 1492 }
::= { ciiSysLevelEntry 2 }
ciiSysLevelMinLSPGenInt OBJECT-TYPE
SYNTAX CiiUnsigned16TC(1..65535)
-- Rsyntax Gauge(1..65535)
-- Units
-- seconds
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Minimum interval, in seconds, between successive
generation of LSPs with the same LSPID at this level
by this Intermediate System. This object
follows the resettingTimer behavior."
REFERENCE
"{ISIS.aoi minimumLSPGenerationInterval (11)}"
DEFVAL { 30 }
::= { ciiSysLevelEntry 3 }
ciiSysLevelOverloadState OBJECT-TYPE
SYNTAX CiiLevelState
-- Rsyntax INTEGER {
-- off(1),
-- on(2),
-- waiting(3),
-- overloaded(4)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The state of the database at this level.
The value 'off' indicates that IS-IS is not active at
this level.
The value 'on' indicates that IS-IS is active at this
level, and not overloaded.
The value 'waiting' indicates a database that is low on
an essential resource, such as memory.
The administrator may force the state to 'overloaded'
by setting the object ciiSysLevelSetOverload.
If the state is 'waiting' or 'overloaded', we originate
LSPs with the Overload bit set."
REFERENCE
"{ISIS.aoi l1State (17)}"
::= { ciiSysLevelEntry 4 }
ciiSysLevelSetOverload OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Administratively set the overload bit for the level.
The overload bit will continue to be set if the
implementation runs out of memory, independent of
this variable"
DEFVAL { false }
::= { ciiSysLevelEntry 5 }
ciiSysLevelSetOverloadUntil OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-write
STATUS mandatory
DESCRIPTION
"If set, the overload bit should be set, and cleared
after sysUpTime exceeds this value."
DEFVAL { 0 }
::= { ciiSysLevelEntry 6 }
ciiSysLevelMetricStyle OBJECT-TYPE
SYNTAX CiiMetricStyle
-- Rsyntax INTEGER {
-- narrow(1),
-- wide(2),
-- both(3)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Which style of Metric do we generate in our LSPs
at this level? This object follows the
replaceOnlyWhileDisabled behavior."
DEFVAL { narrow }
::= { ciiSysLevelEntry 7 }
ciiSysLevelSPFConsiders OBJECT-TYPE
SYNTAX CiiMetricStyle
-- Rsyntax INTEGER {
-- narrow(1),
-- wide(2),
-- both(3)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Which style of Metric do we consider in our
SPF computation at this level?"
DEFVAL { narrow }
::= { ciiSysLevelEntry 8 }
ciiSysLevelTEEnabled OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write