-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathCISCO-ITP-SCCP-MIB-V1SMI.my
2295 lines (2106 loc) · 67.2 KB
/
CISCO-ITP-SCCP-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 16-May-2003 14:53:03, by
-- SMICng version 2.2.11-beta(PRO)(Solaris), January 20, 2001. Enterprise key cisco.com
CISCO-ITP-SCCP-MIB DEFINITIONS ::= BEGIN
-- From file: "CISCO-ITP-SCCP-MIB.my"
-- Compile options "4 7 F H N W 03 06 0B 0G 0N 0T"
IMPORTS
CItpTcDisplayPC, CItpTcGtaAddr, CItpTcGtaDisplay,
CItpTcGtaDisplayZB, CItpTcNAI, CItpTcNumberingPlan,
CItpTcPointCode, CItpTcSubSystemNumber, CItpTcTranslationType,
CItpTcTableLoadStatus, CItpTcXuaName
FROM CISCO-ITP-TC-MIB
cItpSpCLLICode, cItpSpDisplayName
FROM CISCO-ITP-SP-MIB
TimeStamp, TruthValue
FROM SNMPv2-TC-v1
ciscoMgmt
FROM CISCO-SMI
Counter, Gauge
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
TRAP-TYPE
FROM RFC-1215;
ciscoItpSccpMIB OBJECT IDENTIFIER ::= { ciscoMgmt 233 }
-- MODULE-IDENTITY
-- LastUpdated
-- 200302030000Z
-- 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 Signaling Connection Control Part(SCCP)
-- messages transported over Signalling System
-- No. 7 (SS7) Network via Cisco IP Transfer
-- Point.
--
-- This MIB for provides information specified
-- in ITU Q752 Monitoring and Measurements for
-- Signalling System No. 7(SS7) Network.
--
-- The Cisco IP Transfer Point (ITP) is a hardware
-- and software solution that transports SS7 traffic
-- using IP. Each ITP node provides function similar
-- to SS7 signaling point.
--
-- 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.
--
-- The IETF Working Group Signaling Transport (SIGTRAN)
-- has defined MTP3 User Adaptation (M3UA) and SCCP
-- User Adaptation (SUA) protocols. The drafts can be
-- found at:
-- http://www.ietf.org/html.charters/sigtran-charter.html
--
-- This MIB consists of the following tables:
-- Concerned Point Code List Table
-- Mated Application (MAP) Table
-- Global Title Translation (GTT) Selector Table
-- Global Title Address (GTA) Table
-- Application Group Table
-- Prefix Conversion Table
--
-- RevDate
-- 200302030000Z
-- RevDescr
-- The ability to allow multiple instances of
-- Signalling Points to run in the same device
-- has introduce a new index structure. All
-- objects in this MIB will be deprecated and
-- replaced by objects in the CISCO-ITP-GSCCP-MIB.my
-- MIB.
-- RevDate
-- 200204020000Z
-- RevDescr
-- Added the following objects:
-- cItpSccpGttAppGrNumUsed
-- cItpSccpGttGtaTTorSSNvalue
--
-- Updated the following Textual Convention:
-- CItpSccpGttRoutingInd
--
-- Updated the description for following objects:
-- cItpSccpGttGtaTTorSSN
-- cItpSccpGttGtaRoutingInd.
-- RevDate
-- 200202280000Z
-- RevDescr
-- Added the following objects:
-- CItpSccpGttPrefName
-- cItpSccpPrefConfigLastChanged
-- cItpSccpGttPrePrefConv
-- cItpSccpGttPostPrefConv
-- cItpSccpGttGtaAddrDispZB
-- cItpSccpGttGtaAddrLenZB
-- cItpSccpGttGtaAsName
--
-- Added the following Tables:
-- cItpSccpGttAppGrTable
-- cItpSccpGttPrefTable
--
-- Updated the following Textual Conventions:
-- CItpSccpGttAppType
-- CItpSccpGttGtaResType
--
-- Deprecated the following objects:
-- CItpSccpGttGtaAddrLen
-- cItpSccpGttGtaAddrDisp
-- cItpSccpGttGtaAddrLen
--
-- Deprecated the following Tables:
-- cItpSccpGttAppTable
-- RevDate
-- 200109270000Z
-- RevDescr
-- Initial version of this MIB module.
cItpSccpMIBNotifs OBJECT IDENTIFIER ::= { ciscoItpSccpMIB 0 }
cItpSccpMIBObjects OBJECT IDENTIFIER ::= { ciscoItpSccpMIB 1 }
cItpSccpConformance OBJECT IDENTIFIER ::= { ciscoItpSccpMIB 2 }
cItpSccpScalars OBJECT IDENTIFIER ::= { cItpSccpMIBObjects 1 }
cItpSccpGttConPc OBJECT IDENTIFIER ::= { cItpSccpMIBObjects 2 }
cItpSccpGttMap OBJECT IDENTIFIER ::= { cItpSccpMIBObjects 3 }
cItpSccpGttSel OBJECT IDENTIFIER ::= { cItpSccpMIBObjects 4 }
cItpSccpGttGta OBJECT IDENTIFIER ::= { cItpSccpMIBObjects 5 }
cItpSccpGttApp OBJECT IDENTIFIER ::= { cItpSccpMIBObjects 6 }
cItpSccpGttAppGr OBJECT IDENTIFIER ::= { cItpSccpMIBObjects 7 }
cItpSccpGttPref OBJECT IDENTIFIER ::= { cItpSccpMIBObjects 8 }
cItpSccpNotifications OBJECT IDENTIFIER ::= { cItpSccpMIBNotifs 0 }
cItpSccpMIBCompliances OBJECT IDENTIFIER ::= { cItpSccpConformance 1 }
cItpSccpMIBGroups OBJECT IDENTIFIER ::= { cItpSccpConformance 2 }
CItpSccpConPcListName ::= OCTET STRING(SIZE(0..12))
-- TEXTUAL-CONVENTION
-- Status
-- deprecated
-- Descr
-- The configured name associated with SCCP GTT
-- Concerned Point Code list name.
CItpSccpGttSelName ::= OCTET STRING(SIZE(1..12))
-- TEXTUAL-CONVENTION
-- Status
-- deprecated
-- Descr
-- The configured name associated with SCCP GTT
-- Selector.
CItpSccpGttAppName ::= OCTET STRING(SIZE(0..12))
-- TEXTUAL-CONVENTION
-- Status
-- deprecated
-- Descr
-- The configured name associated with SCCP GTT
-- Application Group.
CItpSccpGttPrefName ::= OCTET STRING(SIZE(0..12))
-- TEXTUAL-CONVENTION
-- Status
-- deprecated
-- Descr
-- The configured name associated with SCCP GTT
-- Prefix Conversion table.
--
-- This name is supported as octet string containing
-- administrative information in human-readable form.
--
-- The use of control codes should be avoided.
--
-- The use of newline should be avoided.
--
-- The use of leading or trailing white space should
-- be avoided.
CItpSccpGttDisplaySS ::= OCTET STRING(SIZE(1..3))
-- TEXTUAL-CONVENTION
-- Status
-- deprecated
-- Descr
-- The subsystem number in display format.
CItpSccpGttAppCost ::= Gauge(1..8)
-- TEXTUAL-CONVENTION
-- Status
-- deprecated
-- Descr
-- The cost associated with an entry in SCCP GTT
-- Application Group.
CItpSccpGttAppType ::= INTEGER {
pc(1),
pcssn(2),
as(3)
}
-- TEXTUAL-CONVENTION
-- Status
-- deprecated
-- Descr
-- The list of application types in Application Group
-- 'pc' : The application type is a point code.
-- 'pcssn' : The application type is a point code
-- and subsystem number (SSN).
-- 'as' : The application type is an M3UA or SUA
-- Application Server (AS).
CItpSccpGttGtaAddrLen ::= Gauge(1..15)
-- TEXTUAL-CONVENTION
-- Status
-- deprecated
-- Descr
-- The SCCP GTT Global Title Address length.
--
-- It is now deprecated because GTA address
-- length can also be zero.
CItpSccpGttGtaAddrLenZB ::= Gauge(0..15)
-- TEXTUAL-CONVENTION
-- Status
-- deprecated
-- Descr
-- The SCCP GTT Global Title Address length.
-- For the default GTA address, the length
-- can be zero.
CItpSccpGttMapType ::= INTEGER {
primary(1),
backup(2)
}
-- TEXTUAL-CONVENTION
-- Status
-- deprecated
-- Descr
-- The list of SCCP GTT Mated Application type
-- 'Primary' : The mated application is primary
-- 'Backup' : The mated application is backup.
CItpSccpGttGtaResType ::= INTEGER {
pc(1),
pcssn(2),
app(3),
as(4)
}
-- TEXTUAL-CONVENTION
-- Status
-- deprecated
-- Descr
-- The list of SCCP GTT Result Type
-- 'pc' : The GTA translates to a point code.
-- 'pcssn' : The GTA translates to a point code
-- and optional SSN
-- 'app' : The GTA translates to a GTT
-- Application Group.
-- 'as' : The GTA translates to an M3UA or
-- SUA Application Server (AS) name.
CItpSccpGttRoutingInd ::= INTEGER {
ri2gt(1),
ri2ssn(2),
ssnRI2gt(3),
ssnRI2ssn(4),
replTT(5),
riNotAppl(6),
riUndef(7)
}
-- TEXTUAL-CONVENTION
-- Status
-- deprecated
-- Descr
-- The SCCP GTT Routing Indicator
-- 'ri2gt' : Set RI to GT
-- 'ri2ssn' : Set RI to SSN
-- 'ssnRI2ssn' : Replace SSN and set RI to GT
-- 'ssnRI2gt' : Replace SSN and set RI to SSN
-- 'replTT' : Replace the TT
-- 'riNotAppl' : RI is not applicable
-- 'riUndef' : RI is undefined.
CItpSccpGttMapPcStatus ::= INTEGER {
allowed(1),
prohibited(2)
}
-- TEXTUAL-CONVENTION
-- Status
-- deprecated
-- Descr
-- The list of SCCP GTT Mated App point code status
-- 'Allowed' : The mated application is allowed
-- 'Prohibited' : The mated application is prohibited.
CItpSccpGttMapSsStatus ::= INTEGER {
allowed(1),
prohibited(2)
}
-- TEXTUAL-CONVENTION
-- Status
-- deprecated
-- Descr
-- The list of SCCP GTT Mated App subssystem status
-- 'Allowed' : The mated application is allowed
-- 'Other' : The mated application is prohibited.
CItpSccpGttMultInd ::= INTEGER {
solitary(1),
shared(2),
dominant(3),
cost(4)
}
-- TEXTUAL-CONVENTION
-- Status
-- deprecated
-- Descr
-- The list of SCCP GTT Multiplicity Indicator
-- 'Solitary' : The application is solitary
-- 'Shared' : The application is shared
-- 'Dominant' : The application is dominant
-- 'Cost' : The application uses cost.
CItpSccpGttMapCongStatus ::= INTEGER {
notCong(1),
congLevel1(2),
congLevel2(3),
congLevel3(4)
}
-- TEXTUAL-CONVENTION
-- Status
-- deprecated
-- Descr
-- The list of SCCP GTT Mated App congestion status
-- 'NotCong' : The point code not congested
-- 'CongLevel1' : The congestion level 1
-- 'CongLevel2' : The congestion level 2
-- 'CongLevel3' : The congestion level 3.
CItpSccpGttTransType ::= Gauge(0..255)
-- TEXTUAL-CONVENTION
-- Status
-- deprecated
-- Descr
-- The SCCP GTT Translation Type (TT).
CItpSccpGttQOS ::= Gauge(0..255)
-- TEXTUAL-CONVENTION
-- Status
-- deprecated
-- Descr
-- The SCCP GTT Quality of Service (QOS).
CItpSccpGttGlobalTitleInd ::= Gauge(0..255)
-- TEXTUAL-CONVENTION
-- Status
-- deprecated
-- Descr
-- The SCCP GTT Global Title Indicator (GTI).
-- The following values are generally used:
-- No global title included (0),
-- For ITU, GT includes NAI only (1),
-- For ANSI, GT includes TT, NP and encoding scheme (1),
-- GT includes only TT (2),
-- GT includes TT, NP and encoding scheme (3),
-- GT includes TT, NP, encoding scheme, NAI (4),
-- Maximum GTI (15),
-- Invalid GTI (253),
-- Wild GTI (254).
-- Refer
-- The Global Title Indicator is defined in the
-- International Telecommunication Union standard Q.713:
-- Specifications of Signalling System No. 7 - Signalling
-- Connection Control Part (SCCP) section 3.4.1 Address
-- Indicator.
cItpSccpTotalMsgs OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This counter is incremented every time a message is
handled from a local or remote subsystem(Q752/9.3)."
REFERENCE
"ITU Q752 Monitoring and Measurements for Signalling
System No. 7(SS7) Network Table 9."
::= { cItpSccpScalars 1 }
cItpSccpLocalMsgs OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This counter is incremented every time a message is
handled from a local subsystem(Q752/9.4)."
REFERENCE
"ITU Q752 Monitoring and Measurements for Signalling
System No. 7(SS7) Network Table 9."
::= { cItpSccpScalars 2 }
cItpSccpTotalGttMsgs OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This counter is incremented every time a message
requiring global title translation (Q752/9.5) is handled."
REFERENCE
"ITU Q752 Monitoring and Measurements for Signalling
System No. 7(SS7) Network Table 9."
::= { cItpSccpScalars 3 }
cItpSccpUDTMsgsSent OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This counter is incremented every time a
unitdata (UDT) message is sent (Q752/9 bis.1)."
REFERENCE
"ITU Q752 Monitoring and Measurements for Signalling
System No. 7(SS7) Network Table 9."
::= { cItpSccpScalars 4 }
cItpSccpUDTSMsgsSent OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This counter is incremented every time a
unitdata service (UDTS) message is sent
(Q752/9 bis.2)."
REFERENCE
"ITU Q752 Monitoring and Measurements for Signalling
System No. 7(SS7) Network Table 9."
::= { cItpSccpScalars 5 }
cItpSccpUDTMsgsRcvd OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This counter is incremented every time a unitdata
(UDT) message is received (Q752/9 bis.3)."
REFERENCE
"ITU Q752 Monitoring and Measurements for Signalling
System No. 7(SS7) Network Table 9."
::= { cItpSccpScalars 6 }
cItpSccpUDTSMsgsRcvd OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This counter is incremented every time a unitdata
service (UDTS) message is received (Q752/9 bis.4)."
REFERENCE
"ITU Q752 Monitoring and Measurements for Signalling
System No. 7(SS7) Network Table 9."
::= { cItpSccpScalars 7 }
cItpSccpXUDTMsgsSent OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This counter is incremented every time a extended
unitdata (XUDT) message is sent (Q752/9 bis.13)."
REFERENCE
"ITU Q752 Monitoring and Measurements for Signalling
System No. 7(SS7) Network Table 9."
::= { cItpSccpScalars 8 }
cItpSccpXUDTSMsgsSent OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This counter is incremented every time a extended
unitdata service (XUDTS) message is sent
(Q752/9 bis.14)."
REFERENCE
"ITU Q752 Monitoring and Measurements for Signalling
System No. 7(SS7) Network Table 9."
::= { cItpSccpScalars 9 }
cItpSccpXUDTMsgsRcvd OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This counter is incremented every time a extended
unitdata (XUDT) message is received (Q752/9 bis.15)."
REFERENCE
"ITU Q752 Monitoring and Measurements for Signalling
System No. 7(SS7) Network Table 9."
::= { cItpSccpScalars 10 }
cItpSccpXUDTSMsgsRcvd OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This counter is incremented every time a extended
unitdata service (XUDTS) message is received
(Q752/9 bis.16)."
REFERENCE
"ITU Q752 Monitoring and Measurements for Signalling
System No. 7(SS7) Network Table 9."
::= { cItpSccpScalars 11 }
cItpSccpLUDTMsgsSent OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This counter is incremented every time a long
unitdata (LUDT) message is sent (Q752/9 bis.17)."
REFERENCE
"ITU Q752 Monitoring and Measurements for Signalling
System No. 7(SS7) Network Table 9."
::= { cItpSccpScalars 12 }
cItpSccpLUDTSMsgsSent OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This counter is incremented every time a long
unitdata (LUDT) service message is sent
(Q752/9 bis.18)."
REFERENCE
"ITU Q752 Monitoring and Measurements for Signalling
System No. 7(SS7) Network Table 9."
::= { cItpSccpScalars 13 }
cItpSccpLUDTMsgsRcvd OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This counter is incremented every time a long
unitdata (LUDT) message is received (Q752/9 bis.19)."
REFERENCE
"ITU Q752 Monitoring and Measurements for Signalling
System No. 7(SS7) Network Table 9."
::= { cItpSccpScalars 14 }
cItpSccpLUDTSMsgsRcvd OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This counter is incremented every time a long
unitdata (LUDT) service message is received
(Q752/9 bis.20)."
REFERENCE
"ITU Q752 Monitoring and Measurements for Signalling
System No. 7(SS7) Network Table 9."
::= { cItpSccpScalars 15 }
cItpSccpCrToMtp OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This counter is incremented every time a Connection
Request(CR) messages sent to MTP. This count
include ISDN-UP with embedded CRs (Q752/9 bis.5)."
REFERENCE
"ITU Q752 Monitoring and Measurements for Signalling
System No. 7(SS7) Network Table 9."
::= { cItpSccpScalars 16 }
cItpSccpCrefToMtp OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This counter is incremented every time a Connection
Refusal (CREF) message is sent to MTP (Q752/9 bis.6)."
REFERENCE
"ITU Q752 Monitoring and Measurements for Signalling
System No. 7(SS7) Network Table 9."
::= { cItpSccpScalars 17 }
cItpSccpCrFromMtp OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This counter is incremented every time a Connection
Reguest messages received from MTP. This count
inlcudes ISDN- UP with embedded CRs (Q752/9 bis.7)."
REFERENCE
"ITU Q752 Monitoring and Measurements for Signalling
System No. 7(SS7) Network Table 9."
::= { cItpSccpScalars 18 }
cItpSccpCrefFromMtp OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This counter is incremented every time a Connection
Refusal (CREF) message is received from
MTP (Q752/9 bis.8)."
REFERENCE
"ITU Q752 Monitoring and Measurements for Signalling
System No. 7(SS7) Network Table 9."
::= { cItpSccpScalars 19 }
cItpSccpRsrToMtp OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This counter is incremented every time a Reset Request
(RSR) message is sent to MTP (Q752/9 bis.9)."
REFERENCE
"ITU Q752 Monitoring and Measurements for Signalling
System No. 7(SS7) Network Table 9."
::= { cItpSccpScalars 20 }
cItpSccpRsrFromMtp OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This counter is incremented every time a Reset Request
(RSR) message is received from MTP (Q752/9 bis.10)."
REFERENCE
"ITU Q752 Monitoring and Measurements for Signalling
System No. 7(SS7) Network Table 9."
::= { cItpSccpScalars 21 }
cItpSccpErrToMtp OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This counter is incremented every time a Error Message
(ERR) message is sent to MTP (Q752/9 bis.11)."
REFERENCE
"ITU Q752 Monitoring and Measurements for Signalling
System No. 7(SS7) Network Table 9."
::= { cItpSccpScalars 22 }
cItpSccpErrFromMtp OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This counter is incremented every time a Error Message
(ERR) message is received from MTP (Q752/9 bis.12)."
REFERENCE
"ITU Q752 Monitoring and Measurements for Signalling
System No. 7(SS7) Network Table 9."
::= { cItpSccpScalars 23 }
cItpSccpCpcConfigLastChanged OBJECT-TYPE
SYNTAX TimeStamp
-- Rsyntax TimeTicks
ACCESS read-only
STATUS deprecated
DESCRIPTION
"The value of sysUpTime at the time of the last creation
or deletion of an entry in the cItpSccpGttConPcTable.
If the local network management subsystem is
re-initialization, then this object contains the
sysUpTime at the time when this occurred. This value
can be used to prevent unnecessary walks of the
Concerned Point Code Table."
::= { cItpSccpScalars 24 }
cItpSccpMapConfigLastChanged OBJECT-TYPE
SYNTAX TimeStamp
-- Rsyntax TimeTicks
ACCESS read-only
STATUS deprecated
DESCRIPTION
"The value of sysUpTime at the time of the last creation
or deletion of an entry in the cItpSccpGttMapTable.
If the local network management subsystem is
re-initialization, then this object contains the
sysUpTime at the time when this occurred. This value
can be used to prevent unnecessary walks of the
Mated Application Table."
::= { cItpSccpScalars 25 }
cItpSccpSelConfigLastChanged OBJECT-TYPE
SYNTAX TimeStamp
-- Rsyntax TimeTicks
ACCESS read-only
STATUS deprecated
DESCRIPTION
"The value of sysUpTime at the time of the last creation
or deletion of an entry in the cItpSccpGttSelTable.
If the local network management subsystem is
re-initialization, then this object contains the
sysUpTime at the time when this occurred. This value
can be used to prevent unnecessary walks of the
GTT Selector Table."
::= { cItpSccpScalars 26 }
cItpSccpGtaConfigLastChanged OBJECT-TYPE
SYNTAX TimeStamp
-- Rsyntax TimeTicks
ACCESS read-only
STATUS deprecated
DESCRIPTION
"The value of sysUpTime at the time of the last creation
or deletion of an entry in the cItpSccpGttGtaTable.
If the local network management subsystem is
re-initialization, then this object contains the
sysUpTime at the time when this occurred. This value
can be used to prevent unnecessary walks of the
GTT Global Title Address Table."
::= { cItpSccpScalars 27 }
cItpSccpAppConfigLastChanged OBJECT-TYPE
SYNTAX TimeStamp
-- Rsyntax TimeTicks
ACCESS read-only
STATUS deprecated
DESCRIPTION
"The value of sysUpTime at the time of the last creation
or deletion of an entry in the cItpSccpGttAppTable.
If the local network management subsystem is
re-initialization, then this object contains the
sysUpTime at the time when this occurred. This value
can be used to prevent unnecessary walks of the
GTT Application Group Table."
::= { cItpSccpScalars 28 }
cItpSccpGttMapStateNotifEnabled OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS deprecated
DESCRIPTION
"The SP linkset notification truth value.
'true' Indicates that the cItpSccpGttMapStateChange
notification is to be generated when the
state changes. That is, the notification
generation is enabled.
'false' Indicates that the cItpSccpGttMapStateChange
notification generation is disabled."
DEFVAL { false }
::= { cItpSccpScalars 29 }
cItpSccpPrefConfigLastChanged OBJECT-TYPE
SYNTAX TimeStamp
-- Rsyntax TimeTicks
ACCESS read-only
STATUS deprecated
DESCRIPTION
"The value of sysUpTime at the time of the last creation
or deletion of an entry in the cItpSccpGttPrefTable.
If the local network management subsystem is
re-initialization, then this object contains the
sysUpTime at the time when this occurred. This value
can be used to prevent unnecessary walks of the
GTT Prefix Conversion Table."
::= { cItpSccpScalars 30 }
cItpSccpGttConfigLoad OBJECT-TYPE
SYNTAX TimeStamp
-- Rsyntax TimeTicks
ACCESS read-only
STATUS deprecated
DESCRIPTION
"The value of sysUpTime at the time of the last
load of the GTT table using file format."
::= { cItpSccpScalars 31 }
cItpSccpGttConfigLoadStatus OBJECT-TYPE
SYNTAX CItpTcTableLoadStatus
-- Rsyntax INTEGER {
-- loadNotRequested(1),
-- loadInProgress(2),
-- loadComplete(3),
-- loadCompleteWithErrors(4),
-- loadFailed(5)
-- }
ACCESS read-only
STATUS deprecated
DESCRIPTION
"The status of the deprecatedload or status from
the prior load operation."
::= { cItpSccpScalars 32 }
cItpSccpGttConPcTable OBJECT-TYPE
SYNTAX SEQUENCE OF CItpSccpGttConPcTableEntry
ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"A table of concerned point codes."
::= { cItpSccpGttConPc 1 }
cItpSccpGttConPcTableEntry OBJECT-TYPE
SYNTAX CItpSccpGttConPcTableEntry
ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"A list of concerned point codes."
INDEX { cItpSccpGttConPcListName, cItpSccpGttConPointCode }
::= { cItpSccpGttConPcTable 1 }
CItpSccpGttConPcTableEntry ::= SEQUENCE {
cItpSccpGttConPcListName CItpSccpConPcListName,
cItpSccpGttConPointCode CItpTcPointCode,
cItpSccpGttConPcRefCount Gauge
}
cItpSccpGttConPcListName OBJECT-TYPE
SYNTAX CItpSccpConPcListName
-- Rsyntax OCTET STRING(SIZE(0..12))
ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"The name of the Concerned Point Code list."
::= { cItpSccpGttConPcTableEntry 1 }
cItpSccpGttConPointCode OBJECT-TYPE
SYNTAX CItpTcPointCode
-- Rsyntax Gauge(0..16777216)
ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"The concerned point code for SCCP GTT."
::= { cItpSccpGttConPcTableEntry 2 }
cItpSccpGttConPcRefCount OBJECT-TYPE
SYNTAX Gauge(0..2147483647)
ACCESS read-only
STATUS deprecated
DESCRIPTION
"The reference count for this list."
::= { cItpSccpGttConPcTableEntry 3 }
cItpSccpGttMapTable OBJECT-TYPE
SYNTAX SEQUENCE OF CItpSccpGttMapTableEntry
ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"A table of SCCP GTT Mated Application (MAP) entries."
::= { cItpSccpGttMap 1 }
cItpSccpGttMapTableEntry OBJECT-TYPE
SYNTAX CItpSccpGttMapTableEntry
ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"A list of SCCP GTT MAP attributes."
INDEX { cItpSccpGttMapPc, cItpSccpGttMapSsn }
::= { cItpSccpGttMapTable 1 }
CItpSccpGttMapTableEntry ::= SEQUENCE {
cItpSccpGttMapPc CItpTcPointCode,
cItpSccpGttMapSsn CItpTcSubSystemNumber,
cItpSccpGttMapDisplayPC CItpTcDisplayPC,
cItpSccpGttMapDisplaySS CItpSccpGttDisplaySS,
cItpSccpGttMapType CItpSccpGttMapType,
cItpSccpGttMapPcStatus CItpSccpGttMapPcStatus,
cItpSccpGttMapSsStatus CItpSccpGttMapSsStatus,
cItpSccpGttMapMultInd CItpSccpGttMultInd,
cItpSccpGttMapBackupPc CItpTcPointCode,
cItpSccpGttMapBackupSsn CItpTcSubSystemNumber,
cItpSccpGttMapConPcList CItpSccpConPcListName,
cItpSccpGttMapReRouteOnCong TruthValue,
cItpSccpGttMapAdjacent TruthValue,
cItpSccpGttMapLastSsUsed TruthValue,
cItpSccpGttMapUsed Counter,
cItpSccpGttMapAltUsed Counter,
cItpSccpGttMapSccpUnavail Counter,
cItpSccpGttMapPcUnavail Counter,
cItpSccpGttMapSsUnavail Counter,
cItpSccpGttMapPcCongested Counter,
cItpSccpGttMapSsCongested Counter,
cItpSccpGttMapMtp3Fail Counter,
cItpSccpGttMapRefCount Gauge,
cItpSccpGttMapCongStatus CItpSccpGttMapCongStatus
}
cItpSccpGttMapPc OBJECT-TYPE
SYNTAX CItpTcPointCode
-- Rsyntax Gauge(0..16777216)
ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"The point code for GTT MAP entry."
::= { cItpSccpGttMapTableEntry 1 }
cItpSccpGttMapSsn OBJECT-TYPE
SYNTAX CItpTcSubSystemNumber
-- Rsyntax Gauge(0|2..255)
ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"The subsystem number (SSN) for GTT MAP entry."
::= { cItpSccpGttMapTableEntry 2 }
cItpSccpGttMapDisplayPC OBJECT-TYPE
SYNTAX CItpTcDisplayPC
-- Rsyntax OCTET STRING(SIZE(1..12))
ACCESS read-only
STATUS deprecated
DESCRIPTION
"The MAP point code in display format."
::= { cItpSccpGttMapTableEntry 3 }
cItpSccpGttMapDisplaySS OBJECT-TYPE
SYNTAX CItpSccpGttDisplaySS
-- Rsyntax OCTET STRING(SIZE(1..3))
ACCESS read-only
STATUS deprecated
DESCRIPTION
"The MAP subsystem number in display format."
::= { cItpSccpGttMapTableEntry 4 }
cItpSccpGttMapType OBJECT-TYPE
SYNTAX CItpSccpGttMapType
-- Rsyntax INTEGER {
-- primary(1),
-- backup(2)
-- }
ACCESS read-only
STATUS deprecated
DESCRIPTION
"The GTT MAP subsystem type."
::= { cItpSccpGttMapTableEntry 5 }
cItpSccpGttMapPcStatus OBJECT-TYPE
SYNTAX CItpSccpGttMapPcStatus
-- Rsyntax INTEGER {
-- allowed(1),
-- prohibited(2)
-- }
ACCESS read-only
STATUS deprecated