-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCISCO-RTTMON-MIB
9301 lines (8159 loc) · 352 KB
/
CISCO-RTTMON-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
-- *****************************************************************
-- Response Time Monitor Mib.
--
-- March 1996, Larry Metzger
--
-- Copyright (c) 1995-2008 by cisco Systems, Inc.
-- All rights reserved.
-- *****************************************************************
--
CISCO-RTTMON-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
NOTIFICATION-TYPE,
Integer32,
Counter32,
Gauge32,
TimeTicks
FROM SNMPv2-SMI
NOTIFICATION-GROUP,
MODULE-COMPLIANCE,
OBJECT-GROUP
FROM SNMPv2-CONF
StorageType,
DisplayString,
TruthValue,
RowStatus,
TimeInterval,
TimeStamp
FROM SNMPv2-TC
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
VlanId
FROM Q-BRIDGE-MIB
QosLayer2Cos
FROM CISCO-QOS-PIB-MIB
CfmMepid
FROM CISCO-ETHER-CFM-MIB
RttReset,
RttMonOperation,
RttResponseSense,
RttMonRttType,
RttMplsVpnMonRttType,
RttMplsVpnMonLpdFailureSense,
RttMplsVpnMonLpdGrpStatus,
RttMonProtocol,
RttMonCodecType,
RttMonLSPPingReplyMode,
RttMonTargetAddress,
RttMonReactVar
FROM CISCO-RTTMON-TC-MIB
ciscoMgmt
FROM CISCO-SMI;
ciscoRttMonMIB MODULE-IDENTITY
LAST-UPDATED "200803240000Z"
ORGANIZATION "Cisco IOS"
CONTACT-INFO
"Cisco Systems, Inc.
Customer Service
Postal: 170 W Tasman Drive
San Jose, CA 95134
Tel: +1 800 553 NETS
DESCRIPTION
"This module defines a MIB for Round Trip Time
(RTT) monitoring of a list of targets, using a
variety of protocols.
The table structure overview is a follows (t:
indicates a table, at: indicates an augmented
table, and it: indicates table with the same
indices/control as parent table):
RTTMON MIB
|--- Application Group
| |--- Application Identity
| |--- Application Capabilities
| |--- Application Reset
| |t-- Supported RTT Types
| |--- Truth Value
| |t-- Supported Protocols
| |--- Truth Value
| |t-- Application Preconfigured
| |--- Script Names
| |--- File Paths
| |--- Responder control
| |t-- Control Protocol Authentication
|
|--- Overall Control Group
| |t-- Master Definitions Table
| | |--- Global Configuration Definitions
| | |--- Config for a single RTT Life
| | |it- Echo Specific Configuration
| | |it- Echo Path Hop Address Configuration
| | |it- File I/O Specific Configuration
| | |it- Script Specific Configuration
| | |at- Schedule Configuration
| | |at- Reaction Specific Config
| | |at- Statistics Capture Configuration
| | |at- History Collection Configuration
| | |at- Monitoring Operational State
| | |at- Last RTT operation
| |
| |t-- Reaction Trigger Table
| |at- Reaction Trigger Operational State
|
|--- Statistics Collection Group
| |t-- Statistics Capture Table
| |--- Captured Statistics
| |--- Path Information
| |--- Distribution Capture
| |--- Mean and Deviation Capture
| |it- Statistics Collection Table
| |it- Statistics Totals Table
| |t-- HTTP Stats Table
| |t-- Jitter Stats Table
|
|--- History Collection Group
| |t-- History Collection Table
| |-- Path Information
| |-- Completion Information per operation
|
|--- Latest Operation Group
| |t-- Latest HTTP Oper Table
| |t-- Latest Jitter Oper Table
DEFINITIONS:
conceptual RTT control row -
This is a row in the 'Overall Control
Group'. This row is indexed via the
rttMonCtrlAdminIndex object. This row
is spread across multiple real tables
in the 'Overall Control Group'.
probe -
This is the entity that executes via a
conceptual RTT control row and populates
a conceptual statistics row and a
conceptual history row.
Rtt operation -
This is a single operation performed by
a probe. This operation can be a single
Rtt attempt/completion or a group of Rtt
attempts/completions that produce one
operation table entry.
ARR Protocol Definition:
The format of the RTT Asymmetric Request/Responses
(ARR) protocol is as follows:
The ARR Header (total of 12 octets):
4 octet -> eyecatcher: 'WxYz'
1 octet -> version : 0x01 - protocol version
1 octet -> command : 0x01 - logoff request
0x02 - echo request
0x03 - echo response
0x04 - software version request
0x05 - software version response
2 octet -> sequence number (Network Byte Order)
4 octet -> response data size (Network Byte Order)
The ARR Data:
n octets -> request/response data
: 'AB..ZAB..ZAB..'
For software version request/response the
protocol version octet will contain the version
number of the responder. Thus the sequence
number, etc will not be included.
For snaLU0EchoAppl and snaLU2EchoAppl all character
fields will be in EBCDIC.
The response data should be appended to the
origin request data. This allows data
verification to check the data that flows in
both directions. If the response data size is
smaller than the request data size the original
request data will be truncated.
An example would be:
Request: / Response:
'WxYz' / 'WxYz'
0x01 / 0x01
0x02 / 0x03
0x0001 / 0x0001
0x00000008 / 0x00000008
'ABCDEF' / 'ABCDEFGH'
NOTE: We requested 8 bytes in the response and
the response had 8 bytes. The size of the
request data has no correlation to the
size of the response data.
NOTE: For native RTT request/response (i.e.
ipIcmpecho) operations both the 'Header'
and 'Data' will be included. Only the
'sequence number' in the Header will be
valid.
NOTE: For non-connection oriented protocol the
initial RTT request/response operation will
be preceded with an RTT request/response
operation to the target address to force
path exploration and to prove
connectivity. The History collection table
will contain these responses, but the
Statistics capture table will omit them to
prevent skewed results."
REVISION "200803240000Z"
DESCRIPTION
"- Added nine new objects rttMonLatestJitterOperRTTSumHigh,
rttMonLatestJitterOperRTTSum2High,
rttMonLatestJitterOperOWSumSDHigh,
rttMonLatestJitterOperOWSum2SDHigh,
rttMonLatestJitterOperOWSumDSHigh,
rttMonLatestJitterOperOWSum2DSHigh,
rttMonJitterStatsRTTSumHigh, rttMonJitterStatsOWSumSDHigh,
rttMonJitterStatsOWSumDSHigh.
- Modified the unit and the description of
rttMonLatestRttOperCompletionTime,
rttMonJitterStatsRTTSum, rttMonJitterStatsOWSumSD,
rttMonJitterStatsOWSumDS, rttMonLatestJitterOperRTTSum,
rttMonLatestJitterOperRTTSum2, rttMonLatestJitterOperOWSumSD,
rttMonLatestJitterOperOWSumDS, rttMonLatestJitterOperOWSum2SD,
rttMonLatestJitterOperOWSum2DS."
REVISION "200801060000Z"
DESCRIPTION
"Added a new object rttMonEchoAdminTargetEVC."
REVISION "200612080000Z"
DESCRIPTION
"Added a new object rttMonCtrlAdminGroupName to support the
auto measure project. Group Name will be shown for auto generated
operations."
REVISION "200606080000Z"
DESCRIPTION
"Added a new rttMonRttType named as lspPingPseudowire.
Added an object rttMonEchoAdminLSPVccvID to support lspPingPseudowire.
Change the default value of rttMplsVpnMonTypeLpdScanPeriod
from 1 to 240."
REVISION "200603020000Z"
DESCRIPTION
"Added two new rttMonRttType's ethernetPing and ethernetJitter.
Added four objects rttMonEchoAdminTargetMPID,
rttMonEchoAdminTargetVLAN, rttMonEchoAdminTargetDomainName
and rttMonEchoAdminEthernetCOS in rttMonEchoAdminEntry to
support ethernetPing and ethernetJitter.
Change the default value of rttMplsVpnMonTypeLpdScanPeriod
from 0 to 1.
Modified the range of rttMonApplProbeCapacity and
rttMonApplNumCtrlAdminEntry to 1 .. 2147483647.
Modified the range of rttMonLatestJitterOperMOS,
rttMonJitterStatsMinOfMOS and rttMonJitterStatsMaxOfMOS to
(0|100 .. 500).
Modified the SYNTAX of rttMonCtrlAdminOwner to OCTET STRING
because OwnerString is deprecated."
REVISION "200508110000Z"
DESCRIPTION
"- TEXTUAL Conventions previously defined in the MIB are defined
in CISCO-RTTMON-TC-MIB."
REVISION "200504210000Z"
DESCRIPTION
"- Added new objects given in ciscoCtrlGroupRev4 to
rttMonGrpScheduleAdminTable.
- Changed description of object rttMonHTTPStatsRTTMax."
REVISION "200501040000Z"
DESCRIPTION
"Added two new rttMonRttType's rtp and lspGroup. Added a new
object rttMonApplLpdGrpStatsReset to reset the LPD Group Stats.
Added rttMonLpdGrpStatsTable for supporting LSP Path Discovery.
Added two new notifications rttMonLpdDiscoveryNotification
and rttMonLpdGrpStatusNotification.
Added and modified descriptions of some objects in
rttMplsVpnMonCtrlTable, rttMplsVpnMonTypeTable and
rttMplsVpnMonReactTable for LSP Path Discovery.
Added 6 options in the rttMonReactVar.
Added rttMonEchoAdminSourceVoicePort and
rttMonEchoAdminCallDuration in rttMonEchoAdminTable."
REVISION "200408260000Z"
DESCRIPTION
"Added a table rttMonReactTable, which defines the
the reaction configurations for the probes.
Deprecated the old reaction table rttMonReactAdminTable.
This is replaced by the new table (rttMonReactTable).
Depreacted the notification types
rttMonConnectionChangeNotification
rttMonTimeoutNotification
rttMonThresholdNotification
rttMonVerifyErrorNotification
Added new notification type rttMonNotification.
Added two objects, rttMonGrpScheduleAdminFreqMax
and rttMonGrpScheduleAdminFreqMin to table
rttMonGrpScheduleAdminTable."
REVISION "200405180000Z"
DESCRIPTION
"- Add the following fields for VoIP GK registration delay:
RttMonEchoAdminEntry:
rttMonEchoAdminGKRegistration
- Add the following fields for VoIP Post dial delay:
RttMonOperation:
voipDTAlertRinging(6),
voipDTConnectOK(7)
RttMonRttType:
voip(13)
RttMonProtocol:
voipAppl(31)
RttMonEchoAdminEntry:
rttMonEchoAdminCalledNumber
rttMonEchoAdminDetectPoint
- Add HTTP code 301, 302 as non-error scenario.
- Modify description for rttMonEchoAdminNameServer:
it is applicable for DNS and HTTP probe.
- Modify rttMonCtrlAdminFrequency range
from Integer32 (0..604800) to (1..604800)
- Added following new objects for jitter probe precision
and other improvements:
rttMonEchoAdminPrecision, rttMonEchoAdminProbePakPriority,
rttMonJitterStatsIAJOut, rttMonJitterStatsIAJIn,
rttMonJitterStatsAvgJitter, rttMonJitterStatsAvgJitterSD,
rttMonJitterStatsAvgJitterDS, rttMonJitterStatsUnSyncRTs,
rttMonLatestJitterOperIAJIn, rttMonLatestJitterOperAvgJitter,
rttMonLatestJitterOperAvgSDJ, rttMonLatestJitterOperAvgDSJ,
rttMonLatestJitterOperOWAvgSD, rttMonLatestJitterOperOWAvgDS,
rttMonLatestJitterOperIAJOut, rttMonLatestJitterOperNTPState,
rttMonEchoAdminOWNTPSyncTolAbs,
rttMonEchoAdminOWNTPSyncTolPct,
rttMonEchoAdminOWNTPSyncTolType,
rttMonLatestJitterOperUNSyncRTs"
REVISION "200401200000Z"
DESCRIPTION
"Created new tables for Auto SAA L3 MPLS VPN.
rttMplsVpnMonCtrlTable
rttMplsVpnMonTypeTable
rttMplsVpnMonScheduleTable
rttMplsVpnMonReactTable.
Modified MIB for creation of echo and pathecho operations based
on MPLS LSP Ping."
REVISION "200308110000Z"
DESCRIPTION
"Added 1 object rttMonScheduleAdminRttRecurring to the
rttMonScheduleAdminTable. Added a new table
rttMonGrpScheduleAdminTable for group scheduling. This table
contains the following objects
rttMonGrpScheduleAdminIndex
rttMonGrpScheduleAdminProbes
rttMonGrpScheduleAdminPeriod
rttMonGrpScheduleAdminFrequency
rttMonGrpScheduleAdminLife
rttMonGrpScheduleAdminAgeout
rttMonGrpScheduleAdminStatus.
Modified the default value of rttMonReactTriggerAdminStatus
from createAndGo to no default value. Corrected the Revision
clause specified for the existing and all the earlier
submissions."
REVISION "200305210000Z"
DESCRIPTION
"Range for rttMonLatestJitterOperMOS, rttMonJitterStatsMinOfMOS
and rttMonJitterStatsMaxOfMOS to be changed to 100..500
instead of 1..5. Modifying the range of rttMonApplProbeCapacity
and rttMonApplNumCtrlAdminEntry to 1..10000.Added value other(0)
for RttResponseSense and changed the range of objects
rttMonLatestRttOperApplSpecificSense and
rttMonHistoryCollectionApplSpecificSense to 0..2147483647.
Added range for rttMonApplAuthIndex."
REVISION "200304150000Z"
DESCRIPTION
"Removed default values from
rttMonEchoAdminCodecInterval
rttMonEchoAdminCodecPayload
rttMonEchoAdminCodecNumPackets.
Corrected some typos in the earliar revision."
REVISION "200303120000Z"
DESCRIPTION
"Added 5 objects in the rttMonEchoAdminTable to support
codec configuration.
Added few objects in rttMonLatestJitterOperTable and
rttMonJitterStatsTable for ICPIF (Calculated Planning
Impairment Factor) and MOS (Mean Opinion Score) scores."
REVISION "200011030000Z"
DESCRIPTION
"deprecated 4 objects in the rttMonJitterStatsTable
and added the same objects with a SYNTAX of Gauge32.
Also added the capability to specify a VrfName."
REVISION "9906150000Z"
DESCRIPTION
"created rttMonAuthTable."
::= { ciscoMgmt 42 }
-- Round Trip Time (RTT) Monitor MIB Objects
ciscoRttMonObjects OBJECT IDENTIFIER
::= { ciscoRttMonMIB 1 }
-- Round Trip Time Monitoring Object Groups
rttMonAppl OBJECT IDENTIFIER
::= { ciscoRttMonObjects 1 }
rttMonCtrl OBJECT IDENTIFIER
::= { ciscoRttMonObjects 2 }
rttMonStats OBJECT IDENTIFIER
::= { ciscoRttMonObjects 3 }
rttMonHistory OBJECT IDENTIFIER
::= { ciscoRttMonObjects 4 }
rttMonLatestOper OBJECT IDENTIFIER
::= { ciscoRttMonObjects 5 }
-- GLOBAL RTT MONITORING VARIABLES
rttMonApplVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Round Trip Time monitoring application version
string.
The format will be:
'Version.Release.Patch-Level: Textual-Description'
For example: '1.0.0: Initial RTT Application'"
::= { rttMonAppl 1 }
rttMonApplMaxPacketDataSize OBJECT-TYPE
SYNTAX Integer32 (0..16384 )
UNITS "octets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum size of the data portion an echo
packet supported by this RTT application. This is
the maximum value that can be specified by
(rttMonEchoAdminPktDataRequestSize + ARR Header)
or
(rttMonEchoAdminPktDataResponseSize + ARR Header)
in the rttMonCtrlAdminTable.
This object is undefined for conceptual RTT
control rows when the RttMonRttType object is set
to 'fileIO' or 'script'."
::= { rttMonAppl 2 }
rttMonApplTimeOfLastSet OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The last time at which a set operation occurred
on any of the objects in this MIB. The managing
application can inspect this value in order to
determine whether changes have been made without
retrieving the entire Administration portion of
this MIB.
This object applies to all settable objects in this
MIB, including the 'Reset' objects that could clear
saved history/statistics."
::= { rttMonAppl 3 }
rttMonApplNumCtrlAdminEntry OBJECT-TYPE
SYNTAX Integer32 (1..2147483647 )
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object defines the maximum number of entries
that can be added to the rttMonCtrlAdminTable. It
is calculated at the system init time. The value
is impacted when rttMonApplFreeMemLowWaterMark is changed."
::= { rttMonAppl 4 }
rttMonApplReset OBJECT-TYPE
SYNTAX RttReset
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When set to 'reset' the entire RTT application
goes through a reset sequence, making a best
effort to revert to its startup condition. Any
and all rows in the Overall Control Group will be
immediately deleted, together with any associated
rows in the Statistics Collection Group, and
History Collection Group. All open connections
will also be closed. Finally the
rttMonApplPreConfigedTable will reset (see
rttMonApplPreConfigedReset)."
::= { rttMonAppl 5 }
rttMonApplPreConfigedReset OBJECT-TYPE
SYNTAX RttReset
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"When set to 'reset' the RTT application will
reset the Application Preconfigured MIB section.
This will force the RTT application to delete all
entries in the rttMonApplPreConfigedTable and then
to repopulate the table with the current configuration.
This provides a mechanism to load and unload user
scripts and file paths."
::= { rttMonAppl 6 }
-- Supported RTT Types.
rttMonApplSupportedRttTypesTable OBJECT-TYPE
SYNTAX SEQUENCE OF RttMonApplSupportedRttTypesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of which contains the supported Rtt
Monitor Types.
See the RttMonRttType textual convention for
the definition of each type."
::= { rttMonAppl 7 }
rttMonApplSupportedRttTypesEntry OBJECT-TYPE
SYNTAX RttMonApplSupportedRttTypesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list that presents the valid Rtt Monitor
Types."
INDEX { rttMonApplSupportedRttTypes }
::= { rttMonApplSupportedRttTypesTable 1 }
RttMonApplSupportedRttTypesEntry ::= SEQUENCE {
rttMonApplSupportedRttTypes RttMonRttType,
rttMonApplSupportedRttTypesValid TruthValue
}
rttMonApplSupportedRttTypes OBJECT-TYPE
SYNTAX RttMonRttType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indexes the supported
'RttMonRttType' types."
::= { rttMonApplSupportedRttTypesEntry 1 }
rttMonApplSupportedRttTypesValid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object defines the supported
'RttMonRttType' types."
::= { rttMonApplSupportedRttTypesEntry 2 }
-- Supported Protocols.
rttMonApplSupportedProtocolsTable OBJECT-TYPE
SYNTAX SEQUENCE OF RttMonApplSupportedProtocolsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of which contains the supported Rtt
Monitor Protocols.
See the RttMonProtocol textual convention
for the definition of each protocol."
::= { rttMonAppl 8 }
rttMonApplSupportedProtocolsEntry OBJECT-TYPE
SYNTAX RttMonApplSupportedProtocolsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list that presents the valid Rtt Monitor
Protocols."
INDEX { rttMonApplSupportedProtocols }
::= { rttMonApplSupportedProtocolsTable 1 }
RttMonApplSupportedProtocolsEntry ::= SEQUENCE {
rttMonApplSupportedProtocols RttMonProtocol,
rttMonApplSupportedProtocolsValid TruthValue
}
rttMonApplSupportedProtocols OBJECT-TYPE
SYNTAX RttMonProtocol
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indexes the supported
'RttMonProtocol' protocols."
::= { rttMonApplSupportedProtocolsEntry 1 }
rttMonApplSupportedProtocolsValid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object defines the supported
'RttMonProtocol' protocols."
::= { rttMonApplSupportedProtocolsEntry 2 }
-- Preconfigured Script Names and File IO targets.
rttMonApplPreConfigedTable OBJECT-TYPE
SYNTAX SEQUENCE OF RttMonApplPreConfigedEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"A table of which contains the previously
configured Script Names and File IO targets.
These Script Names and File IO targets are installed
via a different mechanism than this application, and
are specific to each platform."
::= { rttMonAppl 9 }
rttMonApplPreConfigedEntry OBJECT-TYPE
SYNTAX RttMonApplPreConfigedEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"A list of objects that describe the previously
configured Script Names and File IO targets."
INDEX {
rttMonApplPreConfigedType,
rttMonApplPreConfigedName
}
::= { rttMonApplPreConfigedTable 1 }
RttMonApplPreConfigedEntry ::= SEQUENCE {
rttMonApplPreConfigedType INTEGER ,
rttMonApplPreConfigedName DisplayString,
rttMonApplPreConfigedValid TruthValue
}
rttMonApplPreConfigedType OBJECT-TYPE
SYNTAX INTEGER {
filePath(1),
scriptName(2)
}
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"This is the type of value being stored in the
rttMonApplPreConfigedName object."
::= { rttMonApplPreConfigedEntry 2 }
rttMonApplPreConfigedName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"This is either one of the following depending on the
value of the rttMonApplPreConfigedType object:
- The file path to a server. One of these file paths
must be used when defining an entry in the
rttMonFileIOAdminTable table with 'fileIO' as the
value of the rttMonCtrlAdminRttType object.
- The script name to be used when generating RTT
operations. One of these script names must be used
when defining an entry in the rttMonScriptAdminTable
table with 'script' as the value of the
rttMonCtrlAdminRttType object.
NOTE: For script names, command line parameters
can follow these names in the
rttMonScriptAdminTable table."
::= { rttMonApplPreConfigedEntry 3 }
rttMonApplPreConfigedValid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"When this row exists, this value will be 'true'.
This object exists only to create a valid row in this
table."
::= { rttMonApplPreConfigedEntry 4 }
rttMonApplProbeCapacity OBJECT-TYPE
SYNTAX Integer32 (1..2147483647 )
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object defines the number of new probes that can be
configured on a router. The number depends on the value
of rttMonApplFreeMemLowWaterMark, free bytes
available on the router and the system configured
rttMonCtrlAdminEntry number.
Equation:
rttMonApplProbeCapacity =
MIN(((Free_Bytes_on_the_Router - rttMonApplFreeMemLowWaterMark)/
Memory_required_by_each_probe),
rttMonApplNumCtrlAdminEntry - Num_of_Probes_already_configured))"
::= { rttMonAppl 10 }
rttMonApplFreeMemLowWaterMark OBJECT-TYPE
SYNTAX Integer32 (0..2147483647 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object defines the amount of free memory a router must
have in order to configure RTR. If RTR found out that the
memory is falling below this mark, it will not allow new
probes to be configured.
This value should not be set higher (or very close to) than
the free bytes available on the router."
::= { rttMonAppl 11 }
rttMonApplLatestSetError OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An error description for the last error message caused
by set.
Currently, it includes set error caused due to setting
rttMonApplFreeMemLowWaterMark greater than the available
free memory on the router or not enough memory left to
create new probes."
::= { rttMonAppl 12 }
rttMonApplResponder OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable RTR responder on the router."
::= { rttMonAppl 13 }
-- MD5 Authentication for RTR Control Protocol
rttMonApplAuthTable OBJECT-TYPE
SYNTAX SEQUENCE OF RttMonApplAuthEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table which contains the definitions for key-strings
that will be used in authenticating RTR Control Protocol."
::= { rttMonAppl 14 }
rttMonApplAuthEntry OBJECT-TYPE
SYNTAX RttMonApplAuthEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list that presents the valid parameters for Authenticating
RTR Control Protocol."
INDEX { rttMonApplAuthIndex }
::= { rttMonApplAuthTable 1 }
RttMonApplAuthEntry ::= SEQUENCE {
rttMonApplAuthIndex Integer32,
rttMonApplAuthKeyChain DisplayString,
rttMonApplAuthKeyString1 DisplayString,
rttMonApplAuthKeyString2 DisplayString,
rttMonApplAuthKeyString3 DisplayString,
rttMonApplAuthKeyString4 DisplayString,
rttMonApplAuthKeyString5 DisplayString,
rttMonApplAuthStatus RowStatus
}
rttMonApplAuthIndex OBJECT-TYPE
SYNTAX Integer32 (0..2147483647 )
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Uniquely identifies a row in the rttMonApplAuthTable.
This is a pseudo-random number selected by the management
station when creating a row via the rttMonApplAuthStatus
object. If the pseudo-random number is already in use, an
'inconsistentValue' is returned. Currently, only one row
can be created."
::= { rttMonApplAuthEntry 1 }
rttMonApplAuthKeyChain OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..48))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A string which represents the key-chain name. If multiple
key-strings are specified, then the authenticator will
alternate between the specified strings."
::= { rttMonApplAuthEntry 2 }
rttMonApplAuthKeyString1 OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..48))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A string which represents a key-string name whose id is 1."
::= { rttMonApplAuthEntry 3 }
rttMonApplAuthKeyString2 OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..48))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A string which represents a key-string name whose id is 2."
::= { rttMonApplAuthEntry 4 }
rttMonApplAuthKeyString3 OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..48))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A string which represents a key-string name whose id is 3."
::= { rttMonApplAuthEntry 5 }
rttMonApplAuthKeyString4 OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..48))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A string which represents a key-string name whose id is 4."
::= { rttMonApplAuthEntry 6 }
rttMonApplAuthKeyString5 OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..48))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A string which represents a key-string name whose id is 5."
::= { rttMonApplAuthEntry 7 }
rttMonApplAuthStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of the Authentication row."
::= { rttMonApplAuthEntry 8 }
rttMonApplLpdGrpStatsReset OBJECT-TYPE
SYNTAX Integer32 (1..2147483647 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to reset certain objects within the
rttMonLpdGrpStatsTable. When the object is set to value of
an active LPD Group identifier the associated objects will be
reset. The reset objects will be set to a value as specified
in the object's description.
The following objects will not be reset.
- rttMonLpdGrpStatsTargetPE
- rttMonLpdGrpStatsGroupProbeIndex
- rttMonLpdGrpStatsGroupIndex
- rttMonLpdGrpStatsStartTimeIndex."
::= { rttMonAppl 15 }
-- RTT Configuration Definitions
rttMonCtrlAdminTable OBJECT-TYPE
SYNTAX SEQUENCE OF RttMonCtrlAdminEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of Round Trip Time (RTT) monitoring definitions.
The RTT administration control is in multiple tables.
This first table, is used to create a conceptual RTT
control row. The following tables contain objects which
configure scheduling, information gathering, and
notification/trigger generation. All of these tables
will create the same conceptual RTT control row as this
table using this tables' index as their own index.
This table is limited in size by the agent
implementation. The object rttMonApplNumCtrlAdminEntry
will reflect this tables maximum number of entries."
::= { rttMonCtrl 1 }
rttMonCtrlAdminEntry OBJECT-TYPE
SYNTAX RttMonCtrlAdminEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A base list of objects that define a conceptual RTT
control row."
INDEX { rttMonCtrlAdminIndex }
::= { rttMonCtrlAdminTable 1 }
RttMonCtrlAdminEntry ::= SEQUENCE {
rttMonCtrlAdminIndex Integer32,
rttMonCtrlAdminOwner OCTET STRING,
rttMonCtrlAdminTag DisplayString,
rttMonCtrlAdminRttType RttMonRttType,
rttMonCtrlAdminThreshold Integer32,
rttMonCtrlAdminFrequency Integer32,
rttMonCtrlAdminTimeout Integer32,
rttMonCtrlAdminVerifyData TruthValue,
rttMonCtrlAdminStatus RowStatus,
rttMonCtrlAdminNvgen TruthValue,
rttMonCtrlAdminGroupName SnmpAdminString
}
rttMonCtrlAdminIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647 )
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Uniquely identifies a row in the rttMonCtrlAdminTable.
This is a pseudo-random number selected by the management
station when creating a row via the rttMonCtrlAdminStatus
object. If the pseudo-random number is already in use an
'inconsistentValue' return code will be returned when
set operation is attempted."
::= { rttMonCtrlAdminEntry 1 }
rttMonCtrlAdminOwner OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..255))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Identifies the entity that created this table row."
DEFVAL { "" }
::= { rttMonCtrlAdminEntry 2 }
rttMonCtrlAdminTag OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..16))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A string which is used by a managing application to
identify the RTT target. This string is inserted into trap
notifications, but has no other significance to the
agent."
DEFVAL { "" }
::= { rttMonCtrlAdminEntry 3 }
rttMonCtrlAdminRttType OBJECT-TYPE
SYNTAX RttMonRttType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of RTT operation to be performed. This value
must be set in the same PDU or before setting any type
specific configuration.
Note: The RTT operation 'lspGroup' cannot be created via this
control row. It will be created automatically by Auto SAA L3
MPLS VPN when rttMplsVpnMonCtrlLpd is 'true'."
DEFVAL { echo }
::= { rttMonCtrlAdminEntry 4 }
rttMonCtrlAdminThreshold OBJECT-TYPE
SYNTAX Integer32 (0..2147483647 )
UNITS "milliseconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object defines an administrative threshold limit.
If the RTT operation time exceeds this limit and if the
conditions specified in rttMonReactAdminThresholdType or
rttMonHistoryAdminFilter are satisfied, a
threshold is generated."
DEFVAL { 5000 }
::= { rttMonCtrlAdminEntry 5 }
rttMonCtrlAdminFrequency OBJECT-TYPE
SYNTAX Integer32 (0..604800 )
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the duration between initiating each RTT
operation.
This object cannot be set to a value which would be a
shorter duration than rttMonCtrlAdminTimeout.
When the RttMonRttType specifies an operation that is
synchronous in nature, it may happen that the next RTT
operation is blocked by a RTT operation which has not
yet completed. In this case, the value of a counter
(rttMonStatsCollectBusies) in rttMonStatsCaptureTable is
incremented in lieu of initiating a RTT operation, and
the next attempt will occur at the next
rttMonCtrlAdminFrequency expiration.