-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathCISCO-SP-MIB-V1SMI.my
5701 lines (5266 loc) · 168 KB
/
CISCO-SP-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 20-Jan-2006 11:53:32, by
-- SMICng version 2.2.11-beta(PRO)(Solaris), January 20, 2001. Enterprise key cisco.com
CISCO-SP-MIB DEFINITIONS ::= BEGIN
-- From file: "CISCO-SP-MIB.my"
-- Compile options "4 7 F H N O W 03 06 0B 0G 0N 0T"
IMPORTS
InterfaceIndexOrZero
FROM CISCO-TC
DisplayString, TimeStamp, TruthValue
FROM SNMPv2-TC-v1
ciscoExperiment
FROM CISCO-SMI
Counter, Gauge, TimeTicks
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
TRAP-TYPE
FROM RFC-1215;
ciscoSpMIB OBJECT IDENTIFIER ::= { ciscoExperiment 73 }
-- MODULE-IDENTITY
-- LastUpdated
-- 200601160000Z
-- OrgName
-- Cisco Systems, Inc.
-- ContactInfo
-- Cisco Systems, Inc
-- Customer Service
--
-- Postal: 170 W. Tasman Drive
-- San Jose, CA 95134
-- USA
--
-- Tel: +1 800 553-NETS
--
-- E-mail: [email protected]
-- Descr
-- The MIB for managing the SS7 Signalling Point (SP)
-- implemented in the Cisco IOS SS7 offload product. The
-- relevant ITU documents describing this technology is
-- the ITU Q series, including ITU Q.700: Introduction to
-- CCITT Signalling System No. 7 and ITU Q.701 Functional
-- description of the message transfer part (MTP) of
-- Signalling System No. 7.
--
-- This MIB models the SP as follows:
--
-- The SP is associated with one or more point codes.
-- Each pointcode is associated with:
-- an ss7 variant, timers, and linksets.
--
-- Linksets contain:
-- destination point code
-- linkset byte/packet statistics,
-- accounting information per DPC and OPC
-- violation accounting information per DPC and OPC
-- links,
-- reference to incoming and outgoing ACL
-- reference to a routing table for each SS7 packet type
--
-- Links contain:
-- timers, and byte/packet statistics.
--
-- The figure below provides a diagrammatic representation
-- of the relationships. Each box may be replicated
-- providing multiple instances of the object.
--
-- '===>' indicates that the object to the left contains
-- a reference to the object to the right.
--
-- '###>' indicates that the object to the left contains
-- an instance of the object to the right.
--
-- The down arrow indicates that the object being pointed
-- to contains snmp indices of the objects above it.
--
--
-- ________________
-- | |
-- | Sp |###> point code, timers
-- |________________|
-- |
-- V
-- ________________
-- | |
-- | |===> Accounting
-- | Linkset |===> Violation Accounting
-- | |===> Incoming ACL
-- | |===> Outgoing ACL
-- |________________|===> Routing Tables.
-- |
-- V
-- ________________
-- | Link |###> timers
-- |________________|===> statistics
--
--
--
-- RevDate
-- 200601160000Z
-- RevDescr
-- The CISCO-SP-MIB is obsolete and has been replaced
-- by the combination of the CISCO-ITP-TC-MIB and
-- CISCO-ITP-GSP-MIB.
--
-- Updated the mib to import Unsigned32 from SNMPv2-SMI
-- instead of CISCO-TC.
-- Modified the syntax of CSpRouteTableName and
-- CSpLinksetId to OCTET STRING.
-- Changed the order of objects in cSpAccountingTableEntry
-- SEQUENCE.
-- Added the notification group ciscoSpNotificationsGroup
-- and included it in the MODULE-COMPLIANCE as optional.
-- RevDate
-- 200106070000Z
-- RevDescr
-- Initial version of this MIB module.
ciscoSpMIBObjects OBJECT IDENTIFIER ::= { ciscoSpMIB 1 }
cSpScalars OBJECT IDENTIFIER ::= { ciscoSpMIBObjects 1 }
cSpLinkset OBJECT IDENTIFIER ::= { ciscoSpMIBObjects 2 }
cSpLink OBJECT IDENTIFIER ::= { ciscoSpMIBObjects 3 }
cSpRoute OBJECT IDENTIFIER ::= { ciscoSpMIBObjects 4 }
cSpAccessControlList OBJECT IDENTIFIER ::= { ciscoSpMIBObjects 5 }
cSpAccounting OBJECT IDENTIFIER ::= { ciscoSpMIBObjects 6 }
cSpNotificationsEnable OBJECT IDENTIFIER ::= { ciscoSpMIBObjects 7 }
ciscoSpMIBNotificationPrefix OBJECT IDENTIFIER ::= { ciscoSpMIB 2 }
ciscoSpMIBNotifications OBJECT IDENTIFIER ::= { ciscoSpMIBNotificationPrefix 0 }
ciscoSpMIBConformance OBJECT IDENTIFIER ::= { ciscoSpMIB 3 }
ciscoSpMIBCompliances OBJECT IDENTIFIER ::= { ciscoSpMIBConformance 1 }
ciscoSpMIBGroups OBJECT IDENTIFIER ::= { ciscoSpMIBConformance 2 }
CSpPointCode ::= Gauge(0..16777216)
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The SS7 network node address as specified in the
-- International Telecommunication Union standard Q.708:
-- Specifications of Signalling System No. 7 - Numbering
-- of International Signalling Point Codes, and by ANSI
-- T1.111.8 Numbering of Signalling Point Codes.
CSpSs7Variant ::= INTEGER {
ansi(1),
itu(2)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The list of SS7 variants.
-- 'ANSI' : The ANSI variant of the SS7 specification.
-- 'ITU' : The ITU variant of the SS7 specification.
CSpLinkType ::= INTEGER {
other(1),
serial(2),
sctpIp(3)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The link types.
-- 'other' : This link is of some type not listed below.
-- 'serial' : This link is an serial link transporting
-- SS7 traffic.
-- 'sctpIp' : This a SCTP/IP link.
CSpLinkSLC ::= Gauge(0..15)
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The Signalling Link Code. This is the link identifier
-- within a linkset.
CSpLinksetId ::= OCTET STRING(SIZE(1..19))
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The configured name associated with an Sp Linkset.
CSpAclAction ::= INTEGER {
accept(1),
discard(2)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The list of possible actions to be performed on a
-- packet who's point code matches an access control.
-- 'accept' : The matching packet is accepted for
-- further processing.
-- 'discard' : The matching packet is to be discarded
-- without any further processing on this
-- packet.
CSpOsiState ::= INTEGER {
active(1),
inactive(2),
inhibited(3),
uninhibited(4),
shut(5),
noshut(6)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The list of possible link/linkset statuses.
-- 'active' : Traffic may flow over this link/linkset
-- 'inactive' : Traffic cannot flow over this
-- link/linkset.
-- 'inhibited' : Traffic cannot flow over this
-- link/linkset. This state was reached
-- as a result of administrative action.
-- 'uninhibited': The link/linkset is available at the
-- MTP3 layer.
-- 'shut ': The link/linkset has been forced to an
-- unavailable state by an administrative
-- action.
-- 'noshut ': The link/linkset has been removed from
-- an unavailable state by an
-- administrative action.
CSpAclId ::= Gauge(0..2999)
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- An numeric Identifier used to specify and access list
-- used to permit and deny packets based on MTP3
-- information.
CSpRouteTableName ::= OCTET STRING(SIZE(1..19))
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The configured name associated with an SP Route
-- Table.
CSpAclSi ::= Gauge(0..15)
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The list of possible Service Indicator values. This
-- identifies the type of SS7 packet.
--
-- The service indicator codes for the international
-- signalling network are allocated as follows:
--
-- 0 Signalling network management messages (SNMM)
-- 1 Signalling network testing and maintenance
-- messages (SNTM)
-- 2 Spare 2
-- 3 SCCP
-- 4 Telephone User Part (TUP)
-- 5 ISDN User Part (ISUP)
-- 6 Data User Part, call and circuit-related
-- messages (DUPC)
-- 7 Data User Part, facility registration and
-- cancellation messages (DUPF)
-- 8 Reserved for MTP Testing User Part (MTUP)
-- 9 Broadband ISDN User Part (BISUP)
-- 10 Satellite ISDN User Part (SISUP)
-- 11 Spare
-- 12 Spare
-- 13 Spare
-- 14 Spare
-- 15 Spare
-- Reference: ITU Q.704 Signalling network functions
-- and messages section 14.2.1 Service
-- indicator.
CSpRouteStatus ::= INTEGER {
available(1),
restricted(2),
unavailable(3)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The status of the route from the perspective of the
-- SP.
-- 'available' : Route is available for routing of
-- packets.
-- 'restricted' : Route has been restricted from
-- routing.
-- 'unavailable' : Route is unavailable for routing of
-- packets.
cSpSs7Variant OBJECT-TYPE
SYNTAX CSpSs7Variant
-- Rsyntax INTEGER {
-- ansi(1),
-- itu(2)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The SS7 variant implemented in this SP."
::= { cSpScalars 1 }
cSpPointCode OBJECT-TYPE
SYNTAX CSpPointCode
-- Rsyntax Gauge(0..16777216)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The point code for this SP."
::= { cSpScalars 2 }
cSpMtp2T01 OBJECT-TYPE
SYNTAX Gauge
-- Units
-- milli-seconds
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Alignment ready timer. The default and valid range is
dependant on the value of cSpSs7Variant. The ranges
are defined in the following references."
REFERENCE
"ITU Q.703 Signalling Link.
ANSI T1.111.3 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)."
::= { cSpScalars 3 }
cSpMtp2T02 OBJECT-TYPE
SYNTAX Gauge
-- Units
-- 100 milli-seconds
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Not aligned timer. The default and valid range is
dependant on the value of cSpSs7Variant.
The ranges are defined in the following references.
This timer is only applicable if cSpLinkType
is serial. A get on this object will return a
zero if cSpLinkType is not serial."
REFERENCE
"ITU Q.703 Signalling Link.
ANSI T1.111.3 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)."
::= { cSpScalars 4 }
cSpMtp2T03 OBJECT-TYPE
SYNTAX Gauge
-- Units
-- milli-seconds
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Aligned timer. The default and valid range is
dependant on the value of cSpSs7Variant. The ranges
are defined in the following references."
REFERENCE
"ITU Q.703 Signalling Link.
ANSI T1.111.3 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)."
::= { cSpScalars 5 }
cSpMtp2T4N OBJECT-TYPE
SYNTAX Gauge
-- Units
-- milli-seconds
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Proving period timer normal timer. The default and
valid range is dependant on the value of
cSpSs7Variant. The ranges are defined in the
following references. "
REFERENCE
"ITU Q.703 Signalling Link.
ANSI T1.111.3 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)."
::= { cSpScalars 6 }
cSpMtp2T4E OBJECT-TYPE
SYNTAX Gauge
-- Units
-- milli-seconds
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Proving period timer emergency timer. The default and
valid range is dependant on the value of
cSpSs7Variant. The ranges are defined in the
following references."
REFERENCE
"ITU Q.703 Signalling Link.
ANSI T1.111.3 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)."
::= { cSpScalars 7 }
cSpMtp2T05 OBJECT-TYPE
SYNTAX Gauge
-- Units
-- milli-seconds
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Sending SIB timer. The default and valid range is
dependant on the value of cSpSs7Variant.
The ranges are defined in the following references."
REFERENCE
"ITU Q.703 Signalling Link.
ANSI T1.111.3 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)."
::= { cSpScalars 8 }
cSpMtp2T06 OBJECT-TYPE
SYNTAX Gauge
-- Units
-- milli-seconds.
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Remote congestion timer. The default and valid range is
dependant on the value of cSpSs7Variant.
The ranges are defined in the following references."
REFERENCE
"ITU Q.703 Signalling Link.
ANSI T1.111.3 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)."
::= { cSpScalars 9 }
cSpMtp2T07 OBJECT-TYPE
SYNTAX Gauge
-- Units
-- milli-seconds.
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Excessive delay of acknowledgement timer. The default
and valid range is dependant on the value of
cSpSs7Variant. The ranges are defined in the following
references."
REFERENCE
"ITU Q.703 Signalling Link.
ANSI T1.111.3 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)."
::= { cSpScalars 10 }
cSpMtp2T08 OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Interval timer for error interval monitor."
REFERENCE
"ITU Q.703 Signalling Link.
ANSI T1.111.3 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)."
::= { cSpScalars 11 }
cSpMtp3T01 OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Delay to avoid message mis-sequencing on changeover."
REFERENCE
"ITU Q.704 Signalling network functions and messages.
ANSI T1.111 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)."
::= { cSpScalars 12 }
cSpMtp3T02 OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Waiting for changeover acknowledgement."
REFERENCE
"ITU Q.704 Signalling network functions and messages.
ANSI T1.111 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)."
::= { cSpScalars 13 }
cSpMtp3T03 OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Time controlled diversion-delay to avoid
mis-sequencing on change back."
REFERENCE
"ITU Q.704 Signalling network functions and messages.
ANSI T1.111 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)."
::= { cSpScalars 14 }
cSpMtp3T04 OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Waiting for change back acknowledgement (first
attempt)."
REFERENCE
"ITU Q.704 Signalling network functions and messages.
ANSI T1.111 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)."
::= { cSpScalars 15 }
cSpMtp3T05 OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Waiting for change back acknowledgement (second
attempt)."
REFERENCE
"ITU Q.704 Signalling network functions and messages.
ANSI T1.111 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)."
::= { cSpScalars 16 }
cSpMtp3T06 OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Delay to avoid message mis-sequencing on controlled
rerouting."
REFERENCE
"ITU Q.704 Signalling network functions and messages.
ANSI T1.111 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)."
::= { cSpScalars 17 }
cSpMtp3T07 OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Waiting for signalling data link connection
acknowledgement."
REFERENCE
"ITU Q.704 Signalling network functions and messages.
ANSI T1.111 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)."
::= { cSpScalars 18 }
cSpMtp3T08 OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Transfer prohibited inhibition timer (transient
solution)."
REFERENCE
"ITU Q.704 Signalling network functions and messages.
ANSI T1.111 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)."
::= { cSpScalars 19 }
cSpMtp3T10 OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Waiting to repeat signalling routeset test message."
REFERENCE
"ITU Q.704 Signalling network functions and messages.
ANSI T1.111 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)."
::= { cSpScalars 20 }
cSpMtp3T11 OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Transfer restricted timer. (This is one way of
implementing the function described in 13.4/Q.704 and
mainly intended to simplify SPs.)."
REFERENCE
"ITU Q.704 Signalling network functions and messages.
ANSI T1.111 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)."
::= { cSpScalars 21 }
cSpMtp3T12 OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Waiting for uninhibit acknowledgement."
REFERENCE
"ITU Q.704 Signalling network functions and messages.
ANSI T1.111 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)."
::= { cSpScalars 22 }
cSpMtp3T13 OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Waiting for force uninhibit."
REFERENCE
"ITU Q.704 Signalling network functions and messages.
ANSI T1.111 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)."
::= { cSpScalars 23 }
cSpMtp3T14 OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Waiting for inhibition acknowledgement."
REFERENCE
"ITU Q.704 Signalling network functions and messages.
ANSI T1.111 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)."
::= { cSpScalars 24 }
cSpMtp3T15 OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Waiting to start signalling routeset congestion
test."
REFERENCE
"ITU Q.704 Signalling network functions and messages.
ANSI T1.111 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)."
::= { cSpScalars 25 }
cSpMtp3T16 OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Waiting for routeset congestion status update."
REFERENCE
"ITU Q.704 Signalling network functions and messages.
ANSI T1.111 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)."
::= { cSpScalars 26 }
cSpMtp3T17 OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Delay to avoid oscillation of initial alignment
failure and link restart."
REFERENCE
"ITU Q.704 Signalling network functions and messages.
ANSI T1.111 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)."
::= { cSpScalars 27 }
cSpMtp3T18 OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Timer within a signalling point whose MTP restarts,
for supervising link and linkset activation as well as
the receipt of routing information."
REFERENCE
"ITU Q.704 Signalling network functions and messages.
ANSI T1.111 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)."
::= { cSpScalars 28 }
cSpMtp3T19 OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Supervision timer during MTP restart to avoid
possible ping-pong of TFP, TFR2) and TRA messages."
REFERENCE
"ITU Q.704 Signalling network functions and messages.
ANSI T1.111 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)."
::= { cSpScalars 29 }
cSpMtp3T20 OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Overall MTP restart timer at the signalling point
whose MTP restarts. Overall MTP restart timer at a
signalling point adjacent to one whose MTP restarts."
REFERENCE
"ITU Q.704 Signalling network functions and messages.
ANSI T1.111 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)."
::= { cSpScalars 30 }
cSpMtp3T21 OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Overall MTP restart timer at a signalling point
adjacent to one whose MTP restarts."
REFERENCE
"ITU Q.704 Signalling network functions and messages.
ANSI T1.111 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)."
::= { cSpScalars 31 }
cSpMtp3T22 OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Local inhibit test timer."
REFERENCE
"ITU Q.704 Signalling network functions and messages.
ANSI T1.111 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)."
::= { cSpScalars 32 }
cSpMtp3T23 OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Remote inhibit test timer."
REFERENCE
"ITU Q.704 Signalling network functions and messages.
ANSI T1.111 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)."
::= { cSpScalars 33 }
cSpMtp3T24 OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Stabilizing timer after removal of local processor
outage, used in LPO latching to RPO (national option)"
REFERENCE
"ITU Q.704 Signalling network functions and messages.
ANSI T1.111 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)."
::= { cSpScalars 34 }
cSpMtp3T25 OBJECT-TYPE
SYNTAX Gauge
-- Units
-- seconds.
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Timer at Signalling Point (SP) adjacent to restarting
SP, waiting for traffic restart allowed message."
REFERENCE
"ANSI T1.111 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)"
::= { cSpScalars 35 }
cSpMtp3T26 OBJECT-TYPE
SYNTAX Gauge
-- Units
-- seconds.
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Timer at restarting SP waiting to repeat traffic
restart waiting message."
REFERENCE
"ANSI T1.111 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)"
::= { cSpScalars 36 }
cSpMtp3T27 OBJECT-TYPE
SYNTAX Gauge
-- Units
-- seconds.
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Minimum duration of unavailability for full restart."
REFERENCE
"ANSI T1.111 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)"
::= { cSpScalars 37 }
cSpMtp3T28 OBJECT-TYPE
SYNTAX Gauge
-- Units
-- seconds.
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Timer at SP adjacent to restarting SP waiting for
traffic restart waiting message."
REFERENCE
"ANSI T1.111 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)"
::= { cSpScalars 38 }
cSpMtp3T29 OBJECT-TYPE
SYNTAX Gauge
-- Units
-- seconds.
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Timer started when TRA sent in response to unexpected
TRA or TRW."
REFERENCE
"ANSI T1.111 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)"
::= { cSpScalars 39 }
cSpMtp3T30 OBJECT-TYPE
SYNTAX Gauge
-- Units
-- seconds.
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Timer to limit sending of TFPs and TFRs in response
to unexpected TRA or TRW."
REFERENCE
"ANSI T1.111 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)"
::= { cSpScalars 40 }
cSpMtp3T31 OBJECT-TYPE
SYNTAX Gauge
-- Units
-- seconds.
ACCESS read-only
STATUS mandatory
DESCRIPTION
"False link congestion detection timer."
REFERENCE
"ANSI T1.111 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)"
::= { cSpScalars 41 }
cSpMtp3T32 OBJECT-TYPE
SYNTAX Gauge
-- Units
-- seconds.
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Link oscillation timer - Procedure A."
REFERENCE
"ANSI T1.111 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)"
::= { cSpScalars 42 }
cSpMtp3T33 OBJECT-TYPE
SYNTAX Gauge
-- Units
-- seconds.
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Probation timer for link oscillation - Procedure B."
REFERENCE
"ANSI T1.111 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)"
::= { cSpScalars 43 }
cSpMtp3T34 OBJECT-TYPE
SYNTAX Gauge
-- Units
-- seconds.
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Suspension timer for link oscillation - Procedure B."
REFERENCE
"ANSI T1.111 Telecommunications - Signaling system
No. 7 (SS7)-Message Transfer Part (MTP)"
::= { cSpScalars 44 }
cSpLinksetTable OBJECT-TYPE
SYNTAX SEQUENCE OF CSpLinksetTableEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table of linksets for this SP. "
::= { cSpLinkset 1 }
cSpLinksetTableEntry OBJECT-TYPE
SYNTAX CSpLinksetTableEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of SP linkset attributes for a particular SP
entity."
INDEX { cSpLinksetName }
::= { cSpLinksetTable 1 }
CSpLinksetTableEntry ::= SEQUENCE {
cSpLinksetName CSpLinksetId,
cSpLinksetAdjacentPointCode CSpPointCode,
cSpLinksetState CSpOsiState,
cSpLinksetInboundAcl CSpAclId,
cSpLinksetOutboundAcl CSpAclId,
cSpLinksetSnmmRouteTableName CSpRouteTableName,
cSpLinksetSntmRouteTableName CSpRouteTableName,
cSpLinksetSpare2RouteTableName CSpRouteTableName,
cSpLinksetSccpRouteTableName CSpRouteTableName,
cSpLinksetTupRouteTableName CSpRouteTableName,
cSpLinksetIsupRouteTableName CSpRouteTableName,
cSpLinksetDupcRouteTableName CSpRouteTableName,
cSpLinksetDupfRouteTableName CSpRouteTableName,
cSpLinksetMtupRouteTableName CSpRouteTableName,
cSpLinksetBisupRouteTableName CSpRouteTableName,
cSpLinksetSisupRouteTableName CSpRouteTableName,
cSpLinksetSpare11RouteTableName CSpRouteTableName,
cSpLinksetSpare12RouteTableName CSpRouteTableName,
cSpLinksetSpare13RouteTableName CSpRouteTableName,
cSpLinksetSpare14RouteTableName CSpRouteTableName,
cSpLinksetSpare15RouteTableName CSpRouteTableName,
cSpLinksetAccountingEnabled TruthValue,
cSpLinksetNumLinks Gauge,
cSpLinksetPacketsSent Counter,
cSpLinksetHCPacketsSent Counter,
cSpLinksetPacketsRcvd Counter,
cSpLinksetHCPacketsRcvd Counter,
cSpLinksetBytesSent Counter,
cSpLinksetHCBytesSent Counter,
cSpLinksetBytesRcvd Counter,
cSpLinksetHCBytesRcvd Counter,
cSpLinksetDurationInService TimeTicks,
cSpLinksetDurationOutService TimeTicks,
cSpLinksetMtp2T01 Gauge,
cSpLinksetMtp2T02 Gauge,
cSpLinksetMtp2T03 Gauge,
cSpLinksetMtp2T4N Gauge,
cSpLinksetMtp2T4E Gauge,
cSpLinksetMtp2T05 Gauge,
cSpLinksetMtp2T06 Gauge,
cSpLinksetMtp2T07 Gauge,
cSpLinksetMtp2T08 Gauge,
cSpLinksetMtp3T01 Gauge,
cSpLinksetMtp3T02 Gauge,
cSpLinksetMtp3T03 Gauge,
cSpLinksetMtp3T04 Gauge,
cSpLinksetMtp3T05 Gauge,
cSpLinksetMtp3T06 Gauge,
cSpLinksetMtp3T07 Gauge,
cSpLinksetMtp3T08 Gauge,
cSpLinksetMtp3T10 Gauge,
cSpLinksetMtp3T11 Gauge,
cSpLinksetMtp3T12 Gauge,
cSpLinksetMtp3T13 Gauge,
cSpLinksetMtp3T14 Gauge,
cSpLinksetMtp3T15 Gauge,
cSpLinksetMtp3T16 Gauge,
cSpLinksetMtp3T17 Gauge,
cSpLinksetMtp3T18 Gauge,
cSpLinksetMtp3T19 Gauge,
cSpLinksetMtp3T20 Gauge,
cSpLinksetMtp3T21 Gauge,
cSpLinksetMtp3T22 Gauge,
cSpLinksetMtp3T23 Gauge,
cSpLinksetMtp3T24 Gauge,
cSpLinksetMtp3T25 Gauge,
cSpLinksetMtp3T26 Gauge,
cSpLinksetMtp3T27 Gauge,
cSpLinksetMtp3T28 Gauge,
cSpLinksetMtp3T29 Gauge,
cSpLinksetMtp3T30 Gauge,
cSpLinksetMtp3T31 Gauge,
cSpLinksetMtp3T32 Gauge,
cSpLinksetMtp3T33 Gauge,
cSpLinksetMtp3T34 Gauge
}
cSpLinksetName OBJECT-TYPE
SYNTAX CSpLinksetId
-- Rsyntax OCTET STRING(SIZE(1..19))
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The name of the linkset."