-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathCISCO-ITP-DSMR-MIB-V1SMI.my
3362 lines (3069 loc) · 114 KB
/
CISCO-ITP-DSMR-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-2012 14:41:06, by
-- SMICng version 2.2.11-beta(PRO)(Solaris), January 20, 2001. Enterprise key cisco.com
CISCO-ITP-DSMR-MIB DEFINITIONS ::= BEGIN
-- From file: "CISCO-ITP-DSMR-MIB.my"
-- Compile options "4 7 F H N W 03 06 0B 0G 0N 0T"
IMPORTS
CgsccpGttGlobalTitleInd, CgsccpGttTransType
FROM CISCO-ITP-GSCCP-MIB
cgspCLLICode, cgspEventSequenceNumber, cgspInstNetwork
FROM CISCO-ITP-GSP-MIB
CItpTcGtaLongDisplay, CItpTcNAI, CItpTcNetworkName,
CItpTcNumberingPlan, CItpTcPointCode, CItpTcSubSystemNumber,
CItpTcTableLoadStatus, CItpTcURL
FROM CISCO-ITP-TC-MIB
CmlrAddressDigits, CmlrAddressType, CmlrId, CmlrName,
CmlrRuleProtocol, CmlrRuleSetName
FROM CISCO-ITP-MLR-MIB
ciscoMgmt
FROM CISCO-SMI
InetAddressType, InetAddress, InetPortNumber
FROM INET-ADDRESS-MIB
DateAndTime, RowStatus, TimeStamp, TruthValue
FROM SNMPv2-TC-v1
Counter, Gauge
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
TRAP-TYPE
FROM RFC-1215;
ciscoItpDsmrMIB OBJECT IDENTIFIER ::= { ciscoMgmt 1300 }
-- MODULE-IDENTITY
-- LastUpdated
-- 200505170000Z
-- 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 providing information about Distributed Short
-- Message Routing for Short Message Service Center. This
-- MIB will provide information used to control and measure
-- SS7 messages signalling units in a SS7 Network. Message
-- Signalling Units are routed based on information found
-- in the SCCP, TCAP, MAP, and MAP-user layers. It uses
-- information from these layers to make customizable
-- routing decision based on the following criteria.
--
-- - message A-address (origination SME)
-- - message B-address (destination SME)
-- - protocol identifier
-- - operation code
-- - called party address
-- - calling party address
--
-- 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 signalling point.
--
-- The Distributed Short Message Routing will be developed in
-- compliance to the following standards.
--
-- - GSM MAP v1, v2 and v3 MO SMS formats
-- - GSM MAP SMS user information for MO messages
-- - IS-41 MAP Mobile Originated SMS formats for
-- Revisions A thru D.
--
--
-- Acronyms and Terms
-- A-address The originating SME of the short message.
--
-- AO Application Originated (synonymous with FO).
-- This term is used to refer to an SMS
-- message that is being sent from an
-- application to the SMSC, typically over
-- SMPP. Traffic alerts, stock quotes,
-- sports updates are typically AO.
--
-- ANSI-41 ANSI standard for defining cellular radio
-- telecommunications inter-system operation.
--
-- AT Application Terminated (synonymous with FT).
-- This term is used to refer to an SMS message
-- that is being sent to an application from
-- the SMSC, typically over SMPP. Voting
-- traffic is typically AT.
--
-- B-address The destination SME of the short message.
--
-- BCH Binary Coded Hexadecimal
--
-- CdPA The SCCP Called Party Address field.
--
-- CgPA The SCCP Calling Party Address field.
--
-- ESME External Short Message Entity.
--
-- DSMR Distributed Short Message Routing
--
-- FO Fixed Originated (synonymous with AO)
--
-- FT Fixed Terminated (synonymous with AT)
--
-- GSM ITU standard for defining the Global
-- System for Mobile communications.
--
-- GTT Global Title Translation. A function
-- normally performed in an STP, GTT is the
-- procedure by which the destination
-- signalling point and subsystem number(SSN)
-- is determined from GTA digits (i.e., the
-- global title) present in the signalling
-- message.
--
-- IMEI International Mobile Equipment Identity
--
-- IMSI International Mobile Station Identity or
-- International Mobile Subscriber Identity
-- A mobile station identifier typically
-- used in GSM networks, but is also defined
-- for use in IS-41 networks via IS-751.
--
-- IS-41 ANSI standard for defining cellular radio
-- telecommunications inter-system operation.
-- Unless otherwise stated, this refers to
-- the IS-41-D specification.
--
-- MAP SS7 Mobile Application Part. This layer
-- provides mobility procedures to SS7
-- network applications. MAP is generically
-- used to refer to both GSM-MAP, and the
-- IS-41-D MAP Protocol.
--
-- MC Message Center. Network element responsible
-- for relaying and store-and-forwarding of
-- short messages in ANSI-41 networks.
--
-- MDN Mobile Directory Number. A 10-digit North
-- American Numbering Plan number assigned to
-- mobile users in IS-41 networks. It may be
-- different from the MIN.
--
-- MIN Mobile Identification Number. The 10-digit
-- North American Numbering Plan number
-- assigned to mobile users in IS-41 networks.
-- It may be different from the MDN.
--
-- MLR Multi-layer Routing
--
-- MO Mobile Originated. This term is used to
-- refer to an SMS message that is being
-- sent from an MS to the SMSC.
--
-- MS Mobile Subscriber.
--
-- MS mobile station
--
-- MSU Message Signal Unit
--
-- MT Mobile Terminated. This term is used to
-- refer to an SMS message that is being
-- sent from an SMSC to an MS.
--
-- MTP Message Transfer Part
-- MTP1 Layers 1 (physical)
-- MTP2 Layer 2 (data) and
-- MTP3 Layer 3 (network)
--
--
-- M2PA SS7 MTP2-User Peer-to-Peer Adaptation
-- Layer specified by the IETF SIGTRAN
-- working group, which provides SCTP/IP
-- based links for MTP3.
--
-- M3UA SS7 MTP3 User Adaptation Layer specified
-- by RFC 3332 for MTP3 users like ISUP.
--
-- RR Round Robin. A balancing algorithm that
-- evenly distributes traffic among
-- available servers.
--
-- SCCP Signalling Connection Control Part. As
-- part of the SS7 signalling protocol, it
-- provides connectionless and
-- connection-oriented network services
-- above MTP Level 3.
--
--
-- SCP Service Control Point. An element of
-- an SS7-based Intelligent Network which
-- performs various service functions, such
-- as number translation, call setup
-- and tear down, etc.
--
-- SCTP Stream Control Transmission Protocol.
-- A protocol designed by the SigTran
-- working group of the IETF to transport
-- messages reliably over IP networks(RFC
-- 2960).
-- It has been specifically designed with
-- PSTN signalling in mind, but is meant to
-- be a general IP transport protocol.
--
-- SG Signalling Gateway.
-- SIM Subscriber Identity Module
--
-- SME Short Message Entity. An entity that may
-- send or receive short messages, and may
-- be fixed or mobile.
--
-- SM Short Message
--
-- SMPP Short Message Peer-to-Peer (protocol)
-- SMD-PP Short Message Delivery Point to Point.
--
-- SMS Short Message Service, as defined in
-- GSM and IS-41-D.
--
-- SMS-MO Short Message Service Mobile Originated.
--
-- SMS-MT Short Message Service Mobile Terminated.
--
-- SMSC Short Message Service Center. Network
-- element responsible for relaying and
-- store-and-forwarding of short messages.
--
-- SRI Send Routing Information or Send Routing
-- Information for Short Messages. Refers
-- to the procedure by which an SMSC
-- requests the HLR to send current routing
-- information for a particular mobile user.
--
-- SRI-SM Send Routing Information Short Message
--
-- SSP Service Switching Point. An element of
-- an SS7-based Intelligent Network that
-- performs call origination, termination,
-- or tandem switching.
--
-- STP Signal Transfer Point. An element of
-- an SS7-based Intelligent Network that
-- performs routing of the SS7 signalling.
--
-- SUA SS7 SCCP User Adaptation Layer specified
-- by IETF SIGTRAN for SCCP users, like
-- GSM MAP, UMTS RANAP, CDMA IS-41,
-- CDMA IS-634, IN INAP, CAMEL CAP.
--
-- TCAP Transaction Capability Application Part.
-- The application layer of the SS7
-- signalling protocol.
--
-- UCP Universal Computer Protocol.
--
-- WRR Weighted Round Robin. A variation of
-- the round robin algorithm that uses
-- server weights to allow uneven
-- distribution of traffic among a set
-- of available servers.
--
-- All objects defined as Counter32 apply from the time the
-- statement is activated until it is deleted.
--
-- ********************************************
-- RevDate
-- 200505170000Z
-- RevDescr
-- Initial version of this MIB module.
ciscoItpDsmrMIBNotifs OBJECT IDENTIFIER ::= { ciscoItpDsmrMIB 0 }
ciscoItpDsmrMIBObjects OBJECT IDENTIFIER ::= { ciscoItpDsmrMIB 1 }
ciscoItpDsmrMIBConform OBJECT IDENTIFIER ::= { ciscoItpDsmrMIB 2 }
cdsmrScalars OBJECT IDENTIFIER ::= { ciscoItpDsmrMIBObjects 1 }
ciscoItpDsmrMIBCompliances OBJECT IDENTIFIER ::= { ciscoItpDsmrMIBConform 1 }
ciscoItpDsmrMIBGroups OBJECT IDENTIFIER ::= { ciscoItpDsmrMIBConform 2 }
CdsmrMaximumDigits ::= Gauge(0..20)
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- Maximum number of digits that global title
-- address can contain and match rule. The maximum
-- number of digits must be greater than or equal to
-- the length of the specified address. Also, the
-- maximum number of digits must be greater than or
-- equal to minimum number of digits. A value of zero
-- indicates the ranges is not be applied.
CdsmrMinimumDigits ::= Gauge(0..20)
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- Minimum number of digits that global title
-- address can contain and match rule. The minimum
-- number of digits must be greater than or equal to
-- the length of the specified address. A value of zero
-- indicates the ranges is not be applied.
-- does not apply when the global title address length
-- is set to zero.
CdsmrResultDestinationType ::= INTEGER {
none(1),
gt(2),
smpp(3),
ucp(4),
pc(5),
pcSsn(6)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- List of possible destination types as follows.
-- 'none' : Result not specified.
-- 'gt' : The global title address formatted as
-- CItpTcGtaLongDisplay
-- 'smpp' : Short Message Peer-to-Peer protocol destination.
-- 'ucp' : Universal Computer Protocol destination.
-- 'pc' : Point-code destination.
-- 'pcSsn' : Point-code and subsystem number destination.
CdsmrResultOctet ::= OCTET STRING(SIZE(0..64))
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- An octet string that contains various types of output
-- from a rule. The information in this textual convention
-- is formatted as follows:
--
-- CdsmrResultType:
-- None : Octet string with length of zero.
-- pc : Not applicable
-- pcSsn : Not applicable.
-- gt : The global title address formatted as
-- CItpTcGtaLongDisplay
-- group : Result group formatted as CmlrName.
-- smpp : Result group formatted as CmlrName
-- ucp : Result group formatted as CmlrName
-- block : Not applicable.
-- ruleNext : Not applicable.
-- ruleNumber: Not applicable.
-- deliveryMt: Not applicable.
-- origImsi : Not Applicable
-- origImsiNext: Not Applicable
--
-- When the result octet is not used as a parameter,
-- not applicable, the length will be set to zero.
--
-- An octet string specified by an administrator that
-- must be in human-readable form. The names must
-- conform to the allowed characters that can be
-- specified via Command Line Interface(CLI). The
-- names cannot contain control character and should
-- not contain leading or trailing white space.
CdsmrResultParameters ::= OCTET STRING(SIZE(1..2))
-- BITS are:
-- network(0)
-- octet(1)
-- tranType(2)
-- gti(3)
-- np(4)
-- nai(5)
-- pc(6)
-- ssn(7)
-- ruleNumber(8)
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- In order to specify the results of DSMR
-- statements different values in the packet can be
-- modified. These values are determined by a combination
-- of variant and operation type. This object indicates
-- which objects will be used to form a result action
-- as follows.
--
-- This textual convention defines the result actions of DSMR
-- which are determined by a combination of variant and
-- operation type. The possible result actions of DSMR are
-- as follows:
--
-- 'network' : specifies network
-- 'octet' : specifies octet string
-- 'tranType' : specifies translation type
-- 'gti' : specifies global title indicator
-- 'np' : specifies numbering plan
-- 'nai' : specifies nature of address
-- 'pc' : specifies point-code
-- 'ssn' : specifies subsystem number
-- 'ruleNumber': specifies next rule to execute
CdsmrResultType ::= INTEGER {
--?? enum value of zero may cause problems
-- none(0),
pc(1),
pcSsn(2),
gt(3),
group(4),
smpp(5),
ucp(6),
block(7),
ruleNext(8),
ruleNumber(9),
deliverMt(10),
origImsi(11),
origImsiNext(12)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- This textual convention defines the result type of DSMR.
-- The possible result types are as follows:
-- 'none' : Result not specified.
-- 'block' : Message will be discarded.
-- 'pc' : Message will be routed using the specified
-- destination point code.
-- 'pcSsn' : Message will be routed using the specified
-- destination point code and subsystem number.
-- destination M3UA or SUA Application Server(AS).
-- 'gt' : Message will be routed using SCCP global title.
-- 'group' : Message will be routed using information
-- specified in result group.
-- 'smpp' : Delivery via Short Message Peer-to-Peer
-- 'ucp' : Delivery via Universal Computer Protocol
-- 'ruleNext'
-- : When address matches entry in table processing
-- will continue with next rule.
-- 'ruleNumber'
-- : When address matches entry in table processing
-- will continue with specified rule.
-- 'deliverMt': Indicates that a delivery attempt should be
-- attempted to the destination SME as a mobile
-- device.
-- 'origImsi': Attempt to obtain the original IMSI address and
-- us it to delivery packet. When the IMSI address
-- is unavailable fail packet.
-- 'origImsiNext': Attempt to obtain the original IMSI address
-- and us it to delivery packet. When the IMSI
-- address is unavailable continue processing with
-- next rule.
cdsmrTableLoadNotifEnabled OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object controls the generation of
ciscoDsmrTableLoad as follows:
'true(1)' - the generation of ciscoDsmrTableLoad
notifications is enabled.
'false(2)' - the generation of ciscoDsmrTableLoad
notifications is disabled."
DEFVAL { false }
::= { cdsmrScalars 1 }
cdsmrInstTable OBJECT-TYPE
SYNTAX SEQUENCE OF CdsmrInstTableEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table that is used to provide information and measurements
related to Distributed Short Message Routing per signalling
point. Entries are added to this table via
cdsmrInstRowStatus in accordance with the RowStatus
convention."
::= { ciscoItpDsmrMIBObjects 2 }
cdsmrInstTableEntry OBJECT-TYPE
SYNTAX CdsmrInstTableEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry in this table provides information on each
signalling point supported by this device."
INDEX { cgspInstNetwork }
::= { cdsmrInstTable 1 }
CdsmrInstTableEntry ::= SEQUENCE {
cdsmrInstLastChanged TimeStamp,
cdsmrInstLastLoadTime TimeStamp,
cdsmrInstLoadStatus CItpTcTableLoadStatus,
cdsmrInstLastURL CItpTcURL,
cdsmrInstDeliveredSmppCounts Counter,
cdsmrInstDeliveredUcpCounts Counter,
cdsmrInstDeliveredGsmCounts Counter,
cdsmrInstDeferredGsmCounts Counter,
cdsmrInstGsmStatusReports Counter,
cdsmrInstUcpNotifications Counter,
cdsmrInstSmppDeliveryReceipts Counter,
cdsmrInstRoutingFailures Counter,
cdsmrInstResultFailures Counter,
cdsmrInstInternalErrors Counter,
cdsmrInstParseErrors Counter,
cdsmrInstResourceErrors Counter,
cdsmrInstProvisioningErrors Counter,
cdsmrInstDestUnreachableErrors Counter,
cdsmrInstDestSignalErrors Counter,
cdsmrInstTimeOuts Counter,
cdsmrInstBlockedPackets Counter,
cdsmrInstRoutingRequestsRcvdGsm Counter,
cdsmrInstRoutingRequestsRcvdIs41 Counter,
cdsmrInstRoutingRequestsRcvdUcp Counter,
cdsmrInstRoutingRequestsRcvdSmpp Counter,
cdsmrInstRowStatus RowStatus
}
cdsmrInstLastChanged OBJECT-TYPE
SYNTAX TimeStamp
-- Rsyntax TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The value of sysUpTime at the time of the last
creation or deletion of an entry in the Multi-Layer
configurations defined for this signalling point.
If the local network management subsystem is
re-initialized, then this object contains the
sysUpTime at the time when this occurred. This value
can be used to prevent unnecessary walks of the
various tables supporting Distributed Short
Message Routing."
::= { cdsmrInstTableEntry 1 }
cdsmrInstLastLoadTime OBJECT-TYPE
SYNTAX TimeStamp
-- Rsyntax TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The value of sysUpTime at the time of the last load of
a file supporting Distributed Short Message Routing
for this signalling point."
::= { cdsmrInstTableEntry 2 }
cdsmrInstLoadStatus OBJECT-TYPE
SYNTAX CItpTcTableLoadStatus
-- Rsyntax INTEGER {
-- loadNotRequested(1),
-- loadInProgress(2),
-- loadComplete(3),
-- loadCompleteWithErrors(4),
-- loadFailed(5)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The status of the current load or status from
the prior load operation. This object will have
a value of loadInProgress while the load operation
is in progress. The cdsmrInstLastLoadTime contains
a timestamp indicating when the load operation is
completed."
::= { cdsmrInstTableEntry 3 }
cdsmrInstLastURL OBJECT-TYPE
SYNTAX CItpTcURL
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The last URL used to load a file used to configure
Distributed Short Message Routing."
::= { cdsmrInstTableEntry 4 }
cdsmrInstDeliveredSmppCounts OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of the number of times a packet was routed
using Short Message Peer-to-Peer protocol."
::= { cdsmrInstTableEntry 5 }
cdsmrInstDeliveredUcpCounts OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of the number of times a packet was routed
using Universal Computer Protocol(UCP)."
::= { cdsmrInstTableEntry 6 }
cdsmrInstDeliveredGsmCounts OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of the number of times a GSM packet was
delivered."
::= { cdsmrInstTableEntry 7 }
cdsmrInstDeferredGsmCounts OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of the number of times a GSM packet was
deferred."
::= { cdsmrInstTableEntry 8 }
cdsmrInstGsmStatusReports OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of the number GSM status reports issued by device."
::= { cdsmrInstTableEntry 9 }
cdsmrInstUcpNotifications OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of the number UCP notifications issued by device."
::= { cdsmrInstTableEntry 10 }
cdsmrInstSmppDeliveryReceipts OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of the number SMPP delivery receipts issued by
device."
::= { cdsmrInstTableEntry 11 }
cdsmrInstRoutingFailures OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of the number of times a packet could not be delivered
because route was not configured."
::= { cdsmrInstTableEntry 12 }
cdsmrInstResultFailures OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of the number of times processing of packet did not
produce valid result."
::= { cdsmrInstTableEntry 13 }
cdsmrInstInternalErrors OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of the number of times processing of packet was
not completed due to internal error."
::= { cdsmrInstTableEntry 14 }
cdsmrInstParseErrors OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of the number of times processing of packet was
not completed due to parsing error."
::= { cdsmrInstTableEntry 15 }
cdsmrInstResourceErrors OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of the number of times processing of packet was
not completed due to unavailable resources on device."
::= { cdsmrInstTableEntry 16 }
cdsmrInstProvisioningErrors OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of the number of times processing of packet was
not completed due to provisioning errors on device."
::= { cdsmrInstTableEntry 17 }
cdsmrInstDestUnreachableErrors OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of the number of times packet was not routed
because destination was unreachable."
::= { cdsmrInstTableEntry 18 }
cdsmrInstDestSignalErrors OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of the number of times packet was not routed
because destination had signal error."
::= { cdsmrInstTableEntry 19 }
cdsmrInstTimeOuts OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of the number of times packet was not delivered
due to timeout."
::= { cdsmrInstTableEntry 20 }
cdsmrInstBlockedPackets OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of the number of times packets were blocked
by processing."
::= { cdsmrInstTableEntry 21 }
cdsmrInstRoutingRequestsRcvdGsm OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of the number of routing requests received
were traffic was GSM based."
::= { cdsmrInstTableEntry 22 }
cdsmrInstRoutingRequestsRcvdIs41 OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of the number of routing requests received
were traffic was IS-41 based."
::= { cdsmrInstTableEntry 23 }
cdsmrInstRoutingRequestsRcvdUcp OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of the number of routing requests received
were traffic was UCP based."
::= { cdsmrInstTableEntry 24 }
cdsmrInstRoutingRequestsRcvdSmpp OBJECT-TYPE
SYNTAX Counter
-- Units
-- packets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of the number of routing requests received
were traffic was SMPP based."
::= { cdsmrInstTableEntry 25 }
cdsmrInstRowStatus OBJECT-TYPE
SYNTAX RowStatus
-- Rsyntax INTEGER {
-- active(1),
-- notInService(2),
-- notReady(3),
-- createAndGo(4),
-- createAndWait(5),
-- destroy(6)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The object is used by a management station to
create or delete the row entry in cdsmrInstTable
following the RowStatus textual convention."
::= { cdsmrInstTableEntry 26 }
cdsmrResultGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF CdsmrResultGroupTableEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table used to identify a group of results and define
parameter that apply to all result within the group.
Entries are added to this table via
cdsmrResultGroupRowStatus in accordance with the RowStatus
convention."
::= { ciscoItpDsmrMIBObjects 3 }
cdsmrResultGroupTableEntry OBJECT-TYPE
SYNTAX CdsmrResultGroupTableEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table is used to define a collection of results."
INDEX { cgspInstNetwork, cdsmrResultGroupName }
::= { cdsmrResultGroupTable 1 }
CdsmrResultGroupTableEntry ::= SEQUENCE {
cdsmrResultGroupName CmlrName,
cdsmrResultGroupServerType INTEGER,
cdsmrResultGroupCdrConsolidation OCTET STRING,
cdsmrResultGroupIdentifier Gauge,
cdsmrResultGroupQueueLimit Gauge,
cdsmrResultGroupQueueTimeLimit Gauge,
cdsmrResultGroupMatchSmppId OCTET STRING,
cdsmrResultGroupMatchSmppType OCTET STRING,
cdsmrResultGroupMatchUcpId OCTET STRING,
cdsmrResultGroupRowStatus RowStatus
}
cdsmrResultGroupName OBJECT-TYPE
SYNTAX CmlrName
-- Rsyntax OCTET STRING(SIZE(0..20))
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A name used to define a result group."
::= { cdsmrResultGroupTableEntry 1 }
cdsmrResultGroupServerType OBJECT-TYPE
SYNTAX INTEGER {
esme(1),
smsc(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object specifies the server type as follows.
'esme' - Indicates this result group represents an external
short message entity (ESME). Coding this parameter
will allow the user to enter ESME specific
parameters and enable the Distributed Short Message
Routing to properly characterize the routing of the
message.
'smsc' - Indicates this result group represents a short
message service center (SMSC). Coding this
parameter will allow the user to enter SMSC
specific parameters and enable the Distributed
Short Message Routing to properly characterize
the routing of the message."
::= { cdsmrResultGroupTableEntry 2 }
cdsmrResultGroupCdrConsolidation OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..5))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The object provides a one to five ASCII characters ESME
(large account) consolidation string. This object only
applies when the cdsmrResultGroupServerType object
specifies ESME. The object returns the null string
when not specified."
::= { cdsmrResultGroupTableEntry 3 }
cdsmrResultGroupIdentifier OBJECT-TYPE
SYNTAX Gauge(0|100..9999)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The object provides a ESME (large account) identifier.
This object only applies when the cdsmrResultGroupServerType
object specifies ESME. The zero value is usedt to
indicate that the object has not been specified."
::= { cdsmrResultGroupTableEntry 4 }
cdsmrResultGroupQueueLimit OBJECT-TYPE
SYNTAX Gauge(0..100000)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object defines the maximum number of elements on
outbound queue for any destination. The value of 0
indicates that there is no limit on the number of
entries."
::= { cdsmrResultGroupTableEntry 5 }
cdsmrResultGroupQueueTimeLimit OBJECT-TYPE
SYNTAX Gauge
-- Units
-- milliseconds
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Maximum time element can exist in outbound queue."
::= { cdsmrResultGroupTableEntry 6 }
cdsmrResultGroupMatchSmppId OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..15))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"When specified this object provides 1 to 15 character
ESME system identifier. This object only applies when
the cdsmrResultGroupServerType object specifies ESME."
::= { cdsmrResultGroupTableEntry 7 }
cdsmrResultGroupMatchSmppType OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..12))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"When specified this object provides 1 to 12 character
ESME system type. This object only applies when the
cdsmrResultGroupServerType object specifies ESME.
When this object is not specified it will return the
null sting."
::= { cdsmrResultGroupTableEntry 8 }
cdsmrResultGroupMatchUcpId OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..16))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The object provides 1 to 16 character ESME
ESME UCP address code. This object only applies when
the cdsmrResultGroupServerType object specifies ESME."
::= { cdsmrResultGroupTableEntry 9 }
cdsmrResultGroupRowStatus OBJECT-TYPE
SYNTAX RowStatus
-- Rsyntax INTEGER {
-- active(1),
-- notInService(2),
-- notReady(3),
-- createAndGo(4),
-- createAndWait(5),
-- destroy(6)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The object is used by a management station to
create or delete the row entry in cdsmrResultGroupTable
following the RowStatus textual convention."
::= { cdsmrResultGroupTableEntry 10 }
cdsmrResultIpTable OBJECT-TYPE
SYNTAX SEQUENCE OF CdsmrResultIpTableEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION