1-- *****************************************************************
2-- CISCO-ITP-ACT-MIB: Mib for SS7 SP support entities
3--
4-- June 2001, John Linton, Shekhar Acharya
5--
6-- Copyright (c) 2001-2002 by Cisco Systems, Inc.
7-- All rights reserved.
8-- *****************************************************************
9--
10-- *****************************************************************
11CISCO-ITP-ACT-MIB DEFINITIONS ::= BEGIN
12
13IMPORTS
14        MODULE-IDENTITY,
15        OBJECT-TYPE,
16        Counter32
17                FROM SNMPv2-SMI
18
19        MODULE-COMPLIANCE,
20        OBJECT-GROUP
21                FROM SNMPv2-CONF
22
23        CItpTcGlobalTitleSelectorName,
24        CItpTcGtaAddr,
25        CItpTcLinksetId,
26        CItpTcPointCode,
27        CItpTcServiceIndicator
28                FROM CISCO-ITP-TC-MIB
29
30        ciscoMgmt
31                FROM CISCO-SMI;
32
33ciscoItpActMIB MODULE-IDENTITY
34        LAST-UPDATED    "200212180000Z"
35        ORGANIZATION    "Cisco Systems, Inc."
36        CONTACT-INFO
37                "       Cisco Systems, Inc
38                        Customer Service
39
40                Postal: 170 W. Tasman Drive
41                        San Jose, CA  95134
42                        USA
43
44                   Tel: +1 800 553-NETS
45
46                E-mail: cs-ss7@cisco.com"
47        DESCRIPTION
48               "The MIB for providing information specified
49                in ITU Q752 Monitoring and Measurements for
50                Signalling System No. 7(SS7) Network.
51                This information can be used to manage messages
52                transported over SS7 Network via Cisco IP
53                Transfer Point.
54
55                The Cisco IP Transfer Point (ITP) is a hardware
56                and software solution that transports SS7 traffic
57                using IP. Each ITP node provides function similar
58                to SS7 signaling point.
59
60                The relevant ITU documents describing this technology
61                is the ITU Q series, including ITU Q.700: Introduction
62                to CCITT Signalling System No. 7 and ITU Q.701
63                Functional description of the message transfer part
64                (MTP) of Signalling System No. 7."
65
66        REVISION        "200212180000Z"
67        DESCRIPTION
68                "The ability to allow multiple instances of
69                 Signalling Points to run in the same device
70                 has introduce a new index structure.  All
71                 objects in this MIB will be deprecated and
72                 replaced by objects in the CISCO-ITP-GACT-MIB.my
73                 MIB."
74
75        REVISION        "200109260000Z"
76        DESCRIPTION
77                "Initial version of this MIB module."
78        ::= { ciscoMgmt 230 }
79
80
81-- Top-level structure of the MIB
82cItpActMIBNotifs      OBJECT IDENTIFIER ::= { ciscoItpActMIB    0 }
83cItpActMIBObjects     OBJECT IDENTIFIER ::= { ciscoItpActMIB    1 }
84cItpActMIBConformance OBJECT IDENTIFIER ::= { ciscoItpActMIB    2 }
85
86cItpActMtp3           OBJECT IDENTIFIER ::= { cItpActMIBObjects 1 }
87cItpActGtt            OBJECT IDENTIFIER ::= { cItpActMIBObjects 2 }
88
89--  *************************************************************
90--  *                                                           *
91--  * SP - Mtp3 Accounting Table                                *
92--  *                                                           *
93--  * This table supports Q752/6.6 and Q752/6.7                 *
94--  *************************************************************
95cItpActMtp3Table            OBJECT-TYPE
96    SYNTAX                  SEQUENCE OF CItpActMtp3TableEntry
97    MAX-ACCESS              not-accessible
98    STATUS                  deprecated
99    DESCRIPTION
100           "This table contains information about the number
101            of packets and bytes at the MTP3 layer. The
102            information collected from both directions(send
103            and receive). The information is broken down
104            by linkset, Destination Point Code (DPC),
105            Originating Point Code (OPC) and Signalling
106            Indicator (SI). This provides the lowest granularity
107            required by Q752 and allows network management
108            stations to calculate the required fields in Q752."
109    ::= { cItpActMtp3 1 }
110
111cItpActMtp3TableEntry             OBJECT-TYPE
112    SYNTAX                        CItpActMtp3TableEntry
113    MAX-ACCESS                    not-accessible
114    STATUS                        deprecated
115    DESCRIPTION
116            "A list of MTP3 accounting objects."
117    INDEX   {
118            cItpActMtp3TableId,
119            cItpActMtp3LinksetName,
120            cItpActMtp3Dpc,
121            cItpActMtp3Opc,
122            cItpActMtp3SI
123    }
124    ::= { cItpActMtp3Table  1 }
125
126CItpActMtp3TableEntry ::= SEQUENCE {
127    cItpActMtp3TableId                   INTEGER,
128    cItpActMtp3LinksetName               CItpTcLinksetId,
129    cItpActMtp3Dpc                       CItpTcPointCode,
130    cItpActMtp3Opc                       CItpTcPointCode,
131    cItpActMtp3SI                        CItpTcServiceIndicator,
132    cItpActMtp3RcvdPackets               Counter32,
133    cItpActMtp3SentPackets               Counter32,
134    cItpActMtp3RcvdBytes                 Counter32,
135    cItpActMtp3SentBytes                 Counter32
136}
137
138cItpActMtp3TableId               OBJECT-TYPE
139    SYNTAX                       INTEGER {
140                                      passed(1),
141                                      violation(2)
142                                  }
143    MAX-ACCESS                    not-accessible
144    STATUS                        deprecated
145    DESCRIPTION
146            "The accounting table identifier.
147            'passed'    : signifies that this table instance
148                          represents statistics for packets that
149                          matched an Access Control List (ACL) in
150                          the linkset's inbound ACL and in the
151                          outbound ACL.
152            'violation' : signifies that this table instance
153                          represents statistics for packets that
154                          did not match an ACL in the linkset's
155                          inbound ACL and in the outbound ACL."
156    ::= { cItpActMtp3TableEntry  1 }
157
158cItpActMtp3LinksetName            OBJECT-TYPE
159    SYNTAX                        CItpTcLinksetId
160    MAX-ACCESS                    not-accessible
161    STATUS                        deprecated
162    DESCRIPTION
163            "The name of the linkset."
164    ::= { cItpActMtp3TableEntry  2 }
165
166cItpActMtp3Dpc                    OBJECT-TYPE
167    SYNTAX                        CItpTcPointCode
168    MAX-ACCESS                    not-accessible
169    STATUS                        deprecated
170    DESCRIPTION
171            "The destination point code."
172    ::= { cItpActMtp3TableEntry  3 }
173
174cItpActMtp3Opc                    OBJECT-TYPE
175    SYNTAX                        CItpTcPointCode
176    MAX-ACCESS                    not-accessible
177    STATUS                        deprecated
178    DESCRIPTION
179            "The origin point code."
180    ::= { cItpActMtp3TableEntry  4 }
181
182cItpActMtp3SI                     OBJECT-TYPE
183    SYNTAX                        CItpTcServiceIndicator
184    MAX-ACCESS                    not-accessible
185    STATUS                        deprecated
186    DESCRIPTION
187           "The service indicator."
188    ::= { cItpActMtp3TableEntry  5 }
189
190cItpActMtp3RcvdPackets            OBJECT-TYPE
191    SYNTAX                        Counter32
192    UNITS                         "packets"
193    MAX-ACCESS                    read-only
194    STATUS                        deprecated
195    DESCRIPTION
196           "Sum of all received packets for this linkset, DPC and
197            OPC combination."
198    ::= { cItpActMtp3TableEntry  6 }
199
200cItpActMtp3SentPackets            OBJECT-TYPE
201    SYNTAX                        Counter32
202    UNITS                         "packets"
203    MAX-ACCESS                    read-only
204    STATUS                        deprecated
205    DESCRIPTION
206           "Sum of all transmitted packets for this linkset, DPC
207            and OPC combination."
208    ::= { cItpActMtp3TableEntry  7 }
209
210cItpActMtp3RcvdBytes              OBJECT-TYPE
211    SYNTAX                        Counter32
212    UNITS                         "bytes"
213    MAX-ACCESS                    read-only
214    STATUS                        deprecated
215    DESCRIPTION
216           "Sum of all received bytes for this linkset, DPC and
217            OPC combination."
218    ::= { cItpActMtp3TableEntry  8 }
219
220cItpActMtp3SentBytes              OBJECT-TYPE
221    SYNTAX                        Counter32
222    UNITS                         "bytes"
223    MAX-ACCESS                    read-only
224    STATUS                        deprecated
225    DESCRIPTION
226           "Sum of all transmitted bytes for this linkset, DPC
227            and OPC combination."
228    ::= { cItpActMtp3TableEntry  9 }
229
230
231
232
233--  *************************************************************
234--  *                                                           *
235--  * Global Title Translation - Accounting Table               *
236--  *                                                           *
237--  *************************************************************
238cItpActGttTable             OBJECT-TYPE
239    SYNTAX                  SEQUENCE OF CItpActGttTableEntry
240    MAX-ACCESS              not-accessible
241    STATUS                  deprecated
242    DESCRIPTION
243           "This table contains information about the number
244            of packets and bytes required for global title
245            translation."
246    ::= { cItpActGtt 1 }
247
248cItpActGttTableEntry             OBJECT-TYPE
249    SYNTAX                        CItpActGttTableEntry
250    MAX-ACCESS                    not-accessible
251    STATUS                        deprecated
252    DESCRIPTION
253            "A list of Gtt accounting objects."
254    INDEX   {
255             cItpActGttLinksetName,
256             cItpActGttSelectorName,
257             cItpActGttGta,
258             cItpActGttTranslatedPc
259    }
260    ::= { cItpActGttTable  1 }
261
262CItpActGttTableEntry ::= SEQUENCE {
263        cItpActGttLinksetName    CItpTcLinksetId,
264        cItpActGttSelectorName   CItpTcGlobalTitleSelectorName,
265        cItpActGttGta            CItpTcGtaAddr,
266        cItpActGttTranslatedPc   CItpTcPointCode,
267        cItpActGttPackets        Counter32,
268        cItpActGttBytes          Counter32
269}
270
271
272cItpActGttLinksetName             OBJECT-TYPE
273    SYNTAX                        CItpTcLinksetId
274    MAX-ACCESS                    not-accessible
275    STATUS                        deprecated
276    DESCRIPTION
277            "The name of the linkset."
278    ::= { cItpActGttTableEntry  1 }
279
280cItpActGttSelectorName            OBJECT-TYPE
281    SYNTAX                        CItpTcGlobalTitleSelectorName
282    MAX-ACCESS                    not-accessible
283    STATUS                        deprecated
284    DESCRIPTION
285            "The Global Title Selector Name."
286    ::= { cItpActGttTableEntry  2 }
287
288cItpActGttGta                     OBJECT-TYPE
289    SYNTAX                        CItpTcGtaAddr
290    MAX-ACCESS                    not-accessible
291    STATUS                        deprecated
292    DESCRIPTION
293            "The Global Title Address."
294    ::= { cItpActGttTableEntry  3 }
295
296cItpActGttTranslatedPc             OBJECT-TYPE
297    SYNTAX                        CItpTcPointCode
298    MAX-ACCESS                    not-accessible
299    STATUS                        deprecated
300    DESCRIPTION
301            "The translated point code."
302    ::= { cItpActGttTableEntry  4 }
303
304cItpActGttPackets                 OBJECT-TYPE
305    SYNTAX                        Counter32
306    UNITS                         "bytes"
307    MAX-ACCESS                    read-only
308    STATUS                        deprecated
309    DESCRIPTION
310           "Number of packets performing Global Title
311            Translation."
312    ::= { cItpActGttTableEntry  5 }
313
314cItpActGttBytes                   OBJECT-TYPE
315    SYNTAX                        Counter32
316    UNITS                         "bytes"
317    MAX-ACCESS                    read-only
318    STATUS                        deprecated
319    DESCRIPTION
320           "Count of bytes received that required
321            Global Title Translation."
322    ::= { cItpActGttTableEntry  6 }
323
324-- *************************************************************
325-- *                                                           *
326-- * Conformance Information                                   *
327-- *                                                           *
328-- *************************************************************
329cItpActMIBCompliances OBJECT IDENTIFIER ::=
330        { cItpActMIBConformance 1 }
331cItpActMIBGroups      OBJECT IDENTIFIER ::=
332        { cItpActMIBConformance 2 }
333
334-- Compliance
335
336cItpActMIBCompliance MODULE-COMPLIANCE
337    STATUS deprecated
338    DESCRIPTION
339            "The compliance statement for entities which implement
340            the Cisco SP MIB"
341    MODULE -- this module
342            MANDATORY-GROUPS {
343                    cItpActMtp3Group,
344                    cItpActGttGroup
345            }
346    ::= { cItpActMIBCompliances 1 }
347
348-- Units of Conformance
349
350cItpActMtp3Group OBJECT-GROUP
351    OBJECTS {
352              cItpActMtp3RcvdPackets,
353              cItpActMtp3SentPackets,
354              cItpActMtp3RcvdBytes,
355              cItpActMtp3SentBytes
356    }
357    STATUS deprecated
358    DESCRIPTION
359            "Accounting for MTP3 objects."
360    ::= { cItpActMIBGroups 1 }
361
362cItpActGttGroup OBJECT-GROUP
363    OBJECTS {
364              cItpActGttPackets,
365              cItpActGttBytes
366    }
367    STATUS deprecated
368    DESCRIPTION
369            "Accounting for Global Title Translation."
370    ::= { cItpActMIBGroups 2 }
371
372END
373