mirror of
https://github.com/hsnodgrass/snmp_mib_archive.git
synced 2025-04-17 16:03:04 +00:00
386 lines
14 KiB
Plaintext
386 lines
14 KiB
Plaintext
-- *****************************************************************
|
|
-- CISCO-ITP-GACT-MIB: MIB Accounting information for SS7
|
|
--
|
|
-- September 2002, John Linton, Shekhar Acharya
|
|
--
|
|
-- Copyright (c) 2002-2003 by Cisco Systems, Inc.
|
|
-- All rights reserved.
|
|
-- *****************************************************************
|
|
--
|
|
-- *****************************************************************
|
|
CISCO-ITP-GACT-MIB DEFINITIONS ::= BEGIN
|
|
|
|
IMPORTS
|
|
MODULE-IDENTITY,
|
|
OBJECT-TYPE,
|
|
Counter32
|
|
FROM SNMPv2-SMI
|
|
|
|
MODULE-COMPLIANCE,
|
|
OBJECT-GROUP
|
|
FROM SNMPv2-CONF
|
|
|
|
cgspInstNetwork
|
|
FROM CISCO-ITP-GSP-MIB
|
|
|
|
CItpTcGlobalTitleSelectorName,
|
|
CItpTcGtaLongAddr,
|
|
CItpTcLinksetId,
|
|
CItpTcPointCode,
|
|
CItpTcServiceIndicator
|
|
FROM CISCO-ITP-TC-MIB
|
|
|
|
ciscoMgmt
|
|
FROM CISCO-SMI;
|
|
|
|
ciscoGactMIB MODULE-IDENTITY
|
|
LAST-UPDATED "200303030000Z"
|
|
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 signalling 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 "200303030000Z"
|
|
DESCRIPTION
|
|
"Initial version of this MIB module."
|
|
::= { ciscoMgmt 333 }
|
|
|
|
|
|
-- Top-level structure of the MIB
|
|
cgactMIBNotifs OBJECT IDENTIFIER ::= { ciscoGactMIB 0 }
|
|
cgactMIBObjects OBJECT IDENTIFIER ::= { ciscoGactMIB 1 }
|
|
cgactMIBConform OBJECT IDENTIFIER ::= { ciscoGactMIB 2 }
|
|
|
|
cgactMtp3 OBJECT IDENTIFIER ::= { cgactMIBObjects 1 }
|
|
cgactGtt OBJECT IDENTIFIER ::= { cgactMIBObjects 2 }
|
|
|
|
-- *************************************************************
|
|
-- * *
|
|
-- * SP - Mtp3 Accounting Table *
|
|
-- * *
|
|
-- * This table supports Q752/6.6 and Q752/6.7 *
|
|
-- *************************************************************
|
|
cgactMtp3Table OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF CgactMtp3TableEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"This table contains information about the number
|
|
of packets and bytes at the MTP3 transport 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."
|
|
::= { cgactMtp3 1 }
|
|
|
|
cgactMtp3TableEntry OBJECT-TYPE
|
|
SYNTAX CgactMtp3TableEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A list of MTP3 accounting objects. Objects are
|
|
created in this table as traffic is received
|
|
and processed. "
|
|
INDEX {
|
|
cgspInstNetwork,
|
|
cgactMtp3TableId,
|
|
cgactMtp3LinksetName,
|
|
cgactMtp3Dpc,
|
|
cgactMtp3Opc,
|
|
cgactMtp3SI
|
|
}
|
|
::= { cgactMtp3Table 1 }
|
|
|
|
CgactMtp3TableEntry ::= SEQUENCE {
|
|
cgactMtp3TableId INTEGER,
|
|
cgactMtp3LinksetName CItpTcLinksetId,
|
|
cgactMtp3Dpc CItpTcPointCode,
|
|
cgactMtp3Opc CItpTcPointCode,
|
|
cgactMtp3SI CItpTcServiceIndicator,
|
|
cgactMtp3InPackets Counter32,
|
|
cgactMtp3OutPackets Counter32,
|
|
cgactMtp3InOctets Counter32,
|
|
cgactMtp3OutOctets Counter32
|
|
}
|
|
|
|
cgactMtp3TableId OBJECT-TYPE
|
|
SYNTAX INTEGER {
|
|
passed(1),
|
|
violation(2),
|
|
unroutable(3)
|
|
}
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
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.
|
|
|
|
'unroutable' : packets that pass access list verification
|
|
but can not be sent to destination point
|
|
code. This could be caused by incorrect
|
|
or missing route statements or inaccessible
|
|
destination."
|
|
::= { cgactMtp3TableEntry 1 }
|
|
|
|
cgactMtp3LinksetName OBJECT-TYPE
|
|
SYNTAX CItpTcLinksetId
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"The name of the linkset."
|
|
::= { cgactMtp3TableEntry 2 }
|
|
|
|
cgactMtp3Dpc OBJECT-TYPE
|
|
SYNTAX CItpTcPointCode
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"The destination point code."
|
|
::= { cgactMtp3TableEntry 3 }
|
|
|
|
cgactMtp3Opc OBJECT-TYPE
|
|
SYNTAX CItpTcPointCode
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"The origin point code."
|
|
::= { cgactMtp3TableEntry 4 }
|
|
|
|
cgactMtp3SI OBJECT-TYPE
|
|
SYNTAX CItpTcServiceIndicator
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"The service indicator."
|
|
::= { cgactMtp3TableEntry 5 }
|
|
|
|
cgactMtp3InPackets OBJECT-TYPE
|
|
SYNTAX Counter32
|
|
UNITS "packets"
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"The accumulated number of packets that have been received
|
|
by this linkset, DPC and OPC combination since system
|
|
startup."
|
|
::= { cgactMtp3TableEntry 6 }
|
|
|
|
cgactMtp3OutPackets OBJECT-TYPE
|
|
SYNTAX Counter32
|
|
UNITS "packets"
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"The accumulated number of packets that have been sent
|
|
using this linkset, DPC and OPC combination since system
|
|
startup."
|
|
::= { cgactMtp3TableEntry 7 }
|
|
|
|
cgactMtp3InOctets OBJECT-TYPE
|
|
SYNTAX Counter32
|
|
UNITS "octets"
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"The accumulated number of bytes that have been received
|
|
using this linkset, DPC and OPC combination since system
|
|
startup."
|
|
::= { cgactMtp3TableEntry 8 }
|
|
|
|
cgactMtp3OutOctets OBJECT-TYPE
|
|
SYNTAX Counter32
|
|
UNITS "octets"
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"The accumulated number of bytes that have been sent
|
|
using this linkset, DPC and OPC combination since
|
|
system startup."
|
|
::= { cgactMtp3TableEntry 9 }
|
|
|
|
|
|
|
|
|
|
-- *************************************************************
|
|
-- * *
|
|
-- * Global Title Translation - Accounting Table *
|
|
-- * *
|
|
-- *************************************************************
|
|
cgactGttTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF CgactGttTableEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"This table contains information about the number
|
|
of packets and octets required for global title
|
|
translation."
|
|
::= { cgactGtt 1 }
|
|
|
|
cgactGttTableEntry OBJECT-TYPE
|
|
SYNTAX CgactGttTableEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A list of Global Title Translation accounting objects.
|
|
Objects are created in this table when MTP3 packets are
|
|
received requiring global title translation. "
|
|
INDEX {
|
|
cgspInstNetwork,
|
|
cgactGttLinksetName,
|
|
cgactGttSelectorName,
|
|
cgactGttGta,
|
|
cgactGttTranslatedPc
|
|
}
|
|
::= { cgactGttTable 1 }
|
|
|
|
CgactGttTableEntry ::= SEQUENCE {
|
|
cgactGttLinksetName CItpTcLinksetId,
|
|
cgactGttSelectorName CItpTcGlobalTitleSelectorName,
|
|
cgactGttGta CItpTcGtaLongAddr,
|
|
cgactGttTranslatedPc CItpTcPointCode,
|
|
cgactGttPackets Counter32,
|
|
cgactGttOctets Counter32
|
|
}
|
|
|
|
|
|
cgactGttLinksetName OBJECT-TYPE
|
|
SYNTAX CItpTcLinksetId
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"The name of the linkset."
|
|
::= { cgactGttTableEntry 1 }
|
|
|
|
cgactGttSelectorName OBJECT-TYPE
|
|
SYNTAX CItpTcGlobalTitleSelectorName
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"The Global Title Selector Name."
|
|
::= { cgactGttTableEntry 2 }
|
|
|
|
cgactGttGta OBJECT-TYPE
|
|
SYNTAX CItpTcGtaLongAddr
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"The Global Title Address."
|
|
::= { cgactGttTableEntry 3 }
|
|
|
|
cgactGttTranslatedPc OBJECT-TYPE
|
|
SYNTAX CItpTcPointCode
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"The translated point code."
|
|
::= { cgactGttTableEntry 4 }
|
|
|
|
cgactGttPackets OBJECT-TYPE
|
|
SYNTAX Counter32
|
|
UNITS "packets"
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"The accumulated number of packets received by this
|
|
signalling point requiring global title translation
|
|
since system startup."
|
|
::= { cgactGttTableEntry 5 }
|
|
|
|
cgactGttOctets OBJECT-TYPE
|
|
SYNTAX Counter32
|
|
UNITS "octets"
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"The accumulated number of bytes received by this
|
|
signalling point requiring global title translation
|
|
since system startup."
|
|
::= { cgactGttTableEntry 6 }
|
|
|
|
-- *************************************************************
|
|
-- * *
|
|
-- * Conformance Information *
|
|
-- * *
|
|
-- *************************************************************
|
|
ciscoGactMIBCompliances OBJECT IDENTIFIER ::= { cgactMIBConform 1 }
|
|
ciscoGactMIBGroups OBJECT IDENTIFIER ::= { cgactMIBConform 2 }
|
|
|
|
-- Compliance
|
|
|
|
ciscoGactMIBCompliance MODULE-COMPLIANCE
|
|
STATUS current
|
|
DESCRIPTION
|
|
"The compliance statement for entities which implement
|
|
the Cisco SP MIB"
|
|
MODULE -- this module
|
|
MANDATORY-GROUPS {
|
|
ciscoGactMtp3Group,
|
|
ciscoGactGttGroup
|
|
}
|
|
::= { ciscoGactMIBCompliances 1 }
|
|
|
|
-- Units of Conformance
|
|
|
|
ciscoGactMtp3Group OBJECT-GROUP
|
|
OBJECTS {
|
|
cgactMtp3InPackets,
|
|
cgactMtp3OutPackets,
|
|
cgactMtp3InOctets,
|
|
cgactMtp3OutOctets
|
|
}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A collection of objects providing MTP3 accounting feature."
|
|
::= { ciscoGactMIBGroups 1 }
|
|
|
|
ciscoGactGttGroup OBJECT-GROUP
|
|
OBJECTS {
|
|
cgactGttPackets,
|
|
cgactGttOctets
|
|
}
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A collection of objects providing Global Title Translation
|
|
accounting feature."
|
|
::= { ciscoGactMIBGroups 2 }
|
|
|
|
END
|