-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathCISCO-IETF-BFD-MIB-V1SMI.my
1069 lines (988 loc) · 34.4 KB
/
CISCO-IETF-BFD-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 02-May-2011 07:09:32, by
-- SMICng version 2.2.11-beta(PRO)(Solaris), January 20, 2001. Enterprise key cisco.com
CISCO-IETF-BFD-MIB DEFINITIONS ::= BEGIN
-- From file: "CISCO-IETF-BFD-MIB.my"
-- Compile options "4 7 F H N W 03 06 0B 0G 0N 0T"
IMPORTS
TruthValue, RowStatus, StorageType, TimeStamp
FROM SNMPv2-TC-v1
InterfaceIndex
FROM IF-MIB
InetAddress, InetAddressType, InetPortNumber
FROM INET-ADDRESS-MIB
ciscoExperiment
FROM CISCO-SMI
Counter, Gauge
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
TRAP-TYPE
FROM RFC-1215;
ciscoIetfBfdMIB OBJECT IDENTIFIER ::= { ciscoExperiment 137 }
-- MODULE-IDENTITY
-- LastUpdated
-- 201104160000Z
-- OrgName
-- IETF
-- ContactInfo
-- Zafar Ali
-- Cisco Systems, Inc.
-- Email: [email protected]
--
-- A S Kiran Koushik
-- Cisco Systems, Inc.
-- Email: [email protected]
--
-- Nobo Akiya
-- Cisco Systems, G.K.
-- Email: [email protected]
-- Descr
-- This document contains the Management information base for
-- Bidirectional Forwarding Detection(BFD) Protocol as defined
-- in draft-ietf-bfd-base-06.txt.
--
-- BFD is a protocol intended to detect faults in the
-- bidirectional path between two forwarding engines, including
-- interfaces, data link(s), and to the extent possible the forwarding
-- engines themselves, with potentially very low latency. It operates
-- independently of media, data protocols, and routing protocols.
--
-- This MIB module is based on the Internet Draft
-- draft-ietf-bfd-mib-03.txt and draft-ietf-bfd-mib-04.txt
-- RevDate
-- 201103140000Z
-- RevDescr
-- Modify value for 'ciscoBfdSessRemoteDiscr' and
-- 'CiscoBfdInterval' to allow value 0 to conform to latest draft,
-- draft-ietf-bfd-mib-10.txt.
-- RevDate
-- 201002180000Z
-- RevDescr
-- Modify value for ciscoBfdDiag textual convention to conform to
-- latest draft-ietf-bfd-mib-07.txt
-- RevDate
-- 200804240000Z
-- RevDescr
-- Revised version includes support for draft-ietf-bfd-mib-03.txt
-- and draft-ietf-bfd-mib-04.txt. In addition to small description
-- changes made throughout this MIB, following changes are made:
-- * ciscoBfdObjects.ciscoBfdSessTable.ciscoBfdSessEntry
-- - ciscoBfdSessState : failing state added
-- - ciscoBfdSessVersionNumber : new object added
-- - ciscoBfdSessType : new object added
-- - ciscoBfdSessInterface : new object added
-- * ciscoBfdObjects
-- - ciscoBfdSessDiscMapTable : new table added
-- - ciscoBfdSessIpMapTable : new table added
-- * ciscoBfdComformance
-- - ciscoBfdSessGroup : object group deprecated
-- - ciscoBfdSess03Group : new object group added
-- - ciscoBfdSess04Group : new object group added
-- - ciscoBfdSess0304Group : new object group added
-- * ciscoBfdCompliances
-- - ciscoBfdModuleFullCompliance : module compliance deprecated
-- - ciscoBfdModuleFullComplianceRev2 : new module compliance added
-- RevDate
-- 200706040000Z
-- RevDescr
-- Initial version based on draft-ietf-bfd-mib-03.txt
ciscoBfdNotifications OBJECT IDENTIFIER ::= { ciscoIetfBfdMIB 0 }
ciscoBfdObjects OBJECT IDENTIFIER ::= { ciscoIetfBfdMIB 1 }
ciscoBfdConformance OBJECT IDENTIFIER ::= { ciscoIetfBfdMIB 3 }
ciscoBfdScalarObjects OBJECT IDENTIFIER ::= { ciscoBfdObjects 1 }
ciscoBfdGroups OBJECT IDENTIFIER ::= { ciscoBfdConformance 1 }
ciscoBfdCompliances OBJECT IDENTIFIER ::= { ciscoBfdConformance 2 }
CiscoBfdSessIndexTC ::= Gauge(1..4294967295)
-- TEXTUAL-CONVENTION
-- DspHint
-- d
-- Status
-- mandatory
-- Descr
-- An index used to uniquely identify BFD sessions.
CiscoBfdInterval ::= Gauge(0..4294967295)
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The BFD interval delay in microseconds.
CiscoBfdDiag ::= INTEGER {
--?? enum value of zero may cause problems
-- noDiagnostic(0),
controlDetectionTimeExpired(1),
echoFunctionFailed(2),
neighborSignaledSessionDown(3),
forwardingPlaneReset(4),
pathDown(5),
concatenatedPathDown(6),
administrativelyDown(7),
reverseConcatenatedPathDown(8)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- A common BFD diagnostic code.
ciscoBfdAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The global administrative status of BFD in this router.
The value 'enabled' denotes that the BFD Process is
active on at least one interface; 'disabled' disables
it on all interfaces."
DEFVAL { enabled }
::= { ciscoBfdScalarObjects 1 }
ciscoBfdVersionNumber OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The current version number of the BFD protocol."
REFERENCE
"BFD Version 0 (draft-katz-ward-bfd-02.txt)"
DEFVAL { 0 }
::= { ciscoBfdScalarObjects 3 }
ciscoBfdSessTable OBJECT-TYPE
SYNTAX SEQUENCE OF CiscoBfdSessEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The BFD Session Table describes the BFD sessions."
REFERENCE
"BFD Version 0 (draft-katz-ward-ciscoBfd-02.txt)"
::= { ciscoBfdObjects 2 }
ciscoBfdSessEntry OBJECT-TYPE
SYNTAX CiscoBfdSessEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The BFD Session Entry describes BFD session."
INDEX { ciscoBfdSessIndex }
::= { ciscoBfdSessTable 1 }
CiscoBfdSessEntry ::= SEQUENCE {
ciscoBfdSessIndex CiscoBfdSessIndexTC,
ciscoBfdSessApplicationId Gauge,
ciscoBfdSessDiscriminator Gauge,
ciscoBfdSessRemoteDiscr Gauge,
ciscoBfdSessUdpPort InetPortNumber,
ciscoBfdSessState INTEGER,
ciscoBfdSessRemoteHeardFlag TruthValue,
ciscoBfdSessDiag CiscoBfdDiag,
ciscoBfdSessOperMode INTEGER,
ciscoBfdSessDemandModeDesiredFlag TruthValue,
ciscoBfdSessEchoFuncModeDesiredFlag TruthValue,
ciscoBfdSessControlPlanIndepFlag TruthValue,
ciscoBfdSessAddrType InetAddressType,
ciscoBfdSessAddr InetAddress,
ciscoBfdSessDesiredMinTxInterval CiscoBfdInterval,
ciscoBfdSessReqMinRxInterval CiscoBfdInterval,
ciscoBfdSessReqMinEchoRxInterval CiscoBfdInterval,
ciscoBfdSessDetectMult Gauge,
ciscoBfdSessStorType StorageType,
ciscoBfdSessRowStatus RowStatus,
ciscoBfdSessAuthPresFlag TruthValue,
ciscoBfdSessAuthenticationType INTEGER,
ciscoBfdSessVersionNumber Gauge,
ciscoBfdSessType INTEGER,
ciscoBfdSessInterface InterfaceIndex
}
ciscoBfdSessIndex OBJECT-TYPE
SYNTAX CiscoBfdSessIndexTC
-- Rsyntax Gauge(1..4294967295)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This object contains an index used to represent a
unique BFD session on this device."
::= { ciscoBfdSessEntry 1 }
ciscoBfdSessApplicationId OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object contains an index used to indicate
a local application which owns or maintains this
BFD session. For instance, the MPLS VPN process may
maintain a subset of the total number of BFD
sessions. This application ID provides a convenient
way to segregate sessions by the applications which
maintain them."
::= { ciscoBfdSessEntry 2 }
ciscoBfdSessDiscriminator OBJECT-TYPE
SYNTAX Gauge(1..4294967295)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object specifies the local discriminator for this BFD
session, used to uniquely identify it."
::= { ciscoBfdSessEntry 3 }
ciscoBfdSessRemoteDiscr OBJECT-TYPE
SYNTAX Gauge(0..4294967295)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object specifies the session discriminator chosen
by the remote system for this BFD session."
::= { ciscoBfdSessEntry 4 }
ciscoBfdSessUdpPort OBJECT-TYPE
SYNTAX InetPortNumber
-- Rsyntax Gauge(0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The destination UDP Port for BFD. The default value is
the well-known value for this port. BFD State failing(5)
is only applicable if this BFD session is running
version 0"
REFERENCE
"draft-katz-ward-bfd-02.txt and
draft-raggarwa-mpls-bfd-00.txt"
DEFVAL { 0 }
::= { ciscoBfdSessEntry 5 }
ciscoBfdSessState OBJECT-TYPE
SYNTAX INTEGER {
adminDown(1),
down(2),
init(3),
up(4),
failing(5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The perceived state of the BFD session."
::= { ciscoBfdSessEntry 6 }
ciscoBfdSessRemoteHeardFlag OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object specifies status of BFD packet reception from
the remote system. Specifically, it is set to true(1) if
the local system is actively receiving BFD packets from the
remote system, and is set to false(0) if the local system
has not received BFD packets recently (within the detection
time) or if the local system is attempting to tear down
the BFD session."
::= { ciscoBfdSessEntry 7 }
ciscoBfdSessDiag OBJECT-TYPE
SYNTAX CiscoBfdDiag
-- Rsyntax INTEGER {
-- ?? enum value of zero may cause problems
-- noDiagnostic(0),
-- controlDetectionTimeExpired(1),
-- echoFunctionFailed(2),
-- neighborSignaledSessionDown(3),
-- forwardingPlaneReset(4),
-- pathDown(5),
-- concatenatedPathDown(6),
-- administrativelyDown(7),
-- reverseConcatenatedPathDown(8)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A diagnostic code specifying the local system's reason
for the last transition of the session from up(1)
to some other state."
::= { ciscoBfdSessEntry 8 }
ciscoBfdSessOperMode OBJECT-TYPE
SYNTAX INTEGER {
asyncModeWEchoFun(1),
asynchModeWOEchoFun(2),
demandModeWEchoFunction(3),
demandModeWOEchoFunction(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object specifies current operating mode that BFD
session is operating in."
::= { ciscoBfdSessEntry 9 }
ciscoBfdSessDemandModeDesiredFlag OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object indicates that the local system's
desire to use Demand mode. Specifically, it is set
to true(1) if the local system wishes to use
Demand mode or false(0) if not"
DEFVAL { false }
::= { ciscoBfdSessEntry 10 }
ciscoBfdSessEchoFuncModeDesiredFlag OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object indicates that the local system's
desire to use Echo mode. Specifically, it is set
to true(1) if the local system wishes to use
Echo mode or false(0) if not"
DEFVAL { false }
::= { ciscoBfdSessEntry 11 }
ciscoBfdSessControlPlanIndepFlag OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object indicates that the local system's
ability to continue to function through a disruption of
the control plane. Specifically, it is set
to true(1) if the local system BFD implementation is
independent of the control plane. Otherwise, the
value is set to false(0)"
DEFVAL { false }
::= { ciscoBfdSessEntry 12 }
ciscoBfdSessAddrType 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 read-write
STATUS mandatory
DESCRIPTION
"This object specifies IP address type of the neighboring IP
address which is being monitored with this BFD session.
Only values unknown(0), ipv4(1) or ipv6(2)
have to be supported.
A value of unknown(0) is allowed only when
the outgoing interface is of type point-to-point, or
when the BFD session is not associated with a specific
interface.
If any other unsupported values are attempted in a set
operation, the agent MUST return an inconsistentValue
error."
::= { ciscoBfdSessEntry 13 }
ciscoBfdSessAddr OBJECT-TYPE
SYNTAX InetAddress
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object specifies the neighboring IP address which is
being monitored with this BFD session.
It can also be used to enabled BFD on a specific
interface. The value is set to zero when BFD session is not
associated with a specific interface."
::= { ciscoBfdSessEntry 14 }
ciscoBfdSessDesiredMinTxInterval OBJECT-TYPE
SYNTAX CiscoBfdInterval
-- Rsyntax Gauge(0..4294967295)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object specifies the minimum interval, in
microseconds, that the local system would like to use when
transmitting BFD Control packets."
::= { ciscoBfdSessEntry 15 }
ciscoBfdSessReqMinRxInterval OBJECT-TYPE
SYNTAX CiscoBfdInterval
-- Rsyntax Gauge(0..4294967295)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object specifies the minimum interval, in
microseconds, between received BFD Control packets the
local system is capable of supporting."
::= { ciscoBfdSessEntry 16 }
ciscoBfdSessReqMinEchoRxInterval OBJECT-TYPE
SYNTAX CiscoBfdInterval
-- Rsyntax Gauge(0..4294967295)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object specifies the minimum interval, in
microseconds, between received BFD Echo packets that this
system is capable of supporting."
::= { ciscoBfdSessEntry 17 }
ciscoBfdSessDetectMult OBJECT-TYPE
SYNTAX Gauge
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object specifies the Detect time multiplier."
::= { ciscoBfdSessEntry 18 }
ciscoBfdSessStorType OBJECT-TYPE
SYNTAX StorageType
-- Rsyntax INTEGER {
-- other(1),
-- volatile(2),
-- nonVolatile(3),
-- permanent(4),
-- readOnly(5)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This variable indicates the storage type for this
object. Conceptual rows having the value
'permanent' need not allow write-access to any
columnar objects in the row."
::= { ciscoBfdSessEntry 19 }
ciscoBfdSessRowStatus OBJECT-TYPE
SYNTAX RowStatus
-- Rsyntax INTEGER {
-- active(1),
-- notInService(2),
-- notReady(3),
-- createAndGo(4),
-- createAndWait(5),
-- destroy(6)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This variable is used to create, modify, and/or
delete a row in this table. When a row in this
table has a row in the active(1) state, no
objects in this row can be modified except the
ciscoBfdSessRowStatus and ciscoBfdSessStorageType."
::= { ciscoBfdSessEntry 20 }
ciscoBfdSessAuthPresFlag OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object indicates that the local system's
desire to use Authentication. Specifically, it is set
to true(1) if the local system wishes the session
to be authenticated or false(0) if not"
DEFVAL { false }
::= { ciscoBfdSessEntry 21 }
ciscoBfdSessAuthenticationType OBJECT-TYPE
SYNTAX INTEGER {
simplePassword(1),
keyedMD5(2),
meticulousKeyedMD5(3),
keyedSHA1(4),
meticulousKeyedSHA1(5)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The Authentication Type used for this BFD session. This
field is valid only when the Authentication Present bit is set"
::= { ciscoBfdSessEntry 22 }
ciscoBfdSessVersionNumber OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The version number of the BFD protocol that this session is
running in."
REFERENCE
"BFD Version 0 (draft-katz-ward-bfd-02.txt) and BFD Version
1 (draft-ietf-bfd-base-07.txt)"
DEFVAL { 0 }
::= { ciscoBfdSessEntry 23 }
ciscoBfdSessType OBJECT-TYPE
SYNTAX INTEGER {
singleHop(1),
multiHop(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The type of this BFD session."
::= { ciscoBfdSessEntry 24 }
ciscoBfdSessInterface OBJECT-TYPE
SYNTAX InterfaceIndex
-- Rsyntax INTEGER(1..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object contains an interface index used to indicate
the interface which this BFD session is running on."
::= { ciscoBfdSessEntry 25 }
ciscoBfdSessPerfTable OBJECT-TYPE
SYNTAX SEQUENCE OF CiscoBfdSessPerfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table specifies BFD Session performance counters."
::= { ciscoBfdObjects 3 }
ciscoBfdSessPerfEntry OBJECT-TYPE
SYNTAX CiscoBfdSessPerfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in this table is created by a BFD-enabled node for
every BFD Session. ciscoBfdCounterDiscontinuityTime is used to
indicate potential discontinuity for all counter objects
in this table."
INDEX { ciscoBfdSessIndex }
-- Augments ciscoBfdSessEntry
::= { ciscoBfdSessPerfTable 1 }
CiscoBfdSessPerfEntry ::= SEQUENCE {
ciscoBfdSessPerfPktIn Counter,
ciscoBfdSessPerfPktOut Counter,
ciscoBfdSessUpTime TimeStamp,
ciscoBfdSessPerfLastSessDownTime TimeStamp,
ciscoBfdSessPerfLastCommLostDiag CiscoBfdDiag,
ciscoBfdSessPerfSessUpCount Counter,
ciscoBfdSessPerfDiscTime TimeStamp,
ciscoBfdSessPerfPktInHC Counter,
ciscoBfdSessPerfPktOutHC Counter
}
ciscoBfdSessPerfPktIn OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of BFD messages received for this BFD
session."
::= { ciscoBfdSessPerfEntry 1 }
ciscoBfdSessPerfPktOut OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of BFD messages sent for this BFD session."
::= { ciscoBfdSessPerfEntry 2 }
ciscoBfdSessUpTime OBJECT-TYPE
SYNTAX TimeStamp
-- Rsyntax TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The value of sysUpTime on the most recent occasion at which
the session came up. If no such up event exists this object
contains a zero value."
::= { ciscoBfdSessPerfEntry 3 }
ciscoBfdSessPerfLastSessDownTime OBJECT-TYPE
SYNTAX TimeStamp
-- Rsyntax TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The value of sysUpTime on the most recent occasion at which
the last time communication was lost with the neighbor. If
no such down event exist this object contains a zero value."
::= { ciscoBfdSessPerfEntry 4 }
ciscoBfdSessPerfLastCommLostDiag OBJECT-TYPE
SYNTAX CiscoBfdDiag
-- Rsyntax INTEGER {
-- ?? enum value of zero may cause problems
-- noDiagnostic(0),
-- controlDetectionTimeExpired(1),
-- echoFunctionFailed(2),
-- neighborSignaledSessionDown(3),
-- forwardingPlaneReset(4),
-- pathDown(5),
-- concatenatedPathDown(6),
-- administrativelyDown(7),
-- reverseConcatenatedPathDown(8)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The BFD diag code for the last time communication was lost
with the neighbor. If no such down event exists this object
contains a zero value."
::= { ciscoBfdSessPerfEntry 5 }
ciscoBfdSessPerfSessUpCount OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times this session has gone into the Up
state since the router last rebooted."
::= { ciscoBfdSessPerfEntry 6 }
ciscoBfdSessPerfDiscTime OBJECT-TYPE
SYNTAX TimeStamp
-- Rsyntax TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The value of sysUpTime on the most recent occasion at
which any one or more of the session counters suffered
a discontinuity.
The relevant counters are the specific instances associated
with this BFD session of any Counter32 object contained in
the ciscoBfdSessPerfTable. If no such discontinuities have occurred
since the last re-initialization of the local management
subsystem, then this object contains a zero value."
::= { ciscoBfdSessPerfEntry 7 }
ciscoBfdSessPerfPktInHC OBJECT-TYPE
SYNTAX --?? syntax is not convertable to SMIv1
Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value represents the total number of BFD messages
received for this BFD session. It MUST be equal to the
least significant 32 bits of ciscoBfdSessPerfPktIn
if ciscoBfdSessPerfPktInHC is supported according to
the rules spelled out in RFC2863."
::= { ciscoBfdSessPerfEntry 8 }
ciscoBfdSessPerfPktOutHC OBJECT-TYPE
SYNTAX --?? syntax is not convertable to SMIv1
Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value represents the total number of
total number of BFD messages transmitted for this
BFD session. It MUST be equal to the
least significant 32 bits of ciscoBfdSessPerfPktIn
if ciscoBfdSessPerfPktOutHC is supported according to
the rules spelled out in RFC2863."
::= { ciscoBfdSessPerfEntry 9 }
ciscoBfdSessMapTable OBJECT-TYPE
SYNTAX SEQUENCE OF CiscoBfdSessMapEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The BFD Session Mapping Table maps the complex
indexing of the BFD sessions to the flat
CiscoBfdSessIndexTC used in the ciscoBfdSessTable."
REFERENCE
"BFD Version 0 (draft-katz-ward-bfd-02.txt)"
::= { ciscoBfdObjects 4 }
ciscoBfdSessMapEntry OBJECT-TYPE
SYNTAX CiscoBfdSessMapEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The BFD Session Entry describes BFD session
that is mapped to this index."
INDEX { ciscoBfdSessApplicationId, ciscoBfdSessDiscriminator, ciscoBfdSessAddrType, ciscoBfdSessAddr }
::= { ciscoBfdSessMapTable 1 }
CiscoBfdSessMapEntry ::= SEQUENCE {
ciscoBfdSessMapBfdIndex CiscoBfdSessIndexTC
}
ciscoBfdSessMapBfdIndex OBJECT-TYPE
SYNTAX CiscoBfdSessIndexTC
-- Rsyntax Gauge(1..4294967295)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the CiscoBfdSessIndexTC referred to
by the indices of this row. In essence, a mapping is
provided between these indices and the ciscoBfdSessTable."
::= { ciscoBfdSessMapEntry 1 }
ciscoBfdSessDiscMapTable OBJECT-TYPE
SYNTAX SEQUENCE OF CiscoBfdSessDiscMapEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The BFD Session Discriminator Mapping Table maps a
local discriminator value to associated BFD sessions'
CiscoBfdSessIndexTC used in the ciscoBfdSessTable."
REFERENCE
"BFD Version 0 (draft-katz-ward-bfd-02.txt)"
::= { ciscoBfdObjects 5 }
ciscoBfdSessDiscMapEntry OBJECT-TYPE
SYNTAX CiscoBfdSessDiscMapEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each row contains a mapping between a local discriminator
value to an entry in ciscoBfdSessTable."
INDEX { ciscoBfdSessDiscriminator }
::= { ciscoBfdSessDiscMapTable 1 }
CiscoBfdSessDiscMapEntry ::= SEQUENCE {
ciscoBfdSessDiscMapIndex CiscoBfdSessIndexTC
}
ciscoBfdSessDiscMapIndex OBJECT-TYPE
SYNTAX CiscoBfdSessIndexTC
-- Rsyntax Gauge(1..4294967295)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the CiscoBfdSessIndexTC referred to by
the index of this row. In essence, a mapping is
provided between this index and the ciscoBfdSessTable."
::= { ciscoBfdSessDiscMapEntry 1 }
ciscoBfdSessIpMapTable OBJECT-TYPE
SYNTAX SEQUENCE OF CiscoBfdSessIpMapEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The BFD Session IP Mapping Table maps given
ciscoBfdSessInterface, ciscoBfdSessAddrType, and
ciscoBbfdSessAddr to an associated BFD sessions'
CiscoBfdSessIndexTC used in the ciscoBfdSessTable.
This table SHOULD contains those BFD sessions are
of IP type: singleHop(1) and multiHop(2)."
REFERENCE
"BFD Version 0 (draft-katz-ward-bfd-02.txt)"
::= { ciscoBfdObjects 6 }
ciscoBfdSessIpMapEntry OBJECT-TYPE
SYNTAX CiscoBfdSessIpMapEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each row contains a mapping between ciscoBfdSessInterface,
ciscoBfdSessAddrType and ciscoBfdSessAddr values to an
entry in ciscoBfdSessTable."
INDEX { ciscoBfdSessInterface, ciscoBfdSessAddrType, ciscoBfdSessAddr }
::= { ciscoBfdSessIpMapTable 1 }
CiscoBfdSessIpMapEntry ::= SEQUENCE {
ciscoBfdSessIpMapIndex CiscoBfdSessIndexTC
}
ciscoBfdSessIpMapIndex OBJECT-TYPE
SYNTAX CiscoBfdSessIndexTC
-- Rsyntax Gauge(1..4294967295)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the CiscoBfdSessIndexTC referred to by
the indices of this row. In essence, a mapping is
provided between these indices and an entry in ciscoBfdSessTable."
::= { ciscoBfdSessIpMapEntry 1 }
ciscoBfdSessNotificationsEnable OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"If this object is set to true(1), then it enables
the emission of ciscoBfdSessUp and ciscoBfdSessDown
notifications; otherwise these notifications are not
emitted."
REFERENCE
"See also RFC3413 for explanation that
notifications are under the ultimate control of the
MIB modules in this document."
DEFVAL { false }
::= { ciscoBfdScalarObjects 4 }
ciscoBfdSessUp TRAP-TYPE
-- Reverse mappable trap
ENTERPRISE ciscoIetfBfdMIB
VARIABLES {
ciscoBfdSessDiag, ciscoBfdSessDiag }
-- Status
-- mandatory
DESCRIPTION
"This notification is generated when the
ciscoBfdSessState object for one or more contiguous
entries in ciscoBfdSessTable are about to enter the up(4)
state from some other state. The included values of
ciscoBfdSessDiag MUST both be set equal to this
new state (i.e: up(4)). The two instances of
ciscoBfdSessDiag in this notification indicate the range
of indexes that are affected. Note that all the indexes
of the two ends of the range can be derived from the
instance identifiers of these two objects. For the
cases where a contiguous range of sessions
have transitioned into the up(4) state at roughly
the same time, the device SHOULD issue a single
notification for each range of contiguous indexes in
an effort to minimize the emission of a large number
of notifications. If a notification has to be
issued for just a single ciscoBfdSessEntry, then
the instance identifier (and values) of the two
ciscoBfdSessDiag objects MUST be the identical."
::= 1
ciscoBfdSessDown TRAP-TYPE
-- Reverse mappable trap
ENTERPRISE ciscoIetfBfdMIB
VARIABLES {
ciscoBfdSessDiag, ciscoBfdSessDiag }
-- Status
-- mandatory
DESCRIPTION
"This notification is generated when the
ciscoBfdSessState object for one or more contiguous
entries in ciscoBfdSessTable are about to enter the down(2)
or adminDown(1) states from some other state. The included
values of ciscoBfdSessDiag MUST both be set equal to this
new state (i.e: down(2) or adminDown(1)). The two instances
of ciscoBfdSessDiag in this notification indicate the range
of indexes that are affected. Note that all the indexes
of the two ends of the range can be derived from the
instance identifiers of these two objects. For
cases where a contiguous range of sessions
have transitioned into the down(2) or adminDown(1) states
at roughly the same time, the device SHOULD issue a single
notification for each range of contiguous indexes in
an effort to minimize the emission of a large number
of notifications. If a notification has to be
issued for just a single ciscoBfdSessEntry, then
the instance identifier (and values) of the two
ciscoBfdSessDiag objects MUST be the identical."
::= 2
ciscoBfdSessionGroup OBJECT IDENTIFIER ::= { ciscoBfdGroups 1 }
-- OBJECT-GROUP
-- Status
-- deprecated
-- Descr
-- Collection of objects needed for BFD sessions.
-- objects
-- ciscoBfdSessNotificationsEnable, ciscoBfdAdminStatus,
-- ciscoBfdVersionNumber, ciscoBfdSessApplicationId,
-- ciscoBfdSessDiscriminator, ciscoBfdSessAddrType,
-- ciscoBfdSessAddr, ciscoBfdSessRemoteDiscr,
-- ciscoBfdSessUdpPort, ciscoBfdSessState,
-- ciscoBfdSessRemoteHeardFlag, ciscoBfdSessDiag,
-- ciscoBfdSessOperMode, ciscoBfdSessDemandModeDesiredFlag,
-- ciscoBfdSessEchoFuncModeDesiredFlag,
-- ciscoBfdSessControlPlanIndepFlag,
-- ciscoBfdSessDesiredMinTxInterval,
-- ciscoBfdSessReqMinRxInterval,
-- ciscoBfdSessReqMinEchoRxInterval, ciscoBfdSessDetectMult,
-- ciscoBfdSessStorType, ciscoBfdSessRowStatus,
-- ciscoBfdSessMapBfdIndex, ciscoBfdSessAuthPresFlag,
-- ciscoBfdSessAuthenticationType
ciscoBfdSessionPerfGroup OBJECT IDENTIFIER ::= { ciscoBfdGroups 2 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- Collection of objects needed to monitor the
-- performance of BFD sessions.
-- objects
-- ciscoBfdSessPerfPktIn, ciscoBfdSessPerfPktOut,
-- ciscoBfdSessUpTime, ciscoBfdSessPerfLastSessDownTime,
-- ciscoBfdSessPerfLastCommLostDiag, ciscoBfdSessPerfSessUpCount,
-- ciscoBfdSessPerfDiscTime
ciscoBfdSessionPerfHCGroup OBJECT IDENTIFIER ::= { ciscoBfdGroups 3 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- Collection of objects needed to monitor the
-- performance of BFD sessions for which the
-- values of ciscoBfdSessPerfPktIn, ciscoBfdSessPerfPktOut
-- wrap around too quickly.
-- objects
-- ciscoBfdSessPerfPktInHC, ciscoBfdSessPerfPktOutHC
ciscoBfdSession0304Group OBJECT IDENTIFIER ::= { ciscoBfdGroups 5 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- Collection of objects needed for BFD sessions for both
-- draft-ietf-bfd-mib-03.txt and draft-ietf-bfd-mib-04.txt.
-- objects
-- ciscoBfdSessNotificationsEnable, ciscoBfdAdminStatus,
-- ciscoBfdSessDiscriminator, ciscoBfdSessAddrType,
-- ciscoBfdSessAddr, ciscoBfdSessRemoteDiscr,
-- ciscoBfdSessUdpPort, ciscoBfdSessState,
-- ciscoBfdSessRemoteHeardFlag, ciscoBfdSessDiag,
-- ciscoBfdSessOperMode, ciscoBfdSessDemandModeDesiredFlag,
-- ciscoBfdSessEchoFuncModeDesiredFlag,
-- ciscoBfdSessControlPlanIndepFlag,
-- ciscoBfdSessDesiredMinTxInterval,
-- ciscoBfdSessReqMinRxInterval,
-- ciscoBfdSessReqMinEchoRxInterval, ciscoBfdSessDetectMult,
-- ciscoBfdSessStorType, ciscoBfdSessRowStatus,
-- ciscoBfdSessAuthPresFlag, ciscoBfdSessAuthenticationType
ciscoBfdSession03Group OBJECT IDENTIFIER ::= { ciscoBfdGroups 6 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- Collection of objects needed for BFD sessions to support
-- draft-ietf-bfd-mib-03.txt.
-- objects
-- ciscoBfdVersionNumber, ciscoBfdSessApplicationId,
-- ciscoBfdSessMapBfdIndex
ciscoBfdSession04Group OBJECT IDENTIFIER ::= { ciscoBfdGroups 7 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- Collection of objects needed for BFD sessions to support
-- draft-ietf-bfd-mib-04.txt.
-- objects
-- ciscoBfdSessVersionNumber, ciscoBfdSessType,