snmp_mib_archive/CISCO-ITP-ACT-MIB.my
Heston Snodgrass 89bf4b016e initial commit
2016-12-15 15:03:18 -07:00

373 lines
14 KiB
Plaintext

-- *****************************************************************
-- CISCO-ITP-ACT-MIB: Mib for SS7 SP support entities
--
-- June 2001, John Linton, Shekhar Acharya
--
-- Copyright (c) 2001-2002 by Cisco Systems, Inc.
-- All rights reserved.
-- *****************************************************************
--
-- *****************************************************************
CISCO-ITP-ACT-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
Counter32
FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP
FROM SNMPv2-CONF
CItpTcGlobalTitleSelectorName,
CItpTcGtaAddr,
CItpTcLinksetId,
CItpTcPointCode,
CItpTcServiceIndicator
FROM CISCO-ITP-TC-MIB
ciscoMgmt
FROM CISCO-SMI;
ciscoItpActMIB MODULE-IDENTITY
LAST-UPDATED "200212180000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
" Cisco Systems, Inc
Customer Service
Postal: 170 W. Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553-NETS
E-mail: cs-ss7@cisco.com"
DESCRIPTION
"The MIB for providing information specified
in ITU Q752 Monitoring and Measurements for
Signalling System No. 7(SS7) Network.
This information can be used to manage messages
transported over SS7 Network via Cisco IP
Transfer Point.
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."
REVISION "200212180000Z"
DESCRIPTION
"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-GACT-MIB.my
MIB."
REVISION "200109260000Z"
DESCRIPTION
"Initial version of this MIB module."
::= { ciscoMgmt 230 }
-- Top-level structure of the MIB
cItpActMIBNotifs OBJECT IDENTIFIER ::= { ciscoItpActMIB 0 }
cItpActMIBObjects OBJECT IDENTIFIER ::= { ciscoItpActMIB 1 }
cItpActMIBConformance OBJECT IDENTIFIER ::= { ciscoItpActMIB 2 }
cItpActMtp3 OBJECT IDENTIFIER ::= { cItpActMIBObjects 1 }
cItpActGtt OBJECT IDENTIFIER ::= { cItpActMIBObjects 2 }
-- *************************************************************
-- * *
-- * SP - Mtp3 Accounting Table *
-- * *
-- * This table supports Q752/6.6 and Q752/6.7 *
-- *************************************************************
cItpActMtp3Table OBJECT-TYPE
SYNTAX SEQUENCE OF CItpActMtp3TableEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"This table contains information about the number
of packets and bytes at the MTP3 layer. The
information collected from both directions(send
and receive). The information is broken down
by linkset, Destination Point Code (DPC),
Originating Point Code (OPC) and Signalling
Indicator (SI). This provides the lowest granularity
required by Q752 and allows network management
stations to calculate the required fields in Q752."
::= { cItpActMtp3 1 }
cItpActMtp3TableEntry OBJECT-TYPE
SYNTAX CItpActMtp3TableEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"A list of MTP3 accounting objects."
INDEX {
cItpActMtp3TableId,
cItpActMtp3LinksetName,
cItpActMtp3Dpc,
cItpActMtp3Opc,
cItpActMtp3SI
}
::= { cItpActMtp3Table 1 }
CItpActMtp3TableEntry ::= SEQUENCE {
cItpActMtp3TableId INTEGER,
cItpActMtp3LinksetName CItpTcLinksetId,
cItpActMtp3Dpc CItpTcPointCode,
cItpActMtp3Opc CItpTcPointCode,
cItpActMtp3SI CItpTcServiceIndicator,
cItpActMtp3RcvdPackets Counter32,
cItpActMtp3SentPackets Counter32,
cItpActMtp3RcvdBytes Counter32,
cItpActMtp3SentBytes Counter32
}
cItpActMtp3TableId OBJECT-TYPE
SYNTAX INTEGER {
passed(1),
violation(2)
}
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"The accounting table identifier.
'passed' : signifies that this table instance
represents statistics for packets that
matched an Access Control List (ACL) in
the linkset's inbound ACL and in the
outbound ACL.
'violation' : signifies that this table instance
represents statistics for packets that
did not match an ACL in the linkset's
inbound ACL and in the outbound ACL."
::= { cItpActMtp3TableEntry 1 }
cItpActMtp3LinksetName OBJECT-TYPE
SYNTAX CItpTcLinksetId
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"The name of the linkset."
::= { cItpActMtp3TableEntry 2 }
cItpActMtp3Dpc OBJECT-TYPE
SYNTAX CItpTcPointCode
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"The destination point code."
::= { cItpActMtp3TableEntry 3 }
cItpActMtp3Opc OBJECT-TYPE
SYNTAX CItpTcPointCode
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"The origin point code."
::= { cItpActMtp3TableEntry 4 }
cItpActMtp3SI OBJECT-TYPE
SYNTAX CItpTcServiceIndicator
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"The service indicator."
::= { cItpActMtp3TableEntry 5 }
cItpActMtp3RcvdPackets OBJECT-TYPE
SYNTAX Counter32
UNITS "packets"
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Sum of all received packets for this linkset, DPC and
OPC combination."
::= { cItpActMtp3TableEntry 6 }
cItpActMtp3SentPackets OBJECT-TYPE
SYNTAX Counter32
UNITS "packets"
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Sum of all transmitted packets for this linkset, DPC
and OPC combination."
::= { cItpActMtp3TableEntry 7 }
cItpActMtp3RcvdBytes OBJECT-TYPE
SYNTAX Counter32
UNITS "bytes"
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Sum of all received bytes for this linkset, DPC and
OPC combination."
::= { cItpActMtp3TableEntry 8 }
cItpActMtp3SentBytes OBJECT-TYPE
SYNTAX Counter32
UNITS "bytes"
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Sum of all transmitted bytes for this linkset, DPC
and OPC combination."
::= { cItpActMtp3TableEntry 9 }
-- *************************************************************
-- * *
-- * Global Title Translation - Accounting Table *
-- * *
-- *************************************************************
cItpActGttTable OBJECT-TYPE
SYNTAX SEQUENCE OF CItpActGttTableEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"This table contains information about the number
of packets and bytes required for global title
translation."
::= { cItpActGtt 1 }
cItpActGttTableEntry OBJECT-TYPE
SYNTAX CItpActGttTableEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"A list of Gtt accounting objects."
INDEX {
cItpActGttLinksetName,
cItpActGttSelectorName,
cItpActGttGta,
cItpActGttTranslatedPc
}
::= { cItpActGttTable 1 }
CItpActGttTableEntry ::= SEQUENCE {
cItpActGttLinksetName CItpTcLinksetId,
cItpActGttSelectorName CItpTcGlobalTitleSelectorName,
cItpActGttGta CItpTcGtaAddr,
cItpActGttTranslatedPc CItpTcPointCode,
cItpActGttPackets Counter32,
cItpActGttBytes Counter32
}
cItpActGttLinksetName OBJECT-TYPE
SYNTAX CItpTcLinksetId
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"The name of the linkset."
::= { cItpActGttTableEntry 1 }
cItpActGttSelectorName OBJECT-TYPE
SYNTAX CItpTcGlobalTitleSelectorName
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"The Global Title Selector Name."
::= { cItpActGttTableEntry 2 }
cItpActGttGta OBJECT-TYPE
SYNTAX CItpTcGtaAddr
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"The Global Title Address."
::= { cItpActGttTableEntry 3 }
cItpActGttTranslatedPc OBJECT-TYPE
SYNTAX CItpTcPointCode
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"The translated point code."
::= { cItpActGttTableEntry 4 }
cItpActGttPackets OBJECT-TYPE
SYNTAX Counter32
UNITS "bytes"
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Number of packets performing Global Title
Translation."
::= { cItpActGttTableEntry 5 }
cItpActGttBytes OBJECT-TYPE
SYNTAX Counter32
UNITS "bytes"
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Count of bytes received that required
Global Title Translation."
::= { cItpActGttTableEntry 6 }
-- *************************************************************
-- * *
-- * Conformance Information *
-- * *
-- *************************************************************
cItpActMIBCompliances OBJECT IDENTIFIER ::=
{ cItpActMIBConformance 1 }
cItpActMIBGroups OBJECT IDENTIFIER ::=
{ cItpActMIBConformance 2 }
-- Compliance
cItpActMIBCompliance MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for entities which implement
the Cisco SP MIB"
MODULE -- this module
MANDATORY-GROUPS {
cItpActMtp3Group,
cItpActGttGroup
}
::= { cItpActMIBCompliances 1 }
-- Units of Conformance
cItpActMtp3Group OBJECT-GROUP
OBJECTS {
cItpActMtp3RcvdPackets,
cItpActMtp3SentPackets,
cItpActMtp3RcvdBytes,
cItpActMtp3SentBytes
}
STATUS deprecated
DESCRIPTION
"Accounting for MTP3 objects."
::= { cItpActMIBGroups 1 }
cItpActGttGroup OBJECT-GROUP
OBJECTS {
cItpActGttPackets,
cItpActGttBytes
}
STATUS deprecated
DESCRIPTION
"Accounting for Global Title Translation."
::= { cItpActMIBGroups 2 }
END