mirror of
https://github.com/hsnodgrass/snmp_mib_archive.git
synced 2025-04-20 01:12:10 +00:00
Removed files with duplicate SHA1 hashes
This commit is contained in:
parent
9b85a1dd92
commit
19cef55d47
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,304 +0,0 @@
|
|||||||
-- *------------------------------------------------------------------
|
|
||||||
-- * ADMIN-AUTH-STATS-MIB.my: The Altiga Administrator Authentication Statistics MIB.
|
|
||||||
-- *
|
|
||||||
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
|
|
||||||
-- *
|
|
||||||
-- * Copyright (c) 2002 by Cisco Systems, Inc.
|
|
||||||
-- * All rights reserved.
|
|
||||||
-- *
|
|
||||||
-- *------------------------------------------------------------------
|
|
||||||
|
|
||||||
ADMIN-AUTH-STATS-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY, OBJECT-TYPE, Integer32, Gauge32, IpAddress, Counter32, TimeTicks
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
OBJECT-GROUP, MODULE-COMPLIANCE
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
alAdminAuthStats, alAdminAuthGroup
|
|
||||||
FROM ALTIGA-MIB
|
|
||||||
alAdminAuthMibModule
|
|
||||||
FROM ALTIGA-GLOBAL-REG;
|
|
||||||
|
|
||||||
altigaAdminAuthStatsMibModule MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200209051300Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
E-mail: cs-cvpn3000@cisco.com"
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
"The Altiga Administrator Authentication Statistics MIB models counters and objects that are
|
|
||||||
of management interest for administration authentication.
|
|
||||||
|
|
||||||
Acronyms
|
|
||||||
The following acronyms are used in this document:
|
|
||||||
|
|
||||||
IP: Internet Protocol
|
|
||||||
|
|
||||||
MIB: Management Information Base
|
|
||||||
|
|
||||||
TACACS: Terminal Access Controller Access Control System
|
|
||||||
|
|
||||||
UDP: User Datagram Protocol
|
|
||||||
|
|
||||||
"
|
|
||||||
|
|
||||||
REVISION "200209051300Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added module compliance."
|
|
||||||
|
|
||||||
REVISION "200207100000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Updated with new header"
|
|
||||||
|
|
||||||
::= { alAdminAuthMibModule 2 }
|
|
||||||
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
-- MIB Objects
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
|
|
||||||
alAminAuthStatsGlobal OBJECT IDENTIFIER ::= { alAdminAuthStats 1 }
|
|
||||||
|
|
||||||
alAdminAuthServStatsTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AlAdminAuthServStatsEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The (conceptual) table listing the TACACS authentication
|
|
||||||
servers with which the client shares a secret."
|
|
||||||
::= { alAdminAuthStats 2 }
|
|
||||||
|
|
||||||
alAdminAuthServStatsEntry OBJECT-TYPE
|
|
||||||
SYNTAX AlAdminAuthServStatsEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry (conceptual row) representing a TACACS
|
|
||||||
authentication server with which the client shares a secret."
|
|
||||||
INDEX { alAdminAuthServIndex }
|
|
||||||
::= { alAdminAuthServStatsTable 1 }
|
|
||||||
|
|
||||||
AlAdminAuthServStatsEntry ::= SEQUENCE {
|
|
||||||
alAdminAuthServIndex Integer32,
|
|
||||||
alAdminAuthServAddress IpAddress,
|
|
||||||
alAdminAuthClientServerPortNumber Integer32,
|
|
||||||
alAdminAuthClientRoundTripTime TimeTicks,
|
|
||||||
alAdminAuthClientAccessRequests Counter32,
|
|
||||||
alAdminAuthClientAccessRetransmissions Counter32,
|
|
||||||
alAdminAuthClientAccessAccepts Counter32,
|
|
||||||
alAdminAuthClientAccessRejects Counter32,
|
|
||||||
alAdminAuthClientAccessChallenges Counter32,
|
|
||||||
alAdminAuthClientMalformedAccessResponses Counter32,
|
|
||||||
alAdminAuthClientBadAuthenticators Counter32,
|
|
||||||
alAdminAuthClientPendingRequests Gauge32,
|
|
||||||
alAdminAuthClientTimeouts Counter32,
|
|
||||||
alAdminAuthClientUnknownType Counter32,
|
|
||||||
alAdminAuthServerGroupIdentification Gauge32
|
|
||||||
}
|
|
||||||
|
|
||||||
alAdminAuthServIndex OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..MAX)
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A number uniquely identifying each ADMIN
|
|
||||||
Authentication server with which this client
|
|
||||||
communicates."
|
|
||||||
::= { alAdminAuthServStatsEntry 1 }
|
|
||||||
|
|
||||||
alAdminAuthServAddress OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The IP address of the ADMIN authentication server
|
|
||||||
referred to in this table entry."
|
|
||||||
::= { alAdminAuthServStatsEntry 2 }
|
|
||||||
|
|
||||||
alAdminAuthClientServerPortNumber OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The UDP port the client is using to send requests to
|
|
||||||
this server."
|
|
||||||
::= { alAdminAuthServStatsEntry 3 }
|
|
||||||
|
|
||||||
alAdminAuthClientRoundTripTime OBJECT-TYPE
|
|
||||||
SYNTAX TimeTicks
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The time interval between the most recent
|
|
||||||
Access-Reply/Access-Challenge and the Access-Request that
|
|
||||||
matched it from this ADMIN authentication server."
|
|
||||||
::= { alAdminAuthServStatsEntry 4 }
|
|
||||||
|
|
||||||
-- Request/Response statistics
|
|
||||||
-- Ignoring Unknown Types, then
|
|
||||||
-- AccessRequests + AccesssRetransmissions = AccessAccepts +
|
|
||||||
-- AccessRejects + AccessChallenges + PendingRequests + Timeouts
|
|
||||||
|
|
||||||
alAdminAuthClientAccessRequests OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of ADMIN Access-Request packets sent
|
|
||||||
to this server since client start-up. This does not
|
|
||||||
include retransmissions."
|
|
||||||
::= { alAdminAuthServStatsEntry 5 }
|
|
||||||
|
|
||||||
alAdminAuthClientAccessRetransmissions OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of ADMIN Access-Request packets
|
|
||||||
retransmitted to this ADMIN authentication server
|
|
||||||
since client start-up."
|
|
||||||
::= { alAdminAuthServStatsEntry 6 }
|
|
||||||
|
|
||||||
alAdminAuthClientAccessAccepts OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of ADMIN Access-Accept packets
|
|
||||||
received from this server since client start-up."
|
|
||||||
::= { alAdminAuthServStatsEntry 7 }
|
|
||||||
|
|
||||||
alAdminAuthClientAccessRejects OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of ADMIN Access-Reject packets
|
|
||||||
received from this server since client start-up."
|
|
||||||
::= { alAdminAuthServStatsEntry 8 }
|
|
||||||
|
|
||||||
alAdminAuthClientAccessChallenges OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of ADMIN Access-Challenge packets
|
|
||||||
received from this server since client start-up."
|
|
||||||
::= { alAdminAuthServStatsEntry 9 }
|
|
||||||
|
|
||||||
-- "Access-Response" includes an Access-Accept, Access-Challenge
|
|
||||||
-- or Access-Reject
|
|
||||||
|
|
||||||
alAdminAuthClientMalformedAccessResponses OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of malformed ADMIN Access-Response
|
|
||||||
packets received from this server since client
|
|
||||||
start-up. Malformed packets include packets with
|
|
||||||
an invalid length. Bad authenticators or
|
|
||||||
Signature attributes are not
|
|
||||||
included as malformed access responses."
|
|
||||||
::= { alAdminAuthServStatsEntry 10 }
|
|
||||||
|
|
||||||
alAdminAuthClientBadAuthenticators OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of ADMIN Access-Response packets
|
|
||||||
containing invalid authenticators or Signature
|
|
||||||
attributes received from this server since client
|
|
||||||
start-up."
|
|
||||||
::= { alAdminAuthServStatsEntry 11 }
|
|
||||||
|
|
||||||
alAdminAuthClientPendingRequests OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of ADMIN Access-Request packets
|
|
||||||
destined for this server that have not yet timed out
|
|
||||||
or received a response. This variable is incremented
|
|
||||||
when an Access-Request is sent and decremented due to
|
|
||||||
receipt of an Access-Reply or Access-Challenge,
|
|
||||||
a timeout or retransmission."
|
|
||||||
::= { alAdminAuthServStatsEntry 12 }
|
|
||||||
|
|
||||||
alAdminAuthClientTimeouts OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of authentication timeouts to this server
|
|
||||||
since client startup. After a timeout the client may
|
|
||||||
retry to the same server, send to a different server, or
|
|
||||||
give up. A retry to the same server is counted as a
|
|
||||||
retransmit as well as a timeout. A send to a different
|
|
||||||
server is counted as a Request as well as a timeout."
|
|
||||||
::= { alAdminAuthServStatsEntry 13 }
|
|
||||||
|
|
||||||
alAdminAuthClientUnknownType OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of ADMIN packets of unknown type which
|
|
||||||
were received from this server on the authentication port
|
|
||||||
since client start-up."
|
|
||||||
::= { alAdminAuthServStatsEntry 14 }
|
|
||||||
|
|
||||||
|
|
||||||
alAdminAuthServerGroupIdentification OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Id of group accociated with this server."
|
|
||||||
::= { alAdminAuthServStatsEntry 15 }
|
|
||||||
|
|
||||||
altigaAdminAuthStatsMibConformance OBJECT IDENTIFIER ::= { altigaAdminAuthStatsMibModule 1 }
|
|
||||||
altigaAdminAuthStatsMibCompliances OBJECT IDENTIFIER ::= { altigaAdminAuthStatsMibConformance 1 }
|
|
||||||
|
|
||||||
altigaAdminAuthStatsMibCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for agents which
|
|
||||||
implement the Altiga Administrator Authentication Statistics MIB."
|
|
||||||
MODULE
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
alAdminAuthClientMIBGroup
|
|
||||||
}
|
|
||||||
::= { altigaAdminAuthStatsMibCompliances 1 }
|
|
||||||
|
|
||||||
alAdminAuthClientMIBGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
alAdminAuthServAddress,
|
|
||||||
alAdminAuthClientServerPortNumber,
|
|
||||||
alAdminAuthClientRoundTripTime,
|
|
||||||
alAdminAuthClientAccessRequests,
|
|
||||||
alAdminAuthClientAccessRetransmissions,
|
|
||||||
alAdminAuthClientAccessAccepts,
|
|
||||||
alAdminAuthClientAccessRejects,
|
|
||||||
alAdminAuthClientAccessChallenges,
|
|
||||||
alAdminAuthClientMalformedAccessResponses,
|
|
||||||
alAdminAuthClientBadAuthenticators,
|
|
||||||
alAdminAuthClientPendingRequests,
|
|
||||||
alAdminAuthClientTimeouts,
|
|
||||||
alAdminAuthClientUnknownType,
|
|
||||||
alAdminAuthServerGroupIdentification
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The basic collection of objects providing management of
|
|
||||||
ADMIN Authentication Clients."
|
|
||||||
::= { alAdminAuthGroup 2 }
|
|
||||||
|
|
||||||
END
|
|
@ -1,637 +0,0 @@
|
|||||||
-- *****************************************************************
|
|
||||||
-- Descriptions of managed objects for ADSL DMT line interfaces.
|
|
||||||
--
|
|
||||||
-- March 1999, Patrick Gili
|
|
||||||
--
|
|
||||||
-- Copyright (c) 1999 by cisco Systems, Inc.
|
|
||||||
-- All rights reserved.
|
|
||||||
-- *****************************************************************
|
|
||||||
--
|
|
||||||
-- This mib was extracted from RFC xxxx
|
|
||||||
|
|
||||||
|
|
||||||
ADSL-DMT-LINE-MIB DEFINITIONS ::= BEGIN
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY, OBJECT-TYPE FROM SNMPv2-SMI
|
|
||||||
MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF
|
|
||||||
ifIndex FROM IF-MIB
|
|
||||||
adslLCSMib,
|
|
||||||
adslLineConfProfileName FROM ADSL-LINE-MIB;
|
|
||||||
|
|
||||||
adslLineDmtMIB MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "9809251000Z"
|
|
||||||
ORGANIZATION "ADSL Forum"
|
|
||||||
CONTACT-INFO "Kevin Godfrey
|
|
||||||
Motorola Inc.
|
|
||||||
Colvilles Road, East Kilbride,
|
|
||||||
Glasgow, United Kingdom.
|
|
||||||
Tel: +44 1355 565597
|
|
||||||
Fax: +44 1355 261790
|
|
||||||
E-mail: ttz864@email.sps.mot.com"
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
"Naming Conventions:
|
|
||||||
Atuc -- (ATUC) modem at near (Central) end of line
|
|
||||||
Atur -- (ATUR) modem at Remote end of line
|
|
||||||
ES -- Errored Second.
|
|
||||||
LCS -- Line Code Specific
|
|
||||||
Lof -- Loss of Frame
|
|
||||||
Lol -- Loss of Link
|
|
||||||
Los -- Loss of Signal
|
|
||||||
Lpr -- Loss of Power"
|
|
||||||
::= { adslLCSMib 2 }
|
|
||||||
|
|
||||||
adslLineDmtMIBObjects OBJECT IDENTIFIER ::= { adslLineDmtMIB 1 }
|
|
||||||
|
|
||||||
-- ADSL DMT Line Table
|
|
||||||
|
|
||||||
adslLineDmtTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AdslLineDmtEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This table extends the adslLineTable and contains common attributes
|
|
||||||
describing both ends of ADSL lines supported by the system."
|
|
||||||
::= { adslLineDmtMIBObjects 1 }
|
|
||||||
|
|
||||||
adslLineDmtEntry OBJECT-TYPE
|
|
||||||
SYNTAX AdslLineDmtEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A set of common attributes describing both ends of an ADSL line
|
|
||||||
supported by the system. There exist an entry for each ifEntry with
|
|
||||||
an ifType of adsl(94)."
|
|
||||||
INDEX { ifIndex }
|
|
||||||
::= { adslLineDmtTable 1 }
|
|
||||||
|
|
||||||
AdslLineDmtEntry ::= SEQUENCE {
|
|
||||||
adslLineDmtTrellis INTEGER,
|
|
||||||
adslLineDmtEOC INTEGER
|
|
||||||
}
|
|
||||||
|
|
||||||
adslLineDmtTrellis OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
trellisOn(1),
|
|
||||||
trellisOff(2)
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Reports whether the Trellis coding is used on the DMT
|
|
||||||
line. Use of trellis coding is determined at line
|
|
||||||
initialization with C-MSGS1 and R-MSGS1 exchanges
|
|
||||||
and will not change until the line is re-initialized."
|
|
||||||
::= { adslLineDmtEntry 1 }
|
|
||||||
|
|
||||||
adslLineDmtEOC OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
unknown(1), -- eoc mode is unknown yet
|
|
||||||
transaction(2), -- eoc only operates in original
|
|
||||||
-- transaction mode
|
|
||||||
streaming(3) -- eoc supports autonomous data
|
|
||||||
-- streaming mode and original
|
|
||||||
-- transaction mode
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Reports whether the eoc can support autonomous data streaming
|
|
||||||
mode or only transaction mode. After initialization, unknown
|
|
||||||
is reported until sufficient autonomous eoc messages have been
|
|
||||||
transmitted to determine the true capability of both ATUs."
|
|
||||||
::= { adslLineDmtEntry 2 }
|
|
||||||
|
|
||||||
-- ADSL ATU-C DMT Physical-Layer Parameters Table
|
|
||||||
|
|
||||||
adslAtucDmtPhysTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AdslAtucDmtPhysEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This table extends the adslAtucPhysTable and contains specific
|
|
||||||
physical layer parameters for the ATU-C class devices supported
|
|
||||||
by the system."
|
|
||||||
::= { adslLineDmtMIBObjects 2 }
|
|
||||||
|
|
||||||
adslAtucDmtPhysEntry OBJECT-TYPE
|
|
||||||
SYNTAX AdslAtucDmtPhysEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A set of physical-layer parameters for an ATU-C class device
|
|
||||||
supported by the system. There exists an entry for each ifEntry
|
|
||||||
with an ifType of adsl(94)."
|
|
||||||
INDEX { ifIndex }
|
|
||||||
::= { adslAtucDmtPhysTable 1 }
|
|
||||||
|
|
||||||
AdslAtucDmtPhysEntry ::= SEQUENCE {
|
|
||||||
adslAtucDmtIssue INTEGER,
|
|
||||||
adslAtucDmtState INTEGER,
|
|
||||||
adslAtucDmtInterleavePath INTEGER,
|
|
||||||
adslAtucDmtFastPath INTEGER
|
|
||||||
}
|
|
||||||
|
|
||||||
adslAtucDmtIssue OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
other(1), -- unknown or other
|
|
||||||
t1413Issue1(2), -- ANSI T1.413 Issue 1
|
|
||||||
t1413Issue2(3), -- ANSI T1.413 Issue 2
|
|
||||||
t1413Issue3(4), -- ANSI T1.413 Issue 3
|
|
||||||
gdmtIssue1(5), -- ITU G.dmt Issue 1
|
|
||||||
etsiIssue1(6) -- ETSI DMT Issue 1
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Reports the issue number of the relevant standard that the
|
|
||||||
DMT ADSL transceiver at the ATU-C is currently operating to.
|
|
||||||
The issue number will be fixed by the hardware and is
|
|
||||||
transmitted by the ATU-C in C-MSGS1 during initialization."
|
|
||||||
::= { adslAtucDmtPhysEntry 1 }
|
|
||||||
|
|
||||||
adslAtucDmtState OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
other(1), -- Unknown or other state
|
|
||||||
powerUp(2), -- DMT transceiver not yet
|
|
||||||
-- configured
|
|
||||||
configure(3), -- DMT transceiver being configured
|
|
||||||
idle(4), -- transceiver is initialized but
|
|
||||||
-- idle
|
|
||||||
quiet(5), -- awaiting activation request from
|
|
||||||
-- ATU-R
|
|
||||||
tone(6), -- requesting ATU-R to be silent
|
|
||||||
activating(7), -- activation in progress
|
|
||||||
training(8), -- transceiver training in progress
|
|
||||||
analyzing(9), -- channel analysis in progress
|
|
||||||
exchange(10), -- exchanging final operating
|
|
||||||
-- parameters
|
|
||||||
steadyState(11), -- normal operating mode
|
|
||||||
notResponding(12) -- DMT transceiver not responding
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Reports current state of the ATU-C DMT transceiver. The
|
|
||||||
current state can change dynamically. The SNMP agent
|
|
||||||
reports the state after querying the ATU-C state machine."
|
|
||||||
::= { adslAtucDmtPhysEntry 2 }
|
|
||||||
|
|
||||||
-- Report downstream path for each DMT bearer channel used by
|
|
||||||
-- ADSL Forum ATM and packet mode specifications. Data rates are
|
|
||||||
-- reported in the ADSL Line MIB. DMT bearer channel paths are
|
|
||||||
-- known to the ATU-C by observing the C-RATES1, C-RATES-RA,
|
|
||||||
-- R-RATES1, R-RATES-RA, R-RATES2 and C-RATES2 exchanges.
|
|
||||||
|
|
||||||
adslAtucDmtInterleavePath OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
none(1), -- Downstream interleave path is unused
|
|
||||||
as0(2), -- AS0 channel uses the interleaved path
|
|
||||||
as1(3) -- AS1 channel uses the interleaved path
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Reports bearer channel of downstream interleaved path."
|
|
||||||
::= { adslAtucDmtPhysEntry 3 }
|
|
||||||
|
|
||||||
adslAtucDmtFastPath OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
none(1), -- Downstream fast path is unused
|
|
||||||
as0(2), -- AS0 channel uses the fast path
|
|
||||||
as1(3) -- AS1 channel uses the fast path
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Reports bearer channel of downstream fast path."
|
|
||||||
::= { adslAtucDmtPhysEntry 4 }
|
|
||||||
|
|
||||||
-- ADSL ATU-R DMT Physical-Layer Parameters Table
|
|
||||||
|
|
||||||
adslAturDmtPhysTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AdslAturDmtPhysEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This table extends the adslAturPhysTable and contains physical
|
|
||||||
layer parameters for the ATU-R class devices supported by the
|
|
||||||
system."
|
|
||||||
::= { adslLineDmtMIBObjects 3 }
|
|
||||||
|
|
||||||
adslAturDmtPhysEntry OBJECT-TYPE
|
|
||||||
SYNTAX AdslAturDmtPhysEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A set of physical-layer parameters for an ATU-R class device
|
|
||||||
supported by the system. There exists an entry for each ifEntry
|
|
||||||
with an ifType of adsl(94)."
|
|
||||||
INDEX { ifIndex }
|
|
||||||
::= { adslAturDmtPhysTable 1 }
|
|
||||||
|
|
||||||
AdslAturDmtPhysEntry ::= SEQUENCE {
|
|
||||||
adslAturDmtIssue INTEGER,
|
|
||||||
adslAturDmtState INTEGER,
|
|
||||||
adslAturDmtInterleavePath INTEGER,
|
|
||||||
adslAturDmtFastPath INTEGER
|
|
||||||
}
|
|
||||||
|
|
||||||
adslAturDmtIssue OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
other(1), -- unknown or other
|
|
||||||
t1413Issue1(2), -- ANSI T1.413 Issue 1
|
|
||||||
t1413Issue2(3), -- ANSI T1.413 Issue 2
|
|
||||||
t1413Issue3(4), -- ANSI T1.413 Issue 3
|
|
||||||
gdmtIssue1(5), -- ITU G.dmt Issue 1
|
|
||||||
etsiIssue1(6) -- ETSI DMT Issue 1
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Reports the issue number of the relevant standard that
|
|
||||||
the DMT ADSL transceiver at the ATU-R is currently
|
|
||||||
operating to. The issue number will be fixed by the
|
|
||||||
hardware and is transmitted by the ATU-R
|
|
||||||
in R-MSGS1 during initialization."
|
|
||||||
::= { adslAturDmtPhysEntry 1 }
|
|
||||||
|
|
||||||
adslAturDmtState OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
other(1), -- Unknown or other state
|
|
||||||
activating(2), -- activation in progress
|
|
||||||
training(3), -- transceiver training in
|
|
||||||
-- progress
|
|
||||||
analyzing(4), -- channel analysis in progress
|
|
||||||
exchange(5), -- exchanging final operating
|
|
||||||
-- parameters
|
|
||||||
steadyState(6) -- normal operating mode
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Reports current state of the ATU-R DMT transceiver.
|
|
||||||
The current state can change dynamically. ATU-R state
|
|
||||||
is reported by the SNMP agent at the ATU-C which infers
|
|
||||||
the state depending on the ATU-C state. When the inference
|
|
||||||
cannot be made, unknown state is returned."
|
|
||||||
::= { adslAturDmtPhysEntry 2 }
|
|
||||||
|
|
||||||
-- Report upstream path for each DMT bearer channel used by
|
|
||||||
-- ADSL Forum ATM and packet mode specifications. Data rates are
|
|
||||||
-- reported in the ADSL Line MIB. DMT bearer channel paths are
|
|
||||||
-- known to the ATU-R by observing the C-RATES1, C-RATES-RA,
|
|
||||||
-- R-RATES1, R-RATES-RA, R-RATES2 and C-RATES2 exchanges.
|
|
||||||
|
|
||||||
adslAturDmtInterleavePath OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
none(1), -- Upstream interleave path is unused
|
|
||||||
ls0(2), -- LS0 channel uses the interleaved path
|
|
||||||
ls1(3) -- LS1 channel uses the interleaved path
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Reports bearer channel of upstream interleaved path."
|
|
||||||
::= { adslAturDmtPhysEntry 3 }
|
|
||||||
|
|
||||||
adslAturDmtFastPath OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
none(1), -- Upstream fast path is unused
|
|
||||||
ls0(2), -- LS0 channel uses the fast path
|
|
||||||
ls1(3) -- LS1 channel uses the fast path
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Reports bearer channel of upstream fast path."
|
|
||||||
::= { adslAturDmtPhysEntry 4 }
|
|
||||||
|
|
||||||
-- ADSL ATU-C DMT Channel Parameters Table
|
|
||||||
|
|
||||||
adslAtucDmtChanTable OBJECT IDENTIFIER ::= { adslLineDmtMIBObjects 4 }
|
|
||||||
|
|
||||||
-- ADSL ATU-R DMT Channel Parameters Table
|
|
||||||
|
|
||||||
adslAturDmtChanTable OBJECT IDENTIFIER ::= { adslLineDmtMIBObjects 5 }
|
|
||||||
|
|
||||||
-- ADSL ATU-C DMT Physical-Layer Statistics Table
|
|
||||||
|
|
||||||
adslAtucDmtPerfDataTable OBJECT IDENTIFIER ::= { adslLineDmtMIBObjects 6 }
|
|
||||||
|
|
||||||
-- ADSL ATU-R DMT Physical-Layer Statistics Table
|
|
||||||
|
|
||||||
adslAturDmtPerfDataTable OBJECT IDENTIFIER ::= { adslLineDmtMIBObjects 7 }
|
|
||||||
|
|
||||||
-- ADSL ATU-C DMT Physical-Layer Statistics 15-Minute Interval Table
|
|
||||||
|
|
||||||
adslAtucDmtIntervalTable OBJECT IDENTIFIER ::= { adslLineDmtMIBObjects 8 }
|
|
||||||
|
|
||||||
-- ADSL ATU-R DMT Physical-Layer Statistics 15-Minute Interval Table
|
|
||||||
|
|
||||||
adslAturDmtIntervalTable OBJECT IDENTIFIER ::= { adslLineDmtMIBObjects 9 }
|
|
||||||
|
|
||||||
-- ADSL ATU-C DMT Channel Statistics Table
|
|
||||||
|
|
||||||
adslAtucDmtChanPerfDataTable OBJECT IDENTIFIER ::= { adslLineDmtMIBObjects 10 }
|
|
||||||
|
|
||||||
-- ADSL ATU-R DMT Channel Statistics Table
|
|
||||||
|
|
||||||
adslAturDmtChanPerfDataTable OBJECT IDENTIFIER ::= { adslLineDmtMIBObjects 11 }
|
|
||||||
|
|
||||||
-- ADSL ATU-C DMT Channel Statistics 15-Minute Interval Table
|
|
||||||
|
|
||||||
adslAtucDmtChanIntervalTable OBJECT IDENTIFIER ::= { adslLineDmtMIBObjects 12 }
|
|
||||||
|
|
||||||
-- ADSL ATU-R DMT Channel Statistics 15-Minute Interval Table
|
|
||||||
|
|
||||||
adslAturDmtChanIntervalTable OBJECT IDENTIFIER ::= { adslLineDmtMIBObjects 13 }
|
|
||||||
|
|
||||||
-- Configuration Profile Table
|
|
||||||
|
|
||||||
adslLineDmtConfProfileIndexNext OBJECT IDENTIFIER ::= { adslLineDmtMIBObjects 14 }
|
|
||||||
|
|
||||||
adslLineDmtConfProfileTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AdslLineDmtConfProfileEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This table extends the adslLineConfProfileTable and contains
|
|
||||||
ADSL DMT line configuration information."
|
|
||||||
::= { adslLineDmtMIBObjects 15 }
|
|
||||||
|
|
||||||
adslLineDmtConfProfileEntry OBJECT-TYPE
|
|
||||||
SYNTAX AdslLineDmtConfProfileEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A configuration profile containing ADSL DMT line configuration
|
|
||||||
information."
|
|
||||||
INDEX { IMPLIED adslLineConfProfileName }
|
|
||||||
::= { adslLineDmtConfProfileTable 1 }
|
|
||||||
|
|
||||||
AdslLineDmtConfProfileEntry ::= SEQUENCE {
|
|
||||||
adslAtucDmtConfFreqBins OCTET STRING,
|
|
||||||
adslAturDmtConfFreqBins OCTET STRING,
|
|
||||||
adslLineDmtConfMode INTEGER,
|
|
||||||
adslLineDmtConfTrellis INTEGER,
|
|
||||||
adslLineDmtConfEOC INTEGER,
|
|
||||||
adslAtucDmtConfInterleavePath INTEGER,
|
|
||||||
adslAtucDmtConfFastPath INTEGER,
|
|
||||||
adslAturDmtConfInterleavePath INTEGER,
|
|
||||||
adslAturDmtConfFastPath INTEGER
|
|
||||||
}
|
|
||||||
|
|
||||||
-- Configuration profiles define the starting point for line
|
|
||||||
-- initialization. After initialization is complete, the
|
|
||||||
-- parameters may have changed due to the negotiation and rate
|
|
||||||
-- options process. Check the adslAtucDMTPhysTable and
|
|
||||||
-- adslLineDMTTable for the final settings.
|
|
||||||
|
|
||||||
adslAtucDmtConfFreqBins OBJECT-TYPE
|
|
||||||
SYNTAX OCTET STRING (SIZE(4))
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A string of 32 bits to enable/disable the incoming DMT
|
|
||||||
frequency bins that the ATU-C receiver monitors. Each bit
|
|
||||||
controls one bin with the first bit of the first octet
|
|
||||||
controlling sub-carrier zero (lowest frequency bin).
|
|
||||||
A bit set to 1 disables reception of the specified sub-
|
|
||||||
carrier frequency bin end a 0 enables reception."
|
|
||||||
DEFVAL { '00000000'H }
|
|
||||||
::= { adslLineDmtConfProfileEntry 1 }
|
|
||||||
|
|
||||||
adslAturDmtConfFreqBins OBJECT-TYPE
|
|
||||||
SYNTAX OCTET STRING (SIZE(32))
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A string of 256 bits to enable/disable the incoming DMT frequency
|
|
||||||
bins that the ATU-R receiver should monitor after the next activation.
|
|
||||||
The mechanism to pass adslAturDMTConfFreqBins to the ATU-R is vendor
|
|
||||||
specific. Each bit controls one bin with the first bit of the first
|
|
||||||
octet controlling sub-carrier zero (lowest frequency bin). A bit set
|
|
||||||
to 1 disables reception of the specified sub-carrier frequency bin end
|
|
||||||
a 0 enables reception."
|
|
||||||
DEFVAL { '0000000000000000000000000000000000000000000000000000000000000000'H }
|
|
||||||
::= { adslLineDmtConfProfileEntry 2 }
|
|
||||||
|
|
||||||
adslLineDmtConfMode OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
echoCancel(1), -- DMT line operates in echo
|
|
||||||
-- cancellation mode
|
|
||||||
freqDivMux(2) -- DMT line operates in frequency
|
|
||||||
-- division multiplex mode
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Defines the operational mode of the DMT ADSL transceiver.
|
|
||||||
Configured in the C-MSG1 and C-MSG-RA exchanges."
|
|
||||||
::= { adslLineDmtConfProfileEntry 3 }
|
|
||||||
|
|
||||||
adslLineDmtConfTrellis OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
enable(1), -- DMT line operates with
|
|
||||||
-- Trellis coder enabled
|
|
||||||
disable(2) -- DMT line operates with
|
|
||||||
-- Trellis coder disabled
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Enables the Trellis coder of the DMT transceiver. Configured
|
|
||||||
in the C-MSG1 and C-MSG-RA exchanges."
|
|
||||||
DEFVAL { disable }
|
|
||||||
::= { adslLineDmtConfProfileEntry 4 }
|
|
||||||
|
|
||||||
adslLineDmtConfEOC OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
byte(1), -- eoc operates in byte
|
|
||||||
-- transaction mode
|
|
||||||
streaming(2) -- eoc allows autonomous
|
|
||||||
-- data streaming mode in
|
|
||||||
-- addition to byte
|
|
||||||
-- transaction mode
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Defines the embedded operations channel mode for the DMT
|
|
||||||
ADSL line."
|
|
||||||
DEFVAL { byte }
|
|
||||||
::= { adslLineDmtConfProfileEntry 5 }
|
|
||||||
|
|
||||||
-- Configure upstream and downstream paths for each DMT bearer
|
|
||||||
-- channel used by ADSL Forum ATM and packet mode specifications.
|
|
||||||
-- DMT bearer channel paths are fixed by the ATU-C in the
|
|
||||||
-- C-RATES1 and C-RATES-RA rate option exchanges.
|
|
||||||
|
|
||||||
adslAtucDmtConfInterleavePath OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
none(1), -- No downstream interleave path
|
|
||||||
as0(2), -- Downstream interleave path operates
|
|
||||||
-- over the AS0 bearer channel
|
|
||||||
as1(3) -- Downstream interleave path operates
|
|
||||||
-- over the AS1 bearer channel
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Target channel for downstream interleave data path."
|
|
||||||
::= { adslLineDmtConfProfileEntry 6 }
|
|
||||||
|
|
||||||
adslAtucDmtConfFastPath OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
none(1), -- No downstream fast path
|
|
||||||
as0(2), -- Downstream fast path operates over
|
|
||||||
-- the AS0 bearer channel
|
|
||||||
as1(3) -- Downstream fast path operates over
|
|
||||||
-- the AS1 bearer channel
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Target channel for downstream fast data path."
|
|
||||||
::= { adslLineDmtConfProfileEntry 7 }
|
|
||||||
|
|
||||||
adslAturDmtConfInterleavePath OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
none(1), -- No upstream interleave path
|
|
||||||
ls0(2), -- Upstream interleave path operates
|
|
||||||
-- over the LS0 bearer channel
|
|
||||||
ls1(3) -- Upstream interleave path operates
|
|
||||||
-- over the LS1 bearer channel
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Target channel for upstream interleave data path."
|
|
||||||
::= { adslLineDmtConfProfileEntry 8 }
|
|
||||||
|
|
||||||
adslAturDmtConfFastPath OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
none(1), -- No upstream fast path
|
|
||||||
ls0(2), -- Upstream fast path operates over
|
|
||||||
-- the LS0 bearer channel
|
|
||||||
ls1(3) -- Upstream fast path operates over
|
|
||||||
-- the LS1 bearer channel
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Target channel for upstream fast data path."
|
|
||||||
::= { adslLineDmtConfProfileEntry 9 }
|
|
||||||
|
|
||||||
-- Alarm Configuration Profile Table
|
|
||||||
|
|
||||||
adslLineDmtAlarmConfProfileIndexNext OBJECT IDENTIFIER ::=
|
|
||||||
{ adslLineDmtMIBObjects 16 }
|
|
||||||
|
|
||||||
adslLineDmtAlarmConfProfileTable OBJECT IDENTIFIER ::=
|
|
||||||
{ adslLineDmtMIBObjects 17 }
|
|
||||||
|
|
||||||
-- MIB Notifications Definitions
|
|
||||||
|
|
||||||
adslDmtLineMIBNotificationsPrefix OBJECT IDENTIFIER ::= { adslLineDmtMIB 2 }
|
|
||||||
adslDmtLineMIBNotifications OBJECT IDENTIFIER ::=
|
|
||||||
{ adslDmtLineMIBNotificationsPrefix 0 }
|
|
||||||
|
|
||||||
-- MIB Conformance Statements
|
|
||||||
|
|
||||||
adslLineDmtMIBConformance OBJECT IDENTIFIER ::= { adslLineDmtMIB 3 }
|
|
||||||
|
|
||||||
adslLineDmtMIBCompliances OBJECT IDENTIFIER ::= { adslLineDmtMIBConformance 1 }
|
|
||||||
adslLineDmtMIBGroups OBJECT IDENTIFIER ::= { adslLineDmtMIBConformance 2 }
|
|
||||||
|
|
||||||
-- Compliance
|
|
||||||
|
|
||||||
adslDMTLineMibCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for SNMP entities which have ADSL DMT
|
|
||||||
interfaces."
|
|
||||||
|
|
||||||
MODULE -- this module
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
adslLineDmtGroup,
|
|
||||||
adslAtucDmtPhysGroup,
|
|
||||||
adslAturDmtPhysGroup,
|
|
||||||
adslLineDmtConfProfileGroup
|
|
||||||
}
|
|
||||||
::= { adslLineDmtMIBCompliances 1 }
|
|
||||||
|
|
||||||
adslLineDmtMIBAturCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for SNMP entities which manage ADSL DMT
|
|
||||||
ATU-R interfaces."
|
|
||||||
|
|
||||||
MODULE -- this module
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
adslLineDmtGroup,
|
|
||||||
adslAturDmtPhysGroup,
|
|
||||||
adslLineDmtConfProfileGroup
|
|
||||||
}
|
|
||||||
::= { adslLineDmtMIBCompliances 2 }
|
|
||||||
|
|
||||||
-- Units of Conformance
|
|
||||||
|
|
||||||
adslLineDmtGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
adslLineDmtTrellis,
|
|
||||||
adslLineDmtEOC
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of managed objects defining the attributes of an ADSL
|
|
||||||
line supportings modems using the DMT line code."
|
|
||||||
::= { adslLineDmtMIBGroups 1 }
|
|
||||||
|
|
||||||
adslAtucDmtPhysGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
adslAtucDmtIssue,
|
|
||||||
adslAtucDmtState,
|
|
||||||
adslAtucDmtInterleavePath,
|
|
||||||
adslAtucDmtFastPath
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of managed objects defining the physical-layer
|
|
||||||
parameters of an ATU-C using the DMT line code."
|
|
||||||
::= { adslLineDmtMIBGroups 2 }
|
|
||||||
|
|
||||||
adslAturDmtPhysGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
adslAturDmtIssue,
|
|
||||||
adslAturDmtState,
|
|
||||||
adslAturDmtInterleavePath,
|
|
||||||
adslAturDmtFastPath
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of managed objects defining the physical-layer
|
|
||||||
parameters of an ATU-R using the DMT line code."
|
|
||||||
::= { adslLineDmtMIBGroups 3 }
|
|
||||||
|
|
||||||
adslLineDmtConfProfileGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
adslAtucDmtConfFreqBins,
|
|
||||||
adslAturDmtConfFreqBins,
|
|
||||||
adslLineDmtConfMode,
|
|
||||||
adslLineDmtConfTrellis,
|
|
||||||
adslLineDmtConfEOC,
|
|
||||||
adslAtucDmtConfInterleavePath,
|
|
||||||
adslAtucDmtConfFastPath,
|
|
||||||
adslAturDmtConfInterleavePath,
|
|
||||||
adslAturDmtConfFastPath
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of managed objects defining the line configuration
|
|
||||||
information associated with one or more ADSL ATU class devices
|
|
||||||
implementing the DMT line code."
|
|
||||||
::= { adslLineDmtMIBGroups 4 }
|
|
||||||
|
|
||||||
END
|
|
File diff suppressed because it is too large
Load Diff
@ -1,125 +0,0 @@
|
|||||||
-- *****************************************************************
|
|
||||||
-- Descriptions of managed objects for ADSL DMT line interfaces.
|
|
||||||
--
|
|
||||||
-- March 1999, Patrick Gili
|
|
||||||
--
|
|
||||||
-- Copyright (c) 1999, 2000 by cisco Systems, Inc.
|
|
||||||
-- All rights reserved.
|
|
||||||
-- *****************************************************************
|
|
||||||
--
|
|
||||||
-- This mib was extracted from RFC xxxx
|
|
||||||
|
|
||||||
|
|
||||||
ADSL-TC-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
transmission,
|
|
||||||
MODULE-IDENTITY, Gauge32 FROM SNMPv2-SMI
|
|
||||||
TEXTUAL-CONVENTION FROM SNMPv2-TC;
|
|
||||||
|
|
||||||
adsltcmib MODULE-IDENTITY
|
|
||||||
|
|
||||||
LAST-UPDATED "9908190000Z"
|
|
||||||
|
|
||||||
ORGANIZATION "IETF ADSL MIB Working Group"
|
|
||||||
|
|
||||||
CONTACT-INFO
|
|
||||||
"
|
|
||||||
Gregory Bathrick
|
|
||||||
AG Communication Systems
|
|
||||||
A Subsidiary of Lucent Technologies
|
|
||||||
2500 W Utopia Rd.
|
|
||||||
Phoenix, AZ 85027 USA
|
|
||||||
Tel: +1 602-582-7679
|
|
||||||
Fax: +1 602-582-7697
|
|
||||||
E-mail: bathricg@agcs.com
|
|
||||||
|
|
||||||
Faye Ly
|
|
||||||
Copper Mountain Networks
|
|
||||||
Norcal Office
|
|
||||||
2470 Embarcadero Way
|
|
||||||
Palo Alto, CA 94303
|
|
||||||
Tel: +1 650-858-8500
|
|
||||||
Fax: +1 650-858-8085
|
|
||||||
E-Mail: faye@coppermountain.com
|
|
||||||
IETF ADSL MIB Working Group (adsl@xlist.agcs.com)
|
|
||||||
"
|
|
||||||
DESCRIPTION
|
|
||||||
"The MIB module which provides a ADSL
|
|
||||||
Line Coding Textual Convention to be used
|
|
||||||
by ADSL Lines."
|
|
||||||
|
|
||||||
-- Revision history
|
|
||||||
REVISION "9908190000Z" -- 19 August 1999, midnight
|
|
||||||
DESCRIPTION "Initial Version, published as RFC 2662"
|
|
||||||
|
|
||||||
::= { transmission 94 2 } -- adslMIB 2
|
|
||||||
|
|
||||||
AdslLineCodingType ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This data type is used as the syntax for the ADSL
|
|
||||||
Line Code."
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
other(1),-- none of the following
|
|
||||||
dmt (2), -- Discrete MultiTone
|
|
||||||
cap (3), -- Carrierless Amplitude & Phase modulation
|
|
||||||
qam (4) -- Quadrature Amplitude Modulation
|
|
||||||
}
|
|
||||||
|
|
||||||
AdslPerfCurrDayCount ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A counter associated with interface performance
|
|
||||||
measurements in a current 1-day (24 hour) measurement
|
|
||||||
interval.
|
|
||||||
|
|
||||||
The value of this counter starts at zero at the
|
|
||||||
beginning of an interval and is increased when
|
|
||||||
associated events occur, until the end of the
|
|
||||||
1-day interval. At that time the value of the
|
|
||||||
counter is stored in the previous 1-day history
|
|
||||||
interval, if available, and the current interval
|
|
||||||
counter is restarted at zero.
|
|
||||||
|
|
||||||
In the case where the agent has no valid data available
|
|
||||||
for this interval the corresponding object
|
|
||||||
instance is not available and upon a retrieval
|
|
||||||
request a corresponding error message shall be
|
|
||||||
returned to indicate that this instance does
|
|
||||||
not exist (for example, a noSuchName error for
|
|
||||||
SNMPv1 and a noSuchInstance for SNMPv2 GET
|
|
||||||
operation)."
|
|
||||||
SYNTAX Gauge32
|
|
||||||
|
|
||||||
AdslPerfPrevDayCount ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A counter associated with interface performance
|
|
||||||
measurements during the most previous 1-day (24 hour)
|
|
||||||
measurement interval. The value of this counter is
|
|
||||||
equal to the value of the current day counter at
|
|
||||||
the end of its most recent interval.
|
|
||||||
|
|
||||||
In the case where the agent has no valid data available
|
|
||||||
for this interval the corresponding object
|
|
||||||
instance is not available and upon a retrieval
|
|
||||||
request a corresponding error message shall be
|
|
||||||
returned to indicate that this instance does
|
|
||||||
not exist (for example, a noSuchName error for
|
|
||||||
SNMPv1 and a noSuchInstance for SNMPv2 GET
|
|
||||||
operation)."
|
|
||||||
SYNTAX Gauge32
|
|
||||||
|
|
||||||
AdslPerfTimeElapsed ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of seconds that have elapsed since
|
|
||||||
the beginning of the current measurement period.
|
|
||||||
If, for some reason, such as an adjustment in the
|
|
||||||
system's time-of-day clock, the current interval
|
|
||||||
exceeds the maximum value, the agent will return
|
|
||||||
the maximum value."
|
|
||||||
SYNTAX Gauge32
|
|
||||||
|
|
||||||
END
|
|
File diff suppressed because it is too large
Load Diff
@ -1,728 +0,0 @@
|
|||||||
ADSL2-LINE-TC-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY,
|
|
||||||
transmission
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
TEXTUAL-CONVENTION
|
|
||||||
FROM SNMPv2-TC;
|
|
||||||
|
|
||||||
|
|
||||||
adsl2TCMIB MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200610040000Z"
|
|
||||||
ORGANIZATION "ADSLMIB Working Group"
|
|
||||||
CONTACT-INFO
|
|
||||||
"WG-email: adslmib@ietf.org
|
|
||||||
Info: https://www1.ietf.org/mailman/listinfo/adslmib
|
|
||||||
|
|
||||||
Chair: Mike Sneed
|
|
||||||
Sand Channel Systems
|
|
||||||
Postal: P.O. Box 37324
|
|
||||||
Raleigh NC 27627-732
|
|
||||||
Email: sneedmike@hotmail.com
|
|
||||||
Phone: +1 206 600 7022
|
|
||||||
|
|
||||||
Co-Chair & Co-editor:
|
|
||||||
Menachem Dodge
|
|
||||||
ECI Telecom Ltd.
|
|
||||||
Postal: 30 Hasivim St.
|
|
||||||
Petach Tikva 49517,
|
|
||||||
Israel.
|
|
||||||
Email: mbdodge@ieee.org
|
|
||||||
Phone: +972 3 926 8421
|
|
||||||
Co-editor: Moti Morgenstern
|
|
||||||
ECI Telecom Ltd.
|
|
||||||
Postal: 30 Hasivim St.
|
|
||||||
Petach Tikva 49517,
|
|
||||||
Israel.
|
|
||||||
Email: moti.morgenstern@ecitele.com
|
|
||||||
Phone: +972 3 926 6258
|
|
||||||
|
|
||||||
Co-editor: Scott Baillie
|
|
||||||
NEC Australia
|
|
||||||
Postal: 649-655 Springvale Road,
|
|
||||||
Mulgrave, Victoria 3170,
|
|
||||||
Australia.
|
|
||||||
Email: scott.baillie@nec.com.au
|
|
||||||
Phone: +61 3 9264 3986
|
|
||||||
|
|
||||||
Co-editor: Umberto Bonollo
|
|
||||||
NEC Australia
|
|
||||||
Postal: 649-655 Springvale Road,
|
|
||||||
Mulgrave, Victoria 3170,
|
|
||||||
Australia.
|
|
||||||
Email: umberto.bonollo@nec.com.au
|
|
||||||
Phone: +61 3 9264 3385"
|
|
||||||
DESCRIPTION
|
|
||||||
"This MIB Module provides Textual Conventions to be
|
|
||||||
used by the ADSL2-LINE-MIB module for the purpose of
|
|
||||||
managing ADSL, ADSL2, and ADSL2+ lines.
|
|
||||||
|
|
||||||
Copyright (C) The Internet Society (2006). This version of
|
|
||||||
this MIB module is part of RFC 4706: see the RFC itself for
|
|
||||||
full legal notices."
|
|
||||||
REVISION "200610040000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Initial version, published as RFC 4706."
|
|
||||||
::= { transmission 238 2 }
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
-- adsl2MIB 2
|
|
||||||
--
|
|
||||||
-- ----------------------------------------------
|
|
||||||
-- Textual Conventions --
|
|
||||||
-- ----------------------------------------------
|
|
||||||
|
|
||||||
Adsl2Unit ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Identifies a transceiver as being either an ATU-C or
|
|
||||||
an ATU-R. An ADSL line consists of two transceivers, an ATU-C
|
|
||||||
and an ATU-R. Attributes with this syntax reference the two
|
|
||||||
sides of a line. Specified as an INTEGER, the two values
|
|
||||||
are:
|
|
||||||
|
|
||||||
atuc(1) -- Central office ADSL terminal unit (ATU-C).
|
|
||||||
atur(2) -- Remote ADSL terminal unit (ATU-R)."
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
atuc(1),
|
|
||||||
atur(2)
|
|
||||||
}
|
|
||||||
|
|
||||||
Adsl2Direction ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Identifies the direction of a band as being
|
|
||||||
either upstream or downstream. Specified as an INTEGER,
|
|
||||||
the two values are:
|
|
||||||
upstream(1), and
|
|
||||||
downstream(2)."
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
upstream(1),
|
|
||||||
downstream(2)
|
|
||||||
}
|
|
||||||
|
|
||||||
Adsl2TransmissionModeType ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A set of ADSL2 line transmission modes, with one bit
|
|
||||||
per mode. The notes (F) and (L) denote Full-Rate
|
|
||||||
and Lite/splitterless, respectively:
|
|
||||||
Bit 00 : Regional Std. (ANSI T1.413) (F)
|
|
||||||
Bit 01 : Regional Std. (ETSI DTS/TM06006) (F)
|
|
||||||
Bit 02 : G.992.1 POTS non-overlapped (F)
|
|
||||||
Bit 03 : G.992.1 POTS overlapped (F)
|
|
||||||
Bit 04 : G.992.1 ISDN non-overlapped (F)
|
|
||||||
Bit 05 : G.992.1 ISDN overlapped (F)
|
|
||||||
Bit 06 : G.992.1 TCM-ISDN non-overlapped (F)
|
|
||||||
Bit 07 : G.992.1 TCM-ISDN overlapped (F)
|
|
||||||
Bit 08 : G.992.2 POTS non-overlapped (L)
|
|
||||||
Bit 09 : G.992.2 POTS overlapped (L)
|
|
||||||
Bit 10 : G.992.2 with TCM-ISDN non-overlapped (L)
|
|
||||||
Bit 11 : G.992.2 with TCM-ISDN overlapped (L)
|
|
||||||
Bit 12 : G.992.1 TCM-ISDN symmetric (F) -- not in G.997.1
|
|
||||||
Bit 13-17: Reserved
|
|
||||||
Bit 18 : G.992.3 POTS non-overlapped (F)
|
|
||||||
Bit 19 : G.992.3 POTS overlapped (F)
|
|
||||||
Bit 20 : G.992.3 ISDN non-overlapped (F)
|
|
||||||
Bit 21 : G.992.3 ISDN overlapped (F)
|
|
||||||
Bit 22-23: Reserved
|
|
||||||
Bit 24 : G.992.4 POTS non-overlapped (L)
|
|
||||||
Bit 25 : G.992.4 POTS overlapped (L)
|
|
||||||
Bit 26-27: Reserved
|
|
||||||
Bit 28 : G.992.3 Annex I All-Digital non-overlapped (F)
|
|
||||||
Bit 29 : G.992.3 Annex I All-Digital overlapped (F)
|
|
||||||
Bit 30 : G.992.3 Annex J All-Digital non-overlapped (F)
|
|
||||||
Bit 31 : G.992.3 Annex J All-Digital overlapped (F)
|
|
||||||
Bit 32 : G.992.4 Annex I All-Digital non-overlapped (L)
|
|
||||||
Bit 33 : G.992.4 Annex I All-Digital overlapped (L)
|
|
||||||
Bit 34 : G.992.3 Annex L POTS non-overlapped, mode 1,
|
|
||||||
wide U/S (F)
|
|
||||||
Bit 35 : G.992.3 Annex L POTS non-overlapped, mode 2,
|
|
||||||
narrow U/S(F)
|
|
||||||
Bit 36 : G.992.3 Annex L POTS overlapped, mode 3,
|
|
||||||
wide U/S (F)
|
|
||||||
Bit 37 : G.992.3 Annex L POTS overlapped, mode 4,
|
|
||||||
narrow U/S (F)
|
|
||||||
Bit 38 : G.992.3 Annex M POTS non-overlapped (F)
|
|
||||||
Bit 39 : G.992.3 Annex M POTS overlapped (F)
|
|
||||||
Bit 40 : G.992.5 POTS non-overlapped (F)
|
|
||||||
Bit 41 : G.992.5 POTS overlapped (F)
|
|
||||||
Bit 42 : G.992.5 ISDN non-overlapped (F)
|
|
||||||
Bit 43 : G.992.5 ISDN overlapped (F)
|
|
||||||
Bit 44-45: Reserved
|
|
||||||
Bit 46 : G.992.5 Annex I All-Digital non-overlapped (F)
|
|
||||||
Bit 47 : G.992.5 Annex I All-Digital overlapped (F)
|
|
||||||
Bit 48 : G.992.5 Annex J All-Digital non-overlapped (F)
|
|
||||||
Bit 49 : G.992.5 Annex J All-Digital overlapped (F)
|
|
||||||
Bit 50 : G.992.5 Annex M POTS non-overlapped (F)
|
|
||||||
Bit 51 : G.992.5 Annex M POTS overlapped (F)
|
|
||||||
Bit 52-55: Reserved"
|
|
||||||
SYNTAX BITS {
|
|
||||||
ansit1413(0),
|
|
||||||
etsi(1),
|
|
||||||
g9921PotsNonOverlapped(2),
|
|
||||||
g9921PotsOverlapped(3),
|
|
||||||
g9921IsdnNonOverlapped(4),
|
|
||||||
g9921isdnOverlapped(5),
|
|
||||||
g9921tcmIsdnNonOverlapped(6),
|
|
||||||
g9921tcmIsdnOverlapped(7),
|
|
||||||
g9922potsNonOverlapped(8),
|
|
||||||
g9922potsOverlapped(9),
|
|
||||||
g9922tcmIsdnNonOverlapped(10),
|
|
||||||
g9922tcmIsdnOverlapped(11),
|
|
||||||
g9921tcmIsdnSymmetric(12),
|
|
||||||
reserved1(13),
|
|
||||||
reserved2(14),
|
|
||||||
reserved3(15),
|
|
||||||
reserved4(16),
|
|
||||||
reserved5(17),
|
|
||||||
g9923PotsNonOverlapped(18),
|
|
||||||
g9923PotsOverlapped(19),
|
|
||||||
g9923IsdnNonOverlapped(20),
|
|
||||||
g9923isdnOverlapped(21),
|
|
||||||
reserved6(22),
|
|
||||||
reserved7(23),
|
|
||||||
g9924potsNonOverlapped(24),
|
|
||||||
g9924potsOverlapped(25),
|
|
||||||
reserved8(26),
|
|
||||||
reserved9(27),
|
|
||||||
g9923AnnexIAllDigNonOverlapped(28),
|
|
||||||
g9923AnnexIAllDigOverlapped(29),
|
|
||||||
g9923AnnexJAllDigNonOverlapped(30),
|
|
||||||
g9923AnnexJAllDigOverlapped(31),
|
|
||||||
g9924AnnexIAllDigNonOverlapped(32),
|
|
||||||
g9924AnnexIAllDigOverlapped(33),
|
|
||||||
g9923AnnexLMode1NonOverlapped(34),
|
|
||||||
g9923AnnexLMode2NonOverlapped(35),
|
|
||||||
g9923AnnexLMode3Overlapped(36),
|
|
||||||
g9923AnnexLMode4Overlapped(37),
|
|
||||||
g9923AnnexMPotsNonOverlapped(38),
|
|
||||||
g9923AnnexMPotsOverlapped(39),
|
|
||||||
g9925PotsNonOverlapped(40),
|
|
||||||
g9925PotsOverlapped(41),
|
|
||||||
g9925IsdnNonOverlapped(42),
|
|
||||||
g9925isdnOverlapped(43),
|
|
||||||
reserved10(44),
|
|
||||||
reserved11(45),
|
|
||||||
g9925AnnexIAllDigNonOverlapped(46),
|
|
||||||
g9925AnnexIAllDigOverlapped(47),
|
|
||||||
g9925AnnexJAllDigNonOverlapped(48),
|
|
||||||
g9925AnnexJAllDigOverlapped(49),
|
|
||||||
g9925AnnexMPotsNonOverlapped(50),
|
|
||||||
g9925AnnexMPotsOverlapped(51),
|
|
||||||
reserved12(52),
|
|
||||||
reserved13(53),
|
|
||||||
reserved14(54),
|
|
||||||
reserved15(55)
|
|
||||||
}
|
|
||||||
|
|
||||||
Adsl2RaMode ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Specifies the rate adaptation behavior for the line.
|
|
||||||
The three possible behaviors are:
|
|
||||||
manual(1) - No Rate-Adaptation. The initialization
|
|
||||||
process attempts to synchronize to a
|
|
||||||
specified rate.
|
|
||||||
raInit(2) - Rate-Adaptation during initialization process
|
|
||||||
only, which attempts to synchronize to a rate
|
|
||||||
between minimum and maximum specified values.
|
|
||||||
dynamicRa(3) - Dynamic Rate-Adaptation during initialization
|
|
||||||
process as well as during SHOWTIME."
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
manual(1),
|
|
||||||
raInit(2),
|
|
||||||
dynamicRa(3)
|
|
||||||
}
|
|
||||||
|
|
||||||
Adsl2InitResult ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Specifies the result of a full initialization attempt; the
|
|
||||||
six possible result values are:
|
|
||||||
noFail(0) - Successful initialization.
|
|
||||||
configError(1) - Configuration failure.
|
|
||||||
configNotFeasible(2) - Configuration details not supported.
|
|
||||||
commFail(3) - Communication failure.
|
|
||||||
noPeerAtu(4) - Peer ATU not detected.
|
|
||||||
otherCause(5) - Other initialization failure reason.
|
|
||||||
|
|
||||||
The values used are as defined in ITU-T G.997.1,
|
|
||||||
paragraph 7.5.1.3"
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
noFail(0),
|
|
||||||
configError(1),
|
|
||||||
configNotFeasible(2),
|
|
||||||
commFail(3),
|
|
||||||
noPeerAtu(4),
|
|
||||||
otherCause(5)
|
|
||||||
}
|
|
||||||
|
|
||||||
Adsl2OperationModes ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The ADSL2 management model specified includes an ADSL Mode
|
|
||||||
attribute that identifies an instance of ADSL Mode-Specific
|
|
||||||
PSD Configuration object in the ADSL Line Profile. The
|
|
||||||
following classes of ADSL operating mode are defined.
|
|
||||||
The notes (F) and (L) denote Full-Rate and Lite/splitterless
|
|
||||||
respectively:
|
|
||||||
|
|
||||||
+-------+--------------------------------------------------+
|
|
||||||
| Value | ADSL operation mode description |
|
|
||||||
+-------+--------------------------------------------------+
|
|
||||||
|
|
||||||
1 - The default/generic PSD configuration. Default
|
|
||||||
configuration will be used when no other matching
|
|
||||||
mode-specific configuration can be found.
|
|
||||||
2 - ADSL family. The attributes included in the Mode-
|
|
||||||
Specific PSD Configuration are irrelevant for
|
|
||||||
ITU-T G.992.1 and G.992.2 ADSL modes. Hence, it
|
|
||||||
is possible to map those modes to this generic
|
|
||||||
class.
|
|
||||||
3-7 - Unused. Reserved for future ITU-T specification.
|
|
||||||
8 - G.992.3 POTS non-overlapped (F)
|
|
||||||
9 - G.992.3 POTS overlapped (F)
|
|
||||||
10 - G.992.3 ISDN non-overlapped (F)
|
|
||||||
11 - G.992.3 ISDN overlapped (F)
|
|
||||||
12-13 - Unused. Reserved for future ITU-T specification.
|
|
||||||
14 - G.992.4 POTS non-overlapped (L)
|
|
||||||
15 - G.992.4 POTS overlapped (L)
|
|
||||||
16-17 - Unused. Reserved for future ITU-T specification.
|
|
||||||
18 - G.992.3 Annex I All-Digital non-overlapped (F)
|
|
||||||
19 - G.992.3 Annex I All-Digital overlapped (F)
|
|
||||||
20 - G.992.3 Annex J All-Digital non-overlapped (F)
|
|
||||||
21 - G.992.3 Annex J All-Digital overlapped (F)
|
|
||||||
22 - G.992.4 Annex I All-Digital non-overlapped (L)
|
|
||||||
23 - G.992.4 Annex I All-Digital overlapped (L)
|
|
||||||
24 - G.992.3 Annex L POTS non-overlapped, mode 1,
|
|
||||||
wide U/S (F)
|
|
||||||
25 - G.992.3 Annex L POTS non-overlapped, mode 2,
|
|
||||||
narrow U/S(F)
|
|
||||||
26 - G.992.3 Annex L POTS overlapped, mode 3,
|
|
||||||
wide U/S (F)
|
|
||||||
27 - G.992.3 Annex L POTS overlapped, mode 4,
|
|
||||||
narrow U/S (F)
|
|
||||||
28 - G.992.3 Annex M POTS non-overlapped (F)
|
|
||||||
29 - G.992.3 Annex M POTS overlapped (F)
|
|
||||||
30 - G.992.5 POTS non-overlapped (F)
|
|
||||||
31 - G.992.5 POTS overlapped (F)
|
|
||||||
32 - G.992.5 ISDN non-overlapped (F)
|
|
||||||
33 - G.992.5 ISDN overlapped (F)
|
|
||||||
34-35 - Unused. Reserved for future ITU-T specification.
|
|
||||||
36 - G.992.5 Annex I All-Digital non-overlapped (F)
|
|
||||||
37 - G.992.5 Annex I All-Digital overlapped (F)
|
|
||||||
38 - G.992.5 Annex J All-Digital non-overlapped (F)
|
|
||||||
39 - G.992.5 Annex J All-Digital overlapped (F)
|
|
||||||
40 - G.992.5 Annex M POTS non-overlapped (F)
|
|
||||||
41 - G.992.5 Annex M POTS overlapped (F)"
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
defMode(1),
|
|
||||||
adsl(2),
|
|
||||||
g9923PotsNonOverlapped(8),
|
|
||||||
g9923PotsOverlapped(9),
|
|
||||||
g9923IsdnNonOverlapped(10),
|
|
||||||
g9923isdnOverlapped(11),
|
|
||||||
g9924potsNonOverlapped(14),
|
|
||||||
g9924potsOverlapped(15),
|
|
||||||
g9923AnnexIAllDigNonOverlapped(18),
|
|
||||||
g9923AnnexIAllDigOverlapped(19),
|
|
||||||
g9923AnnexJAllDigNonOverlapped(20),
|
|
||||||
g9923AnnexJAllDigOverlapped(21),
|
|
||||||
g9924AnnexIAllDigNonOverlapped(22),
|
|
||||||
g9924AnnexIAllDigOverlapped(23),
|
|
||||||
g9923AnnexLMode1NonOverlapped(24),
|
|
||||||
g9923AnnexLMode2NonOverlapped(25),
|
|
||||||
g9923AnnexLMode3Overlapped(26),
|
|
||||||
g9923AnnexLMode4Overlapped(27),
|
|
||||||
g9923AnnexMPotsNonOverlapped(28),
|
|
||||||
g9923AnnexMPotsOverlapped(29),
|
|
||||||
g9925PotsNonOverlapped(30),
|
|
||||||
g9925PotsOverlapped(31),
|
|
||||||
g9925IsdnNonOverlapped(32),
|
|
||||||
g9925isdnOverlapped(33),
|
|
||||||
g9925AnnexIAllDigNonOverlapped(36),
|
|
||||||
g9925AnnexIAllDigOverlapped(37),
|
|
||||||
g9925AnnexJAllDigNonOverlapped(38),
|
|
||||||
g9925AnnexJAllDigOverlapped(39),
|
|
||||||
g9925AnnexMPotsNonOverlapped(40),
|
|
||||||
g9925AnnexMPotsOverlapped(41)
|
|
||||||
}
|
|
||||||
|
|
||||||
Adsl2PowerMngState ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Attributes with this syntax uniquely identify each power
|
|
||||||
management state defined for the ADSL/ADSL2 or ADSL2+ link.
|
|
||||||
The possible values are:
|
|
||||||
l0(1) - L0 - Full power management state.
|
|
||||||
l1(2) - L1 - Low power management state (for G.992.2).
|
|
||||||
l2(3) - L2 - Low power management state (for G.992.3,
|
|
||||||
G.992.4, and G.992.5).
|
|
||||||
l3(4) - L3 - Idle power management state."
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
l0(1),
|
|
||||||
l1(2),
|
|
||||||
l2(3),
|
|
||||||
l3(4)
|
|
||||||
}
|
|
||||||
|
|
||||||
Adsl2ConfPmsForce ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Attributes with this syntax are configuration parameters
|
|
||||||
that reference the desired power management state for the
|
|
||||||
ADSL/ADSL2 or ADSL2+ link:
|
|
||||||
l3toL0(0) - Perform a transition from L3 to L0
|
|
||||||
(Full power management state).
|
|
||||||
l0toL2(2) - Perform a transition from L0 to L2
|
|
||||||
(Low power management state).
|
|
||||||
l0orL2toL3(3) - Perform a transition into L3 (Idle
|
|
||||||
power management state).
|
|
||||||
|
|
||||||
The values used are as defined in ITU-T G.997.1,
|
|
||||||
paragraph 7.3.1.1.3"
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
l3toL0(0),
|
|
||||||
l0toL2(2),
|
|
||||||
l0orL2toL3(3)
|
|
||||||
}
|
|
||||||
|
|
||||||
Adsl2LConfProfPmMode ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Attributes with this syntax are configuration parameters
|
|
||||||
that reference the power modes/states into which the ATU-C or
|
|
||||||
ATU-R may autonomously transit.
|
|
||||||
|
|
||||||
It is a BITS structure that allows control of the following
|
|
||||||
transit options:
|
|
||||||
allowTransitionsToIdle(0) - XTU may autonomously transit
|
|
||||||
to idle (L3) state.
|
|
||||||
allowTransitionsToLowPower(1) - XTU may autonomously transit
|
|
||||||
to low-power (L2) state."
|
|
||||||
SYNTAX BITS {
|
|
||||||
allowTransitionsToIdle(0),
|
|
||||||
allowTransitionsToLowPower(1)
|
|
||||||
}
|
|
||||||
|
|
||||||
Adsl2LineLdsf ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Attributes with this syntax are configuration parameters
|
|
||||||
that control the Loop Diagnostic mode for the ADSL/ADSL2 or
|
|
||||||
ADSL2+ link. The possible values are:
|
|
||||||
inhibit(0) - Inhibit Loop Diagnostic mode.
|
|
||||||
force(1) - Force/Initiate Loop Diagnostic mode.
|
|
||||||
|
|
||||||
The values used are as defined in ITU-T G.997.1,
|
|
||||||
paragraph 7.3.1.1.8"
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
inhibit(0),
|
|
||||||
force(1)
|
|
||||||
}
|
|
||||||
|
|
||||||
Adsl2LdsfResult ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Possible failure reasons associated with performing
|
|
||||||
a Dual Ended Loop Test (DELT) on a DSL line.
|
|
||||||
Possible values are:
|
|
||||||
none(1) - The default value in case LDSF was never
|
|
||||||
requested for the associated line.
|
|
||||||
success(2) - The recent command completed
|
|
||||||
successfully.
|
|
||||||
inProgress(3) - The Loop Diagnostics process is in
|
|
||||||
progress.
|
|
||||||
unsupported(4) - The NE or the line card doesn't support
|
|
||||||
LDSF.
|
|
||||||
cannotRun(5) - The NE cannot initiate the command, due
|
|
||||||
to a nonspecific reason.
|
|
||||||
aborted(6) - The Loop Diagnostics process aborted.
|
|
||||||
failed(7) - The Loop Diagnostics process failed.
|
|
||||||
illegalMode(8) - The NE cannot initiate the command, due
|
|
||||||
to the specific mode of the relevant
|
|
||||||
line.
|
|
||||||
adminUp(9) - The NE cannot initiate the command, as
|
|
||||||
the relevant line is administratively
|
|
||||||
'Up'.
|
|
||||||
tableFull(10) - The NE cannot initiate the command, due
|
|
||||||
to reaching the maximum number of rows
|
|
||||||
in the results table.
|
|
||||||
noResources(11) - The NE cannot initiate the command, due
|
|
||||||
to lack of internal memory resources."
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
none(1),
|
|
||||||
success(2),
|
|
||||||
inProgress(3),
|
|
||||||
unsupported(4),
|
|
||||||
cannotRun(5),
|
|
||||||
aborted(6),
|
|
||||||
failed(7),
|
|
||||||
illegalMode(8),
|
|
||||||
adminUp(9),
|
|
||||||
tableFull(10),
|
|
||||||
noResources(11)
|
|
||||||
}
|
|
||||||
|
|
||||||
Adsl2SymbolProtection ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Attributes with this syntax are configuration parameters
|
|
||||||
that reference the minimum-length impulse noise protection
|
|
||||||
(INP) in terms of number of symbols. The possible values are:
|
|
||||||
noProtection (i.e., INP not required), halfSymbol (i.e., INP
|
|
||||||
length is 1/2 symbol), and 1-16 symbols in steps of 1 symbol."
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
noProtection(1),
|
|
||||||
halfSymbol(2),
|
|
||||||
singleSymbol(3),
|
|
||||||
twoSymbols(4),
|
|
||||||
threeSymbols(5),
|
|
||||||
fourSymbols(6),
|
|
||||||
fiveSymbols(7),
|
|
||||||
sixSymbols(8),
|
|
||||||
sevenSymbols(9),
|
|
||||||
eightSymbols(10),
|
|
||||||
nineSymbols(11),
|
|
||||||
tenSymbols(12),
|
|
||||||
elevenSymbols(13),
|
|
||||||
twelveSymbols(14),
|
|
||||||
thirteeSymbols(15),
|
|
||||||
fourteenSymbols(16),
|
|
||||||
fifteenSymbols(17),
|
|
||||||
sixteenSymbols(18)
|
|
||||||
}
|
|
||||||
|
|
||||||
Adsl2MaxBer ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Attributes with this syntax are configuration parameters
|
|
||||||
that reference the maximum Bit Error Rate (BER).
|
|
||||||
The possible values are:
|
|
||||||
|
|
||||||
eminus3(1) - Maximum BER=E^-3
|
|
||||||
eminus5(2) - Maximum BER=E^-5
|
|
||||||
eminus7(3) - Maximum BER=E^-7"
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
eminus3(1),
|
|
||||||
eminus5(2),
|
|
||||||
eminus7(3)
|
|
||||||
}
|
|
||||||
|
|
||||||
Adsl2ScMaskDs ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Each one of the 512 bits in this OCTET
|
|
||||||
STRING array represents the corresponding bin
|
|
||||||
in the downstream direction. A value of one
|
|
||||||
indicates that the bin is not in use."
|
|
||||||
SYNTAX OCTET STRING (SIZE (0..64))
|
|
||||||
|
|
||||||
Adsl2ScMaskUs ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Each one of the 64 bits in this OCTET
|
|
||||||
STRING array represents the corresponding bin
|
|
||||||
in the upstream direction. A value of one
|
|
||||||
indicates that the bin is not in use."
|
|
||||||
SYNTAX OCTET STRING (SIZE (0..8))
|
|
||||||
|
|
||||||
Adsl2RfiDs ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Each one of the 512 bits in this OCTET
|
|
||||||
STRING array represents the corresponding bin
|
|
||||||
in the downstream direction. A value of one
|
|
||||||
indicates that the bin is part of a notch
|
|
||||||
filter."
|
|
||||||
SYNTAX OCTET STRING (SIZE (0..64))
|
|
||||||
|
|
||||||
Adsl2PsdMaskDs ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This is a structure that represents up to
|
|
||||||
32 PSD Mask breakpoints.
|
|
||||||
Each breakpoint occupies 3 octets: The first
|
|
||||||
two octets hold the index of the sub-carrier
|
|
||||||
associated with the breakpoint. The third octet
|
|
||||||
holds the PSD reduction at the breakpoint from 0
|
|
||||||
(0 dBm/Hz) to 255 (-127.5 dBm/Hz) using units of
|
|
||||||
0.5 dBm/Hz."
|
|
||||||
SYNTAX OCTET STRING (SIZE (0..96))
|
|
||||||
|
|
||||||
Adsl2PsdMaskUs ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This is a structure that represents up to
|
|
||||||
4 PSD Mask breakpoints.
|
|
||||||
Each breakpoint occupies 3 octets: The first
|
|
||||||
two octets hold the index of the sub-carrier
|
|
||||||
associated with the breakpoint. The third octet
|
|
||||||
holds the PSD reduction at the breakpoint from 0
|
|
||||||
(0 dBm/Hz) to 255 (-127.5 dBm/Hz) using units of
|
|
||||||
0.5 dBm/Hz."
|
|
||||||
SYNTAX OCTET STRING (SIZE (0..12))
|
|
||||||
|
|
||||||
Adsl2Tssi ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This is a structure that represents up to
|
|
||||||
32 transmit spectrum shaping (TSSi) breakpoints.
|
|
||||||
Each breakpoint occupies 3 octets: The first
|
|
||||||
two octets hold the index of the sub-carrier
|
|
||||||
associated with the breakpoint. The third octet
|
|
||||||
holds the shaping parameter at the breakpoint. It
|
|
||||||
is a value from 0 to 127 (units of -0.5 dB). The
|
|
||||||
special value 127 indicates that the sub-carrier
|
|
||||||
is not transmitted."
|
|
||||||
SYNTAX OCTET STRING (SIZE (0..96))
|
|
||||||
|
|
||||||
Adsl2LastTransmittedState ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This parameter represents the last successfully
|
|
||||||
transmitted initialization state in the last full
|
|
||||||
initialization performed on the line. States are
|
|
||||||
per the specific xDSL technology and are numbered
|
|
||||||
from 0 (if G.994.1 is used) or 1 (if G.994.1 is
|
|
||||||
not used) up to Showtime."
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
atucG9941(0),
|
|
||||||
atucQuiet1(1),
|
|
||||||
atucComb1(2),
|
|
||||||
atucQuiet2(3),
|
|
||||||
atucComb2(4),
|
|
||||||
atucIcomb1(5),
|
|
||||||
atucLineprob(6),
|
|
||||||
atucQuiet3(7),
|
|
||||||
atucComb3(8),
|
|
||||||
atucIComb2(9),
|
|
||||||
atucMsgfmt(10),
|
|
||||||
atucMsgpcb(11),
|
|
||||||
atucQuiet4(12),
|
|
||||||
atucReverb1(13),
|
|
||||||
atucTref1(14),
|
|
||||||
atucReverb2(15),
|
|
||||||
atucEct(16),
|
|
||||||
atucReverb3(17),
|
|
||||||
atucTref2(18),
|
|
||||||
atucReverb4(19),
|
|
||||||
atucSegue1(20),
|
|
||||||
atucMsg1(21),
|
|
||||||
atucReverb5(22),
|
|
||||||
atucSegue2(23),
|
|
||||||
atucMedley(24),
|
|
||||||
atucExchmarker(25),
|
|
||||||
atucMsg2(26),
|
|
||||||
atucReverb6(27),
|
|
||||||
atucSegue3(28),
|
|
||||||
atucParams(29),
|
|
||||||
atucReverb7(30),
|
|
||||||
atucSegue4(31),
|
|
||||||
atucShowtime(32),
|
|
||||||
aturG9941(100),
|
|
||||||
aturQuiet1(101),
|
|
||||||
aturComb1(102),
|
|
||||||
aturQuiet2(103),
|
|
||||||
aturComb2(104),
|
|
||||||
aturIcomb1(105),
|
|
||||||
aturLineprob(106),
|
|
||||||
aturQuiet3(107),
|
|
||||||
aturComb3(108),
|
|
||||||
aturIcomb2(109),
|
|
||||||
aturMsgfmt(110),
|
|
||||||
aturMsgpcb(111),
|
|
||||||
aturReverb1(112),
|
|
||||||
aturQuiet4(113),
|
|
||||||
aturReverb2(114),
|
|
||||||
aturQuiet5(115),
|
|
||||||
aturReverb3(116),
|
|
||||||
aturEct(117),
|
|
||||||
aturReverb4(118),
|
|
||||||
aturSegue1(119),
|
|
||||||
aturReverb5(120),
|
|
||||||
aturSegue2(121),
|
|
||||||
aturMsg1(122),
|
|
||||||
aturMedley(123),
|
|
||||||
aturExchmarker(124),
|
|
||||||
aturMsg2(125),
|
|
||||||
aturReverb6(126),
|
|
||||||
aturSegue3(127),
|
|
||||||
aturParams(128),
|
|
||||||
aturReverb7(129),
|
|
||||||
aturSegue4(130),
|
|
||||||
aturShowtime(131)
|
|
||||||
}
|
|
||||||
|
|
||||||
Adsl2LineStatus ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Attributes with this syntax are status parameters
|
|
||||||
that reflect the failure status for a given endpoint of
|
|
||||||
ADSL/ADSL2 or ADSL2+ link.
|
|
||||||
|
|
||||||
This BITS structure can report the following failures:
|
|
||||||
|
|
||||||
noDefect(0) - This bit position positively reports
|
|
||||||
that no defect or failure exists.
|
|
||||||
lossOfFrame(1) - Loss of frame synchronization.
|
|
||||||
lossOfSignal(2) - Loss of signal.
|
|
||||||
lossOfPower(3) - Loss of power. Usually this failure may
|
|
||||||
be reported for ATU-Rs only.
|
|
||||||
initFailure(4) - Recent initialization process failed.
|
|
||||||
Never active on ATU-R."
|
|
||||||
SYNTAX BITS {
|
|
||||||
noDefect(0),
|
|
||||||
lossOfFrame(1),
|
|
||||||
lossOfSignal(2),
|
|
||||||
lossOfPower(3),
|
|
||||||
initFailure(4)
|
|
||||||
}
|
|
||||||
|
|
||||||
Adsl2ChAtmStatus ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Attributes with this syntax are status parameters that
|
|
||||||
reflect the failure status for Transmission Convergence (TC)
|
|
||||||
layer of a given ATM interface (data path over an ADSL/ADSL2
|
|
||||||
or ADSL2+ link).
|
|
||||||
|
|
||||||
This BITS structure can report the following failures:
|
|
||||||
noDefect(0) - This bit position positively
|
|
||||||
reports that no defect or failure
|
|
||||||
exists.
|
|
||||||
noCellDelineation(1) - The link was successfully
|
|
||||||
initialized, but cell delineation
|
|
||||||
was never acquired on the
|
|
||||||
associated ATM data path.
|
|
||||||
lossOfCellDelineation(2) - Loss of cell delineation on the
|
|
||||||
associated ATM data path."
|
|
||||||
SYNTAX BITS {
|
|
||||||
noDefect(0),
|
|
||||||
noCellDelineation(1),
|
|
||||||
lossOfCellDelineation(2)
|
|
||||||
}
|
|
||||||
|
|
||||||
Adsl2ChPtmStatus ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Attributes with this syntax are status parameters that
|
|
||||||
reflect the failure status for a given PTM interface (packet
|
|
||||||
data path over an ADSL/ADSL2 or ADSL2+ link).
|
|
||||||
|
|
||||||
This BITS structure can report the following failures:
|
|
||||||
noDefect(0) - This bit position positively
|
|
||||||
reports that no defect or failure exists.
|
|
||||||
outOfSync(1) - Out of synchronization."
|
|
||||||
SYNTAX BITS {
|
|
||||||
noDefect(0),
|
|
||||||
outOfSync(1)
|
|
||||||
}
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,52 +0,0 @@
|
|||||||
-- **********************************************************
|
|
||||||
-- Airespace Reference MIB
|
|
||||||
-- Copyright 2005 Cisco Systems, Inc. All rights reserved.
|
|
||||||
|
|
||||||
-- This SNMP Management Information Specification
|
|
||||||
-- embodies Cisco's confidential and proprietary
|
|
||||||
-- intellectual property. Cisco retains all title
|
|
||||||
-- and ownership in the Specification including any revisions.
|
|
||||||
|
|
||||||
-- This Specification is supplied "AS IS", Cisco
|
|
||||||
-- makes no warranty, either expressed or implied,
|
|
||||||
-- as to the use, operation, condition, or performance of the
|
|
||||||
-- Specification.
|
|
||||||
|
|
||||||
|
|
||||||
-- Status: Release
|
|
||||||
-- Version: 4.0
|
|
||||||
-- Internal Source Code Version:1.268
|
|
||||||
-- Date: 01 Jan 2006
|
|
||||||
-- **********************************************************
|
|
||||||
|
|
||||||
|
|
||||||
AIRESPACE-REF-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY,
|
|
||||||
enterprises
|
|
||||||
FROM SNMPv2-SMI;
|
|
||||||
|
|
||||||
|
|
||||||
airespace MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200512190000Z" -- December 19, 2005
|
|
||||||
ORGANIZATION "Airespace, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
" Cisco Systems,
|
|
||||||
Customer Service
|
|
||||||
Postal: 170 West Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
|
|
||||||
Email: cs-wnbu-snmp@cisco.com"
|
|
||||||
DESCRIPTION
|
|
||||||
"The Structure of Management Information for the
|
|
||||||
Airespace enterprise."
|
|
||||||
REVISION "200512190000Z" -- December 19, 2005
|
|
||||||
DESCRIPTION
|
|
||||||
"Initial version of this MIB module."
|
|
||||||
|
|
||||||
::= { enterprises 14179 } -- assigned by IANA
|
|
||||||
|
|
||||||
END
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,497 +0,0 @@
|
|||||||
-- *------------------------------------------------------------------
|
|
||||||
-- * ALTIGA-ADDRESS-STATS-MIB.my: The Altiga Address Statistics MIB.
|
|
||||||
-- *
|
|
||||||
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
|
|
||||||
-- *
|
|
||||||
-- * Copyright (c) 2002, 2004, 2005 by Cisco Systems, Inc.
|
|
||||||
-- * All rights reserved.
|
|
||||||
-- *
|
|
||||||
-- *------------------------------------------------------------------
|
|
||||||
|
|
||||||
ALTIGA-ADDRESS-STATS-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY, OBJECT-TYPE, Integer32, Gauge32, IpAddress
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
TEXTUAL-CONVENTION
|
|
||||||
FROM SNMPv2-TC
|
|
||||||
OBJECT-GROUP, MODULE-COMPLIANCE
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
alStatsAddress, alAddressGroup
|
|
||||||
FROM ALTIGA-MIB
|
|
||||||
alAddressMibModule
|
|
||||||
FROM ALTIGA-GLOBAL-REG;
|
|
||||||
|
|
||||||
altigaAddressStatsMibModule MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200501250000Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
E-mail: cs-cvpn3000@cisco.com"
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
"The Altiga Address Statistics MIB models counters and objects
|
|
||||||
that are of management interest for address assignment.
|
|
||||||
|
|
||||||
Acronyms
|
|
||||||
The following acronyms are used in this document:
|
|
||||||
|
|
||||||
MIB: Management Information Base
|
|
||||||
|
|
||||||
"
|
|
||||||
REVISION "200501250000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added tables alAddressStatsPoolTable,
|
|
||||||
alAddressStatsPoolGroupTable.
|
|
||||||
Added object alAddressStatsHeldAddresses,
|
|
||||||
alAddressStatsGrpHeldAddresses,
|
|
||||||
alAddressStatsHeldPoolId,
|
|
||||||
alAddressStatsHeldAddrIndex,
|
|
||||||
alAddressStatsHeldAddress,
|
|
||||||
alAddressStatsHeldTimeLeft,
|
|
||||||
alAddressStatsHeldReason,
|
|
||||||
alAddressStatsGrpHeldId,
|
|
||||||
alAddressStatsGrpHeldPoolId,
|
|
||||||
alAddressStatsGrpHeldAddrIndex,
|
|
||||||
alAddressStatsGrpHeldAddress,
|
|
||||||
alAddressStatsGrpHeldTimeLeft,
|
|
||||||
alAddressStatsGrpHeldReason."
|
|
||||||
|
|
||||||
REVISION "200209051300Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added module compliance."
|
|
||||||
|
|
||||||
REVISION "200207100000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Updated with new header"
|
|
||||||
|
|
||||||
::= { alAddressMibModule 2 }
|
|
||||||
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
-- MIB Objects
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
|
|
||||||
alAddressStatsGlobal OBJECT IDENTIFIER ::= { alStatsAddress 1 }
|
|
||||||
|
|
||||||
IPAddressHeldReason ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Definition of reason an IP Address is held for.
|
|
||||||
delayReuse - held due to address re-use delay feature
|
|
||||||
foundInUse - held because the address is found to
|
|
||||||
be used"
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
delayReuse(1),
|
|
||||||
foundInUse(2)
|
|
||||||
}
|
|
||||||
|
|
||||||
alAddressStatsPoolTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AlAddressStatsPoolEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The list of trap destinations."
|
|
||||||
::= { alStatsAddress 2}
|
|
||||||
|
|
||||||
alAddressStatsPoolEntry OBJECT-TYPE
|
|
||||||
SYNTAX AlAddressStatsPoolEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry in the alAddressStatsPoolTable."
|
|
||||||
INDEX { alAddressStatsPoolId }
|
|
||||||
::= { alAddressStatsPoolTable 1 }
|
|
||||||
|
|
||||||
AlAddressStatsPoolEntry ::= SEQUENCE {
|
|
||||||
alAddressStatsPoolId Integer32,
|
|
||||||
alAddressStatsTotalPoolAddresses Integer32,
|
|
||||||
alAddressStatsCurrAllocAddresses Gauge32,
|
|
||||||
alAddressStatsCurrAvailAddresses Gauge32,
|
|
||||||
alAddressStatsMaxAddressesAssigned Gauge32,
|
|
||||||
alAddressStatsHeldAddresses Gauge32
|
|
||||||
}
|
|
||||||
|
|
||||||
alAddressStatsPoolId OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..65535)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The Global Address Pool ID for this entry."
|
|
||||||
::= { alAddressStatsPoolEntry 1 }
|
|
||||||
|
|
||||||
alAddressStatsTotalPoolAddresses OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..65535)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Total number of legal addresses defined in pool.
|
|
||||||
This does not include Network and Broadcast addresses."
|
|
||||||
::= { alAddressStatsPoolEntry 2 }
|
|
||||||
|
|
||||||
alAddressStatsCurrAllocAddresses OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Total number of addresses currently assigned."
|
|
||||||
::= { alAddressStatsPoolEntry 3 }
|
|
||||||
|
|
||||||
alAddressStatsCurrAvailAddresses OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Total number of addresses currently available."
|
|
||||||
::= { alAddressStatsPoolEntry 4 }
|
|
||||||
|
|
||||||
alAddressStatsMaxAddressesAssigned OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Total number of addresses currently available."
|
|
||||||
::= { alAddressStatsPoolEntry 5 }
|
|
||||||
|
|
||||||
alAddressStatsHeldAddresses OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Total number of addresses currently held. This reflects
|
|
||||||
the number of entries in alAddressStatsHeldTable."
|
|
||||||
|
|
||||||
::= { alAddressStatsPoolEntry 6 }
|
|
||||||
|
|
||||||
alAddressStatsPoolGroupTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AlAddressStatsPoolGroupEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The list of trap destinations."
|
|
||||||
::= { alStatsAddress 3}
|
|
||||||
|
|
||||||
alAddressStatsPoolGroupEntry OBJECT-TYPE
|
|
||||||
SYNTAX AlAddressStatsPoolGroupEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry in the alAddressStatsPoolGroupTable."
|
|
||||||
INDEX { alAddressStatsGrpId, alAddressStatsGrpPoolId }
|
|
||||||
::= { alAddressStatsPoolGroupTable 1 }
|
|
||||||
|
|
||||||
AlAddressStatsPoolGroupEntry ::= SEQUENCE {
|
|
||||||
alAddressStatsGrpId Integer32,
|
|
||||||
alAddressStatsGrpPoolId Integer32,
|
|
||||||
alAddressStatsGrpTotalPoolAddresses Integer32,
|
|
||||||
alAddressStatsGrpCurrAllocAddresses Gauge32,
|
|
||||||
alAddressStatsGrpCurrAvailAddresses Gauge32,
|
|
||||||
alAddressStatsGrpMaxAddressesAssigned Gauge32,
|
|
||||||
alAddressStatsGrpHeldAddresses Gauge32
|
|
||||||
}
|
|
||||||
|
|
||||||
alAddressStatsGrpId OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..65535)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The Group ID for this entry."
|
|
||||||
::= { alAddressStatsPoolGroupEntry 1 }
|
|
||||||
|
|
||||||
alAddressStatsGrpPoolId OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..65535)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The Group Pool ID for this entry."
|
|
||||||
::= { alAddressStatsPoolGroupEntry 2 }
|
|
||||||
|
|
||||||
alAddressStatsGrpTotalPoolAddresses OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..65535)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Total number of legal addresses defined in pool.
|
|
||||||
This does not include Network and Broadcast addresses."
|
|
||||||
::= { alAddressStatsPoolGroupEntry 3 }
|
|
||||||
|
|
||||||
alAddressStatsGrpCurrAllocAddresses OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Total number of addresses currently assigned."
|
|
||||||
::= { alAddressStatsPoolGroupEntry 4 }
|
|
||||||
|
|
||||||
alAddressStatsGrpCurrAvailAddresses OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Total number of addresses currently available."
|
|
||||||
::= { alAddressStatsPoolGroupEntry 5 }
|
|
||||||
|
|
||||||
alAddressStatsGrpMaxAddressesAssigned OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Total number of addresses currently available."
|
|
||||||
::= { alAddressStatsPoolGroupEntry 6 }
|
|
||||||
|
|
||||||
alAddressStatsGrpHeldAddresses OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Total number of addresses currently held. This reflects
|
|
||||||
the number of entries in alAddressStatsGrpHeldTable."
|
|
||||||
::= { alAddressStatsPoolGroupEntry 7 }
|
|
||||||
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
-- Global Address Held Stats
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
|
|
||||||
alAddressStatsHeldTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AlAddressStatsHeldEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The list of held IP addresses in the Base group.
|
|
||||||
The IP addresses in this table are not available
|
|
||||||
for use.
|
|
||||||
When an IP address is released from use and if
|
|
||||||
the re-use delay feature is enabled, the IP address is added
|
|
||||||
into this table for a configured time period before it can
|
|
||||||
be used again. An IP address that was discovered to be used
|
|
||||||
by an external device is also added into this table
|
|
||||||
for configured time period also. When the timer
|
|
||||||
expires, the IP address is removed from this table."
|
|
||||||
::= { alStatsAddress 4}
|
|
||||||
|
|
||||||
alAddressStatsHeldEntry OBJECT-TYPE
|
|
||||||
SYNTAX AlAddressStatsHeldEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry in the alAddressStatsHeldTable."
|
|
||||||
INDEX { alAddressStatsHeldPoolId, alAddressStatsHeldAddrIndex }
|
|
||||||
::= { alAddressStatsHeldTable 1 }
|
|
||||||
|
|
||||||
AlAddressStatsHeldEntry ::= SEQUENCE {
|
|
||||||
alAddressStatsHeldPoolId Integer32,
|
|
||||||
alAddressStatsHeldAddrIndex Integer32,
|
|
||||||
alAddressStatsHeldAddress IpAddress,
|
|
||||||
alAddressStatsHeldTimeLeft Integer32,
|
|
||||||
alAddressStatsHeldReason IPAddressHeldReason
|
|
||||||
}
|
|
||||||
|
|
||||||
alAddressStatsHeldPoolId OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..65535)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The Global Address Pool ID for this entry."
|
|
||||||
::= { alAddressStatsHeldEntry 1 }
|
|
||||||
|
|
||||||
alAddressStatsHeldAddrIndex OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..65535)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The address index for this entry."
|
|
||||||
::= { alAddressStatsHeldEntry 2 }
|
|
||||||
|
|
||||||
alAddressStatsHeldAddress OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"IP Address currently being held; not available for assignment."
|
|
||||||
::= { alAddressStatsHeldEntry 3 }
|
|
||||||
|
|
||||||
alAddressStatsHeldTimeLeft OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (1..65535)
|
|
||||||
UNITS "seconds"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Amount of time left, in second, before the address
|
|
||||||
can be assigned."
|
|
||||||
::= { alAddressStatsHeldEntry 4 }
|
|
||||||
|
|
||||||
alAddressStatsHeldReason OBJECT-TYPE
|
|
||||||
SYNTAX IPAddressHeldReason
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object reflects the reason for being held."
|
|
||||||
::= { alAddressStatsHeldEntry 5 }
|
|
||||||
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
-- Group Address Held Stats
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
|
|
||||||
alAddressStatsGrpHeldTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AlAddressStatsGrpHeldEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The list of held IP addresses in the user group.
|
|
||||||
The IP addresses in this table are not available
|
|
||||||
for use.
|
|
||||||
When an IP address is released from use and if
|
|
||||||
the re-use delay feature is enabled, the IP address is added
|
|
||||||
into this table for a configured time period before it can
|
|
||||||
be used again. An IP address that was discovered to be used
|
|
||||||
by an external device is also added into this table
|
|
||||||
for configured time period also. When the timer
|
|
||||||
expires, the IP address is removed from this table."
|
|
||||||
::= { alStatsAddress 5}
|
|
||||||
|
|
||||||
alAddressStatsGrpHeldEntry OBJECT-TYPE
|
|
||||||
SYNTAX AlAddressStatsGrpHeldEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry in the alAddressStatsGrpHeldTable."
|
|
||||||
INDEX { alAddressStatsGrpHeldId, alAddressStatsGrpHeldPoolId,
|
|
||||||
alAddressStatsGrpHeldAddrIndex }
|
|
||||||
::= { alAddressStatsGrpHeldTable 1 }
|
|
||||||
|
|
||||||
AlAddressStatsGrpHeldEntry ::= SEQUENCE {
|
|
||||||
alAddressStatsGrpHeldId Integer32,
|
|
||||||
alAddressStatsGrpHeldPoolId Integer32,
|
|
||||||
alAddressStatsGrpHeldAddrIndex Integer32,
|
|
||||||
alAddressStatsGrpHeldAddress IpAddress,
|
|
||||||
alAddressStatsGrpHeldTimeLeft Integer32,
|
|
||||||
alAddressStatsGrpHeldReason IPAddressHeldReason
|
|
||||||
}
|
|
||||||
|
|
||||||
alAddressStatsGrpHeldId OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..65535)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The Group ID for this entry."
|
|
||||||
::= { alAddressStatsGrpHeldEntry 1 }
|
|
||||||
|
|
||||||
alAddressStatsGrpHeldPoolId OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..65535)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The Global Address Pool ID for this entry."
|
|
||||||
::= { alAddressStatsGrpHeldEntry 2 }
|
|
||||||
|
|
||||||
alAddressStatsGrpHeldAddrIndex OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..65535)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The address index for this entry."
|
|
||||||
::= { alAddressStatsGrpHeldEntry 3 }
|
|
||||||
|
|
||||||
alAddressStatsGrpHeldAddress OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"IP Address currently being held; not available for assignment."
|
|
||||||
::= { alAddressStatsGrpHeldEntry 4 }
|
|
||||||
|
|
||||||
alAddressStatsGrpHeldTimeLeft OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (1..65535)
|
|
||||||
UNITS "seconds"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Amount of time left, in second, before the address
|
|
||||||
can be assigned."
|
|
||||||
::= { alAddressStatsGrpHeldEntry 5 }
|
|
||||||
|
|
||||||
alAddressStatsGrpHeldReason OBJECT-TYPE
|
|
||||||
SYNTAX IPAddressHeldReason
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object reflects the reason for being held."
|
|
||||||
::= { alAddressStatsGrpHeldEntry 6 }
|
|
||||||
|
|
||||||
|
|
||||||
altigaAddressStatsMibConformance OBJECT IDENTIFIER
|
|
||||||
::= { altigaAddressStatsMibModule 1 }
|
|
||||||
altigaAddressStatsMibCompliances OBJECT IDENTIFIER
|
|
||||||
::= { altigaAddressStatsMibConformance 1 }
|
|
||||||
|
|
||||||
|
|
||||||
altigaAddressStatsMibCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS deprecated
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for agents which
|
|
||||||
implement the Altiga Address Statistics MIB."
|
|
||||||
MODULE
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
altigaAddressStatsGroup
|
|
||||||
}
|
|
||||||
::= { altigaAddressStatsMibCompliances 1 }
|
|
||||||
|
|
||||||
altigaAddressStatsMibComplianceRev1 MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for agents which
|
|
||||||
implement the Altiga Address Statistics MIB."
|
|
||||||
MODULE
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
altigaAddressStatsGroup,
|
|
||||||
altigaAddressStatsGroupSup1
|
|
||||||
}
|
|
||||||
::= { altigaAddressStatsMibCompliances 2 }
|
|
||||||
|
|
||||||
altigaAddressStatsGroup OBJECT-GROUP
|
|
||||||
OBJECTS
|
|
||||||
{
|
|
||||||
alAddressStatsPoolId,
|
|
||||||
alAddressStatsTotalPoolAddresses,
|
|
||||||
alAddressStatsCurrAllocAddresses,
|
|
||||||
alAddressStatsCurrAvailAddresses,
|
|
||||||
alAddressStatsMaxAddressesAssigned,
|
|
||||||
alAddressStatsGrpId,
|
|
||||||
alAddressStatsGrpPoolId,
|
|
||||||
alAddressStatsGrpTotalPoolAddresses,
|
|
||||||
alAddressStatsGrpCurrAllocAddresses,
|
|
||||||
alAddressStatsGrpCurrAvailAddresses,
|
|
||||||
alAddressStatsGrpMaxAddressesAssigned
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The objects for address statistics."
|
|
||||||
::= { alAddressGroup 2 }
|
|
||||||
|
|
||||||
altigaAddressStatsGroupSup1 OBJECT-GROUP
|
|
||||||
OBJECTS
|
|
||||||
{
|
|
||||||
alAddressStatsHeldAddresses,
|
|
||||||
alAddressStatsGrpHeldAddresses,
|
|
||||||
alAddressStatsHeldPoolId,
|
|
||||||
alAddressStatsHeldAddrIndex,
|
|
||||||
alAddressStatsHeldAddress,
|
|
||||||
alAddressStatsHeldTimeLeft,
|
|
||||||
alAddressStatsHeldReason,
|
|
||||||
alAddressStatsGrpHeldId,
|
|
||||||
alAddressStatsGrpHeldPoolId,
|
|
||||||
alAddressStatsGrpHeldAddrIndex,
|
|
||||||
alAddressStatsGrpHeldAddress,
|
|
||||||
alAddressStatsGrpHeldTimeLeft,
|
|
||||||
alAddressStatsGrpHeldReason
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The objects for address statistics."
|
|
||||||
::= { alAddressGroup 3 }
|
|
||||||
|
|
||||||
END
|
|
@ -1,237 +0,0 @@
|
|||||||
-- *------------------------------------------------------------------
|
|
||||||
-- * ALTIGA-BMGT-STATS-MIB.my: Altiga Bandwidth Limiting/Guarantee and Policy Statistics MIB.
|
|
||||||
-- *
|
|
||||||
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
|
|
||||||
-- *
|
|
||||||
-- * Copyright (c) 2002 by Cisco Systems, Inc.
|
|
||||||
-- * All rights reserved.
|
|
||||||
-- *
|
|
||||||
-- *------------------------------------------------------------------
|
|
||||||
|
|
||||||
ALTIGA-BMGT-STATS-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY, OBJECT-TYPE, Counter32, Unsigned32
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
RowStatus
|
|
||||||
FROM SNMPv2-TC
|
|
||||||
OBJECT-GROUP, MODULE-COMPLIANCE
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
alBwMgmtGroup, alStatsBwMgmt
|
|
||||||
FROM ALTIGA-MIB
|
|
||||||
alBwMgmtMibModule
|
|
||||||
FROM ALTIGA-GLOBAL-REG;
|
|
||||||
|
|
||||||
altigaBwMgmMibModule MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200209051300Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
E-mail: cs-cvpn3000@cisco.com"
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
"The Altiga Bandwidth Limiting/Guarantee and Policy Statistics MIB
|
|
||||||
models counters and objects that are of management interest for bandwidth
|
|
||||||
management.
|
|
||||||
|
|
||||||
Acronyms
|
|
||||||
The following acronyms are used in this document:
|
|
||||||
|
|
||||||
BW: Bandwidth
|
|
||||||
|
|
||||||
MIB: Management Information Base
|
|
||||||
|
|
||||||
"
|
|
||||||
|
|
||||||
REVISION "200209051300Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added module compliance."
|
|
||||||
|
|
||||||
REVISION "200207100000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Updated with new header"
|
|
||||||
|
|
||||||
::= { alBwMgmtMibModule 2 }
|
|
||||||
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
-- MIB Objects
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
|
|
||||||
alBwMgmtStatsGlobal OBJECT IDENTIFIER ::= { alStatsBwMgmt 1 }
|
|
||||||
|
|
||||||
-- Any global stuff here...
|
|
||||||
|
|
||||||
alBwMgmtStatTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AlBwMgmtStatEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A table of BW Management status entries."
|
|
||||||
::= { alStatsBwMgmt 2 }
|
|
||||||
|
|
||||||
alBwMgmtStatEntry OBJECT-TYPE
|
|
||||||
SYNTAX AlBwMgmtStatEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of bandwidth mgmt status objects on this
|
|
||||||
interface."
|
|
||||||
INDEX { alBwMgmtStatIntfId }
|
|
||||||
::= { alBwMgmtStatTable 1 }
|
|
||||||
|
|
||||||
AlBwMgmtStatEntry ::=
|
|
||||||
SEQUENCE {
|
|
||||||
alBwMgmtStatRowStatus RowStatus,
|
|
||||||
alBwMgmtStatIntfId INTEGER,
|
|
||||||
alBwMgmtStatGrpId INTEGER,
|
|
||||||
alBwMgmtStatInConformedRate Unsigned32,
|
|
||||||
alBwMgmtStatInDroppedRate Unsigned32,
|
|
||||||
alBwMgmtStatInConformedBytes Counter32,
|
|
||||||
alBwMgmtStatInDroppedBytes Counter32,
|
|
||||||
alBwMgmtStatOutConformedRate Unsigned32,
|
|
||||||
alBwMgmtStatOutDroppedRate Unsigned32,
|
|
||||||
alBwMgmtStatOutConformedBytes Counter32,
|
|
||||||
alBwMgmtStatOutDroppedBytes Counter32
|
|
||||||
}
|
|
||||||
|
|
||||||
alBwMgmtStatRowStatus OBJECT-TYPE
|
|
||||||
SYNTAX RowStatus
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The status of this row."
|
|
||||||
::= { alBwMgmtStatEntry 1 }
|
|
||||||
|
|
||||||
alBwMgmtStatIntfId OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (1..3)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"BwPolicy identifier used as the index of this row."
|
|
||||||
::= { alBwMgmtStatEntry 2 }
|
|
||||||
|
|
||||||
alBwMgmtStatGrpId OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (0..100000)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"BwPolicy identifier used as the index of this row."
|
|
||||||
::= { alBwMgmtStatEntry 3 }
|
|
||||||
|
|
||||||
alBwMgmtStatInConformedRate OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
UNITS "kbytes"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The counter of packets permitted by this rate limit."
|
|
||||||
::= { alBwMgmtStatEntry 4 }
|
|
||||||
|
|
||||||
alBwMgmtStatInDroppedRate OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
UNITS "kbytes"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The counter of packets which exceeded this rate limit."
|
|
||||||
::= { alBwMgmtStatEntry 5 }
|
|
||||||
|
|
||||||
alBwMgmtStatInConformedBytes OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "bytes"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The counter of bytes which exceeded this rate limit."
|
|
||||||
::= { alBwMgmtStatEntry 6 }
|
|
||||||
|
|
||||||
alBwMgmtStatInDroppedBytes OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "bytes"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The counter of bytes which exceeded this rate limit."
|
|
||||||
::= { alBwMgmtStatEntry 7 }
|
|
||||||
|
|
||||||
|
|
||||||
alBwMgmtStatOutConformedRate OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
UNITS "kbytes"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The counter of packets permitted by this rate limit."
|
|
||||||
::= { alBwMgmtStatEntry 8 }
|
|
||||||
|
|
||||||
alBwMgmtStatOutDroppedRate OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
UNITS "kbytes"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The counter of packets which exceeded this rate limit."
|
|
||||||
::= { alBwMgmtStatEntry 9 }
|
|
||||||
|
|
||||||
alBwMgmtStatOutConformedBytes OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "bytes"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The counter of bytes which exceeded this rate limit."
|
|
||||||
::= { alBwMgmtStatEntry 10 }
|
|
||||||
|
|
||||||
alBwMgmtStatOutDroppedBytes OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "bytes"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The counter of bytes which exceeded this rate limit."
|
|
||||||
::= { alBwMgmtStatEntry 11 }
|
|
||||||
|
|
||||||
altigaBwMgmMibConformance OBJECT IDENTIFIER ::= { altigaBwMgmMibModule 1 }
|
|
||||||
altigaBwMgmMibCompliances OBJECT IDENTIFIER ::= { altigaBwMgmMibConformance 1 }
|
|
||||||
|
|
||||||
altigaBwMgmMibCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for agents which
|
|
||||||
implement the Bandwidth Limiting/Guarantee and Policy Statistics MIB."
|
|
||||||
MODULE
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
alBwMgmtStatsGroup
|
|
||||||
}
|
|
||||||
::= { altigaBwMgmMibCompliances 1 }
|
|
||||||
|
|
||||||
alBwMgmtStatsGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
alBwMgmtStatRowStatus,
|
|
||||||
alBwMgmtStatIntfId,
|
|
||||||
alBwMgmtStatGrpId,
|
|
||||||
alBwMgmtStatInConformedRate,
|
|
||||||
alBwMgmtStatInDroppedRate,
|
|
||||||
alBwMgmtStatInConformedBytes,
|
|
||||||
alBwMgmtStatInDroppedBytes,
|
|
||||||
alBwMgmtStatOutConformedRate,
|
|
||||||
alBwMgmtStatOutDroppedRate,
|
|
||||||
alBwMgmtStatOutConformedBytes,
|
|
||||||
alBwMgmtStatOutDroppedBytes
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of objects providing BW Management monitoring."
|
|
||||||
::= { alBwMgmtGroup 2 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,265 +0,0 @@
|
|||||||
-- *------------------------------------------------------------------
|
|
||||||
-- * ALTIGA-CAP.my: The Altiga Networks capabilities MIB.
|
|
||||||
-- *
|
|
||||||
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
|
|
||||||
-- *
|
|
||||||
-- * Copyright (c) 2002 by Cisco Systems, Inc.
|
|
||||||
-- * All rights reserved.
|
|
||||||
-- *
|
|
||||||
-- *------------------------------------------------------------------
|
|
||||||
|
|
||||||
ALTIGA-CAP DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
AGENT-CAPABILITIES
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
altigaCaps, alCapModule
|
|
||||||
FROM ALTIGA-GLOBAL-REG;
|
|
||||||
|
|
||||||
altigaCapModule MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200209091200Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
E-mail: cs-cvpn3000@cisco.com"
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
"The Altiga Networks capabilities MIB models counters and
|
|
||||||
objects that are of management interest for networks
|
|
||||||
capabilities.
|
|
||||||
|
|
||||||
Acronyms
|
|
||||||
The following acronyms are used in this document:
|
|
||||||
|
|
||||||
DHCP: Dynamic Host Configuration Protocol
|
|
||||||
|
|
||||||
DNS: Domain Name Service
|
|
||||||
|
|
||||||
FTP: File Transfer Protocol
|
|
||||||
|
|
||||||
HTTP: HyperText Transfer Protocol
|
|
||||||
|
|
||||||
ICMP: Internet Control Message Protocol
|
|
||||||
|
|
||||||
IP: Internet Protocol
|
|
||||||
|
|
||||||
L2TP: Layer-2 Tunneling Protocol
|
|
||||||
|
|
||||||
MIB: Management Information Base
|
|
||||||
|
|
||||||
PPP: Point-to-Point Protocol
|
|
||||||
|
|
||||||
PPTP: Point-to-Point Tunneling Protocol
|
|
||||||
|
|
||||||
SEP: Scalable Encryption Processor
|
|
||||||
|
|
||||||
SNMP: Simple Network Management Protocol
|
|
||||||
|
|
||||||
SSL: Secure Sockets Layer
|
|
||||||
|
|
||||||
TCP: Transmission Control Protocol
|
|
||||||
|
|
||||||
UDP: User Datagram Protocol
|
|
||||||
|
|
||||||
"
|
|
||||||
|
|
||||||
REVISION "200209091200Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Updated MIB to comply to Cisco MIB Police standards.
|
|
||||||
Added missing supports for new Altiga MIBs.
|
|
||||||
"
|
|
||||||
|
|
||||||
REVISION "200207100000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Updated with new header"
|
|
||||||
|
|
||||||
::= { alCapModule 1 }
|
|
||||||
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
-- MIB Objects
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
|
|
||||||
altigaBasicAgent AGENT-CAPABILITIES
|
|
||||||
PRODUCT-RELEASE "Altiga Agent v1.0"
|
|
||||||
STATUS obsolete
|
|
||||||
DESCRIPTION "Altiga SNMP Agent"
|
|
||||||
|
|
||||||
SUPPORTS SNMPv2-MIB
|
|
||||||
INCLUDES { snmpGroup, snmpSetGroup, systemGroup,
|
|
||||||
snmpBasicNotificationsGroup }
|
|
||||||
|
|
||||||
SUPPORTS IP-MIB
|
|
||||||
INCLUDES { ipGroup, icmpGroup }
|
|
||||||
|
|
||||||
SUPPORTS UDP-MIB
|
|
||||||
INCLUDES { udpGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-VERSION-STATS-MIB
|
|
||||||
INCLUDES { altigaVersionStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-PPTP-STATS-MIB
|
|
||||||
INCLUDES { altigaPptpStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-PPP-STATS-MIB
|
|
||||||
INCLUDES { altigaPppStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-HTTP-STATS-MIB
|
|
||||||
INCLUDES { altigaHttpStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-L2TP-STATS-MIB
|
|
||||||
INCLUDES { altigaL2tpStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-SESSION-STATS-MIB
|
|
||||||
INCLUDES { altigaSessionStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-TELNET-STATS-MIB
|
|
||||||
INCLUDES { altigaTelnetStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-DHCP-STATS-MIB
|
|
||||||
INCLUDES { altigaDhcpStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-DNS-STATS-MIB
|
|
||||||
INCLUDES { altigaDnsStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-CERT-STATS-MIB
|
|
||||||
INCLUDES { altigaCertStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-SEP-STATS-MIB
|
|
||||||
INCLUDES { altigaSepStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-SYNC-STATS-MIB
|
|
||||||
INCLUDES { altigaSyncStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-T1E1-STATS-MIB
|
|
||||||
INCLUDES { altigaT1E1StatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-SSL-STATS-MIB
|
|
||||||
INCLUDES { altigaSslStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-EVENT-STATS-MIB
|
|
||||||
INCLUDES { altigaEventStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-FILTER-STATS-MIB
|
|
||||||
INCLUDES { altigaFilterStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-FTP-STATS-MIB
|
|
||||||
INCLUDES { altigaFtpStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-GENERAL-STATS-MIB
|
|
||||||
INCLUDES { altigaGeneralStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-HARDWARE-STATS-MIB
|
|
||||||
INCLUDES { altigaHardwareStatsGroup }
|
|
||||||
|
|
||||||
::= { altigaCaps 1 }
|
|
||||||
|
|
||||||
altigaBasicAgentRev1 AGENT-CAPABILITIES
|
|
||||||
PRODUCT-RELEASE "Altiga Agent v1.1"
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION "Altiga SNMP Agent"
|
|
||||||
|
|
||||||
SUPPORTS SNMPv2-MIB
|
|
||||||
INCLUDES { snmpGroup, snmpSetGroup, systemGroup,
|
|
||||||
snmpBasicNotificationsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-ADDRESS-STATS-MIB
|
|
||||||
INCLUDES { altigaAddressStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-CERT-STATS-MIB
|
|
||||||
INCLUDES { altigaCertStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-DHCP-SERVER-STATS-MIB
|
|
||||||
INCLUDES { altigaDhcpServerStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-DHCP-STATS-MIB
|
|
||||||
INCLUDES { altigaDhcpStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-DNS-STATS-MIB
|
|
||||||
INCLUDES { altigaDnsStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-EVENT-STATS-MIB
|
|
||||||
INCLUDES { altigaEventStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-FILTER-STATS-MIB
|
|
||||||
INCLUDES { altigaFilterStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-FTP-STATS-MIB
|
|
||||||
INCLUDES { altigaFtpStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-GENERAL-STATS-MIB
|
|
||||||
INCLUDES { altigaGeneralStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-HARDWARE-STATS-MIB
|
|
||||||
INCLUDES { altigaHardwareStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-HTTP-STATS-MIB
|
|
||||||
INCLUDES { altigaHttpStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-IP-STATS-MIB
|
|
||||||
INCLUDES { altigaIpStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-L2TP-STATS-MIB
|
|
||||||
INCLUDES { altigaL2tpStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-LBSSF-STATS-MIB
|
|
||||||
INCLUDES { altigaStatsLBSSFGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-MULTILINK-STATS-MIB
|
|
||||||
INCLUDES { altigaMultiLinkStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-NAT-STATS-MIB
|
|
||||||
INCLUDES { altigaNatStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-PPP-STATS-MIB
|
|
||||||
INCLUDES { altigaPppStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-PPPOE-STATS-MIB
|
|
||||||
INCLUDES { altigaPPPoEStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-PPTP-STATS-MIB
|
|
||||||
INCLUDES { altigaPptpStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-SDI-ACE-STATS-MIB
|
|
||||||
INCLUDES { altigaACEServerGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-SEP-STATS-MIB
|
|
||||||
INCLUDES { altigaSepStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-SESSION-STATS-MIB
|
|
||||||
INCLUDES { altigaSessionStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-SSH-STATS-MIB
|
|
||||||
INCLUDES { altigaSshStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-SSL-STATS-MIB
|
|
||||||
INCLUDES { altigaSslStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-SYNC-STATS-MIB
|
|
||||||
INCLUDES { altigaSyncStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-T1E1-STATS-MIB
|
|
||||||
INCLUDES { altigaT1E1StatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-TELNET-STATS-MIB
|
|
||||||
INCLUDES { altigaTelnetStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS ALTIGA-VERSION-STATS-MIB
|
|
||||||
INCLUDES { altigaVersionStatsGroup }
|
|
||||||
|
|
||||||
SUPPORTS IP-MIB
|
|
||||||
INCLUDES { ipGroup, icmpGroup }
|
|
||||||
|
|
||||||
SUPPORTS UDP-MIB
|
|
||||||
INCLUDES { udpGroup }
|
|
||||||
|
|
||||||
::= { altigaCapModule 1 }
|
|
||||||
END
|
|
||||||
|
|
||||||
|
|
@ -1,260 +0,0 @@
|
|||||||
-- *------------------------------------------------------------------
|
|
||||||
-- * ALTIGA-CERT-STATS-MIB.my: Altiga Digital Certificates Statistics.
|
|
||||||
-- *
|
|
||||||
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
|
|
||||||
-- *
|
|
||||||
-- * Copyright (c) 2002 by Cisco Systems, Inc.
|
|
||||||
-- * All rights reserved.
|
|
||||||
-- *
|
|
||||||
-- *------------------------------------------------------------------
|
|
||||||
|
|
||||||
ALTIGA-CERT-STATS-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY, OBJECT-TYPE, Integer32, IpAddress, Counter32, Gauge32
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
OBJECT-GROUP, MODULE-COMPLIANCE
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
alStatsCert, alCertGroup
|
|
||||||
FROM ALTIGA-MIB
|
|
||||||
alCertMibModule
|
|
||||||
FROM ALTIGA-GLOBAL-REG;
|
|
||||||
|
|
||||||
altigaCertStatsMibModule MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200209051300Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
E-mail: cs-cvpn3000@cisco.com"
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
"The Altiga Digital Certificates Statistics MIB models counters and objects that are
|
|
||||||
of management interest for digital certificates.
|
|
||||||
|
|
||||||
Acronyms
|
|
||||||
The following acronyms are used in this document:
|
|
||||||
|
|
||||||
CA: Certificate Authority
|
|
||||||
|
|
||||||
CRL: Certificate Revocation List
|
|
||||||
|
|
||||||
IP: Internet Protocol
|
|
||||||
|
|
||||||
MIB: Management Information Base
|
|
||||||
|
|
||||||
"
|
|
||||||
|
|
||||||
REVISION "200209051300Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added module compliance."
|
|
||||||
|
|
||||||
REVISION "200207100000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Updated with new header"
|
|
||||||
|
|
||||||
::= { alCertMibModule 2 }
|
|
||||||
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
-- MIB Objects
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
|
|
||||||
alStatsCertGlobal OBJECT IDENTIFIER ::= { alStatsCert 1 }
|
|
||||||
|
|
||||||
alCertStatsServerTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AlCertStatsServerEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"List table listing the CA servers."
|
|
||||||
::= { alStatsCert 2 }
|
|
||||||
|
|
||||||
alCertStatsServerEntry OBJECT-TYPE
|
|
||||||
SYNTAX AlCertStatsServerEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry representing a CA server."
|
|
||||||
INDEX { alCertStatsServerIndex }
|
|
||||||
::= { alCertStatsServerTable 1 }
|
|
||||||
|
|
||||||
AlCertStatsServerEntry ::= SEQUENCE {
|
|
||||||
alCertStatsServerIndex Integer32,
|
|
||||||
alCertStatsServerAddress IpAddress,
|
|
||||||
alCertStatsServerPortNumber Integer32,
|
|
||||||
alCertStatsServerCertRequests Counter32,
|
|
||||||
alCertStatsServerCertRetransmissions Counter32,
|
|
||||||
alCertStatsServerCertRcvd Counter32,
|
|
||||||
alCertStatsServerCertPendingRequests Gauge32,
|
|
||||||
alCertStatsServerCertTimeouts Counter32,
|
|
||||||
alCertStatsServerCRLRequests Counter32,
|
|
||||||
alCertStatsServerCRLRetransmissions Counter32,
|
|
||||||
alCertStatsServerCRLRcvd Counter32,
|
|
||||||
alCertStatsServerCRLPendingRequests Gauge32,
|
|
||||||
alCertStatsServerCRLTimeouts Counter32
|
|
||||||
}
|
|
||||||
|
|
||||||
alCertStatsServerIndex OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Index of this CA."
|
|
||||||
::= { alCertStatsServerEntry 1 }
|
|
||||||
|
|
||||||
alCertStatsServerAddress OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The IP address of this CA."
|
|
||||||
::= { alCertStatsServerEntry 2 }
|
|
||||||
|
|
||||||
alCertStatsServerPortNumber OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The port number of this CA."
|
|
||||||
::= { alCertStatsServerEntry 3 }
|
|
||||||
|
|
||||||
alCertStatsServerCertRequests OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of certificate request packets sent
|
|
||||||
to this CA since client start-up. This does not
|
|
||||||
include retransmissions."
|
|
||||||
::= { alCertStatsServerEntry 4 }
|
|
||||||
|
|
||||||
alCertStatsServerCertRetransmissions OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of certificate request packets
|
|
||||||
retransmitted to this CA since client start-up."
|
|
||||||
::= { alCertStatsServerEntry 5 }
|
|
||||||
|
|
||||||
alCertStatsServerCertRcvd OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of certificates received from
|
|
||||||
this server since client start-up."
|
|
||||||
::= { alCertStatsServerEntry 6 }
|
|
||||||
|
|
||||||
alCertStatsServerCertPendingRequests OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of certificate request packets
|
|
||||||
destined for this server that have not yet timed out
|
|
||||||
or received a response. This variable is incremented
|
|
||||||
when certificate request is sent and decremented due to
|
|
||||||
receipt of a certificate, a timeout or retransmission."
|
|
||||||
::= { alCertStatsServerEntry 7 }
|
|
||||||
|
|
||||||
alCertStatsServerCertTimeouts OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of certificate timeouts to this
|
|
||||||
server since client startup."
|
|
||||||
::= { alCertStatsServerEntry 8 }
|
|
||||||
|
|
||||||
alCertStatsServerCRLRequests OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of CRL request packets sent
|
|
||||||
to this CA since client start-up. This does not
|
|
||||||
include retransmissions."
|
|
||||||
::= { alCertStatsServerEntry 9 }
|
|
||||||
|
|
||||||
alCertStatsServerCRLRetransmissions OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of CRL request packets
|
|
||||||
retransmitted to this CA since client start-up."
|
|
||||||
::= { alCertStatsServerEntry 10 }
|
|
||||||
|
|
||||||
alCertStatsServerCRLRcvd OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of CRL received from
|
|
||||||
this server since client start-up."
|
|
||||||
::= { alCertStatsServerEntry 11 }
|
|
||||||
|
|
||||||
alCertStatsServerCRLPendingRequests OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of CRL request packets
|
|
||||||
destined for this server that have not yet timed out
|
|
||||||
or received a response. This variable is incremented
|
|
||||||
when certificate request is sent and decremented due to
|
|
||||||
receipt of a certificate, a timeout or retransmission."
|
|
||||||
::= { alCertStatsServerEntry 12 }
|
|
||||||
|
|
||||||
alCertStatsServerCRLTimeouts OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of CRL timeouts to this server since
|
|
||||||
client startup."
|
|
||||||
::= { alCertStatsServerEntry 13 }
|
|
||||||
|
|
||||||
altigaCertStatsMibConformance OBJECT IDENTIFIER ::= { altigaCertStatsMibModule 1 }
|
|
||||||
altigaCertStatsMibCompliances OBJECT IDENTIFIER ::= { altigaCertStatsMibConformance 1 }
|
|
||||||
|
|
||||||
altigaCertStatsMibCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for agents which
|
|
||||||
implement the Altiga Digital Certificates Statistics MIB."
|
|
||||||
MODULE
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
altigaCertStatsGroup
|
|
||||||
}
|
|
||||||
::= { altigaCertStatsMibCompliances 1 }
|
|
||||||
|
|
||||||
altigaCertStatsGroup OBJECT-GROUP
|
|
||||||
OBJECTS
|
|
||||||
{
|
|
||||||
alCertStatsServerIndex,
|
|
||||||
alCertStatsServerAddress,
|
|
||||||
alCertStatsServerPortNumber,
|
|
||||||
alCertStatsServerCertRequests,
|
|
||||||
alCertStatsServerCertRetransmissions,
|
|
||||||
alCertStatsServerCertRcvd,
|
|
||||||
alCertStatsServerCertPendingRequests,
|
|
||||||
alCertStatsServerCertTimeouts,
|
|
||||||
alCertStatsServerCRLRequests,
|
|
||||||
alCertStatsServerCRLRetransmissions,
|
|
||||||
alCertStatsServerCRLRcvd,
|
|
||||||
alCertStatsServerCRLPendingRequests,
|
|
||||||
alCertStatsServerCRLTimeouts
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The objects for Cert statistics."
|
|
||||||
::= { alCertGroup 2 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
@ -1,240 +0,0 @@
|
|||||||
-- *------------------------------------------------------------------
|
|
||||||
-- * ALTIGA-DHCP-SERVER-STATS-MIB.my: The Altiga DHCP Server Statistics MIB.
|
|
||||||
-- *
|
|
||||||
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
|
|
||||||
-- *
|
|
||||||
-- * Copyright (c) 2002 by Cisco Systems, Inc.
|
|
||||||
-- * All rights reserved.
|
|
||||||
-- *
|
|
||||||
-- *------------------------------------------------------------------
|
|
||||||
|
|
||||||
ALTIGA-DHCP-SERVER-STATS-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY, OBJECT-TYPE, Integer32, IpAddress, Gauge32, Counter32
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
RowStatus, MacAddress, DisplayString
|
|
||||||
FROM SNMPv2-TC
|
|
||||||
OBJECT-GROUP, MODULE-COMPLIANCE
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
alStatsDhcpServer, alDhcpServerGroup
|
|
||||||
FROM ALTIGA-MIB
|
|
||||||
alDhcpServerMibModule
|
|
||||||
FROM ALTIGA-GLOBAL-REG;
|
|
||||||
|
|
||||||
altigaDhcpServerStatsMibModule MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200209051300Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
E-mail: cs-cvpn3000@cisco.com"
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
"The Altiga DHCP Statistics Server MIB models counters and objects that are
|
|
||||||
of management interest for DHCP.
|
|
||||||
|
|
||||||
Acronyms
|
|
||||||
The following acronyms are used in this document:
|
|
||||||
|
|
||||||
DHCP: Dynamic Host Configuration Protocol
|
|
||||||
|
|
||||||
MIB: Management Information Base
|
|
||||||
|
|
||||||
"
|
|
||||||
|
|
||||||
REVISION "200209051300Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added module compliance."
|
|
||||||
|
|
||||||
REVISION "200207100000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Updated with new header"
|
|
||||||
|
|
||||||
::= { alDhcpServerMibModule 2 }
|
|
||||||
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
-- MIB Objects
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
|
|
||||||
alStatsDhcpServerGlobal OBJECT IDENTIFIER ::= { alStatsDhcpServer 1 }
|
|
||||||
|
|
||||||
alDhcpServerStatsActiveLeases OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of active DHCP leases."
|
|
||||||
::= { alStatsDhcpServerGlobal 1 }
|
|
||||||
|
|
||||||
alDhcpServerStatsMaximumLeases OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of leases that were active at any one time."
|
|
||||||
::= { alStatsDhcpServerGlobal 2 }
|
|
||||||
|
|
||||||
alDhcpServerStatsDiscoversRcvd OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of transmitted DHCPDISCOVER messages."
|
|
||||||
::= { alStatsDhcpServerGlobal 3 }
|
|
||||||
|
|
||||||
alDhcpServerStatsOffersSent OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of received DHCPOFFER messages."
|
|
||||||
::= { alStatsDhcpServerGlobal 4 }
|
|
||||||
|
|
||||||
alDhcpServerStatsAcksSent OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of received original (i.e. in the REQUESTING state)
|
|
||||||
DHCPACK messages."
|
|
||||||
::= { alStatsDhcpServerGlobal 5 }
|
|
||||||
|
|
||||||
alDhcpServerStatsNaksSent OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of received original (i.e. in the REQUESTING state)
|
|
||||||
DHCPNAK messages."
|
|
||||||
::= { alStatsDhcpServerGlobal 6 }
|
|
||||||
|
|
||||||
alDhcpServerStatsReqTimeouts OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of request timeouts that occurred."
|
|
||||||
::= { alStatsDhcpServerGlobal 7 }
|
|
||||||
|
|
||||||
-- Per session stats
|
|
||||||
|
|
||||||
alDhcpServerStatsSessTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AlDhcpServerStatsSessEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"List of active sessions."
|
|
||||||
::= { alStatsDhcpServer 2 }
|
|
||||||
|
|
||||||
alDhcpServerStatsSessEntry OBJECT-TYPE
|
|
||||||
SYNTAX AlDhcpServerStatsSessEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry in the alDhcpServerStatsSessTable."
|
|
||||||
INDEX { alDhcpServerStatsSessId }
|
|
||||||
::= { alDhcpServerStatsSessTable 1 }
|
|
||||||
|
|
||||||
AlDhcpServerStatsSessEntry ::= SEQUENCE {
|
|
||||||
alDhcpServerStatsSessRowStatus RowStatus,
|
|
||||||
alDhcpServerStatsSessId Integer32,
|
|
||||||
alDhcpServerStatsSessIpAddr IpAddress,
|
|
||||||
alDhcpServerStatsSessLeaseExpire Gauge32,
|
|
||||||
alDhcpServerStatsSessMacAddr MacAddress,
|
|
||||||
alDhcpServerStatsSessHostName DisplayString
|
|
||||||
}
|
|
||||||
|
|
||||||
alDhcpServerStatsSessRowStatus OBJECT-TYPE
|
|
||||||
SYNTAX RowStatus
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The status of this row. This can be used to delete the
|
|
||||||
lease, but can not be used to create one."
|
|
||||||
|
|
||||||
::= { alDhcpServerStatsSessEntry 1 }
|
|
||||||
|
|
||||||
alDhcpServerStatsSessId OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The unique DHCP session ID used as the index for this row."
|
|
||||||
::= { alDhcpServerStatsSessEntry 2 }
|
|
||||||
|
|
||||||
alDhcpServerStatsSessIpAddr OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The IP address of the remote client."
|
|
||||||
::= { alDhcpServerStatsSessEntry 3 }
|
|
||||||
|
|
||||||
alDhcpServerStatsSessLeaseExpire OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The remaining seconds until the current lease expires."
|
|
||||||
::= { alDhcpServerStatsSessEntry 4 }
|
|
||||||
|
|
||||||
alDhcpServerStatsSessMacAddr OBJECT-TYPE
|
|
||||||
SYNTAX MacAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"MAC address of the client."
|
|
||||||
::= { alDhcpServerStatsSessEntry 5 }
|
|
||||||
|
|
||||||
alDhcpServerStatsSessHostName OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Host Name of the client."
|
|
||||||
::= { alDhcpServerStatsSessEntry 6 }
|
|
||||||
|
|
||||||
altigaDhcpServerStatsMibConformance OBJECT IDENTIFIER ::= { altigaDhcpServerStatsMibModule 1 }
|
|
||||||
altigaDhcpServerStatsMibCompliances OBJECT IDENTIFIER ::= { altigaDhcpServerStatsMibConformance 1 }
|
|
||||||
|
|
||||||
altigaDhcpServerStatsMibCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for agents which
|
|
||||||
implement the Altiga DHCP Server Statistics MIB."
|
|
||||||
MODULE
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
altigaDhcpServerStatsGroup
|
|
||||||
}
|
|
||||||
::= { altigaDhcpServerStatsMibCompliances 1 }
|
|
||||||
|
|
||||||
altigaDhcpServerStatsGroup OBJECT-GROUP
|
|
||||||
OBJECTS
|
|
||||||
{
|
|
||||||
alDhcpServerStatsActiveLeases,
|
|
||||||
alDhcpServerStatsMaximumLeases,
|
|
||||||
alDhcpServerStatsDiscoversRcvd,
|
|
||||||
alDhcpServerStatsOffersSent,
|
|
||||||
alDhcpServerStatsAcksSent,
|
|
||||||
alDhcpServerStatsNaksSent,
|
|
||||||
alDhcpServerStatsReqTimeouts,
|
|
||||||
alDhcpServerStatsSessRowStatus,
|
|
||||||
alDhcpServerStatsSessId,
|
|
||||||
alDhcpServerStatsSessIpAddr,
|
|
||||||
alDhcpServerStatsSessLeaseExpire,
|
|
||||||
alDhcpServerStatsSessMacAddr,
|
|
||||||
alDhcpServerStatsSessHostName
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The objects for the DHCP Server statistics."
|
|
||||||
::= { alDhcpServerGroup 2 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
||||||
|
|
@ -1,381 +0,0 @@
|
|||||||
-- *------------------------------------------------------------------
|
|
||||||
-- * ALTIGA-DHCP-STATS-MIB.my: The Altiga DHCP Statistics MIB.
|
|
||||||
-- *
|
|
||||||
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
|
|
||||||
-- *
|
|
||||||
-- * Copyright (c) 2002 by Cisco Systems, Inc.
|
|
||||||
-- * All rights reserved.
|
|
||||||
-- *
|
|
||||||
-- *------------------------------------------------------------------
|
|
||||||
|
|
||||||
ALTIGA-DHCP-STATS-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY, OBJECT-TYPE, Integer32, IpAddress, Gauge32
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
RowStatus, DisplayString
|
|
||||||
FROM SNMPv2-TC
|
|
||||||
OBJECT-GROUP, MODULE-COMPLIANCE
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
alStatsDhcp, alDhcpGroup
|
|
||||||
FROM ALTIGA-MIB
|
|
||||||
alDhcpMibModule
|
|
||||||
FROM ALTIGA-GLOBAL-REG;
|
|
||||||
|
|
||||||
altigaDhcpStatsMibModule MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200209051300Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
E-mail: cs-cvpn3000@cisco.com"
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
"The Altiga DHCP Statistics MIB models counters and objects that are
|
|
||||||
of management interest for DHCP.
|
|
||||||
|
|
||||||
Acronyms
|
|
||||||
The following acronyms are used in this document:
|
|
||||||
|
|
||||||
DHCP: Dynamic Host Configuration Protocol
|
|
||||||
|
|
||||||
MIB: Management Information Base
|
|
||||||
|
|
||||||
"
|
|
||||||
|
|
||||||
REVISION "200209051300Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added module compliance."
|
|
||||||
|
|
||||||
REVISION "200207100000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Updated with new header"
|
|
||||||
|
|
||||||
::= { alDhcpMibModule 2 }
|
|
||||||
|
|
||||||
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
-- MIB Objects
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
|
|
||||||
alStatsDhcpGlobal OBJECT IDENTIFIER ::= { alStatsDhcp 1 }
|
|
||||||
|
|
||||||
alDhcpStatsActiveLeases OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of active DHCP leases."
|
|
||||||
::= { alStatsDhcpGlobal 1 }
|
|
||||||
|
|
||||||
alDhcpStatsMaximumLeases OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of leases that were active at any one time."
|
|
||||||
::= { alStatsDhcpGlobal 2 }
|
|
||||||
|
|
||||||
alDhcpStatsDiscoversSent OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of transmitted DHCPDISCOVER messages."
|
|
||||||
::= { alStatsDhcpGlobal 3 }
|
|
||||||
|
|
||||||
alDhcpStatsOffersRcvd OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of received DHCPOFFER messages."
|
|
||||||
::= { alStatsDhcpGlobal 4 }
|
|
||||||
|
|
||||||
alDhcpStatsInitRequestsSent OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of initially (i.e. in the SELECTING or REQUESTING state)
|
|
||||||
transmitted DHCPREQUEST messages."
|
|
||||||
::= { alStatsDhcpGlobal 5 }
|
|
||||||
|
|
||||||
alDhcpStatsT1RequestsSent OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of transmitted DHCPDISCOVER messages after the T1
|
|
||||||
timer expired."
|
|
||||||
::= { alStatsDhcpGlobal 6 }
|
|
||||||
|
|
||||||
alDhcpStatsT2RequestsSent OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of transmitted DHCPDISCOVER messages after the T2
|
|
||||||
timer expired."
|
|
||||||
::= { alStatsDhcpGlobal 7 }
|
|
||||||
|
|
||||||
alDhcpStatsInitAcksRcvd OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of received original (i.e. in the REQUESTING state)
|
|
||||||
DHCPACK messages."
|
|
||||||
::= { alStatsDhcpGlobal 8 }
|
|
||||||
|
|
||||||
alDhcpStatsInitNaksRcvd OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of received original (i.e. in the REQUESTING state)
|
|
||||||
DHCPNAK messages."
|
|
||||||
::= { alStatsDhcpGlobal 9 }
|
|
||||||
|
|
||||||
alDhcpStatsT1AcksRcvd OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of received DHCPACK messages after the T1 timer
|
|
||||||
expired."
|
|
||||||
::= { alStatsDhcpGlobal 10 }
|
|
||||||
|
|
||||||
alDhcpStatsT1NaksRcvd OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of received DHCPNAK messages after the T1 timer
|
|
||||||
expired."
|
|
||||||
::= { alStatsDhcpGlobal 11 }
|
|
||||||
|
|
||||||
alDhcpStatsT2AcksRcvd OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of received DHCPACK messages after the T2 timer
|
|
||||||
expired."
|
|
||||||
::= { alStatsDhcpGlobal 12 }
|
|
||||||
|
|
||||||
alDhcpStatsT2NaksRcvd OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of received DHCPNAK messages after the T2 timer
|
|
||||||
expired."
|
|
||||||
::= { alStatsDhcpGlobal 13 }
|
|
||||||
|
|
||||||
alDhcpStatsT1Timeouts OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of T1 timeouts that occurred."
|
|
||||||
::= { alStatsDhcpGlobal 14 }
|
|
||||||
|
|
||||||
alDhcpStatsT2Timeouts OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of T2 timeouts that occurred."
|
|
||||||
::= { alStatsDhcpGlobal 15 }
|
|
||||||
|
|
||||||
alDhcpStatsApiRequests OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of requests made to obtain an IP address from
|
|
||||||
the DHCP module."
|
|
||||||
::= { alStatsDhcpGlobal 16 }
|
|
||||||
|
|
||||||
alDhcpStatsLeaseTimeouts OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of leases that expired."
|
|
||||||
::= { alStatsDhcpGlobal 17 }
|
|
||||||
|
|
||||||
|
|
||||||
-- Per session stats
|
|
||||||
|
|
||||||
alDhcpStatsSessTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AlDhcpStatsSessEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"List of active sessions."
|
|
||||||
::= { alStatsDhcp 2 }
|
|
||||||
|
|
||||||
alDhcpStatsSessEntry OBJECT-TYPE
|
|
||||||
SYNTAX AlDhcpStatsSessEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry in the alDhcpStatsSessTable."
|
|
||||||
INDEX { alDhcpStatsSessIpAddr }
|
|
||||||
::= { alDhcpStatsSessTable 1 }
|
|
||||||
|
|
||||||
AlDhcpStatsSessEntry ::= SEQUENCE {
|
|
||||||
alDhcpStatsSessRowStatus RowStatus,
|
|
||||||
alDhcpStatsSessId Integer32,
|
|
||||||
alDhcpStatsSessKey Integer32,
|
|
||||||
alDhcpStatsSessIpAddr IpAddress,
|
|
||||||
alDhcpStatsSessUpTime Integer32,
|
|
||||||
alDhcpStatsSessLeaseDuration Integer32,
|
|
||||||
alDhcpStatsSessLeaseExpire Integer32,
|
|
||||||
alDhcpStatsSessState DisplayString,
|
|
||||||
alDhcpStatsSessClientId DisplayString,
|
|
||||||
alDhcpStatsSessSrvrIpAddr IpAddress
|
|
||||||
}
|
|
||||||
|
|
||||||
alDhcpStatsSessRowStatus OBJECT-TYPE
|
|
||||||
SYNTAX RowStatus
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The status of this row. This can be used to delete the
|
|
||||||
lease, but can not be used to create one."
|
|
||||||
::= { alDhcpStatsSessEntry 1 }
|
|
||||||
|
|
||||||
alDhcpStatsSessId OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The unique DHCP session ID used as the index for this row."
|
|
||||||
::= { alDhcpStatsSessEntry 2 }
|
|
||||||
|
|
||||||
alDhcpStatsSessKey OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The DHCP hash key for this lease."
|
|
||||||
::= { alDhcpStatsSessEntry 3 }
|
|
||||||
|
|
||||||
alDhcpStatsSessIpAddr OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The IP address of the remote client."
|
|
||||||
::= { alDhcpStatsSessEntry 4 }
|
|
||||||
|
|
||||||
alDhcpStatsSessUpTime OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total length of time that this session has had active
|
|
||||||
lease(s)."
|
|
||||||
::= { alDhcpStatsSessEntry 5 }
|
|
||||||
|
|
||||||
alDhcpStatsSessLeaseDuration OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The duration of the current lease."
|
|
||||||
::= { alDhcpStatsSessEntry 6 }
|
|
||||||
|
|
||||||
alDhcpStatsSessLeaseExpire OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The remaining seconds until the current lease expires."
|
|
||||||
::= { alDhcpStatsSessEntry 7 }
|
|
||||||
|
|
||||||
alDhcpStatsSessState OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The state of this session."
|
|
||||||
::= { alDhcpStatsSessEntry 8 }
|
|
||||||
|
|
||||||
alDhcpStatsSessClientId OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The full 'client ID' value associated with this lease."
|
|
||||||
::= { alDhcpStatsSessEntry 9 }
|
|
||||||
|
|
||||||
alDhcpStatsSessSrvrIpAddr OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The IP address of the server from which this lease
|
|
||||||
was obtained."
|
|
||||||
::= { alDhcpStatsSessEntry 10 }
|
|
||||||
|
|
||||||
altigaDhcpStatsMibConformance OBJECT IDENTIFIER ::= { altigaDhcpStatsMibModule 1 }
|
|
||||||
altigaDhcpStatsMibCompliances OBJECT IDENTIFIER ::= { altigaDhcpStatsMibConformance 1 }
|
|
||||||
|
|
||||||
altigaDhcpStatsMibCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for agents which
|
|
||||||
implement the Altiga DHCP Statistics MIB."
|
|
||||||
MODULE
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
altigaDhcpStatsGroup
|
|
||||||
}
|
|
||||||
::= { altigaDhcpStatsMibCompliances 1 }
|
|
||||||
|
|
||||||
altigaDhcpStatsGroup OBJECT-GROUP
|
|
||||||
OBJECTS
|
|
||||||
{
|
|
||||||
alDhcpStatsActiveLeases,
|
|
||||||
alDhcpStatsMaximumLeases,
|
|
||||||
alDhcpStatsDiscoversSent,
|
|
||||||
alDhcpStatsOffersRcvd,
|
|
||||||
alDhcpStatsInitRequestsSent,
|
|
||||||
alDhcpStatsT1RequestsSent,
|
|
||||||
alDhcpStatsT2RequestsSent,
|
|
||||||
alDhcpStatsInitAcksRcvd,
|
|
||||||
alDhcpStatsInitNaksRcvd,
|
|
||||||
alDhcpStatsT1AcksRcvd,
|
|
||||||
alDhcpStatsT1NaksRcvd,
|
|
||||||
alDhcpStatsT2AcksRcvd,
|
|
||||||
alDhcpStatsT2NaksRcvd,
|
|
||||||
alDhcpStatsT1Timeouts,
|
|
||||||
alDhcpStatsT2Timeouts,
|
|
||||||
alDhcpStatsApiRequests,
|
|
||||||
alDhcpStatsLeaseTimeouts,
|
|
||||||
alDhcpStatsSessRowStatus,
|
|
||||||
alDhcpStatsSessId,
|
|
||||||
alDhcpStatsSessKey,
|
|
||||||
alDhcpStatsSessIpAddr,
|
|
||||||
alDhcpStatsSessUpTime,
|
|
||||||
alDhcpStatsSessLeaseDuration,
|
|
||||||
alDhcpStatsSessLeaseExpire,
|
|
||||||
alDhcpStatsSessState,
|
|
||||||
alDhcpStatsSessClientId,
|
|
||||||
alDhcpStatsSessSrvrIpAddr
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The objects for the DHCP Server statistics."
|
|
||||||
::= { alDhcpGroup 2 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
||||||
|
|
@ -1,135 +0,0 @@
|
|||||||
-- *------------------------------------------------------------------
|
|
||||||
-- * ALTIGA-DNS-STATS-MIB.my: Altiga DNS Statistics MIB.
|
|
||||||
-- *
|
|
||||||
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
|
|
||||||
-- *
|
|
||||||
-- * Copyright (c) 2002 by Cisco Systems, Inc.
|
|
||||||
-- * All rights reserved.
|
|
||||||
-- *
|
|
||||||
-- *------------------------------------------------------------------
|
|
||||||
|
|
||||||
ALTIGA-DNS-STATS-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY, OBJECT-TYPE, Gauge32
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
OBJECT-GROUP, MODULE-COMPLIANCE
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
alStatsDns, alDnsGroup
|
|
||||||
FROM ALTIGA-MIB
|
|
||||||
alDnsMibModule
|
|
||||||
FROM ALTIGA-GLOBAL-REG;
|
|
||||||
|
|
||||||
altigaDnsStatsMibModule MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200209051300Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
E-mail: cs-cvpn3000@cisco.com"
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
"The Altiga DNS Statistics MIB models counters and objects that are
|
|
||||||
of management interest for DNS.
|
|
||||||
|
|
||||||
Acronyms
|
|
||||||
The following acronyms are used in this document:
|
|
||||||
|
|
||||||
DNS: Domain Name Service
|
|
||||||
|
|
||||||
MIB: Management Information Base
|
|
||||||
|
|
||||||
"
|
|
||||||
|
|
||||||
REVISION "200209051300Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added module compliance."
|
|
||||||
|
|
||||||
REVISION "200207100000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Updated with new header"
|
|
||||||
|
|
||||||
::= { alDnsMibModule 2 }
|
|
||||||
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
-- MIB Objects
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
|
|
||||||
alStatsDnsResolverGlobal OBJECT IDENTIFIER ::= { alStatsDns 1 }
|
|
||||||
|
|
||||||
alDnsStatsAttemptedQueries OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of DNS queries that were attempted."
|
|
||||||
::= { alStatsDnsResolverGlobal 1 }
|
|
||||||
|
|
||||||
alDnsStatsSuccessfulResponses OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of queries that were successfully resolved."
|
|
||||||
::= { alStatsDnsResolverGlobal 2 }
|
|
||||||
|
|
||||||
alDnsStatsTimeoutFailures OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of failures because there was no response from
|
|
||||||
the server."
|
|
||||||
::= { alStatsDnsResolverGlobal 3 }
|
|
||||||
|
|
||||||
alDnsStatsUnreachableServerFailures OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of failures because the address of the server
|
|
||||||
is not reachable according to the Concentrator's routing
|
|
||||||
table."
|
|
||||||
::= { alStatsDnsResolverGlobal 4 }
|
|
||||||
|
|
||||||
alDnsStatsMiscFailures OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of failures for an unspecified reason."
|
|
||||||
::= { alStatsDnsResolverGlobal 5 }
|
|
||||||
|
|
||||||
altigaDnsStatsMibConformance OBJECT IDENTIFIER ::= { altigaDnsStatsMibModule 1 }
|
|
||||||
altigaDnsStatsMibCompliances OBJECT IDENTIFIER ::= { altigaDnsStatsMibConformance 1 }
|
|
||||||
|
|
||||||
altigaDnsStatsMibCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for agents which
|
|
||||||
implement the Altiga DNS Statistics MIB."
|
|
||||||
MODULE
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
altigaDnsStatsGroup
|
|
||||||
}
|
|
||||||
::= { altigaDnsStatsMibCompliances 1 }
|
|
||||||
|
|
||||||
altigaDnsStatsGroup OBJECT-GROUP
|
|
||||||
OBJECTS
|
|
||||||
{
|
|
||||||
alDnsStatsAttemptedQueries,
|
|
||||||
alDnsStatsSuccessfulResponses,
|
|
||||||
alDnsStatsTimeoutFailures,
|
|
||||||
alDnsStatsUnreachableServerFailures,
|
|
||||||
alDnsStatsMiscFailures
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The objects for the DNS resolver module statistics."
|
|
||||||
::= { alDnsGroup 2 }
|
|
||||||
|
|
||||||
END
|
|
@ -1,177 +0,0 @@
|
|||||||
-- *------------------------------------------------------------------
|
|
||||||
-- * ALTIGA-EVENT-STATS-MIB.my: Altiga Event Statistics MIB.
|
|
||||||
-- *
|
|
||||||
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
|
|
||||||
-- *
|
|
||||||
-- * Copyright (c) 2002, 2003 by Cisco Systems, Inc.
|
|
||||||
-- * All rights reserved.
|
|
||||||
-- *
|
|
||||||
-- *------------------------------------------------------------------
|
|
||||||
|
|
||||||
ALTIGA-EVENT-STATS-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY, OBJECT-TYPE, Integer32, Counter32
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
DisplayString
|
|
||||||
FROM SNMPv2-TC
|
|
||||||
OBJECT-GROUP, MODULE-COMPLIANCE
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
alStatsEvent, alEventGroup
|
|
||||||
FROM ALTIGA-MIB
|
|
||||||
alEventMibModule
|
|
||||||
FROM ALTIGA-GLOBAL-REG;
|
|
||||||
|
|
||||||
altigaEventStatsMibModule MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200301130000Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
E-mail: cs-cvpn3000@cisco.com"
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
"The Altiga Event Statistics MIB models counters and objects that are
|
|
||||||
of management interest for events.
|
|
||||||
|
|
||||||
Acronyms
|
|
||||||
The following acronyms are used in this document:
|
|
||||||
|
|
||||||
MIB: Management Information Base
|
|
||||||
|
|
||||||
"
|
|
||||||
|
|
||||||
|
|
||||||
REVISION "200301130000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added alStatsEventNotificationId object"
|
|
||||||
|
|
||||||
REVISION "200207100000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Updated with new header"
|
|
||||||
|
|
||||||
::= { alEventMibModule 2 }
|
|
||||||
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
-- MIB Objects
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
|
|
||||||
alStatsEventGlobal OBJECT IDENTIFIER ::= { alStatsEvent 1 }
|
|
||||||
|
|
||||||
alStatsEventNotificationId OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The event class and event ID string in class/id format.
|
|
||||||
The string applies as the product is configured to
|
|
||||||
send log events whenever SNMP generates notifications."
|
|
||||||
::= { alStatsEventGlobal 1 }
|
|
||||||
|
|
||||||
alEventStatsTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AlEventStatsEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The Event Stats Per Class/Event Number."
|
|
||||||
::= { alStatsEvent 2 }
|
|
||||||
|
|
||||||
alEventStatsEntry OBJECT-TYPE
|
|
||||||
SYNTAX AlEventStatsEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry in the alEventStatsTable."
|
|
||||||
INDEX { alEventStatsClass, alEventStatsEventNumber }
|
|
||||||
::= { alEventStatsTable 1 }
|
|
||||||
|
|
||||||
AlEventStatsEntry ::= SEQUENCE {
|
|
||||||
alEventStatsClass Integer32,
|
|
||||||
alEventStatsEventNumber Integer32,
|
|
||||||
alEventStatsCount Counter32
|
|
||||||
}
|
|
||||||
|
|
||||||
alEventStatsClass OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..65535)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The primary index of this row, the event class."
|
|
||||||
::= { alEventStatsEntry 1 }
|
|
||||||
|
|
||||||
alEventStatsEventNumber OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..65535)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The secondary index of this row, the event number."
|
|
||||||
::= { alEventStatsEntry 2 }
|
|
||||||
|
|
||||||
alEventStatsCount OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of times that the given event for the give class has
|
|
||||||
been generated."
|
|
||||||
::= { alEventStatsEntry 3 }
|
|
||||||
|
|
||||||
altigaEventStatsMibConformance OBJECT IDENTIFIER
|
|
||||||
::= { altigaEventStatsMibModule 1 }
|
|
||||||
altigaEventStatsMibCompliances OBJECT IDENTIFIER
|
|
||||||
::= { altigaEventStatsMibConformance 1 }
|
|
||||||
|
|
||||||
altigaEventStatsMibCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS deprecated
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for agents which
|
|
||||||
implement the Altiga Event Statistics MIB."
|
|
||||||
MODULE
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
altigaEventStatsGroup
|
|
||||||
}
|
|
||||||
::= { altigaEventStatsMibCompliances 1 }
|
|
||||||
|
|
||||||
altigaEventStatsMibComplianceRev1 MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for agents which
|
|
||||||
implement the Altiga Event Statistics MIB."
|
|
||||||
MODULE
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
altigaEventStatsGroupRev1
|
|
||||||
}
|
|
||||||
::= { altigaEventStatsMibCompliances 2 }
|
|
||||||
|
|
||||||
altigaEventStatsGroup OBJECT-GROUP
|
|
||||||
OBJECTS
|
|
||||||
{
|
|
||||||
alEventStatsClass,
|
|
||||||
alEventStatsEventNumber,
|
|
||||||
alEventStatsCount
|
|
||||||
}
|
|
||||||
STATUS deprecated
|
|
||||||
DESCRIPTION
|
|
||||||
"The objects for Event Statistics."
|
|
||||||
::= { alEventGroup 2 }
|
|
||||||
|
|
||||||
altigaEventStatsGroupRev1 OBJECT-GROUP
|
|
||||||
OBJECTS
|
|
||||||
{
|
|
||||||
alEventStatsClass,
|
|
||||||
alEventStatsEventNumber,
|
|
||||||
alEventStatsCount,
|
|
||||||
alStatsEventNotificationId
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The objects for Event Statistics."
|
|
||||||
::= { alEventGroup 3 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
||||||
|
|
@ -1,294 +0,0 @@
|
|||||||
-- *------------------------------------------------------------------
|
|
||||||
-- * ALTIGA-FILTER-STATS-MIB.my: Altiga Filter Statistics MIB.
|
|
||||||
-- *
|
|
||||||
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
|
|
||||||
-- *
|
|
||||||
-- * Copyright (c) 2002 by Cisco Systems, Inc.
|
|
||||||
-- * All rights reserved.
|
|
||||||
-- *
|
|
||||||
-- *------------------------------------------------------------------
|
|
||||||
|
|
||||||
ALTIGA-FILTER-STATS-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY, OBJECT-TYPE, Integer32, TimeTicks, Counter32
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
OBJECT-GROUP, MODULE-COMPLIANCE
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
alStatsFilter, alFilterGroup
|
|
||||||
FROM ALTIGA-MIB
|
|
||||||
alFilterMibModule
|
|
||||||
FROM ALTIGA-GLOBAL-REG;
|
|
||||||
|
|
||||||
altigaFilterStatsMibModule MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200209051300Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
E-mail: cs-cvpn3000@cisco.com"
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
"The Altiga Filter Statistics MIB models counters and objects that are
|
|
||||||
of management interest for filters.
|
|
||||||
|
|
||||||
Acronyms
|
|
||||||
The following acronyms are used in this document:
|
|
||||||
|
|
||||||
ICMP: Internet Control Message Protocol
|
|
||||||
|
|
||||||
MIB: Management Information Base
|
|
||||||
|
|
||||||
Rx: Received
|
|
||||||
|
|
||||||
TCP: Transmission Control Protocol
|
|
||||||
|
|
||||||
Tx: Transmitted
|
|
||||||
|
|
||||||
UDP: User Datagram Protocol
|
|
||||||
|
|
||||||
"
|
|
||||||
|
|
||||||
REVISION "200209051300Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added module compliance."
|
|
||||||
|
|
||||||
REVISION "200207100000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Updated with new header"
|
|
||||||
|
|
||||||
::= { alFilterMibModule 2 }
|
|
||||||
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
-- MIB Objects
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
|
|
||||||
alStatsFilterGlobal OBJECT IDENTIFIER ::= { alStatsFilter 1 }
|
|
||||||
|
|
||||||
alFilterStatsTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AlFilterStatsEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The list of filter statistics."
|
|
||||||
::= { alStatsFilter 2 }
|
|
||||||
|
|
||||||
alFilterStatsEntry OBJECT-TYPE
|
|
||||||
SYNTAX AlFilterStatsEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry in the alFilterStatsTable."
|
|
||||||
INDEX { alFilterStatsInterfaceId }
|
|
||||||
::= { alFilterStatsTable 1 }
|
|
||||||
|
|
||||||
AlFilterStatsEntry ::= SEQUENCE {
|
|
||||||
alFilterStatsInterfaceId Integer32,
|
|
||||||
alFilterStatsStartTime TimeTicks,
|
|
||||||
alFilterStatsInPktsFiltered Counter32,
|
|
||||||
alFilterStatsOutPktsFiltered Counter32,
|
|
||||||
alFilterStatsInPktsRx Counter32,
|
|
||||||
alFilterStatsOutPktsRx Counter32,
|
|
||||||
alFilterStatsInPktsTx Counter32,
|
|
||||||
alFilterStatsOutPktsTx Counter32,
|
|
||||||
alFilterStatsInShortTcpHdr Counter32,
|
|
||||||
alFilterStatsOutShortTcpHdr Counter32,
|
|
||||||
alFilterStatsInShortUdpHdr Counter32,
|
|
||||||
alFilterStatsOutShortUdpHdr Counter32,
|
|
||||||
alFilterStatsInTcpFragDiscard Counter32,
|
|
||||||
alFilterStatsOutTcpFragDiscard Counter32,
|
|
||||||
alFilterStatsInIcmpFragDiscard Counter32,
|
|
||||||
alFilterStatsOutIcmpFragDiscard Counter32
|
|
||||||
}
|
|
||||||
|
|
||||||
alFilterStatsInterfaceId OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..65535)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The primary index of this row, the IP interface ID."
|
|
||||||
::= { alFilterStatsEntry 1 }
|
|
||||||
|
|
||||||
alFilterStatsStartTime OBJECT-TYPE
|
|
||||||
SYNTAX TimeTicks
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Start time the filter became active."
|
|
||||||
::= { alFilterStatsEntry 2 }
|
|
||||||
|
|
||||||
alFilterStatsInPktsFiltered OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of inbound packets discarded on this interface."
|
|
||||||
::= { alFilterStatsEntry 3 }
|
|
||||||
|
|
||||||
alFilterStatsOutPktsFiltered OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of outbound packets discarded on this interface."
|
|
||||||
::= { alFilterStatsEntry 4 }
|
|
||||||
|
|
||||||
alFilterStatsInPktsRx OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of inbound packets received on this interface."
|
|
||||||
::= { alFilterStatsEntry 5 }
|
|
||||||
|
|
||||||
alFilterStatsOutPktsRx OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of outbound packets received on this interface.
|
|
||||||
This count includes filtered (dropped) packets."
|
|
||||||
::= { alFilterStatsEntry 6 }
|
|
||||||
|
|
||||||
alFilterStatsInPktsTx OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of inbound packets forwarded on this interface."
|
|
||||||
::= { alFilterStatsEntry 7 }
|
|
||||||
|
|
||||||
alFilterStatsOutPktsTx OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of outbound packets forwarded on this interface.
|
|
||||||
This count does not include filtered packets."
|
|
||||||
::= { alFilterStatsEntry 8 }
|
|
||||||
|
|
||||||
alFilterStatsInShortTcpHdr OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of inbound TCP packets discarded on this interface
|
|
||||||
because the header was incomplete."
|
|
||||||
::= { alFilterStatsEntry 9 }
|
|
||||||
|
|
||||||
alFilterStatsOutShortTcpHdr OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of outbound TCP packets discarded on this interface
|
|
||||||
because the header was incomplete."
|
|
||||||
::= { alFilterStatsEntry 10 }
|
|
||||||
|
|
||||||
alFilterStatsInShortUdpHdr OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of inbound UDP packets discarded on this interface
|
|
||||||
because the header was incomplete."
|
|
||||||
::= { alFilterStatsEntry 11 }
|
|
||||||
|
|
||||||
alFilterStatsOutShortUdpHdr OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of outbound UDP packets discarded on this interface
|
|
||||||
because the header was incomplete."
|
|
||||||
::= { alFilterStatsEntry 12 }
|
|
||||||
|
|
||||||
alFilterStatsInTcpFragDiscard OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of inbound TCP packets discarded on this interface
|
|
||||||
because packet was fragmented."
|
|
||||||
::= { alFilterStatsEntry 13 }
|
|
||||||
|
|
||||||
alFilterStatsOutTcpFragDiscard OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of outbound TCP packets discarded on this interface
|
|
||||||
because packet was fragmented."
|
|
||||||
::= { alFilterStatsEntry 14 }
|
|
||||||
|
|
||||||
alFilterStatsInIcmpFragDiscard OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of inbound ICMP packets discarded on this interface
|
|
||||||
because packet was fragmented."
|
|
||||||
::= { alFilterStatsEntry 15 }
|
|
||||||
|
|
||||||
alFilterStatsOutIcmpFragDiscard OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of outbound ICMP packets discarded on this interface
|
|
||||||
because packet was fragmented."
|
|
||||||
::= { alFilterStatsEntry 16 }
|
|
||||||
|
|
||||||
altigaFilterStatsMibConformance OBJECT IDENTIFIER ::= { altigaFilterStatsMibModule 1 }
|
|
||||||
altigaFilterStatsMibCompliances OBJECT IDENTIFIER ::= { altigaFilterStatsMibConformance 1 }
|
|
||||||
|
|
||||||
altigaFilterStatsMibCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for agents which
|
|
||||||
implement the Altiga Filter Statistics MIB."
|
|
||||||
MODULE
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
altigaFilterStatsGroup
|
|
||||||
}
|
|
||||||
::= { altigaFilterStatsMibCompliances 1 }
|
|
||||||
|
|
||||||
altigaFilterStatsGroup OBJECT-GROUP
|
|
||||||
OBJECTS
|
|
||||||
{
|
|
||||||
alFilterStatsInterfaceId,
|
|
||||||
alFilterStatsStartTime,
|
|
||||||
alFilterStatsInPktsFiltered,
|
|
||||||
alFilterStatsOutPktsFiltered,
|
|
||||||
alFilterStatsInPktsRx,
|
|
||||||
alFilterStatsOutPktsRx,
|
|
||||||
alFilterStatsInPktsTx,
|
|
||||||
alFilterStatsOutPktsTx,
|
|
||||||
alFilterStatsInShortTcpHdr,
|
|
||||||
alFilterStatsOutShortTcpHdr,
|
|
||||||
alFilterStatsInShortUdpHdr,
|
|
||||||
alFilterStatsOutShortUdpHdr,
|
|
||||||
alFilterStatsInTcpFragDiscard,
|
|
||||||
alFilterStatsOutTcpFragDiscard,
|
|
||||||
alFilterStatsInIcmpFragDiscard,
|
|
||||||
alFilterStatsOutIcmpFragDiscard
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The objects for filter statistics."
|
|
||||||
::= { alFilterGroup 2 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,217 +0,0 @@
|
|||||||
-- *------------------------------------------------------------------
|
|
||||||
-- * ALTIGA-FTP-STATS-MIB.my: FTP Statistics MIB.
|
|
||||||
-- *
|
|
||||||
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
|
|
||||||
-- *
|
|
||||||
-- * Copyright (c) 2002 by Cisco Systems, Inc.
|
|
||||||
-- * All rights reserved.
|
|
||||||
-- *
|
|
||||||
-- *------------------------------------------------------------------
|
|
||||||
|
|
||||||
ALTIGA-FTP-STATS-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY, OBJECT-TYPE, Counter32, Gauge32
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
OBJECT-GROUP, MODULE-COMPLIANCE
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
alStatsFtp, alFtpGroup
|
|
||||||
FROM ALTIGA-MIB
|
|
||||||
alFtpMibModule
|
|
||||||
FROM ALTIGA-GLOBAL-REG;
|
|
||||||
|
|
||||||
altigaFtpStatsMibModule MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200209051300Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
E-mail: cs-cvpn3000@cisco.com"
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
"The Altiga FTP Statistics MIB models counters and objects
|
|
||||||
that are of management interest for FTP.
|
|
||||||
|
|
||||||
Acronyms
|
|
||||||
The following acronyms are used in this document:
|
|
||||||
|
|
||||||
FTP: File Transfer Protocol
|
|
||||||
|
|
||||||
MIB: Management Information Base
|
|
||||||
|
|
||||||
"
|
|
||||||
|
|
||||||
REVISION "200209051300Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added module compliance."
|
|
||||||
|
|
||||||
REVISION "200207100000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Updated with new header"
|
|
||||||
|
|
||||||
::= { alFtpMibModule 2 }
|
|
||||||
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
-- MIB Objects
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
|
|
||||||
alStatsFtpServerGlobal OBJECT IDENTIFIER ::= { alStatsFtp 1 }
|
|
||||||
alStatsFtpClientGlobal OBJECT IDENTIFIER ::= { alStatsFtp 2 }
|
|
||||||
|
|
||||||
alFtpClientStatsMaxSess OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The current maximum number of FTP client sessions."
|
|
||||||
::= { alStatsFtpClientGlobal 1 }
|
|
||||||
|
|
||||||
alFtpClientStatsTotalSess OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of FTP client sessions since boot."
|
|
||||||
::= { alStatsFtpClientGlobal 2 }
|
|
||||||
|
|
||||||
alFtpClientStatsGoodConns OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of successful FTP client connections
|
|
||||||
since boot."
|
|
||||||
::= { alStatsFtpClientGlobal 3 }
|
|
||||||
|
|
||||||
alFtpClientStatsBadConns OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of unsuccessful FTP client connections
|
|
||||||
since boot."
|
|
||||||
::= { alStatsFtpClientGlobal 4 }
|
|
||||||
|
|
||||||
alFtpClientStatsGoodDataConns OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of successful FTP client data-socket
|
|
||||||
connections since boot."
|
|
||||||
::= { alStatsFtpClientGlobal 5 }
|
|
||||||
|
|
||||||
alFtpClientStatsBadDataConns OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of unsuccessful FTP client data-socket
|
|
||||||
connections since boot."
|
|
||||||
::= { alStatsFtpClientGlobal 6 }
|
|
||||||
|
|
||||||
alFtpClientStatsGoodFileXfers OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of successful FTP client file transfers
|
|
||||||
since boot."
|
|
||||||
::= { alStatsFtpClientGlobal 7 }
|
|
||||||
|
|
||||||
alFtpClientStatsBadFileXfers OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The numner of unsuccessful FTP client file transfers
|
|
||||||
since boot."
|
|
||||||
::= { alStatsFtpClientGlobal 8 }
|
|
||||||
|
|
||||||
alFtpClientStatsAsciiXfers OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of FTP client ASCII mode transfers
|
|
||||||
since boot."
|
|
||||||
::= { alStatsFtpClientGlobal 9 }
|
|
||||||
|
|
||||||
alFtpClientStatsBinaryXfers OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of FTP client BINARY mode transfers
|
|
||||||
since boot."
|
|
||||||
::= { alStatsFtpClientGlobal 10 }
|
|
||||||
|
|
||||||
alFtpClientStatsOctetsXmit OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number bytes transmitted by the FTP client
|
|
||||||
since boot."
|
|
||||||
::= { alStatsFtpClientGlobal 11 }
|
|
||||||
|
|
||||||
alFtpClientStatsOctetsRecv OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number bytes received by the FTP client
|
|
||||||
since boot."
|
|
||||||
::= { alStatsFtpClientGlobal 12 }
|
|
||||||
|
|
||||||
alFtpClientStatsTimeouts OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of FTP client command/response timeouts
|
|
||||||
since boot."
|
|
||||||
::= { alStatsFtpClientGlobal 13 }
|
|
||||||
|
|
||||||
altigaFtpStatsMibConformance OBJECT IDENTIFIER ::= { altigaFtpStatsMibModule 1 }
|
|
||||||
altigaFtpStatsMibCompliances OBJECT IDENTIFIER ::= { altigaFtpStatsMibConformance 1 }
|
|
||||||
|
|
||||||
altigaFtpStatsMibCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for agents which
|
|
||||||
implement the Altiga FTP Statistics MIB."
|
|
||||||
MODULE
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
altigaFtpStatsGroup
|
|
||||||
}
|
|
||||||
::= { altigaFtpStatsMibCompliances 1 }
|
|
||||||
|
|
||||||
altigaFtpStatsGroup OBJECT-GROUP
|
|
||||||
OBJECTS
|
|
||||||
{
|
|
||||||
alFtpClientStatsMaxSess,
|
|
||||||
alFtpClientStatsTotalSess,
|
|
||||||
alFtpClientStatsGoodConns,
|
|
||||||
alFtpClientStatsBadConns,
|
|
||||||
alFtpClientStatsGoodDataConns,
|
|
||||||
alFtpClientStatsBadDataConns,
|
|
||||||
alFtpClientStatsGoodFileXfers,
|
|
||||||
alFtpClientStatsBadFileXfers,
|
|
||||||
alFtpClientStatsAsciiXfers,
|
|
||||||
alFtpClientStatsBinaryXfers,
|
|
||||||
alFtpClientStatsOctetsXmit,
|
|
||||||
alFtpClientStatsOctetsRecv,
|
|
||||||
alFtpClientStatsTimeouts
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The objects for Ftp statistics."
|
|
||||||
::= { alFtpGroup 2 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
@ -1,156 +0,0 @@
|
|||||||
-- *------------------------------------------------------------------
|
|
||||||
-- * ALTIGA-GENERAL-STATS-MIB.my: Altiga General Statistics MIB.
|
|
||||||
-- *
|
|
||||||
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
|
|
||||||
-- *
|
|
||||||
-- * Copyright (c) 2002 by Cisco Systems, Inc.
|
|
||||||
-- * All rights reserved.
|
|
||||||
-- *
|
|
||||||
-- *------------------------------------------------------------------
|
|
||||||
|
|
||||||
ALTIGA-GENERAL-STATS-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
|
|
||||||
Gauge32, Counter32, Integer32
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
alStatsGeneral, alGeneralGroup
|
|
||||||
FROM ALTIGA-MIB
|
|
||||||
alGeneralMibModule
|
|
||||||
FROM ALTIGA-GLOBAL-REG;
|
|
||||||
|
|
||||||
altigaGeneralStatsMibModule MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200209111300Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
E-mail: cs-cvpn3000@cisco.com"
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
"The Altiga General Statistics MIB models counters and
|
|
||||||
objects that are of management interest.
|
|
||||||
|
|
||||||
Acronyms
|
|
||||||
The following acronyms are used in this document:
|
|
||||||
|
|
||||||
AVP: Attribute/Value Pair
|
|
||||||
|
|
||||||
CLID: Calling Line ID
|
|
||||||
|
|
||||||
DNIS: Dialed Number Identification Service
|
|
||||||
|
|
||||||
L2TP: Layer 2 Tunnel Protocol
|
|
||||||
|
|
||||||
LAC: L2TP Access Concentrator
|
|
||||||
|
|
||||||
LNS: L2TP Network Server
|
|
||||||
|
|
||||||
RWS: Receive Window Size
|
|
||||||
|
|
||||||
"
|
|
||||||
|
|
||||||
REVISION "200209111300Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added module compliance and fix comments."
|
|
||||||
|
|
||||||
REVISION "200207100000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Updated with new header"
|
|
||||||
|
|
||||||
::= { alGeneralMibModule 2 }
|
|
||||||
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
-- MIB Objects
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
|
|
||||||
alStatsGeneralGlobal OBJECT IDENTIFIER ::= { alStatsGeneral 1 }
|
|
||||||
|
|
||||||
alGeneralTime OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The current time on the box, represented as a time_t.
|
|
||||||
|
|
||||||
In 1.2, this was the box's local time.
|
|
||||||
|
|
||||||
After 1.2, it was corrected to represent UTC (which is what it
|
|
||||||
is supposed to be). So all boxes should have this be the same
|
|
||||||
value +/- a few seconds."
|
|
||||||
::= { alStatsGeneralGlobal 1 }
|
|
||||||
|
|
||||||
alGeneralGaugeCpuUtil OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32 (0..100)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The value of the CPU Utilization gauge which indicates
|
|
||||||
percentage of CPU utilized."
|
|
||||||
::= { alStatsGeneralGlobal 2 }
|
|
||||||
|
|
||||||
alGeneralGaugeActiveSessions OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32 (0..100)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The value of the Active Sessions gauge which indicates the
|
|
||||||
percentage of total permitted session that are active."
|
|
||||||
::= { alStatsGeneralGlobal 3 }
|
|
||||||
|
|
||||||
alGeneralGaugeThroughput OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32 (0..100)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The value of the Throughput gauge which indicates the
|
|
||||||
percentage of total available throughput in-use."
|
|
||||||
::= { alStatsGeneralGlobal 4 }
|
|
||||||
|
|
||||||
alGeneralTimeZone OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The time zone configured on the box. Measured in minutes from
|
|
||||||
UTC. e.g. EST = -300."
|
|
||||||
::= { alStatsGeneralGlobal 5 }
|
|
||||||
|
|
||||||
altigaGeneralStatsMibConformance OBJECT IDENTIFIER
|
|
||||||
::= { altigaGeneralStatsMibModule 1 }
|
|
||||||
|
|
||||||
altigaGeneralStatsMibCompliances OBJECT IDENTIFIER
|
|
||||||
::= { altigaGeneralStatsMibConformance 1 }
|
|
||||||
|
|
||||||
altigaGeneralStatsMibCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for agents which implement the
|
|
||||||
Altiga General Statistics MIB."
|
|
||||||
MODULE
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
altigaGeneralStatsGroup
|
|
||||||
}
|
|
||||||
::= { altigaGeneralStatsMibCompliances 1 }
|
|
||||||
|
|
||||||
altigaGeneralStatsGroup OBJECT-GROUP
|
|
||||||
OBJECTS
|
|
||||||
{
|
|
||||||
alGeneralTime,
|
|
||||||
alGeneralGaugeCpuUtil,
|
|
||||||
alGeneralGaugeActiveSessions,
|
|
||||||
alGeneralGaugeThroughput,
|
|
||||||
alGeneralTimeZone
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The objects for general information."
|
|
||||||
::= { alGeneralGroup 2 }
|
|
||||||
|
|
||||||
END
|
|
@ -1,267 +0,0 @@
|
|||||||
-- *------------------------------------------------------------------
|
|
||||||
-- * ALTIGA-GLOBAL-REG.my: Altiga Networks Central Registration MIB.
|
|
||||||
-- *
|
|
||||||
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
|
|
||||||
-- *
|
|
||||||
-- * Copyright (c) 2002, 2003, 2005 by Cisco Systems, Inc.
|
|
||||||
-- * All rights reserved.
|
|
||||||
-- *
|
|
||||||
-- *------------------------------------------------------------------
|
|
||||||
|
|
||||||
ALTIGA-GLOBAL-REG DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY, OBJECT-IDENTITY, enterprises
|
|
||||||
FROM SNMPv2-SMI;
|
|
||||||
|
|
||||||
altigaGlobalRegModule MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200501050000Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
E-mail: cs-cvpn3000@cisco.com"
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
"The Altiga Networks central registration module.
|
|
||||||
|
|
||||||
Acronyms
|
|
||||||
The following acronyms are used in this document:
|
|
||||||
|
|
||||||
|
|
||||||
ACE: Access Control Encryption
|
|
||||||
|
|
||||||
BwMgmt: Bandwidth Management
|
|
||||||
|
|
||||||
CTCP: Cisco Transmission Control Protocol
|
|
||||||
|
|
||||||
DHCP: Dynamic Host Configuration Protocol
|
|
||||||
|
|
||||||
DNS: Domain Name Service
|
|
||||||
|
|
||||||
FTP: File Transfer Protocol
|
|
||||||
|
|
||||||
FW: Firewall
|
|
||||||
|
|
||||||
HTTP: HyperText Transfer Protocol
|
|
||||||
|
|
||||||
ICMP: Internet Control Message Protocol
|
|
||||||
|
|
||||||
IKE: Internet Key Exchange
|
|
||||||
|
|
||||||
IP: Internet Protocol
|
|
||||||
|
|
||||||
LBSSF: Load Balance Secure Session Failover
|
|
||||||
|
|
||||||
L2TP: Layer-2 Tunneling Protocol
|
|
||||||
|
|
||||||
MIB: Management Information Base
|
|
||||||
|
|
||||||
NAT: Network Address Translation
|
|
||||||
|
|
||||||
NTP: Network Time Protocol
|
|
||||||
|
|
||||||
PPP: Point-to-Point Protocol
|
|
||||||
|
|
||||||
PPTP: Point-to-Point Tunneling Protocol
|
|
||||||
|
|
||||||
SEP: Scalable Encryption Processor
|
|
||||||
|
|
||||||
SNMP: Simple Network Management Protocol
|
|
||||||
|
|
||||||
SSH: Secure Shell Protocol
|
|
||||||
|
|
||||||
SSL: Secure Sockets Layer
|
|
||||||
|
|
||||||
UDP: User Datagram Protocol
|
|
||||||
|
|
||||||
VPN: Virtual Private Network
|
|
||||||
|
|
||||||
NAC: Network Admission Control
|
|
||||||
|
|
||||||
"
|
|
||||||
REVISION "200501050000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added the new MIB Modules(65 to 67)"
|
|
||||||
|
|
||||||
REVISION "200310200000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added the new MIB Modules(58 to 64)"
|
|
||||||
|
|
||||||
REVISION "200304250000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added the new MIB Modules(54 to 57)"
|
|
||||||
|
|
||||||
REVISION "200207100000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Updated with new header"
|
|
||||||
|
|
||||||
::= { alGlobalRegModule 1 }
|
|
||||||
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
-- MIB Objects
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
|
|
||||||
-- Altiga's root
|
|
||||||
altigaRoot OBJECT IDENTIFIER ::= { enterprises 3076 }
|
|
||||||
--cisco OBJECT IDENTIFIER ::= { enterprises 9 }
|
|
||||||
--ciscoMgmt OBJECT IDENTIFIER ::= { cisco 9 }
|
|
||||||
--ciscoExperiment OBJECT IDENTIFIER ::= { cisco 10 }
|
|
||||||
|
|
||||||
-- Altiga's registrations and modules
|
|
||||||
altigaReg OBJECT IDENTIFIER ::= { altigaRoot 1 }
|
|
||||||
altigaModules OBJECT IDENTIFIER ::= { altigaReg 1 }
|
|
||||||
|
|
||||||
alGlobalRegModule OBJECT IDENTIFIER ::= { altigaModules 1 }
|
|
||||||
alCapModule OBJECT IDENTIFIER ::= { altigaModules 2 }
|
|
||||||
alMibModule OBJECT IDENTIFIER ::= { altigaModules 3 }
|
|
||||||
alComplModule OBJECT IDENTIFIER ::= { altigaModules 4 }
|
|
||||||
alVersionMibModule OBJECT IDENTIFIER ::= { altigaModules 6 }
|
|
||||||
alAccessMibModule OBJECT IDENTIFIER ::= { altigaModules 7 }
|
|
||||||
alEventMibModule OBJECT IDENTIFIER ::= { altigaModules 8 }
|
|
||||||
alAuthMibModule OBJECT IDENTIFIER ::= { altigaModules 9 }
|
|
||||||
alPptpMibModule OBJECT IDENTIFIER ::= { altigaModules 10 }
|
|
||||||
alPppMibModule OBJECT IDENTIFIER ::= { altigaModules 11 }
|
|
||||||
alHttpMibModule OBJECT IDENTIFIER ::= { altigaModules 12 }
|
|
||||||
alIpMibModule OBJECT IDENTIFIER ::= { altigaModules 13 }
|
|
||||||
alFilterMibModule OBJECT IDENTIFIER ::= { altigaModules 14 }
|
|
||||||
alUserMibModule OBJECT IDENTIFIER ::= { altigaModules 15 }
|
|
||||||
alTelnetMibModule OBJECT IDENTIFIER ::= { altigaModules 16 }
|
|
||||||
alFtpMibModule OBJECT IDENTIFIER ::= { altigaModules 17 }
|
|
||||||
alTftpMibModule OBJECT IDENTIFIER ::= { altigaModules 18 }
|
|
||||||
alSnmpMibModule OBJECT IDENTIFIER ::= { altigaModules 19 }
|
|
||||||
alIpSecMibModule OBJECT IDENTIFIER ::= { altigaModules 20 }
|
|
||||||
alL2tpMibModule OBJECT IDENTIFIER ::= { altigaModules 21 }
|
|
||||||
alSessionMibModule OBJECT IDENTIFIER ::= { altigaModules 22 }
|
|
||||||
alDnsMibModule OBJECT IDENTIFIER ::= { altigaModules 23 }
|
|
||||||
alAddressMibModule OBJECT IDENTIFIER ::= { altigaModules 24 }
|
|
||||||
alDhcpMibModule OBJECT IDENTIFIER ::= { altigaModules 25 }
|
|
||||||
alWatchdogMibModule OBJECT IDENTIFIER ::= { altigaModules 26 }
|
|
||||||
alHardwareMibModule OBJECT IDENTIFIER ::= { altigaModules 27 }
|
|
||||||
alNatMibModule OBJECT IDENTIFIER ::= { altigaModules 28 }
|
|
||||||
alLan2LanMibModule OBJECT IDENTIFIER ::= { altigaModules 29 }
|
|
||||||
alGeneralMibModule OBJECT IDENTIFIER ::= { altigaModules 30 }
|
|
||||||
alSslMibModule OBJECT IDENTIFIER ::= { altigaModules 31 }
|
|
||||||
alCertMibModule OBJECT IDENTIFIER ::= { altigaModules 32 }
|
|
||||||
alNtpMibModule OBJECT IDENTIFIER ::= { altigaModules 33 }
|
|
||||||
alNetworkListMibModule OBJECT IDENTIFIER ::= { altigaModules 34 }
|
|
||||||
alSepMibModule OBJECT IDENTIFIER ::= { altigaModules 35 }
|
|
||||||
alIkeMibModule OBJECT IDENTIFIER ::= { altigaModules 36 }
|
|
||||||
alSyncMibModule OBJECT IDENTIFIER ::= { altigaModules 37 }
|
|
||||||
alT1E1MibModule OBJECT IDENTIFIER ::= { altigaModules 38 }
|
|
||||||
alMultiLinkMibModule OBJECT IDENTIFIER ::= { altigaModules 39 }
|
|
||||||
alSshMibModule OBJECT IDENTIFIER ::= { altigaModules 40 }
|
|
||||||
alLBSSFMibModule OBJECT IDENTIFIER ::= { altigaModules 41 }
|
|
||||||
alDhcpServerMibModule OBJECT IDENTIFIER ::= { altigaModules 42 }
|
|
||||||
alAutoUpdateMibModule OBJECT IDENTIFIER ::= { altigaModules 43 }
|
|
||||||
alAdminAuthMibModule OBJECT IDENTIFIER ::= { altigaModules 44 }
|
|
||||||
alPPPoEMibModule OBJECT IDENTIFIER ::= { altigaModules 45 }
|
|
||||||
alXmlMibModule OBJECT IDENTIFIER ::= { altigaModules 46 }
|
|
||||||
alCtcpMibModule OBJECT IDENTIFIER ::= { altigaModules 47 }
|
|
||||||
alFwMibModule OBJECT IDENTIFIER ::= { altigaModules 48 }
|
|
||||||
alGroupMatchMibModule OBJECT IDENTIFIER ::= { altigaModules 49 }
|
|
||||||
alACEServerMibModule OBJECT IDENTIFIER ::= { altigaModules 50 }
|
|
||||||
alNatTMibModule OBJECT IDENTIFIER ::= { altigaModules 51 }
|
|
||||||
alBwMgmtMibModule OBJECT IDENTIFIER ::= { altigaModules 52 }
|
|
||||||
alIpSecPreFragMibModule OBJECT IDENTIFIER ::= { altigaModules 53 }
|
|
||||||
alFipsMibModule OBJECT IDENTIFIER ::= { altigaModules 54 }
|
|
||||||
alBackupL2LMibModule OBJECT IDENTIFIER ::= { altigaModules 55 }
|
|
||||||
alNotifyMibModule OBJECT IDENTIFIER ::= { altigaModules 56 }
|
|
||||||
alRebootStatusMibModule OBJECT IDENTIFIER ::= { altigaModules 57 }
|
|
||||||
alAuthorizationModule OBJECT IDENTIFIER ::= { altigaModules 58 }
|
|
||||||
alWebPortalMibModule OBJECT IDENTIFIER ::= { altigaModules 59 }
|
|
||||||
alWebEmailMibModule OBJECT IDENTIFIER ::= { altigaModules 60 }
|
|
||||||
alPortForwardMibModule OBJECT IDENTIFIER ::= { altigaModules 61 }
|
|
||||||
alRemoteServerMibModule OBJECT IDENTIFIER ::= { altigaModules 62 }
|
|
||||||
alWebvpnAclMibModule OBJECT IDENTIFIER ::= { altigaModules 63 }
|
|
||||||
alNbnsMibModule OBJECT IDENTIFIER ::= { altigaModules 64 }
|
|
||||||
alSecureDesktopMibModule OBJECT IDENTIFIER ::= { altigaModules 65 }
|
|
||||||
alSslTunnelClientMibModule OBJECT IDENTIFIER ::= { altigaModules 66 }
|
|
||||||
alNacMibModule OBJECT IDENTIFIER ::= { altigaModules 67 }
|
|
||||||
|
|
||||||
|
|
||||||
-- Altiga's company-wide objects and events
|
|
||||||
altigaGeneric OBJECT IDENTIFIER ::= { altigaRoot 2 }
|
|
||||||
-- See altiga.mi2
|
|
||||||
|
|
||||||
-- Altiga's product-specific objects and events
|
|
||||||
altigaProducts OBJECT IDENTIFIER ::= { altigaRoot 3 }
|
|
||||||
|
|
||||||
-- Altiga's Agent profiles
|
|
||||||
altigaCaps OBJECT IDENTIFIER ::= { altigaRoot 4 }
|
|
||||||
-- See altiga-cap.mi2
|
|
||||||
|
|
||||||
-- Altiga Requirement specifications
|
|
||||||
altigaReqs OBJECT IDENTIFIER ::= { altigaRoot 5 }
|
|
||||||
-- We will likely have nothing here
|
|
||||||
|
|
||||||
-- Altiga Experiments
|
|
||||||
altigaExpr OBJECT IDENTIFIER ::= { altigaRoot 6 }
|
|
||||||
-- We will likely have nothing here
|
|
||||||
|
|
||||||
-- Altiga Product Families
|
|
||||||
altigaHw OBJECT IDENTIFIER ::= { altigaReg 2 }
|
|
||||||
|
|
||||||
-- VPN Concentrator Product
|
|
||||||
altigaVpnHw OBJECT IDENTIFIER ::= { altigaHw 1 }
|
|
||||||
|
|
||||||
-- VPN Concentrator Components
|
|
||||||
altigaVpnChassis OBJECT IDENTIFIER ::= { altigaVpnHw 1 }
|
|
||||||
altigaVpnIntf OBJECT IDENTIFIER ::= { altigaVpnHw 2 }
|
|
||||||
altigaVpnEncrypt OBJECT IDENTIFIER ::= { altigaVpnHw 3 }
|
|
||||||
|
|
||||||
-- VPN Concentrator Chassis
|
|
||||||
-- Cxx (C10/15/20/30/50/60/80) 30xx
|
|
||||||
vpnConcentrator OBJECT IDENTIFIER ::= { altigaVpnChassis 1 }
|
|
||||||
-- C5/3005
|
|
||||||
vpnRemote OBJECT IDENTIFIER ::= { altigaVpnChassis 2 }
|
|
||||||
-- 3002
|
|
||||||
vpnClient OBJECT IDENTIFIER ::= { altigaVpnChassis 3 }
|
|
||||||
|
|
||||||
|
|
||||||
-- VPN Concentrator Chassis Revisions
|
|
||||||
--Concentrators (C10/15/20/30/50/60/80) 30xx
|
|
||||||
vpnConcentratorRev1 OBJECT-IDENTITY
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The first revision of Altiga's VPN Concentrator hardware.
|
|
||||||
603e PPC processor. C10/15/20/30/50/60."
|
|
||||||
::= { vpnConcentrator 1 }
|
|
||||||
|
|
||||||
vpnConcentratorRev2 OBJECT-IDENTITY
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The second revision of Altiga's VPN Concentrator hardware.
|
|
||||||
740 PPC processor. C10/15/20/30/50/60."
|
|
||||||
::= { vpnConcentrator 2 }
|
|
||||||
|
|
||||||
--Remotes (a.k.a. Concentrators) 3005
|
|
||||||
vpnRemoteRev1 OBJECT-IDENTITY
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The first revision of Altiga's VPN Concentrator (Remote) hardware.
|
|
||||||
8240 PPC processor."
|
|
||||||
::= { vpnRemote 1 }
|
|
||||||
|
|
||||||
|
|
||||||
--Clients (a.k.a. Hardware Client) 3002
|
|
||||||
vpnClientRev1 OBJECT-IDENTITY
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The first revision of Altiga's VPN Hardware Client hardware.
|
|
||||||
8260 PPC processor."
|
|
||||||
::= { vpnClient 1 }
|
|
||||||
|
|
||||||
|
|
||||||
-- VPN Concentrator Interface Cards (VOX also)
|
|
||||||
-- none
|
|
||||||
|
|
||||||
-- VPN Concentrator Encryption Cards
|
|
||||||
-- none
|
|
||||||
|
|
||||||
|
|
||||||
END
|
|
@ -1,748 +0,0 @@
|
|||||||
-- *------------------------------------------------------------------
|
|
||||||
-- * ALTIGA-HARDWARE-STATS-MIB.my: Altiga Hardware Statistics MIB.
|
|
||||||
-- *
|
|
||||||
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
|
|
||||||
-- *
|
|
||||||
-- * Copyright (c) 2002, 2003 by Cisco Systems, Inc.
|
|
||||||
-- * All rights reserved.
|
|
||||||
-- *
|
|
||||||
-- *------------------------------------------------------------------
|
|
||||||
|
|
||||||
ALTIGA-HARDWARE-STATS-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY, OBJECT-TYPE, Integer32, Gauge32, Counter32,
|
|
||||||
TimeTicks, Unsigned32
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
DisplayString, TruthValue, TEXTUAL-CONVENTION
|
|
||||||
FROM SNMPv2-TC
|
|
||||||
OBJECT-GROUP, MODULE-COMPLIANCE
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
alStatsHardware, alHardwareGroup
|
|
||||||
FROM ALTIGA-MIB
|
|
||||||
alHardwareMibModule
|
|
||||||
FROM ALTIGA-GLOBAL-REG;
|
|
||||||
|
|
||||||
altigaHardwareStatsMibModule MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200303271300Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
E-mail: cs-cvpn3000@cisco.com"
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
"The Altiga Hardware Statistics MIB models counters and objects that
|
|
||||||
are of management interest for the hardware.
|
|
||||||
|
|
||||||
Acronyms
|
|
||||||
The following acronyms are used in this document:
|
|
||||||
|
|
||||||
CPU: Central Processing Unit
|
|
||||||
|
|
||||||
MB: Megabyte
|
|
||||||
|
|
||||||
MIB: Management Information Base
|
|
||||||
|
|
||||||
PS: Power Supply
|
|
||||||
|
|
||||||
RPM: Revolutions Per Minute
|
|
||||||
|
|
||||||
SEP: Scalable Encryption Processor
|
|
||||||
|
|
||||||
WAN: Wide Area Network
|
|
||||||
|
|
||||||
"
|
|
||||||
|
|
||||||
REVISION "200303271300Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added new emun to ConcentratorCard."
|
|
||||||
|
|
||||||
REVISION "200209051300Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added module compliance."
|
|
||||||
|
|
||||||
REVISION "200207100000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Updated with new header"
|
|
||||||
|
|
||||||
::= { alHardwareMibModule 2 }
|
|
||||||
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
-- MIB Objects
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
|
|
||||||
ConcentratorCard ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Concentrator Card Type."
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
none(1),
|
|
||||||
sep(2),
|
|
||||||
dualT1Wan(3),
|
|
||||||
sepE(4)
|
|
||||||
}
|
|
||||||
|
|
||||||
ConcentratorType ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Concentrator Type indicates the chassis type."
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
cxx(1), -- VPN3015 through VPN3080
|
|
||||||
c5(2), -- VPN3005
|
|
||||||
c1(3) -- VPN3002
|
|
||||||
}
|
|
||||||
|
|
||||||
alStatsHardwareGlobal OBJECT IDENTIFIER ::= { alStatsHardware 1 }
|
|
||||||
|
|
||||||
-- Current Settings and Alarms
|
|
||||||
|
|
||||||
alHardwareCpuVoltage OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
UNITS "centivolts"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The current CPU voltage in centivolts."
|
|
||||||
::= { alStatsHardwareGlobal 1 }
|
|
||||||
|
|
||||||
alHardwareCpuVoltageAlarm OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The alarm status for CPU voltage. This alarm will fired when the CPU
|
|
||||||
voltage is detected out of configured range."
|
|
||||||
::= { alStatsHardwareGlobal 2 }
|
|
||||||
|
|
||||||
alHardwareCpuVoltageCount OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of alarm events for CPU voltage."
|
|
||||||
::= { alStatsHardwareGlobal 3 }
|
|
||||||
|
|
||||||
alHardwareCpuVoltageTime OBJECT-TYPE
|
|
||||||
SYNTAX TimeTicks
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The sysUptime at the time of the last change of alarm status for CPU
|
|
||||||
voltage."
|
|
||||||
::= { alStatsHardwareGlobal 4 }
|
|
||||||
|
|
||||||
alHardwarePs1Voltage3v OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
UNITS "centivolts"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The current 3V voltage of Power Supply 1 in centivolts."
|
|
||||||
::= { alStatsHardwareGlobal 5 }
|
|
||||||
|
|
||||||
alHardwarePs1Voltage3vAlarm OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The alarm status for PS1 3v voltage. This alarm will fired when the
|
|
||||||
3v power supply 1 voltage is detected out of configured range."
|
|
||||||
::= { alStatsHardwareGlobal 6 }
|
|
||||||
|
|
||||||
alHardwarePs1Voltage3vCount OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of alarm events for PS1 3v voltage."
|
|
||||||
::= { alStatsHardwareGlobal 7 }
|
|
||||||
|
|
||||||
alHardwarePs1Voltage3vTime OBJECT-TYPE
|
|
||||||
SYNTAX TimeTicks
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The sysUptime at the time of the last change of alarm status for PS1
|
|
||||||
3v voltage."
|
|
||||||
::= { alStatsHardwareGlobal 8 }
|
|
||||||
|
|
||||||
alHardwarePs1Voltage5v OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
UNITS "centivolts"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The current 5V voltage of Power Supply 1 in centivolts."
|
|
||||||
::= { alStatsHardwareGlobal 9 }
|
|
||||||
|
|
||||||
alHardwarePs1Voltage5vAlarm OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The alarm status for PS1 5v voltage. This alarm will fired when the
|
|
||||||
5v power supply 1 voltage is detected out of configured range."
|
|
||||||
::= { alStatsHardwareGlobal 10 }
|
|
||||||
|
|
||||||
alHardwarePs1Voltage5vCount OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of alarm events for PS1 5v voltage."
|
|
||||||
::= { alStatsHardwareGlobal 11 }
|
|
||||||
|
|
||||||
alHardwarePs1Voltage5vTime OBJECT-TYPE
|
|
||||||
SYNTAX TimeTicks
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The sysUptime at the time of the last change of alarm status for PS1
|
|
||||||
5v voltage."
|
|
||||||
::= { alStatsHardwareGlobal 12 }
|
|
||||||
|
|
||||||
alHardwarePs2Voltage3v OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
UNITS "centivolts"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The current 3V voltage of Power Supply 2 in centivolts."
|
|
||||||
::= { alStatsHardwareGlobal 13 }
|
|
||||||
|
|
||||||
alHardwarePs2Voltage3vAlarm OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The alarm status for PS2 3v voltage. This alarm will fired when the
|
|
||||||
3v power supply 2 voltage is detected out of configured range."
|
|
||||||
::= { alStatsHardwareGlobal 14 }
|
|
||||||
|
|
||||||
alHardwarePs2Voltage3vCount OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of alarm events for PS2 3v voltage."
|
|
||||||
::= { alStatsHardwareGlobal 15 }
|
|
||||||
|
|
||||||
alHardwarePs2Voltage3vTime OBJECT-TYPE
|
|
||||||
SYNTAX TimeTicks
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The sysUptime at the time of the last change of alarm status for PS2
|
|
||||||
3v voltage."
|
|
||||||
::= { alStatsHardwareGlobal 16 }
|
|
||||||
|
|
||||||
alHardwarePs2Voltage5v OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
UNITS "centivolts"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The current 5V voltage of Power Supply 2 in centivolts."
|
|
||||||
::= { alStatsHardwareGlobal 17 }
|
|
||||||
|
|
||||||
alHardwarePs2Voltage5vAlarm OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The alarm status for PS2 5v voltage. This alarm will fired when the
|
|
||||||
5v power supply 2 voltage is detected out of configured range."
|
|
||||||
::= { alStatsHardwareGlobal 18 }
|
|
||||||
|
|
||||||
alHardwarePs2Voltage5vCount OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of alarm events for PS2 5v voltage."
|
|
||||||
::= { alStatsHardwareGlobal 19 }
|
|
||||||
|
|
||||||
alHardwarePs2Voltage5vTime OBJECT-TYPE
|
|
||||||
SYNTAX TimeTicks
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The sysUptime at the time of the last change of alarm status for PS2
|
|
||||||
5v voltage."
|
|
||||||
::= { alStatsHardwareGlobal 20 }
|
|
||||||
|
|
||||||
alHardwareBoardVoltage3v OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
UNITS "centivolts"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The current 3V voltage of the mainboard in centivolts."
|
|
||||||
::= { alStatsHardwareGlobal 21 }
|
|
||||||
|
|
||||||
alHardwareBoardVoltage3vAlarm OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The alarm status for the mainboard 3v voltage. This alarm will fired
|
|
||||||
when the 3v mainboard voltage is detected out of configured range."
|
|
||||||
::= { alStatsHardwareGlobal 22 }
|
|
||||||
|
|
||||||
alHardwareBoardVoltage3vCount OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of alarm events for the mainboard 3v voltage."
|
|
||||||
::= { alStatsHardwareGlobal 23 }
|
|
||||||
|
|
||||||
alHardwareBoardVoltage3vTime OBJECT-TYPE
|
|
||||||
SYNTAX TimeTicks
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The sysUptime at the time of the last change of alarm status for the
|
|
||||||
mainboard 3v voltage."
|
|
||||||
::= { alStatsHardwareGlobal 24 }
|
|
||||||
|
|
||||||
alHardwareBoardVoltage5v OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
UNITS "centivolts"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The current 5V voltage of the mainboard in centivolts."
|
|
||||||
::= { alStatsHardwareGlobal 25 }
|
|
||||||
|
|
||||||
alHardwareBoardVoltage5vAlarm OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The alarm status for the mainboard 5v voltage. This alarm will fired
|
|
||||||
when the 5v mainboard voltage is detected out of configured range."
|
|
||||||
::= { alStatsHardwareGlobal 26 }
|
|
||||||
|
|
||||||
alHardwareBoardVoltage5vCount OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of alarm events for the mainboard 5v voltage."
|
|
||||||
::= { alStatsHardwareGlobal 27 }
|
|
||||||
|
|
||||||
alHardwareBoardVoltage5vTime OBJECT-TYPE
|
|
||||||
SYNTAX TimeTicks
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The sysUptime at the time of the last change of alarm status for the
|
|
||||||
mainboard 5v voltage."
|
|
||||||
::= { alStatsHardwareGlobal 28 }
|
|
||||||
|
|
||||||
alHardwareCpuTemp OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (-40..120)
|
|
||||||
UNITS "degrees Celsius"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The current CPU temperature in degrees C."
|
|
||||||
::= { alStatsHardwareGlobal 29 }
|
|
||||||
|
|
||||||
alHardwareCpuTempAlarm OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The alarm status for the CPU temperature. This alarm will fired
|
|
||||||
when the CPU temperature is detected out of configured range."
|
|
||||||
::= { alStatsHardwareGlobal 30 }
|
|
||||||
|
|
||||||
alHardwareCpuTempCount OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of alarm events for the CPU temperature."
|
|
||||||
::= { alStatsHardwareGlobal 31 }
|
|
||||||
|
|
||||||
alHardwareCpuTempTime OBJECT-TYPE
|
|
||||||
SYNTAX TimeTicks
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The sysUptime at the time of the last change of alarm status for the
|
|
||||||
CPU temperature."
|
|
||||||
::= { alStatsHardwareGlobal 32 }
|
|
||||||
|
|
||||||
alHardwareCageTemp OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (-40..120)
|
|
||||||
UNITS "degrees Celsius"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The current cage temperature in degrees C."
|
|
||||||
::= { alStatsHardwareGlobal 33 }
|
|
||||||
|
|
||||||
alHardwareCageTempAlarm OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The alarm status for the cage temperature. This alarm will fired
|
|
||||||
when the cage temperature is detected out of configured range."
|
|
||||||
::= { alStatsHardwareGlobal 34 }
|
|
||||||
|
|
||||||
alHardwareCageTempCount OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of alarm events for the cage temperature."
|
|
||||||
::= { alStatsHardwareGlobal 35 }
|
|
||||||
|
|
||||||
alHardwareCageTempTime OBJECT-TYPE
|
|
||||||
SYNTAX TimeTicks
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The sysUptime at the time of the last change of alarm status for the
|
|
||||||
cage temperature."
|
|
||||||
::= { alStatsHardwareGlobal 36 }
|
|
||||||
|
|
||||||
alHardwareFan1Rpm OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
UNITS "RPM"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The current speed of fan 1 in RPM."
|
|
||||||
::= { alStatsHardwareGlobal 37 }
|
|
||||||
|
|
||||||
alHardwareFan1RpmAlarm OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The alarm status for fan 1 RPM. This alarm will fired when fan 1 RPM
|
|
||||||
is detected out of configured range."
|
|
||||||
::= { alStatsHardwareGlobal 38 }
|
|
||||||
|
|
||||||
alHardwareFan1RpmCount OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of alarm events for fan 1 RPM."
|
|
||||||
::= { alStatsHardwareGlobal 39 }
|
|
||||||
|
|
||||||
alHardwareFan1RpmTime OBJECT-TYPE
|
|
||||||
SYNTAX TimeTicks
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The sysUptime at the time of the last change of alarm status for
|
|
||||||
fan 1 RPM."
|
|
||||||
::= { alStatsHardwareGlobal 40 }
|
|
||||||
|
|
||||||
alHardwareFan2Rpm OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
UNITS "RPM"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The current speed of fan 2 in RPM."
|
|
||||||
::= { alStatsHardwareGlobal 41 }
|
|
||||||
|
|
||||||
alHardwareFan2RpmAlarm OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The alarm status for fan 2 RPM. This alarm will fired when fan 2 RPM
|
|
||||||
is detected out of configured range."
|
|
||||||
::= { alStatsHardwareGlobal 42 }
|
|
||||||
|
|
||||||
alHardwareFan2RpmCount OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of alarm events for fan 2 RPM."
|
|
||||||
::= { alStatsHardwareGlobal 43 }
|
|
||||||
|
|
||||||
alHardwareFan2RpmTime OBJECT-TYPE
|
|
||||||
SYNTAX TimeTicks
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The sysUptime at the time of the last change of alarm status for
|
|
||||||
fan 2 RPM."
|
|
||||||
::= { alStatsHardwareGlobal 44 }
|
|
||||||
|
|
||||||
alHardwareFan3Rpm OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
UNITS "RPM"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The current speed of fan 3 in RPM."
|
|
||||||
::= { alStatsHardwareGlobal 45 }
|
|
||||||
|
|
||||||
alHardwareFan3RpmAlarm OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The alarm status for fan 3 RPM. This alarm will fired when fan 3 RPM
|
|
||||||
is detected out of configured range."
|
|
||||||
::= { alStatsHardwareGlobal 46 }
|
|
||||||
|
|
||||||
alHardwareFan3RpmCount OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of alarm events for fan 3 RPM."
|
|
||||||
::= { alStatsHardwareGlobal 47 }
|
|
||||||
|
|
||||||
alHardwareFan3RpmTime OBJECT-TYPE
|
|
||||||
SYNTAX TimeTicks
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The sysUptime at the time of the last change of alarm status for
|
|
||||||
fan 3 RPM."
|
|
||||||
::= { alStatsHardwareGlobal 48 }
|
|
||||||
|
|
||||||
-- List of Current Hardware
|
|
||||||
|
|
||||||
alHardwarePs1Type OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
none(1), -- no power supply detected in slot
|
|
||||||
ac(2) -- AC power supply detected in slot
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The type of power supply for Power Supply slot 1."
|
|
||||||
::= { alStatsHardwareGlobal 49 }
|
|
||||||
|
|
||||||
alHardwarePs2Type OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
none(1), -- no power supply detected in slot
|
|
||||||
ac(2) -- AC power supply detected in slot
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The type of power supply for Power Supply slot 2."
|
|
||||||
::= { alStatsHardwareGlobal 50 }
|
|
||||||
|
|
||||||
alHardwareSlot1Card OBJECT-TYPE
|
|
||||||
SYNTAX ConcentratorCard
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The type of card in slot 1."
|
|
||||||
::= { alStatsHardwareGlobal 51 }
|
|
||||||
|
|
||||||
alHardwareSlot2Card OBJECT-TYPE
|
|
||||||
SYNTAX ConcentratorCard
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The type of card in slot 2."
|
|
||||||
::= { alStatsHardwareGlobal 52 }
|
|
||||||
|
|
||||||
alHardwareSlot3Card OBJECT-TYPE
|
|
||||||
SYNTAX ConcentratorCard
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The type of card in slot 3."
|
|
||||||
::= { alStatsHardwareGlobal 53 }
|
|
||||||
|
|
||||||
alHardwareSlot4Card OBJECT-TYPE
|
|
||||||
SYNTAX ConcentratorCard
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The type of card in slot 4."
|
|
||||||
::= { alStatsHardwareGlobal 54 }
|
|
||||||
|
|
||||||
alHardwareSlot1Operational OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The operational status of card in slot 1."
|
|
||||||
::= { alStatsHardwareGlobal 55 }
|
|
||||||
|
|
||||||
alHardwareSlot2Operational OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The operational status of card in slot 2."
|
|
||||||
::= { alStatsHardwareGlobal 56 }
|
|
||||||
|
|
||||||
alHardwareSlot3Operational OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The operational status of card in slot 3."
|
|
||||||
::= { alStatsHardwareGlobal 57 }
|
|
||||||
|
|
||||||
alHardwareSlot4Operational OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The operational status of card in slot 4."
|
|
||||||
::= { alStatsHardwareGlobal 58 }
|
|
||||||
|
|
||||||
alHardwareRamSize OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
UNITS "MB"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The amount of memory, in MB on the concentrator."
|
|
||||||
::= { alStatsHardwareGlobal 59 }
|
|
||||||
|
|
||||||
alHardwareChassis OBJECT-TYPE
|
|
||||||
SYNTAX ConcentratorType
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The type of VPN Concentrator this is."
|
|
||||||
::= { alStatsHardwareGlobal 60 }
|
|
||||||
|
|
||||||
alHardwareCpuVoltageNominal OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
UNITS "centivolts"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The nominal CPU voltage in centivolts for the concentrator."
|
|
||||||
::= { alStatsHardwareGlobal 61 }
|
|
||||||
|
|
||||||
alHardwareClientEthPrivSwitch OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Whether or not the 3002 Hardware Client has an Ethernet Switch for
|
|
||||||
the private interface."
|
|
||||||
::= { alStatsHardwareGlobal 62 }
|
|
||||||
|
|
||||||
alHardwareSerialNumber OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Unit serial number."
|
|
||||||
::= { alStatsHardwareGlobal 63 }
|
|
||||||
|
|
||||||
altigaHardwareStatsMibConformance OBJECT IDENTIFIER
|
|
||||||
::= { altigaHardwareStatsMibModule 1 }
|
|
||||||
|
|
||||||
altigaHardwareStatsMibCompliances OBJECT IDENTIFIER
|
|
||||||
::= { altigaHardwareStatsMibConformance 1 }
|
|
||||||
|
|
||||||
altigaHardwareStatsMibCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for agents which
|
|
||||||
implement the Altiga Hardware Statistics MIB."
|
|
||||||
MODULE
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
altigaHardwareStatsGroup
|
|
||||||
}
|
|
||||||
::= { altigaHardwareStatsMibCompliances 1 }
|
|
||||||
|
|
||||||
altigaHardwareStatsGroup OBJECT-GROUP
|
|
||||||
OBJECTS
|
|
||||||
{
|
|
||||||
alHardwareCpuVoltage,
|
|
||||||
alHardwareCpuVoltageAlarm,
|
|
||||||
alHardwareCpuVoltageCount,
|
|
||||||
alHardwareCpuVoltageTime,
|
|
||||||
alHardwarePs1Voltage3v,
|
|
||||||
alHardwarePs1Voltage3vAlarm,
|
|
||||||
alHardwarePs1Voltage3vCount,
|
|
||||||
alHardwarePs1Voltage3vTime,
|
|
||||||
alHardwarePs1Voltage5v,
|
|
||||||
alHardwarePs1Voltage5vAlarm,
|
|
||||||
alHardwarePs1Voltage5vCount,
|
|
||||||
alHardwarePs1Voltage5vTime,
|
|
||||||
alHardwarePs2Voltage3v,
|
|
||||||
alHardwarePs2Voltage3vAlarm,
|
|
||||||
alHardwarePs2Voltage3vCount,
|
|
||||||
alHardwarePs2Voltage3vTime,
|
|
||||||
alHardwarePs2Voltage5v,
|
|
||||||
alHardwarePs2Voltage5vAlarm,
|
|
||||||
alHardwarePs2Voltage5vCount,
|
|
||||||
alHardwarePs2Voltage5vTime,
|
|
||||||
alHardwareBoardVoltage3v,
|
|
||||||
alHardwareBoardVoltage3vAlarm,
|
|
||||||
alHardwareBoardVoltage3vCount,
|
|
||||||
alHardwareBoardVoltage3vTime,
|
|
||||||
alHardwareBoardVoltage5v,
|
|
||||||
alHardwareBoardVoltage5vAlarm,
|
|
||||||
alHardwareBoardVoltage5vCount,
|
|
||||||
alHardwareBoardVoltage5vTime,
|
|
||||||
alHardwareCpuTemp,
|
|
||||||
alHardwareCpuTempAlarm,
|
|
||||||
alHardwareCpuTempCount,
|
|
||||||
alHardwareCpuTempTime,
|
|
||||||
alHardwareCageTemp,
|
|
||||||
alHardwareCageTempAlarm,
|
|
||||||
alHardwareCageTempCount,
|
|
||||||
alHardwareCageTempTime,
|
|
||||||
alHardwareFan1Rpm,
|
|
||||||
alHardwareFan1RpmAlarm,
|
|
||||||
alHardwareFan1RpmCount,
|
|
||||||
alHardwareFan1RpmTime,
|
|
||||||
alHardwareFan2Rpm,
|
|
||||||
alHardwareFan2RpmAlarm,
|
|
||||||
alHardwareFan2RpmCount,
|
|
||||||
alHardwareFan2RpmTime,
|
|
||||||
alHardwareFan3Rpm,
|
|
||||||
alHardwareFan3RpmAlarm,
|
|
||||||
alHardwareFan3RpmCount,
|
|
||||||
alHardwareFan3RpmTime,
|
|
||||||
alHardwarePs1Type,
|
|
||||||
alHardwarePs2Type,
|
|
||||||
alHardwareSlot1Card,
|
|
||||||
alHardwareSlot2Card,
|
|
||||||
alHardwareSlot3Card,
|
|
||||||
alHardwareSlot4Card,
|
|
||||||
alHardwareSlot1Operational,
|
|
||||||
alHardwareSlot2Operational,
|
|
||||||
alHardwareSlot3Operational,
|
|
||||||
alHardwareSlot4Operational,
|
|
||||||
alHardwareRamSize,
|
|
||||||
alHardwareChassis,
|
|
||||||
alHardwareCpuVoltageNominal,
|
|
||||||
alHardwareClientEthPrivSwitch,
|
|
||||||
alHardwareSerialNumber
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The objects for Hardware statistics."
|
|
||||||
::= { alHardwareGroup 2 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,336 +0,0 @@
|
|||||||
-- *------------------------------------------------------------------
|
|
||||||
-- * ALTIGA-HTTP-STATS-MIB.my: Altiga HTTP Statistics MIB.
|
|
||||||
-- *
|
|
||||||
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
|
|
||||||
-- *
|
|
||||||
-- * Copyright (c) 2002 by Cisco Systems, Inc.
|
|
||||||
-- * All rights reserved.
|
|
||||||
-- *
|
|
||||||
-- *------------------------------------------------------------------
|
|
||||||
|
|
||||||
ALTIGA-HTTP-STATS-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY, OBJECT-TYPE, Counter32, Gauge32, Unsigned32,
|
|
||||||
IpAddress, Integer32, TimeTicks
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
DisplayString
|
|
||||||
FROM SNMPv2-TC
|
|
||||||
EncryptionAlgorithm
|
|
||||||
FROM ALTIGA-SESSION-STATS-MIB
|
|
||||||
OBJECT-GROUP, MODULE-COMPLIANCE
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
alStatsHttp, alHttpGroup
|
|
||||||
FROM ALTIGA-MIB
|
|
||||||
alHttpMibModule
|
|
||||||
FROM ALTIGA-GLOBAL-REG;
|
|
||||||
|
|
||||||
altigaHttpStatsMibModule MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200209051300Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
E-mail: cs-cvpn3000@cisco.com"
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
"The Altiga HTTP Statistics MIB models counters and objects that are
|
|
||||||
of management interest for HTTP.
|
|
||||||
|
|
||||||
Acronyms
|
|
||||||
The following acronyms are used in this document:
|
|
||||||
|
|
||||||
HTTP: HyperText Transfer Protocol
|
|
||||||
|
|
||||||
MIB: Management Information Base
|
|
||||||
|
|
||||||
TCP: Transmission Control Protocol
|
|
||||||
|
|
||||||
"
|
|
||||||
|
|
||||||
REVISION "200209051300Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added module compliance."
|
|
||||||
|
|
||||||
REVISION "200207100000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Updated with new header"
|
|
||||||
|
|
||||||
::= { alHttpMibModule 2 }
|
|
||||||
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
-- MIB Objects
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
|
|
||||||
alStatsHttpGlobal OBJECT IDENTIFIER ::= { alStatsHttp 1 }
|
|
||||||
|
|
||||||
alHttpStatsOctetsSent OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of octets sent."
|
|
||||||
::= { alStatsHttpGlobal 1 }
|
|
||||||
|
|
||||||
alHttpStatsOctetsRcvd OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of octets received."
|
|
||||||
::= { alStatsHttpGlobal 2 }
|
|
||||||
|
|
||||||
alHttpStatsPacketsSent OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of packets."
|
|
||||||
::= { alStatsHttpGlobal 3 }
|
|
||||||
|
|
||||||
alHttpStatsPacketsRcvd OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of packets received."
|
|
||||||
::= { alStatsHttpGlobal 4 }
|
|
||||||
|
|
||||||
alHttpStatsActiveConnections OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of active TCP connections."
|
|
||||||
::= { alStatsHttpGlobal 5 }
|
|
||||||
|
|
||||||
alHttpStatsMaxConnections OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The maximum number of active TCP connections that existed at one any time."
|
|
||||||
::= { alStatsHttpGlobal 6 }
|
|
||||||
|
|
||||||
alHttpStatsActiveSessions OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of active sessions."
|
|
||||||
::= { alStatsHttpGlobal 7 }
|
|
||||||
|
|
||||||
alHttpStatsMaxSessions OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The maximum number of active sessions that existed at one any time."
|
|
||||||
::= { alStatsHttpGlobal 8 }
|
|
||||||
|
|
||||||
alHttpStatsTotalConnections OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of TCP connections established."
|
|
||||||
::= { alStatsHttpGlobal 9 }
|
|
||||||
|
|
||||||
alHttpStatsTotalSessions OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of sessions established."
|
|
||||||
::= { alStatsHttpGlobal 10 }
|
|
||||||
|
|
||||||
alHttpStatsSessionTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AlHttpStatsSessionEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"List of active HTTP sessions."
|
|
||||||
::= { alStatsHttp 2 }
|
|
||||||
|
|
||||||
alHttpStatsSessionEntry OBJECT-TYPE
|
|
||||||
SYNTAX AlHttpStatsSessionEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry in the alHttpStatsSessionTable."
|
|
||||||
INDEX { alHttpStatsSessionIndex }
|
|
||||||
::= { alHttpStatsSessionTable 1 }
|
|
||||||
|
|
||||||
AlHttpStatsSessionEntry ::= SEQUENCE {
|
|
||||||
alHttpStatsSessionIndex Integer32,
|
|
||||||
alHttpStatsSessionName DisplayString,
|
|
||||||
alHttpStatsSessionIpAddr IpAddress,
|
|
||||||
alHttpStatsSessionStartTime TimeTicks,
|
|
||||||
alHttpStatsSessionLoginTime Unsigned32,
|
|
||||||
alHttpStatsSessionEncr EncryptionAlgorithm,
|
|
||||||
alHttpStatsSessionOctetsSent Counter32,
|
|
||||||
alHttpStatsSessionOctetsRcvd Counter32,
|
|
||||||
alHttpStatsSessionPacketsSent Counter32,
|
|
||||||
alHttpStatsSessionPacketsRcvd Counter32,
|
|
||||||
alHttpStatsSessionActiveConnections Gauge32,
|
|
||||||
alHttpStatsSessionMaxConnections Counter32,
|
|
||||||
alHttpStatsSessionTotalConnections Counter32
|
|
||||||
}
|
|
||||||
|
|
||||||
alHttpStatsSessionIndex OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Index of this session."
|
|
||||||
::= { alHttpStatsSessionEntry 1 }
|
|
||||||
|
|
||||||
alHttpStatsSessionName OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Name of the administrator using this session."
|
|
||||||
::= { alHttpStatsSessionEntry 2 }
|
|
||||||
|
|
||||||
alHttpStatsSessionIpAddr OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Remote IP address of this session.."
|
|
||||||
::= { alHttpStatsSessionEntry 3 }
|
|
||||||
|
|
||||||
alHttpStatsSessionStartTime OBJECT-TYPE
|
|
||||||
SYNTAX TimeTicks
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Login time of this session."
|
|
||||||
::= { alHttpStatsSessionEntry 4 }
|
|
||||||
|
|
||||||
alHttpStatsSessionLoginTime OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"time_t value of the concentrator at the start of this session."
|
|
||||||
::= { alHttpStatsSessionEntry 5 }
|
|
||||||
|
|
||||||
alHttpStatsSessionEncr OBJECT-TYPE
|
|
||||||
SYNTAX EncryptionAlgorithm
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The type of encryption algorithm used for this session."
|
|
||||||
::= { alHttpStatsSessionEntry 6 }
|
|
||||||
|
|
||||||
alHttpStatsSessionOctetsSent OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Number of octets sent during this session."
|
|
||||||
::= { alHttpStatsSessionEntry 7 }
|
|
||||||
|
|
||||||
alHttpStatsSessionOctetsRcvd OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Number of octets received during this session."
|
|
||||||
::= { alHttpStatsSessionEntry 8 }
|
|
||||||
|
|
||||||
alHttpStatsSessionPacketsSent OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Number of packets sent during this session."
|
|
||||||
::= { alHttpStatsSessionEntry 9 }
|
|
||||||
|
|
||||||
alHttpStatsSessionPacketsRcvd OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Number of packets received during this session."
|
|
||||||
::= { alHttpStatsSessionEntry 10 }
|
|
||||||
|
|
||||||
alHttpStatsSessionActiveConnections OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Number of active TCP connections for this session."
|
|
||||||
::= { alHttpStatsSessionEntry 11 }
|
|
||||||
|
|
||||||
alHttpStatsSessionMaxConnections OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Maximum number of active TCP connections for this
|
|
||||||
session at any one time."
|
|
||||||
::= { alHttpStatsSessionEntry 12 }
|
|
||||||
|
|
||||||
alHttpStatsSessionTotalConnections OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Total number of TCP connections for this session."
|
|
||||||
::= { alHttpStatsSessionEntry 13 }
|
|
||||||
|
|
||||||
altigaHttpStatsMibConformance OBJECT IDENTIFIER ::= { altigaHttpStatsMibModule 1 }
|
|
||||||
altigaHttpStatsMibCompliances OBJECT IDENTIFIER ::= { altigaHttpStatsMibConformance 1 }
|
|
||||||
|
|
||||||
altigaHttpStatsMibCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for agents which
|
|
||||||
implement the Altiga HTTP Statistics MIB."
|
|
||||||
MODULE
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
altigaHttpStatsGroup
|
|
||||||
}
|
|
||||||
::= { altigaHttpStatsMibCompliances 1 }
|
|
||||||
|
|
||||||
altigaHttpStatsGroup OBJECT-GROUP
|
|
||||||
OBJECTS
|
|
||||||
{
|
|
||||||
alHttpStatsOctetsSent,
|
|
||||||
alHttpStatsOctetsRcvd,
|
|
||||||
alHttpStatsPacketsSent,
|
|
||||||
alHttpStatsPacketsRcvd,
|
|
||||||
alHttpStatsActiveConnections,
|
|
||||||
alHttpStatsMaxConnections,
|
|
||||||
alHttpStatsActiveSessions,
|
|
||||||
alHttpStatsMaxSessions,
|
|
||||||
alHttpStatsTotalConnections,
|
|
||||||
alHttpStatsTotalSessions,
|
|
||||||
alHttpStatsSessionIndex,
|
|
||||||
alHttpStatsSessionName,
|
|
||||||
alHttpStatsSessionIpAddr,
|
|
||||||
alHttpStatsSessionStartTime,
|
|
||||||
alHttpStatsSessionLoginTime,
|
|
||||||
alHttpStatsSessionEncr,
|
|
||||||
alHttpStatsSessionOctetsSent,
|
|
||||||
alHttpStatsSessionOctetsRcvd,
|
|
||||||
alHttpStatsSessionPacketsSent,
|
|
||||||
alHttpStatsSessionPacketsRcvd,
|
|
||||||
alHttpStatsSessionActiveConnections,
|
|
||||||
alHttpStatsSessionMaxConnections,
|
|
||||||
alHttpStatsSessionTotalConnections
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The objects for HTTP statistics."
|
|
||||||
::= { alHttpGroup 2 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
@ -1,132 +0,0 @@
|
|||||||
-- *------------------------------------------------------------------
|
|
||||||
-- * ALTIGA-IP-STATS-MIB.my: Altiga IP Statistics MIB.
|
|
||||||
-- *
|
|
||||||
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
|
|
||||||
-- *
|
|
||||||
-- * Copyright (c) 2002 by Cisco Systems, Inc.
|
|
||||||
-- * All rights reserved.
|
|
||||||
-- *
|
|
||||||
-- *------------------------------------------------------------------
|
|
||||||
|
|
||||||
ALTIGA-IP-STATS-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY, OBJECT-TYPE, Integer32
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
OBJECT-GROUP, MODULE-COMPLIANCE
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
alStatsIp, alIpGroup
|
|
||||||
FROM ALTIGA-MIB
|
|
||||||
alIpMibModule
|
|
||||||
FROM ALTIGA-GLOBAL-REG;
|
|
||||||
|
|
||||||
altigaIpStatsMibModule MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200209051300Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
E-mail: cs-cvpn3000@cisco.com"
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
"The Altiga IP Statistics MIB models counters and objects that are
|
|
||||||
of management interest for IP.
|
|
||||||
|
|
||||||
Acronyms
|
|
||||||
The following acronyms are used in this document:
|
|
||||||
|
|
||||||
IP: Internet Protocol
|
|
||||||
|
|
||||||
LAN: Local-Area Network
|
|
||||||
|
|
||||||
MIB: Management Information Base
|
|
||||||
|
|
||||||
"
|
|
||||||
|
|
||||||
REVISION "200209051300Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added module compliance."
|
|
||||||
|
|
||||||
REVISION "200207100000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Updated with new header"
|
|
||||||
|
|
||||||
::= { alIpMibModule 2 }
|
|
||||||
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
-- MIB Objects
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
|
|
||||||
alStatsIpGlobal OBJECT IDENTIFIER ::= { alStatsIp 1 }
|
|
||||||
|
|
||||||
alIpInterfaceStatsTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AlIpInterfaceStatsEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"IP Interface Statistics table."
|
|
||||||
::= { alStatsIpGlobal 1 }
|
|
||||||
|
|
||||||
alIpInterfaceStatsEntry OBJECT-TYPE
|
|
||||||
SYNTAX AlIpInterfaceStatsEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry in the alIpInterfaceStatsTable."
|
|
||||||
INDEX { alIpInterfaceStatsIndex }
|
|
||||||
::= { alIpInterfaceStatsTable 1 }
|
|
||||||
|
|
||||||
AlIpInterfaceStatsEntry ::= SEQUENCE {
|
|
||||||
alIpInterfaceStatsIndex Integer32,
|
|
||||||
alIpInterfaceStatsCurrentDuplex INTEGER
|
|
||||||
}
|
|
||||||
|
|
||||||
alIpInterfaceStatsIndex OBJECT-TYPE
|
|
||||||
SYNTAX Integer32(0..2147483647)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The ifIndex of this row."
|
|
||||||
::= { alIpInterfaceStatsEntry 1 }
|
|
||||||
|
|
||||||
alIpInterfaceStatsCurrentDuplex OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
full(2),
|
|
||||||
half(3)
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The current LAN duplex mode for this interface."
|
|
||||||
::= { alIpInterfaceStatsEntry 2 }
|
|
||||||
|
|
||||||
altigaIpStatsMibConformance OBJECT IDENTIFIER ::= { altigaIpStatsMibModule 1 }
|
|
||||||
altigaIpStatsMibCompliances OBJECT IDENTIFIER ::= { altigaIpStatsMibConformance 1 }
|
|
||||||
|
|
||||||
altigaIpStatsMibCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for agents which
|
|
||||||
implement the Altiga IP Statistics MIB."
|
|
||||||
MODULE
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
altigaIpStatsGroup
|
|
||||||
}
|
|
||||||
::= { altigaIpStatsMibCompliances 1 }
|
|
||||||
|
|
||||||
altigaIpStatsGroup OBJECT-GROUP
|
|
||||||
OBJECTS
|
|
||||||
{
|
|
||||||
alIpInterfaceStatsIndex,
|
|
||||||
alIpInterfaceStatsCurrentDuplex
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The objects for Ip Statistics."
|
|
||||||
::= { alIpGroup 2 }
|
|
||||||
|
|
||||||
END
|
|
File diff suppressed because it is too large
Load Diff
@ -1,309 +0,0 @@
|
|||||||
-- *------------------------------------------------------------------
|
|
||||||
-- * ALTIGA-LBSSF-STATS-MIB.my:
|
|
||||||
-- * Altiga Load Balancing and Secure Session Failover Statistics MIB.
|
|
||||||
-- *
|
|
||||||
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
|
|
||||||
-- *
|
|
||||||
-- * Copyright (c) 2002 by Cisco Systems, Inc.
|
|
||||||
-- * All rights reserved.
|
|
||||||
-- *
|
|
||||||
-- *------------------------------------------------------------------
|
|
||||||
|
|
||||||
ALTIGA-LBSSF-STATS-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY, OBJECT-TYPE, TimeTicks, Integer32, Gauge32,
|
|
||||||
IpAddress
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
TruthValue, RowStatus, TEXTUAL-CONVENTION
|
|
||||||
FROM SNMPv2-TC
|
|
||||||
OBJECT-GROUP, MODULE-COMPLIANCE
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
alStatsLBSSF, alLBSSFGroup
|
|
||||||
FROM ALTIGA-MIB
|
|
||||||
alLBSSFMibModule
|
|
||||||
FROM ALTIGA-GLOBAL-REG;
|
|
||||||
|
|
||||||
altigaLBSSFStatsMibModule MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200209051300Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
E-mail: cs-cvpn3000@cisco.com"
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
"The Altiga Load Balancing and Secure Session Failover
|
|
||||||
Statistics MIB models counters and objects that are of
|
|
||||||
management interest for LBSSF.
|
|
||||||
|
|
||||||
Acronyms
|
|
||||||
The following acronyms are used in this document:
|
|
||||||
|
|
||||||
LBSSF: Load Balancing and Secure Session Failover
|
|
||||||
|
|
||||||
MIB: Management Information Base
|
|
||||||
|
|
||||||
"
|
|
||||||
|
|
||||||
REVISION "200209051300Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added module compliance."
|
|
||||||
|
|
||||||
REVISION "200207100000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Updated with new header"
|
|
||||||
|
|
||||||
::= { alLBSSFMibModule 2 }
|
|
||||||
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
-- MIB Objects
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
|
|
||||||
DeviceType ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"LBSSF Device Type."
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
unknown(1),
|
|
||||||
vpn3005(3),
|
|
||||||
vpn3015(4),
|
|
||||||
vpn3030(5),
|
|
||||||
vpn3060(6),
|
|
||||||
vpn3080(7),
|
|
||||||
vpn3002(8)
|
|
||||||
}
|
|
||||||
|
|
||||||
DeviceRole ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Load balancing device roles within a LBSSF cluster.
|
|
||||||
|
|
||||||
virtualMaster: master of load balancing cluster
|
|
||||||
slave : slave in load balancing cluster
|
|
||||||
"
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
virtualMaster(1),
|
|
||||||
slave(2)
|
|
||||||
}
|
|
||||||
|
|
||||||
alStatsLBSSFGlobal OBJECT IDENTIFIER ::= { alStatsLBSSF 1 }
|
|
||||||
|
|
||||||
alLBSSFRole OBJECT-TYPE
|
|
||||||
SYNTAX DeviceRole
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The role of this device."
|
|
||||||
::= { alStatsLBSSFGlobal 1 }
|
|
||||||
|
|
||||||
alLBSSFDeviceType OBJECT-TYPE
|
|
||||||
SYNTAX DeviceType
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Device type of this device."
|
|
||||||
::= { alStatsLBSSFGlobal 2 }
|
|
||||||
|
|
||||||
alLBSSFActive OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Indicates if device is active or not."
|
|
||||||
::= { alStatsLBSSFGlobal 3 }
|
|
||||||
|
|
||||||
alLBSSFNumberOfPeers OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32 (0..25)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of total current peers."
|
|
||||||
::= { alStatsLBSSFGlobal 4 }
|
|
||||||
|
|
||||||
alLBSSFLoad OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32 (0..100)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The current calculated load of this device in percentage."
|
|
||||||
::= { alStatsLBSSFGlobal 5 }
|
|
||||||
|
|
||||||
alLBSSFPeerTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AlLBSSFPeerEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"List of LBSSF peers within a LBSSF cluster."
|
|
||||||
::= { alStatsLBSSF 2 }
|
|
||||||
|
|
||||||
alLBSSFPeerEntry OBJECT-TYPE
|
|
||||||
SYNTAX AlLBSSFPeerEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry in the alLBSSFStatsPeerTable."
|
|
||||||
INDEX { alLBSSFPeerPrivIpAddress }
|
|
||||||
::= { alLBSSFPeerTable 1 }
|
|
||||||
|
|
||||||
AlLBSSFPeerEntry ::= SEQUENCE {
|
|
||||||
alLBSSFPeerRowStatus RowStatus,
|
|
||||||
alLBSSFPeerPrivIpAddress IpAddress,
|
|
||||||
alLBSSFPeerPubIpAddress IpAddress,
|
|
||||||
alLBSSFPeerMappedPubIpAddress IpAddress,
|
|
||||||
alLBSSFPeerActive TruthValue,
|
|
||||||
alLBSSFPeerFaultZone Integer32,
|
|
||||||
alLBSSFPeerRole DeviceRole,
|
|
||||||
alLBSSFPeerDeviceType DeviceType,
|
|
||||||
alLBSSFPeerLoad Gauge32,
|
|
||||||
alLBSSFPeerPriority Integer32,
|
|
||||||
alLBSSFPeerActiveSessions Gauge32,
|
|
||||||
alLBSSFPeerJoinTime TimeTicks
|
|
||||||
}
|
|
||||||
|
|
||||||
alLBSSFPeerRowStatus OBJECT-TYPE
|
|
||||||
SYNTAX RowStatus
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The status of this row."
|
|
||||||
::= { alLBSSFPeerEntry 1 }
|
|
||||||
|
|
||||||
alLBSSFPeerPrivIpAddress OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Private LAN Ip address of this peer entry."
|
|
||||||
::= { alLBSSFPeerEntry 2 }
|
|
||||||
|
|
||||||
alLBSSFPeerPubIpAddress OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Public LAN Ip address of this peer entry."
|
|
||||||
::= { alLBSSFPeerEntry 3 }
|
|
||||||
|
|
||||||
alLBSSFPeerMappedPubIpAddress OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The NAT'ed Public Ip address of this peer entry."
|
|
||||||
::= { alLBSSFPeerEntry 4 }
|
|
||||||
|
|
||||||
alLBSSFPeerActive OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Indicates if this peer is active or not."
|
|
||||||
::= { alLBSSFPeerEntry 5 }
|
|
||||||
|
|
||||||
alLBSSFPeerFaultZone OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..25)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Indicates which fault zone this peer belongs."
|
|
||||||
::= { alLBSSFPeerEntry 6 }
|
|
||||||
|
|
||||||
alLBSSFPeerRole OBJECT-TYPE
|
|
||||||
SYNTAX DeviceRole
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Role of current peer"
|
|
||||||
::= { alLBSSFPeerEntry 7 }
|
|
||||||
|
|
||||||
alLBSSFPeerDeviceType OBJECT-TYPE
|
|
||||||
SYNTAX DeviceType
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Device type of this peer."
|
|
||||||
::= { alLBSSFPeerEntry 8 }
|
|
||||||
|
|
||||||
alLBSSFPeerLoad OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32 (0..100)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Current load of the peer in percentage."
|
|
||||||
::= { alLBSSFPeerEntry 9 }
|
|
||||||
|
|
||||||
alLBSSFPeerPriority OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..10)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Priority of the peer."
|
|
||||||
::= { alLBSSFPeerEntry 10 }
|
|
||||||
|
|
||||||
alLBSSFPeerActiveSessions OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32 (0..100000)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Number of current active sessions on this peer"
|
|
||||||
::= { alLBSSFPeerEntry 11 }
|
|
||||||
|
|
||||||
alLBSSFPeerJoinTime OBJECT-TYPE
|
|
||||||
SYNTAX TimeTicks
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Time in time-ticks when this peer join the virtual cluster"
|
|
||||||
::= { alLBSSFPeerEntry 12 }
|
|
||||||
|
|
||||||
|
|
||||||
altigaLBSSFStatsMibConformance OBJECT IDENTIFIER
|
|
||||||
::= { altigaLBSSFStatsMibModule 1 }
|
|
||||||
|
|
||||||
altigaLBSSFStatsMibCompliances OBJECT IDENTIFIER
|
|
||||||
::= { altigaLBSSFStatsMibConformance 1 }
|
|
||||||
|
|
||||||
altigaLBSSFStatsMibCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for agents which implement the Altiga
|
|
||||||
Load Balancing and Secure Session Failover Statistics MIB."
|
|
||||||
MODULE
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
altigaStatsLBSSFGroup
|
|
||||||
}
|
|
||||||
::= { altigaLBSSFStatsMibCompliances 1 }
|
|
||||||
|
|
||||||
altigaStatsLBSSFGroup OBJECT-GROUP
|
|
||||||
OBJECTS
|
|
||||||
{
|
|
||||||
alLBSSFRole,
|
|
||||||
alLBSSFDeviceType,
|
|
||||||
alLBSSFActive,
|
|
||||||
alLBSSFNumberOfPeers,
|
|
||||||
alLBSSFLoad,
|
|
||||||
alLBSSFPeerRowStatus,
|
|
||||||
alLBSSFPeerPrivIpAddress,
|
|
||||||
alLBSSFPeerPubIpAddress,
|
|
||||||
alLBSSFPeerMappedPubIpAddress,
|
|
||||||
alLBSSFPeerActive,
|
|
||||||
alLBSSFPeerFaultZone,
|
|
||||||
alLBSSFPeerRole,
|
|
||||||
alLBSSFPeerDeviceType,
|
|
||||||
alLBSSFPeerLoad,
|
|
||||||
alLBSSFPeerPriority,
|
|
||||||
alLBSSFPeerActiveSessions,
|
|
||||||
alLBSSFPeerJoinTime
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The objects for the LBSSF statistics."
|
|
||||||
::= { alLBSSFGroup 3 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
@ -1,344 +0,0 @@
|
|||||||
-- *------------------------------------------------------------------
|
|
||||||
-- * ALTIGA-MIB.my: Altiga Generic MIB.
|
|
||||||
-- *
|
|
||||||
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
|
|
||||||
-- *
|
|
||||||
-- * Copyright (c) 2002, 2003, 2004 by Cisco Systems, Inc.
|
|
||||||
-- * All rights reserved.
|
|
||||||
-- *
|
|
||||||
-- *------------------------------------------------------------------
|
|
||||||
|
|
||||||
ALTIGA-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
altigaGeneric, alMibModule
|
|
||||||
FROM ALTIGA-GLOBAL-REG;
|
|
||||||
|
|
||||||
altigaMibModule MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200412300000Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
E-mail: cs-cvpn3000@cisco.com"
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
"The Altiga Generic MIB models counters and objects that are
|
|
||||||
of management interest.
|
|
||||||
|
|
||||||
Acronyms
|
|
||||||
The following acronyms are used in this document:
|
|
||||||
|
|
||||||
MIB: Management Information Base
|
|
||||||
|
|
||||||
OID: Object Identifier
|
|
||||||
|
|
||||||
"
|
|
||||||
|
|
||||||
|
|
||||||
REVISION "200412300000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added the new MIB OIDs(60 to 62)."
|
|
||||||
|
|
||||||
REVISION "200310200000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added the new MIB OIDs(53 to 59)."
|
|
||||||
|
|
||||||
REVISION "200304100000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added the new MIB OIDs(49 to 52)."
|
|
||||||
|
|
||||||
REVISION "200210110000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Updated with new header."
|
|
||||||
|
|
||||||
::= { alMibModule 1 }
|
|
||||||
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
-- MIB Objects
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
|
|
||||||
altigaMib OBJECT IDENTIFIER ::= { altigaGeneric 1 }
|
|
||||||
|
|
||||||
-- Conformance Area, these are used elsewhere
|
|
||||||
altigaConfs OBJECT IDENTIFIER ::= { altigaMib 1 }
|
|
||||||
altigaGroups OBJECT IDENTIFIER ::= { altigaConfs 1 }
|
|
||||||
altigaCompl OBJECT IDENTIFIER ::= { altigaConfs 2 }
|
|
||||||
|
|
||||||
-- Subtree for Statistics, config and events
|
|
||||||
altigaStats OBJECT IDENTIFIER ::= { altigaMib 2 }
|
|
||||||
altigaConfig OBJECT IDENTIFIER ::= { altigaMib 3 }
|
|
||||||
altigaEvents OBJECT IDENTIFIER ::= { altigaMib 4 }
|
|
||||||
|
|
||||||
--
|
|
||||||
-- Here each subsystem will have a branch. There should be a branch
|
|
||||||
-- under each category (Stats, Config and Events), even if there
|
|
||||||
-- are no plans to further define the branch. Each branch should
|
|
||||||
-- have the same OID.
|
|
||||||
--
|
|
||||||
|
|
||||||
-- Groups
|
|
||||||
alVersionGroup OBJECT IDENTIFIER ::= { altigaGroups 1 }
|
|
||||||
alAccessGroup OBJECT IDENTIFIER ::= { altigaGroups 2 }
|
|
||||||
alPptpGroup OBJECT IDENTIFIER ::= { altigaGroups 3 }
|
|
||||||
alEventGroup OBJECT IDENTIFIER ::= { altigaGroups 4 }
|
|
||||||
alAuthGroup OBJECT IDENTIFIER ::= { altigaGroups 5 }
|
|
||||||
alPppGroup OBJECT IDENTIFIER ::= { altigaGroups 6 }
|
|
||||||
alHttpGroup OBJECT IDENTIFIER ::= { altigaGroups 7 }
|
|
||||||
alIpGroup OBJECT IDENTIFIER ::= { altigaGroups 8 }
|
|
||||||
alFilterGroup OBJECT IDENTIFIER ::= { altigaGroups 9 }
|
|
||||||
alUserGroup OBJECT IDENTIFIER ::= { altigaGroups 10 }
|
|
||||||
alTelnetGroup OBJECT IDENTIFIER ::= { altigaGroups 11 }
|
|
||||||
alFtpGroup OBJECT IDENTIFIER ::= { altigaGroups 12 }
|
|
||||||
alTftpGroup OBJECT IDENTIFIER ::= { altigaGroups 13 }
|
|
||||||
alSnmpGroup OBJECT IDENTIFIER ::= { altigaGroups 14 }
|
|
||||||
alIpSecGroup OBJECT IDENTIFIER ::= { altigaGroups 15 }
|
|
||||||
alL2tpGroup OBJECT IDENTIFIER ::= { altigaGroups 16 }
|
|
||||||
alSessionGroup OBJECT IDENTIFIER ::= { altigaGroups 17 }
|
|
||||||
alDnsGroup OBJECT IDENTIFIER ::= { altigaGroups 18 }
|
|
||||||
alAddressGroup OBJECT IDENTIFIER ::= { altigaGroups 19 }
|
|
||||||
alDhcpGroup OBJECT IDENTIFIER ::= { altigaGroups 20 }
|
|
||||||
alWatchdogGroup OBJECT IDENTIFIER ::= { altigaGroups 21 }
|
|
||||||
alHardwareGroup OBJECT IDENTIFIER ::= { altigaGroups 22 }
|
|
||||||
alNatGroup OBJECT IDENTIFIER ::= { altigaGroups 23 }
|
|
||||||
alLan2LanGroup OBJECT IDENTIFIER ::= { altigaGroups 24 }
|
|
||||||
alGeneralGroup OBJECT IDENTIFIER ::= { altigaGroups 25 }
|
|
||||||
alSslGroup OBJECT IDENTIFIER ::= { altigaGroups 26 }
|
|
||||||
alCertGroup OBJECT IDENTIFIER ::= { altigaGroups 27 }
|
|
||||||
alNtpGroup OBJECT IDENTIFIER ::= { altigaGroups 28 }
|
|
||||||
alNetworkListGroup OBJECT IDENTIFIER ::= { altigaGroups 29 }
|
|
||||||
alSepGroup OBJECT IDENTIFIER ::= { altigaGroups 30 }
|
|
||||||
alIkeGroup OBJECT IDENTIFIER ::= { altigaGroups 31 }
|
|
||||||
alSyncGroup OBJECT IDENTIFIER ::= { altigaGroups 32 }
|
|
||||||
alT1E1Group OBJECT IDENTIFIER ::= { altigaGroups 33 }
|
|
||||||
alMultiLinkGroup OBJECT IDENTIFIER ::= { altigaGroups 34 }
|
|
||||||
alSshGroup OBJECT IDENTIFIER ::= { altigaGroups 35 }
|
|
||||||
alLBSSFGroup OBJECT IDENTIFIER ::= { altigaGroups 36 }
|
|
||||||
alDhcpServerGroup OBJECT IDENTIFIER ::= { altigaGroups 37 }
|
|
||||||
alAutoUpdateGroup OBJECT IDENTIFIER ::= { altigaGroups 38 }
|
|
||||||
alAdminAuthGroup OBJECT IDENTIFIER ::= { altigaGroups 39 }
|
|
||||||
alPPPoEGroup OBJECT IDENTIFIER ::= { altigaGroups 40 }
|
|
||||||
alXmlGroup OBJECT IDENTIFIER ::= { altigaGroups 41 }
|
|
||||||
alCtcpGroup OBJECT IDENTIFIER ::= { altigaGroups 42 }
|
|
||||||
alFwGroup OBJECT IDENTIFIER ::= { altigaGroups 43 }
|
|
||||||
alGroupMatchGroup OBJECT IDENTIFIER ::= { altigaGroups 44 }
|
|
||||||
alACEServerGroup OBJECT IDENTIFIER ::= { altigaGroups 45 }
|
|
||||||
alNatTGroup OBJECT IDENTIFIER ::= { altigaGroups 46 }
|
|
||||||
alBwMgmtGroup OBJECT IDENTIFIER ::= { altigaGroups 47 }
|
|
||||||
alIpSecPreFragGroup OBJECT IDENTIFIER ::= { altigaGroups 48 }
|
|
||||||
alFipsGroup OBJECT IDENTIFIER ::= { altigaGroups 49 }
|
|
||||||
alBackupL2LGroup OBJECT IDENTIFIER ::= { altigaGroups 50 }
|
|
||||||
alNotifyGroup OBJECT IDENTIFIER ::= { altigaGroups 51 }
|
|
||||||
alRebootStatusGroup OBJECT IDENTIFIER ::= { altigaGroups 52 }
|
|
||||||
alAuthorizationGroup OBJECT IDENTIFIER ::= { altigaGroups 53 }
|
|
||||||
alWebPortalGroup OBJECT IDENTIFIER ::= { altigaGroups 54 }
|
|
||||||
alWebEmailGroup OBJECT IDENTIFIER ::= { altigaGroups 55 }
|
|
||||||
alPortForwardGroup OBJECT IDENTIFIER ::= { altigaGroups 56 }
|
|
||||||
alRemoteServerGroup OBJECT IDENTIFIER ::= { altigaGroups 57 }
|
|
||||||
alWebvpnAclGroup OBJECT IDENTIFIER ::= { altigaGroups 58 }
|
|
||||||
alNbnsGroup OBJECT IDENTIFIER ::= { altigaGroups 59 }
|
|
||||||
alSecureDesktopGroup OBJECT IDENTIFIER ::= { altigaGroups 60 }
|
|
||||||
alSslTunnelClientGroup OBJECT IDENTIFIER ::= { altigaGroups 61 }
|
|
||||||
alNacGroup OBJECT IDENTIFIER ::= { altigaGroups 62 }
|
|
||||||
|
|
||||||
|
|
||||||
-- Statistics
|
|
||||||
alStatsVersion OBJECT IDENTIFIER ::= { altigaStats 1 }
|
|
||||||
alStatsAccess OBJECT IDENTIFIER ::= { altigaStats 2 }
|
|
||||||
alStatsPptp OBJECT IDENTIFIER ::= { altigaStats 3 }
|
|
||||||
alStatsEvent OBJECT IDENTIFIER ::= { altigaStats 4 }
|
|
||||||
alStatsAuth OBJECT IDENTIFIER ::= { altigaStats 5 }
|
|
||||||
alStatsPpp OBJECT IDENTIFIER ::= { altigaStats 6 }
|
|
||||||
alStatsHttp OBJECT IDENTIFIER ::= { altigaStats 7 }
|
|
||||||
alStatsIp OBJECT IDENTIFIER ::= { altigaStats 8 }
|
|
||||||
alStatsFilter OBJECT IDENTIFIER ::= { altigaStats 9 }
|
|
||||||
alStatsUser OBJECT IDENTIFIER ::= { altigaStats 10 }
|
|
||||||
alStatsTelnet OBJECT IDENTIFIER ::= { altigaStats 11 }
|
|
||||||
alStatsFtp OBJECT IDENTIFIER ::= { altigaStats 12 }
|
|
||||||
alStatsTftp OBJECT IDENTIFIER ::= { altigaStats 13 }
|
|
||||||
alStatsSnmp OBJECT IDENTIFIER ::= { altigaStats 14 }
|
|
||||||
alStatsIpSec OBJECT IDENTIFIER ::= { altigaStats 15 }
|
|
||||||
alStatsL2tp OBJECT IDENTIFIER ::= { altigaStats 16 }
|
|
||||||
alStatsSession OBJECT IDENTIFIER ::= { altigaStats 17 }
|
|
||||||
alStatsDns OBJECT IDENTIFIER ::= { altigaStats 18 }
|
|
||||||
alStatsAddress OBJECT IDENTIFIER ::= { altigaStats 19 }
|
|
||||||
alStatsDhcp OBJECT IDENTIFIER ::= { altigaStats 20 }
|
|
||||||
alStatsWatching OBJECT IDENTIFIER ::= { altigaStats 21 }
|
|
||||||
alStatsHardware OBJECT IDENTIFIER ::= { altigaStats 22 }
|
|
||||||
alStatsNat OBJECT IDENTIFIER ::= { altigaStats 23 }
|
|
||||||
alStatsLan2Lan OBJECT IDENTIFIER ::= { altigaStats 24 }
|
|
||||||
alStatsGeneral OBJECT IDENTIFIER ::= { altigaStats 25 }
|
|
||||||
alStatsSsl OBJECT IDENTIFIER ::= { altigaStats 26 }
|
|
||||||
alStatsCert OBJECT IDENTIFIER ::= { altigaStats 27 }
|
|
||||||
alStatsNtp OBJECT IDENTIFIER ::= { altigaStats 28 }
|
|
||||||
alStatsNetworkList OBJECT IDENTIFIER ::= { altigaStats 29 }
|
|
||||||
alStatsSep OBJECT IDENTIFIER ::= { altigaStats 30 }
|
|
||||||
alStatsIke OBJECT IDENTIFIER ::= { altigaStats 31 }
|
|
||||||
alStatsSync OBJECT IDENTIFIER ::= { altigaStats 32 }
|
|
||||||
alStatsT1E1 OBJECT IDENTIFIER ::= { altigaStats 33 }
|
|
||||||
alStatsMultiLink OBJECT IDENTIFIER ::= { altigaStats 34 }
|
|
||||||
alStatsSsh OBJECT IDENTIFIER ::= { altigaStats 35 }
|
|
||||||
alStatsLBSSF OBJECT IDENTIFIER ::= { altigaStats 36 }
|
|
||||||
alStatsDhcpServer OBJECT IDENTIFIER ::= { altigaStats 37 }
|
|
||||||
alStatsAutoUpdate OBJECT IDENTIFIER ::= { altigaStats 38 }
|
|
||||||
alAdminAuthStats OBJECT IDENTIFIER ::= { altigaStats 39 }
|
|
||||||
alStatsPPPoE OBJECT IDENTIFIER ::= { altigaStats 40 }
|
|
||||||
alXmlStats OBJECT IDENTIFIER ::= { altigaStats 41 }
|
|
||||||
alCtcpStats OBJECT IDENTIFIER ::= { altigaStats 42 }
|
|
||||||
alFwStats OBJECT IDENTIFIER ::= { altigaStats 43 }
|
|
||||||
alStatsGroupMatch OBJECT IDENTIFIER ::= { altigaStats 44 }
|
|
||||||
alACEServerStats OBJECT IDENTIFIER ::= { altigaStats 45 }
|
|
||||||
alNatTStats OBJECT IDENTIFIER ::= { altigaStats 46 }
|
|
||||||
alStatsBwMgmt OBJECT IDENTIFIER ::= { altigaStats 47 }
|
|
||||||
alIpSecPreFragStats OBJECT IDENTIFIER ::= { altigaStats 48 }
|
|
||||||
alStatsFips OBJECT IDENTIFIER ::= { altigaStats 49 }
|
|
||||||
alStatsBackupL2L OBJECT IDENTIFIER ::= { altigaStats 50 }
|
|
||||||
alStatsNotify OBJECT IDENTIFIER ::= { altigaStats 51 }
|
|
||||||
alStatsRebootStatus OBJECT IDENTIFIER ::= { altigaStats 52 }
|
|
||||||
alStatsAuthorization OBJECT IDENTIFIER ::= { altigaStats 53 }
|
|
||||||
alStatsWebPortal OBJECT IDENTIFIER ::= { altigaStats 54 }
|
|
||||||
alStatsWebEmail OBJECT IDENTIFIER ::= { altigaStats 55 }
|
|
||||||
alStatsPortForward OBJECT IDENTIFIER ::= { altigaStats 56 }
|
|
||||||
alStatsRemoteServer OBJECT IDENTIFIER ::= { altigaStats 57 }
|
|
||||||
alStatsWebvpnAcl OBJECT IDENTIFIER ::= { altigaStats 58 }
|
|
||||||
alStatsNbns OBJECT IDENTIFIER ::= { altigaStats 59 }
|
|
||||||
alStatsSecureDesktop OBJECT IDENTIFIER ::= { altigaStats 60 }
|
|
||||||
alStatsSslTunnelClient OBJECT IDENTIFIER ::= { altigaStats 61 }
|
|
||||||
alStatsNac OBJECT IDENTIFIER ::= { altigaStats 62 }
|
|
||||||
|
|
||||||
|
|
||||||
-- Configuration
|
|
||||||
alCfgVersion OBJECT IDENTIFIER ::= { altigaConfig 1 }
|
|
||||||
alCfgAccess OBJECT IDENTIFIER ::= { altigaConfig 2 }
|
|
||||||
alCfgPptp OBJECT IDENTIFIER ::= { altigaConfig 3 }
|
|
||||||
alCfgEvent OBJECT IDENTIFIER ::= { altigaConfig 4 }
|
|
||||||
alCfgAuth OBJECT IDENTIFIER ::= { altigaConfig 5 }
|
|
||||||
alCfgPpp OBJECT IDENTIFIER ::= { altigaConfig 6 }
|
|
||||||
alCfgHttp OBJECT IDENTIFIER ::= { altigaConfig 7 }
|
|
||||||
alCfgIp OBJECT IDENTIFIER ::= { altigaConfig 8 }
|
|
||||||
alCfgFilter OBJECT IDENTIFIER ::= { altigaConfig 9 }
|
|
||||||
alCfgUser OBJECT IDENTIFIER ::= { altigaConfig 10 }
|
|
||||||
alCfgTelnet OBJECT IDENTIFIER ::= { altigaConfig 11 }
|
|
||||||
alCfgFtp OBJECT IDENTIFIER ::= { altigaConfig 12 }
|
|
||||||
alCfgTftp OBJECT IDENTIFIER ::= { altigaConfig 13 }
|
|
||||||
alCfgSnmp OBJECT IDENTIFIER ::= { altigaConfig 14 }
|
|
||||||
alCfgIpSec OBJECT IDENTIFIER ::= { altigaConfig 15 }
|
|
||||||
alCfgL2tp OBJECT IDENTIFIER ::= { altigaConfig 16 }
|
|
||||||
alCfgSession OBJECT IDENTIFIER ::= { altigaConfig 17 }
|
|
||||||
alCfgDns OBJECT IDENTIFIER ::= { altigaConfig 18 }
|
|
||||||
alCfgAddress OBJECT IDENTIFIER ::= { altigaConfig 19 }
|
|
||||||
alCfgDhcp OBJECT IDENTIFIER ::= { altigaConfig 20 }
|
|
||||||
alCfgWatchdog OBJECT IDENTIFIER ::= { altigaConfig 21 }
|
|
||||||
alCfgHardware OBJECT IDENTIFIER ::= { altigaConfig 22 }
|
|
||||||
alCfgNat OBJECT IDENTIFIER ::= { altigaConfig 23 }
|
|
||||||
alCfgLan2Lan OBJECT IDENTIFIER ::= { altigaConfig 24 }
|
|
||||||
alCfgGeneral OBJECT IDENTIFIER ::= { altigaConfig 25 }
|
|
||||||
alCfgSsl OBJECT IDENTIFIER ::= { altigaConfig 26 }
|
|
||||||
alCfgCert OBJECT IDENTIFIER ::= { altigaConfig 27 }
|
|
||||||
alCfgNtp OBJECT IDENTIFIER ::= { altigaConfig 28 }
|
|
||||||
alCfgNetworkList OBJECT IDENTIFIER ::= { altigaConfig 29 }
|
|
||||||
alCfgSep OBJECT IDENTIFIER ::= { altigaConfig 30 }
|
|
||||||
alCfgIke OBJECT IDENTIFIER ::= { altigaConfig 31 }
|
|
||||||
alCfgSync OBJECT IDENTIFIER ::= { altigaConfig 32 }
|
|
||||||
alCfgT1E1 OBJECT IDENTIFIER ::= { altigaConfig 33 }
|
|
||||||
alCfgMultiLink OBJECT IDENTIFIER ::= { altigaConfig 34 }
|
|
||||||
alCfgSsh OBJECT IDENTIFIER ::= { altigaConfig 35 }
|
|
||||||
alCfgLBSSF OBJECT IDENTIFIER ::= { altigaConfig 36 }
|
|
||||||
alCfgDhcpServer OBJECT IDENTIFIER ::= { altigaConfig 37 }
|
|
||||||
alCfgAutoUpdate OBJECT IDENTIFIER ::= { altigaConfig 38 }
|
|
||||||
alCfgAdminAuth OBJECT IDENTIFIER ::= { altigaConfig 39 }
|
|
||||||
alCfgPPPoE OBJECT IDENTIFIER ::= { altigaConfig 40 }
|
|
||||||
alCfgXml OBJECT IDENTIFIER ::= { altigaConfig 41 }
|
|
||||||
alCfgCtcp OBJECT IDENTIFIER ::= { altigaConfig 42 }
|
|
||||||
alCfgFw OBJECT IDENTIFIER ::= { altigaConfig 43 }
|
|
||||||
alCfgGroupMatch OBJECT IDENTIFIER ::= { altigaConfig 44 }
|
|
||||||
alCfgACE OBJECT IDENTIFIER ::= { altigaConfig 45 }
|
|
||||||
alCfgNatT OBJECT IDENTIFIER ::= { altigaConfig 46 }
|
|
||||||
alCfgBwMgmt OBJECT IDENTIFIER ::= { altigaConfig 47 }
|
|
||||||
alCfgIpSecPreFrag OBJECT IDENTIFIER ::= { altigaConfig 48 }
|
|
||||||
alCfgFips OBJECT IDENTIFIER ::= { altigaConfig 49 }
|
|
||||||
alCfgBackupL2L OBJECT IDENTIFIER ::= { altigaConfig 50 }
|
|
||||||
alCfgNotify OBJECT IDENTIFIER ::= { altigaConfig 51 }
|
|
||||||
alCfgRebootStatus OBJECT IDENTIFIER ::= { altigaConfig 52 }
|
|
||||||
alCfgAuthorization OBJECT IDENTIFIER ::= { altigaConfig 53 }
|
|
||||||
alCfgWebPortal OBJECT IDENTIFIER ::= { altigaConfig 54 }
|
|
||||||
alCfgWebEmail OBJECT IDENTIFIER ::= { altigaConfig 55 }
|
|
||||||
alCfgPortForward OBJECT IDENTIFIER ::= { altigaConfig 56 }
|
|
||||||
alCfgRemoteServer OBJECT IDENTIFIER ::= { altigaConfig 57 }
|
|
||||||
alCfgWebvpnAcl OBJECT IDENTIFIER ::= { altigaConfig 58 }
|
|
||||||
alCfgNbns OBJECT IDENTIFIER ::= { altigaConfig 59 }
|
|
||||||
alCfgSecureDesktop OBJECT IDENTIFIER ::= { altigaConfig 60 }
|
|
||||||
alCfgSslTunnelClient OBJECT IDENTIFIER ::= { altigaConfig 61 }
|
|
||||||
alCfgNac OBJECT IDENTIFIER ::= { altigaConfig 62 }
|
|
||||||
|
|
||||||
-- Events
|
|
||||||
alEventsVersion OBJECT IDENTIFIER ::= { altigaEvents 1 }
|
|
||||||
alEventsAccess OBJECT IDENTIFIER ::= { altigaEvents 2 }
|
|
||||||
alEventsPptp OBJECT IDENTIFIER ::= { altigaEvents 3 }
|
|
||||||
alEventsEvent OBJECT IDENTIFIER ::= { altigaEvents 4 }
|
|
||||||
alEventsAuth OBJECT IDENTIFIER ::= { altigaEvents 5 }
|
|
||||||
alEventsPpp OBJECT IDENTIFIER ::= { altigaEvents 6 }
|
|
||||||
alEventsHttp OBJECT IDENTIFIER ::= { altigaEvents 7 }
|
|
||||||
alEventsIp OBJECT IDENTIFIER ::= { altigaEvents 8 }
|
|
||||||
alEventsFilter OBJECT IDENTIFIER ::= { altigaEvents 9 }
|
|
||||||
alEventsUser OBJECT IDENTIFIER ::= { altigaEvents 10 }
|
|
||||||
alEventsTelnet OBJECT IDENTIFIER ::= { altigaEvents 11 }
|
|
||||||
alEventsFtp OBJECT IDENTIFIER ::= { altigaEvents 12 }
|
|
||||||
alEventsTftp OBJECT IDENTIFIER ::= { altigaEvents 13 }
|
|
||||||
alEventsSnmp OBJECT IDENTIFIER ::= { altigaEvents 14 }
|
|
||||||
alEventsIpSec OBJECT IDENTIFIER ::= { altigaEvents 15 }
|
|
||||||
alEventsL2tp OBJECT IDENTIFIER ::= { altigaEvents 16 }
|
|
||||||
alEventsSession OBJECT IDENTIFIER ::= { altigaEvents 17 }
|
|
||||||
alEventsDns OBJECT IDENTIFIER ::= { altigaEvents 18 }
|
|
||||||
alEventsAddress OBJECT IDENTIFIER ::= { altigaEvents 19 }
|
|
||||||
alEventsDhcp OBJECT IDENTIFIER ::= { altigaEvents 20 }
|
|
||||||
alEventsWatchdog OBJECT IDENTIFIER ::= { altigaEvents 21 }
|
|
||||||
alEventsHardware OBJECT IDENTIFIER ::= { altigaEvents 22 }
|
|
||||||
alEventsNat OBJECT IDENTIFIER ::= { altigaEvents 23 }
|
|
||||||
alEventsLan2Lan OBJECT IDENTIFIER ::= { altigaEvents 24 }
|
|
||||||
alEventsGeneral OBJECT IDENTIFIER ::= { altigaEvents 25 }
|
|
||||||
alEventsSsl OBJECT IDENTIFIER ::= { altigaEvents 26 }
|
|
||||||
alEventsCert OBJECT IDENTIFIER ::= { altigaEvents 27 }
|
|
||||||
alEventsNtp OBJECT IDENTIFIER ::= { altigaEvents 28 }
|
|
||||||
alEventsNetworkList OBJECT IDENTIFIER ::= { altigaEvents 29 }
|
|
||||||
alEventsSep OBJECT IDENTIFIER ::= { altigaEvents 30 }
|
|
||||||
alEventsIke OBJECT IDENTIFIER ::= { altigaEvents 31 }
|
|
||||||
alEventsSync OBJECT IDENTIFIER ::= { altigaEvents 32 }
|
|
||||||
alEventsT1E1 OBJECT IDENTIFIER ::= { altigaEvents 33 }
|
|
||||||
alEventsMultiLink OBJECT IDENTIFIER ::= { altigaEvents 34 }
|
|
||||||
alEventsSsh OBJECT IDENTIFIER ::= { altigaEvents 35 }
|
|
||||||
alEventsLBSSF OBJECT IDENTIFIER ::= { altigaEvents 36 }
|
|
||||||
alEventsAutoUpdate OBJECT IDENTIFIER ::= { altigaEvents 38 }
|
|
||||||
alEventsAdminAuth OBJECT IDENTIFIER ::= { altigaEvents 39 }
|
|
||||||
alEventsPPPoE OBJECT IDENTIFIER ::= { altigaEvents 40 }
|
|
||||||
alEventXml OBJECT IDENTIFIER ::= { altigaEvents 41 }
|
|
||||||
alEventCtcp OBJECT IDENTIFIER ::= { altigaEvents 42 }
|
|
||||||
alEventFw OBJECT IDENTIFIER ::= { altigaEvents 43 }
|
|
||||||
alEventGroupMatch OBJECT IDENTIFIER ::= { altigaEvents 44 }
|
|
||||||
alEventACE OBJECT IDENTIFIER ::= { altigaEvents 45 }
|
|
||||||
alEventNatT OBJECT IDENTIFIER ::= { altigaEvents 46 }
|
|
||||||
alEventBwMgmt OBJECT IDENTIFIER ::= { altigaEvents 47 }
|
|
||||||
alEventIpSecPreFrag OBJECT IDENTIFIER ::= { altigaEvents 48 }
|
|
||||||
alEventFips OBJECT IDENTIFIER ::= { altigaEvents 49 }
|
|
||||||
alEventBackupL2L OBJECT IDENTIFIER ::= { altigaEvents 50 }
|
|
||||||
alEventsNotify OBJECT IDENTIFIER ::= { altigaEvents 51 }
|
|
||||||
alEventsRebootStatus OBJECT IDENTIFIER ::= { altigaEvents 52 }
|
|
||||||
alEventAuthorization OBJECT IDENTIFIER ::= { altigaEvents 53 }
|
|
||||||
alEventWebPortal OBJECT IDENTIFIER ::= { altigaEvents 54 }
|
|
||||||
alEventWebEmail OBJECT IDENTIFIER ::= { altigaEvents 55 }
|
|
||||||
alEventPortForward OBJECT IDENTIFIER ::= { altigaEvents 56 }
|
|
||||||
alEventRemoteServer OBJECT IDENTIFIER ::= { altigaEvents 57 }
|
|
||||||
alEventWebvpnAcl OBJECT IDENTIFIER ::= { altigaEvents 58 }
|
|
||||||
alEventNbns OBJECT IDENTIFIER ::= { altigaEvents 59 }
|
|
||||||
alEventSecureDesktop OBJECT IDENTIFIER ::= { altigaEvents 60 }
|
|
||||||
alEventSslTunnelClient OBJECT IDENTIFIER ::= { altigaEvents 61 }
|
|
||||||
alEventNac OBJECT IDENTIFIER ::= { altigaEvents 62 }
|
|
||||||
|
|
||||||
|
|
||||||
END
|
|
@ -1,313 +0,0 @@
|
|||||||
-- *------------------------------------------------------------------
|
|
||||||
-- * ALTIGA-MULTILINK-STATS-MIB.my: Altiga MultiLink Statistics MIB.
|
|
||||||
-- *
|
|
||||||
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
|
|
||||||
-- *
|
|
||||||
-- * Copyright (c) 2002 by Cisco Systems, Inc.
|
|
||||||
-- * All rights reserved.
|
|
||||||
-- *
|
|
||||||
-- *------------------------------------------------------------------
|
|
||||||
|
|
||||||
ALTIGA-MULTILINK-STATS-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY, OBJECT-TYPE, Integer32, Unsigned32, Gauge32
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
RowStatus
|
|
||||||
FROM SNMPv2-TC
|
|
||||||
OBJECT-GROUP, MODULE-COMPLIANCE
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
alStatsMultiLink, alMultiLinkGroup
|
|
||||||
FROM ALTIGA-MIB
|
|
||||||
alMultiLinkMibModule
|
|
||||||
FROM ALTIGA-GLOBAL-REG;
|
|
||||||
|
|
||||||
altigaMultiLinkStatsMibModule MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200209051300Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
E-mail: cs-cvpn3000@cisco.com"
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
"The Altiga MultiLink Statistics MIB models counters and
|
|
||||||
objects that are of management interest for multilinks.
|
|
||||||
|
|
||||||
Acronyms
|
|
||||||
The following acronyms are used in this document:
|
|
||||||
|
|
||||||
MIB: Management Information Base
|
|
||||||
|
|
||||||
MLP: MultiLink Protocol
|
|
||||||
|
|
||||||
"
|
|
||||||
|
|
||||||
REVISION "200209051300Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added module compliance."
|
|
||||||
|
|
||||||
REVISION "200207100000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Updated with new header"
|
|
||||||
|
|
||||||
::= { alMultiLinkMibModule 2 }
|
|
||||||
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
-- MIB Objects
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
|
|
||||||
alStatsMultiLinkGlobal OBJECT IDENTIFIER ::= { alStatsMultiLink 1 }
|
|
||||||
|
|
||||||
alMultiLinkStatsTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AlMultiLinkStatsEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"List of active bundles sessions."
|
|
||||||
::= { alStatsMultiLink 2 }
|
|
||||||
|
|
||||||
alMultiLinkStatsEntry OBJECT-TYPE
|
|
||||||
SYNTAX AlMultiLinkStatsEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry in the alMultiLinkStatsTable."
|
|
||||||
INDEX { alMultiLinkStatsIndex }
|
|
||||||
::= { alMultiLinkStatsTable 1 }
|
|
||||||
|
|
||||||
AlMultiLinkStatsEntry ::= SEQUENCE {
|
|
||||||
alMultiLinkStatsRowStatus RowStatus,
|
|
||||||
alMultiLinkStatsIndex Integer32,
|
|
||||||
alMultiLinkStatsTxOctets Unsigned32,
|
|
||||||
alMultiLinkStatsTxPackets Unsigned32,
|
|
||||||
alMultiLinkStatsTxMlpFragments Unsigned32,
|
|
||||||
alMultiLinkStatsTxMlpPackets Unsigned32,
|
|
||||||
alMultiLinkStatsTxNonMlpPackets Unsigned32,
|
|
||||||
alMultiLinkStatsTxThroughput Gauge32,
|
|
||||||
alMultiLinkStatsRxOctets Unsigned32,
|
|
||||||
alMultiLinkStatsRxPackets Unsigned32,
|
|
||||||
alMultiLinkStatsRxMlpFragments Unsigned32,
|
|
||||||
alMultiLinkStatsRxMlpPackets Unsigned32,
|
|
||||||
alMultiLinkStatsRxNonMlpPackets Unsigned32,
|
|
||||||
alMultiLinkStatsRxThroughput Gauge32,
|
|
||||||
alMultiLinkStatsRxLostEnd Unsigned32,
|
|
||||||
alMultiLinkStatsRxStalePackets Unsigned32,
|
|
||||||
alMultiLinkStatsRxStaleFragments Unsigned32,
|
|
||||||
alMultiLinkStatsRxDroppedFragments Unsigned32,
|
|
||||||
alMultiLinkStatsRxOOSFragments Unsigned32,
|
|
||||||
alMultiLinkStatsIdleTmrCleanup Unsigned32
|
|
||||||
}
|
|
||||||
|
|
||||||
alMultiLinkStatsRowStatus OBJECT-TYPE
|
|
||||||
SYNTAX RowStatus
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The status of this row."
|
|
||||||
::= { alMultiLinkStatsEntry 1 }
|
|
||||||
|
|
||||||
alMultiLinkStatsIndex OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..2147483647)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The unique MultiLink Bundle index for this row."
|
|
||||||
::= { alMultiLinkStatsEntry 2 }
|
|
||||||
|
|
||||||
alMultiLinkStatsTxOctets OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of transmitted octets."
|
|
||||||
::= { alMultiLinkStatsEntry 3 }
|
|
||||||
|
|
||||||
alMultiLinkStatsTxPackets OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of transmitted packets."
|
|
||||||
::= { alMultiLinkStatsEntry 4 }
|
|
||||||
|
|
||||||
alMultiLinkStatsTxMlpFragments OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of transmitted MLP packet fragments."
|
|
||||||
::= { alMultiLinkStatsEntry 5 }
|
|
||||||
|
|
||||||
alMultiLinkStatsTxMlpPackets OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of transmitted MLP complete packets."
|
|
||||||
::= { alMultiLinkStatsEntry 6 }
|
|
||||||
|
|
||||||
alMultiLinkStatsTxNonMlpPackets OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of transmitted non-MLP complete packets."
|
|
||||||
::= { alMultiLinkStatsEntry 7 }
|
|
||||||
|
|
||||||
alMultiLinkStatsTxThroughput OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of transmitted bits per second"
|
|
||||||
::= { alMultiLinkStatsEntry 8 }
|
|
||||||
|
|
||||||
alMultiLinkStatsRxOctets OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of received octets."
|
|
||||||
::= { alMultiLinkStatsEntry 9 }
|
|
||||||
|
|
||||||
alMultiLinkStatsRxPackets OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of received packets."
|
|
||||||
::= { alMultiLinkStatsEntry 10 }
|
|
||||||
|
|
||||||
alMultiLinkStatsRxMlpFragments OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of received MLP packet fragments."
|
|
||||||
::= { alMultiLinkStatsEntry 11 }
|
|
||||||
|
|
||||||
alMultiLinkStatsRxMlpPackets OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of received MLP complete packets."
|
|
||||||
::= { alMultiLinkStatsEntry 12 }
|
|
||||||
|
|
||||||
alMultiLinkStatsRxNonMlpPackets OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of received non-MLP complete packets."
|
|
||||||
::= { alMultiLinkStatsEntry 13 }
|
|
||||||
|
|
||||||
alMultiLinkStatsRxThroughput OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of received bits per second"
|
|
||||||
::= { alMultiLinkStatsEntry 14 }
|
|
||||||
|
|
||||||
alMultiLinkStatsRxLostEnd OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of missing MLP packets with no end bit."
|
|
||||||
::= { alMultiLinkStatsEntry 15 }
|
|
||||||
|
|
||||||
alMultiLinkStatsRxStalePackets OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of received MLP packet fragments gone stale."
|
|
||||||
::= { alMultiLinkStatsEntry 16 }
|
|
||||||
|
|
||||||
alMultiLinkStatsRxStaleFragments OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of received MLP fragments orphans gone stale."
|
|
||||||
::= { alMultiLinkStatsEntry 17 }
|
|
||||||
|
|
||||||
alMultiLinkStatsRxDroppedFragments OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of received MLP packet fragments discarded."
|
|
||||||
::= { alMultiLinkStatsEntry 18 }
|
|
||||||
|
|
||||||
alMultiLinkStatsRxOOSFragments OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of received out-of-sequence MLP packet fragments"
|
|
||||||
::= { alMultiLinkStatsEntry 19 }
|
|
||||||
|
|
||||||
alMultiLinkStatsIdleTmrCleanup OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of times idle timer forwarded MLP complete packets."
|
|
||||||
::= { alMultiLinkStatsEntry 20 }
|
|
||||||
|
|
||||||
altigaMultiLinkStatsMibConformance OBJECT IDENTIFIER
|
|
||||||
::= { altigaMultiLinkStatsMibModule 1 }
|
|
||||||
|
|
||||||
altigaMultiLinkStatsMibCompliances OBJECT IDENTIFIER
|
|
||||||
::= { altigaMultiLinkStatsMibConformance 1 }
|
|
||||||
|
|
||||||
altigaMultiLinkStatsMibCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for agents which
|
|
||||||
implement the Altiga MultiLink Statistics MIB."
|
|
||||||
MODULE
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
altigaMultiLinkStatsGroup
|
|
||||||
}
|
|
||||||
::= { altigaMultiLinkStatsMibCompliances 1 }
|
|
||||||
|
|
||||||
altigaMultiLinkStatsGroup OBJECT-GROUP
|
|
||||||
OBJECTS
|
|
||||||
{
|
|
||||||
alMultiLinkStatsRowStatus,
|
|
||||||
alMultiLinkStatsIndex,
|
|
||||||
alMultiLinkStatsTxOctets,
|
|
||||||
alMultiLinkStatsTxPackets,
|
|
||||||
alMultiLinkStatsTxMlpFragments,
|
|
||||||
alMultiLinkStatsTxMlpPackets,
|
|
||||||
alMultiLinkStatsTxNonMlpPackets,
|
|
||||||
alMultiLinkStatsTxThroughput,
|
|
||||||
alMultiLinkStatsRxOctets,
|
|
||||||
alMultiLinkStatsRxPackets,
|
|
||||||
alMultiLinkStatsRxMlpFragments,
|
|
||||||
alMultiLinkStatsRxMlpPackets,
|
|
||||||
alMultiLinkStatsRxNonMlpPackets,
|
|
||||||
alMultiLinkStatsRxThroughput,
|
|
||||||
alMultiLinkStatsRxLostEnd,
|
|
||||||
alMultiLinkStatsRxStalePackets,
|
|
||||||
alMultiLinkStatsRxStaleFragments,
|
|
||||||
alMultiLinkStatsRxDroppedFragments,
|
|
||||||
alMultiLinkStatsRxOOSFragments,
|
|
||||||
alMultiLinkStatsIdleTmrCleanup
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The objects for the MultiLink Bundle statistics."
|
|
||||||
::= { alMultiLinkGroup 2 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
@ -1,437 +0,0 @@
|
|||||||
-- *------------------------------------------------------------------
|
|
||||||
-- * ALTIGA-NAT-STATS-MIB.my: Altiga NAT Statistics MIB.
|
|
||||||
-- *
|
|
||||||
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
|
|
||||||
-- *
|
|
||||||
-- * Copyright (c) 2002 by Cisco Systems, Inc.
|
|
||||||
-- * All rights reserved.
|
|
||||||
-- *
|
|
||||||
-- *------------------------------------------------------------------
|
|
||||||
|
|
||||||
ALTIGA-NAT-STATS-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY, OBJECT-TYPE, IpAddress, Integer32, Counter32, Unsigned32
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
OBJECT-GROUP, MODULE-COMPLIANCE
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
alStatsNat, alNatGroup
|
|
||||||
FROM ALTIGA-MIB
|
|
||||||
alNatMibModule
|
|
||||||
FROM ALTIGA-GLOBAL-REG;
|
|
||||||
|
|
||||||
altigaNatStatsMibModule MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200209051300Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
E-mail: cs-cvpn3000@cisco.com"
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
"The Altiga NAT Statistics MIB models counters and objects that are
|
|
||||||
of management interest for NAT.
|
|
||||||
|
|
||||||
Acronyms
|
|
||||||
The following acronyms are used in this document:
|
|
||||||
|
|
||||||
MIB: Management Information Base
|
|
||||||
|
|
||||||
NAT: Network Address Translation
|
|
||||||
|
|
||||||
"
|
|
||||||
|
|
||||||
REVISION "200209051300Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added module compliance."
|
|
||||||
|
|
||||||
REVISION "200207100000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Updated with new header"
|
|
||||||
|
|
||||||
::= { alNatMibModule 2 }
|
|
||||||
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
-- MIB Objects
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
|
|
||||||
alStatsNatGlobal OBJECT IDENTIFIER ::= { alStatsNat 1 }
|
|
||||||
|
|
||||||
alNatStatsPacketsIn OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of inbound packets that have been translated."
|
|
||||||
::= { alStatsNatGlobal 1 }
|
|
||||||
|
|
||||||
alNatStatsPacketsOut OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of outbound packets that have been translated."
|
|
||||||
::= { alStatsNatGlobal 2 }
|
|
||||||
|
|
||||||
alNatStatsTotalTranslations OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of sessions that have been established."
|
|
||||||
::= { alStatsNatGlobal 3 }
|
|
||||||
|
|
||||||
alNatStatsActiveTranslations OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The active number of sessions that are established."
|
|
||||||
::= { alStatsNatGlobal 4 }
|
|
||||||
|
|
||||||
alNatStatsMaxTranslations OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The maximum number of sessions that have been established at any one time."
|
|
||||||
::= { alStatsNatGlobal 5 }
|
|
||||||
|
|
||||||
alNatTranslationTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AlNatTranslationEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"List of active NAT sessions."
|
|
||||||
::= { alStatsNat 2 }
|
|
||||||
|
|
||||||
alNatTranslationEntry OBJECT-TYPE
|
|
||||||
SYNTAX AlNatTranslationEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry in the alNatTranslationTable."
|
|
||||||
INDEX { alNatTranslationSrcAddress,
|
|
||||||
alNatTranslationSrcPort,
|
|
||||||
alNatTranslationDestAddress,
|
|
||||||
alNatTranslationDestPort}
|
|
||||||
::= { alNatTranslationTable 1 }
|
|
||||||
|
|
||||||
AlNatTranslationEntry ::= SEQUENCE {
|
|
||||||
alNatTranslationSrcAddress IpAddress,
|
|
||||||
alNatTranslationSrcPort Integer32,
|
|
||||||
alNatTranslationDestAddress IpAddress,
|
|
||||||
alNatTranslationDestPort Integer32,
|
|
||||||
alNatTranslationAddress IpAddress,
|
|
||||||
alNatTranslationPort Integer32,
|
|
||||||
alNatTranslationAge Unsigned32,
|
|
||||||
alNatTranslationType INTEGER,
|
|
||||||
alNatTranslationDirection INTEGER,
|
|
||||||
alNatTranslationBytes Counter32,
|
|
||||||
alNatTranslationPackets Counter32
|
|
||||||
}
|
|
||||||
|
|
||||||
alNatTranslationSrcAddress OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The internal source address to be translated."
|
|
||||||
::= { alNatTranslationEntry 1 }
|
|
||||||
|
|
||||||
alNatTranslationSrcPort OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..65535)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The internal source port to be translated."
|
|
||||||
::= { alNatTranslationEntry 2 }
|
|
||||||
|
|
||||||
alNatTranslationDestAddress OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The external destination address."
|
|
||||||
::= { alNatTranslationEntry 3 }
|
|
||||||
|
|
||||||
alNatTranslationDestPort OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..65535)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The external destinatin port."
|
|
||||||
::= { alNatTranslationEntry 4 }
|
|
||||||
|
|
||||||
alNatTranslationAddress OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The translated internal source address."
|
|
||||||
::= { alNatTranslationEntry 5 }
|
|
||||||
|
|
||||||
alNatTranslationPort OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..65535)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The translated internal source port."
|
|
||||||
::= { alNatTranslationEntry 6 }
|
|
||||||
|
|
||||||
alNatTranslationAge OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The age of this entry in seconds."
|
|
||||||
::= { alNatTranslationEntry 7 }
|
|
||||||
|
|
||||||
alNatTranslationType OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
unknown(0),
|
|
||||||
portMapTcp (1),
|
|
||||||
portMapUdp (2),
|
|
||||||
portMapTcpUdp(3),
|
|
||||||
noPortMap (4),
|
|
||||||
ftpProxy (8),
|
|
||||||
tftpProxy (16),
|
|
||||||
nbnsTcpProxy (32),
|
|
||||||
nbnsUdpProxy (64),
|
|
||||||
nbdgsvcProxy (128),
|
|
||||||
h225TcpProxy (256),
|
|
||||||
h245Proxy(512),
|
|
||||||
rasProxy (1024),
|
|
||||||
ilsProxy (2048),
|
|
||||||
all(4095)
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The type of this entry."
|
|
||||||
::= { alNatTranslationEntry 8 }
|
|
||||||
|
|
||||||
alNatTranslationDirection OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
inbound (1),
|
|
||||||
outbound (2)
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The direction that this rule acts upon."
|
|
||||||
::= { alNatTranslationEntry 9 }
|
|
||||||
|
|
||||||
alNatTranslationBytes OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of bytes that have been translated."
|
|
||||||
::= { alNatTranslationEntry 10 }
|
|
||||||
|
|
||||||
alNatTranslationPackets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of packets that have been translated."
|
|
||||||
::= { alNatTranslationEntry 11 }
|
|
||||||
|
|
||||||
alNatAllTranslationTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AlNatAllTranslationEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"List of active NAT sessions."
|
|
||||||
::= { alStatsNat 3 }
|
|
||||||
|
|
||||||
alNatAllTranslationEntry OBJECT-TYPE
|
|
||||||
SYNTAX AlNatAllTranslationEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry in the alNatAllTranslationTable."
|
|
||||||
INDEX { alNatAllTranslationSrcAddress,
|
|
||||||
alNatAllTranslationSrcPort,
|
|
||||||
alNatAllTranslationDestAddress,
|
|
||||||
alNatAllTranslationDestPort,
|
|
||||||
alNatAllTranslationType }
|
|
||||||
::= { alNatAllTranslationTable 1 }
|
|
||||||
|
|
||||||
AlNatAllTranslationEntry ::= SEQUENCE {
|
|
||||||
alNatAllTranslationSrcAddress IpAddress,
|
|
||||||
alNatAllTranslationSrcPort Integer32,
|
|
||||||
alNatAllTranslationDestAddress IpAddress,
|
|
||||||
alNatAllTranslationDestPort Integer32,
|
|
||||||
alNatAllTranslationAddress IpAddress,
|
|
||||||
alNatAllTranslationPort Integer32,
|
|
||||||
alNatAllTranslationAge Unsigned32,
|
|
||||||
alNatAllTranslationType INTEGER,
|
|
||||||
alNatAllTranslationDirection INTEGER,
|
|
||||||
alNatAllTranslationBytes Counter32,
|
|
||||||
alNatAllTranslationPackets Counter32
|
|
||||||
}
|
|
||||||
|
|
||||||
alNatAllTranslationSrcAddress OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The internal source address to be translated."
|
|
||||||
::= { alNatAllTranslationEntry 1 }
|
|
||||||
|
|
||||||
alNatAllTranslationSrcPort OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..65535)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The internal source port to be translated."
|
|
||||||
::= { alNatAllTranslationEntry 2 }
|
|
||||||
|
|
||||||
alNatAllTranslationDestAddress OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The external destination address."
|
|
||||||
::= { alNatAllTranslationEntry 3 }
|
|
||||||
|
|
||||||
alNatAllTranslationDestPort OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..65535)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The external destinatin port."
|
|
||||||
::= { alNatAllTranslationEntry 4 }
|
|
||||||
|
|
||||||
alNatAllTranslationAddress OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The translated internal source address."
|
|
||||||
::= { alNatAllTranslationEntry 5 }
|
|
||||||
|
|
||||||
alNatAllTranslationPort OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..65535)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The translated internal source port."
|
|
||||||
::= { alNatAllTranslationEntry 6 }
|
|
||||||
|
|
||||||
alNatAllTranslationAge OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The age of this entry in seconds."
|
|
||||||
::= { alNatAllTranslationEntry 7 }
|
|
||||||
|
|
||||||
alNatAllTranslationType OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
unknown(0),
|
|
||||||
portMapTcp (1),
|
|
||||||
portMapUdp (2),
|
|
||||||
portMapTcpUdp(3),
|
|
||||||
noPortMap (4),
|
|
||||||
ftpProxy (8),
|
|
||||||
tftpProxy (16),
|
|
||||||
nbnsTcpProxy (32),
|
|
||||||
nbnsUdpProxy (64),
|
|
||||||
nbdgsvcProxy (128),
|
|
||||||
h225TcpProxy (256),
|
|
||||||
h245Proxy(512),
|
|
||||||
rasProxy (1024),
|
|
||||||
ilsProxy (2048),
|
|
||||||
all(4095)
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The type of this entry."
|
|
||||||
::= { alNatAllTranslationEntry 8 }
|
|
||||||
|
|
||||||
alNatAllTranslationDirection OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
inbound (1),
|
|
||||||
outbound (2)
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The direction that this rule acts upon."
|
|
||||||
::= { alNatAllTranslationEntry 9 }
|
|
||||||
|
|
||||||
alNatAllTranslationBytes OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of bytes that have been translated."
|
|
||||||
::= { alNatAllTranslationEntry 10 }
|
|
||||||
|
|
||||||
alNatAllTranslationPackets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of packets that have been translated."
|
|
||||||
::= { alNatAllTranslationEntry 11 }
|
|
||||||
|
|
||||||
altigaNatStatsMibConformance OBJECT IDENTIFIER ::= { altigaNatStatsMibModule 1 }
|
|
||||||
altigaNatStatsMibCompliances OBJECT IDENTIFIER ::= { altigaNatStatsMibConformance 1 }
|
|
||||||
|
|
||||||
altigaNatStatsMibCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for agents which
|
|
||||||
implement the Altiga NAT Statistics MIB."
|
|
||||||
MODULE
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
altigaNatStatsGroup
|
|
||||||
}
|
|
||||||
::= { altigaNatStatsMibCompliances 1 }
|
|
||||||
|
|
||||||
altigaNatStatsGroup OBJECT-GROUP
|
|
||||||
OBJECTS
|
|
||||||
{
|
|
||||||
alNatStatsPacketsIn,
|
|
||||||
alNatStatsPacketsOut,
|
|
||||||
alNatStatsTotalTranslations,
|
|
||||||
alNatStatsActiveTranslations,
|
|
||||||
alNatStatsMaxTranslations,
|
|
||||||
alNatTranslationSrcAddress,
|
|
||||||
alNatTranslationSrcPort,
|
|
||||||
alNatTranslationDestAddress,
|
|
||||||
alNatTranslationDestPort,
|
|
||||||
alNatTranslationAddress,
|
|
||||||
alNatTranslationPort,
|
|
||||||
alNatTranslationAge,
|
|
||||||
alNatTranslationType,
|
|
||||||
alNatTranslationDirection,
|
|
||||||
alNatTranslationBytes,
|
|
||||||
alNatTranslationPackets,
|
|
||||||
alNatAllTranslationSrcAddress,
|
|
||||||
alNatAllTranslationSrcPort,
|
|
||||||
alNatAllTranslationDestAddress,
|
|
||||||
alNatAllTranslationDestPort,
|
|
||||||
alNatAllTranslationAddress,
|
|
||||||
alNatAllTranslationPort,
|
|
||||||
alNatAllTranslationAge,
|
|
||||||
alNatAllTranslationType,
|
|
||||||
alNatAllTranslationDirection,
|
|
||||||
alNatAllTranslationBytes,
|
|
||||||
alNatAllTranslationPackets
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The objects for NAT statistics"
|
|
||||||
::= { alNatGroup 2 }
|
|
||||||
END
|
|
||||||
|
|
@ -1,341 +0,0 @@
|
|||||||
-- *------------------------------------------------------------------
|
|
||||||
-- * ALTIGA-PPP-STATS-MIB.my: Altiga PPP Statistics MIB.
|
|
||||||
-- *
|
|
||||||
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
|
|
||||||
-- *
|
|
||||||
-- * Copyright (c) 2002 by Cisco Systems, Inc.
|
|
||||||
-- * All rights reserved.
|
|
||||||
-- *
|
|
||||||
-- *------------------------------------------------------------------
|
|
||||||
|
|
||||||
ALTIGA-PPP-STATS-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY, OBJECT-TYPE, Counter32, Integer32
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
TruthValue, RowStatus
|
|
||||||
FROM SNMPv2-TC
|
|
||||||
OBJECT-GROUP, MODULE-COMPLIANCE
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
alStatsPpp, alPppGroup
|
|
||||||
FROM ALTIGA-MIB
|
|
||||||
alPppMibModule
|
|
||||||
FROM ALTIGA-GLOBAL-REG;
|
|
||||||
|
|
||||||
altigaPppStatsMibModule MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200209051300Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
E-mail: cs-cvpn3000@cisco.com"
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
"The Altiga PPP Statistics MIB models counters and objects that are
|
|
||||||
of management interest for PPP.
|
|
||||||
|
|
||||||
Acronyms
|
|
||||||
The following acronyms are used in this document:
|
|
||||||
|
|
||||||
MIB: Management Information Base
|
|
||||||
|
|
||||||
MPPC: Microsoft Point-to-Point Compression
|
|
||||||
|
|
||||||
MPPE: Microsoft Point-to-Point Encryption
|
|
||||||
|
|
||||||
PPP: Point-to-Point Protocol
|
|
||||||
|
|
||||||
"
|
|
||||||
|
|
||||||
REVISION "200209051300Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added module compliance and range."
|
|
||||||
|
|
||||||
REVISION "200207100000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Updated with new header"
|
|
||||||
|
|
||||||
::= { alPppMibModule 2 }
|
|
||||||
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
-- MIB Objects
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
|
|
||||||
alStatsPppGlobal OBJECT IDENTIFIER ::= { alStatsPpp 1 }
|
|
||||||
|
|
||||||
-- Any global stuff here...
|
|
||||||
|
|
||||||
alPppStatsTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AlPppStatsEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"List of active PPP links."
|
|
||||||
::= { alStatsPpp 2 }
|
|
||||||
|
|
||||||
alPppStatsEntry OBJECT-TYPE
|
|
||||||
SYNTAX AlPppStatsEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry in the alPppStatsTable."
|
|
||||||
INDEX { alPppStatsIfIndex }
|
|
||||||
::= { alPppStatsTable 1 }
|
|
||||||
|
|
||||||
AlPppStatsEntry ::= SEQUENCE {
|
|
||||||
alPppStatsRowStatus RowStatus,
|
|
||||||
alPppStatsIfIndex Integer32,
|
|
||||||
alPppStatsOctetsSent Counter32,
|
|
||||||
alPppStatsOctetsRcvd Counter32,
|
|
||||||
alPppStatsPacketsSent Counter32,
|
|
||||||
alPppStatsPacketsRcvd Counter32,
|
|
||||||
alPppStatsMppcStatus TruthValue,
|
|
||||||
alPppStatsMppeStatus TruthValue,
|
|
||||||
alPppStatsMppcMppeReset Counter32,
|
|
||||||
alPppStatsMppcOctSentAfterComp Counter32,
|
|
||||||
alPppStatsMppcOctSentBeforeComp Counter32,
|
|
||||||
alPppStatsMppcOctSentUnComp Counter32,
|
|
||||||
alPppStatsMppcOctRcvdBeforeDeComp Counter32,
|
|
||||||
alPppStatsMppcOctRcvdAfterDeComp Counter32,
|
|
||||||
alPppStatsMppcOctRcvdUnComp Counter32
|
|
||||||
}
|
|
||||||
|
|
||||||
alPppStatsRowStatus OBJECT-TYPE
|
|
||||||
SYNTAX RowStatus
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The status of this row. Used to terminate the session."
|
|
||||||
::= { alPppStatsEntry 1 }
|
|
||||||
|
|
||||||
alPppStatsIfIndex OBJECT-TYPE
|
|
||||||
SYNTAX Integer32(0..2147483647)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The index of this row."
|
|
||||||
::= { alPppStatsEntry 2 }
|
|
||||||
|
|
||||||
alPppStatsOctetsSent OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of octets sent during this session."
|
|
||||||
::= { alPppStatsEntry 3 }
|
|
||||||
|
|
||||||
alPppStatsOctetsRcvd OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of octets received during this session."
|
|
||||||
::= { alPppStatsEntry 4 }
|
|
||||||
|
|
||||||
alPppStatsPacketsSent OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of packets sent during this session."
|
|
||||||
::= { alPppStatsEntry 5 }
|
|
||||||
|
|
||||||
alPppStatsPacketsRcvd OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of packets received during this session."
|
|
||||||
::= { alPppStatsEntry 6 }
|
|
||||||
|
|
||||||
alPppStatsMppcStatus OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The status of the MPPC setting during this session."
|
|
||||||
::= { alPppStatsEntry 7 }
|
|
||||||
|
|
||||||
alPppStatsMppeStatus OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The status of the MPPE setting during this session."
|
|
||||||
::= { alPppStatsEntry 8 }
|
|
||||||
|
|
||||||
alPppStatsMppcMppeReset OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The reset MPPC and MPPE counts for this session."
|
|
||||||
::= { alPppStatsEntry 9 }
|
|
||||||
|
|
||||||
alPppStatsMppcOctSentAfterComp OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of octets sent after compression during this session."
|
|
||||||
::= { alPppStatsEntry 10 }
|
|
||||||
|
|
||||||
alPppStatsMppcOctSentBeforeComp OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of octets sent before compression during this session."
|
|
||||||
::= { alPppStatsEntry 11 }
|
|
||||||
|
|
||||||
alPppStatsMppcOctSentUnComp OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of octets sent uncompressed during this session."
|
|
||||||
::= { alPppStatsEntry 12 }
|
|
||||||
|
|
||||||
alPppStatsMppcOctRcvdBeforeDeComp OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of octets received before decompression during this session."
|
|
||||||
::= { alPppStatsEntry 13 }
|
|
||||||
|
|
||||||
alPppStatsMppcOctRcvdAfterDeComp OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of octets received after decompression during this session."
|
|
||||||
::= { alPppStatsEntry 14 }
|
|
||||||
|
|
||||||
alPppStatsMppcOctRcvdUnComp OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of octets received uncompressed during this session."
|
|
||||||
::= { alPppStatsEntry 15 }
|
|
||||||
|
|
||||||
-- More Tunnel stuff here.
|
|
||||||
|
|
||||||
alStatsPppMppcGlobal OBJECT IDENTIFIER ::= { alStatsPpp 3 }
|
|
||||||
|
|
||||||
alPppStatsGlobMppcMppeResetsRcvd OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Reset the number of octets received."
|
|
||||||
::= { alStatsPppMppcGlobal 1 }
|
|
||||||
|
|
||||||
alPppStatsGlobMppcMppeResetsSent OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Reset the number of octets sent."
|
|
||||||
::= { alStatsPppMppcGlobal 2 }
|
|
||||||
|
|
||||||
alPppStatsGlobMppcOctSentAfterComp OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Total number of octets sent after compression."
|
|
||||||
::= { alStatsPppMppcGlobal 3 }
|
|
||||||
|
|
||||||
alPppStatsGlobMppcOctSentBeforeComp OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Total number of octets sent before compression."
|
|
||||||
::= { alStatsPppMppcGlobal 4 }
|
|
||||||
|
|
||||||
alPppStatsGlobMppcOctSentUnComp OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Total number of octets sent uncompressed."
|
|
||||||
::= { alStatsPppMppcGlobal 5 }
|
|
||||||
|
|
||||||
alPppStatsGlobMppcOctRcvdBeforeDeComp OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Total number of octets received before decompression."
|
|
||||||
::= { alStatsPppMppcGlobal 6 }
|
|
||||||
|
|
||||||
alPppStatsGlobMppcOctRcvdAfterDeComp OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Total number of octets received after decompression."
|
|
||||||
::= { alStatsPppMppcGlobal 7 }
|
|
||||||
|
|
||||||
alPppStatsGlobMppcOctRcvdUnComp OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Total number of octets received uncompressed."
|
|
||||||
::= { alStatsPppMppcGlobal 8 }
|
|
||||||
|
|
||||||
altigaPppStatsMibConformance OBJECT IDENTIFIER ::= { altigaPppStatsMibModule 1 }
|
|
||||||
altigaPppStatsMibCompliances OBJECT IDENTIFIER ::= { altigaPppStatsMibConformance 1 }
|
|
||||||
|
|
||||||
altigaPppStatsMibCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for agents which
|
|
||||||
implement the Altiga PPP Statistics MIB."
|
|
||||||
MODULE
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
altigaPppStatsGroup
|
|
||||||
}
|
|
||||||
::= { altigaPppStatsMibCompliances 1 }
|
|
||||||
|
|
||||||
altigaPppStatsGroup OBJECT-GROUP
|
|
||||||
OBJECTS
|
|
||||||
{
|
|
||||||
alPppStatsRowStatus,
|
|
||||||
alPppStatsIfIndex,
|
|
||||||
alPppStatsOctetsSent,
|
|
||||||
alPppStatsOctetsRcvd,
|
|
||||||
alPppStatsPacketsSent,
|
|
||||||
alPppStatsPacketsRcvd,
|
|
||||||
alPppStatsMppcStatus,
|
|
||||||
alPppStatsMppeStatus,
|
|
||||||
alPppStatsMppcMppeReset,
|
|
||||||
alPppStatsMppcOctSentAfterComp,
|
|
||||||
alPppStatsMppcOctSentBeforeComp,
|
|
||||||
alPppStatsMppcOctSentUnComp,
|
|
||||||
alPppStatsMppcOctRcvdBeforeDeComp,
|
|
||||||
alPppStatsMppcOctRcvdAfterDeComp,
|
|
||||||
alPppStatsMppcOctRcvdUnComp,
|
|
||||||
alPppStatsGlobMppcMppeResetsRcvd,
|
|
||||||
alPppStatsGlobMppcMppeResetsSent,
|
|
||||||
alPppStatsGlobMppcOctSentAfterComp,
|
|
||||||
alPppStatsGlobMppcOctSentBeforeComp,
|
|
||||||
alPppStatsGlobMppcOctSentUnComp,
|
|
||||||
alPppStatsGlobMppcOctRcvdBeforeDeComp,
|
|
||||||
alPppStatsGlobMppcOctRcvdAfterDeComp,
|
|
||||||
alPppStatsGlobMppcOctRcvdUnComp
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The objects for PPP statistics."
|
|
||||||
::= { alPppGroup 2 }
|
|
||||||
|
|
||||||
END
|
|
@ -1,357 +0,0 @@
|
|||||||
-- *------------------------------------------------------------------
|
|
||||||
-- * ALTIGA-PPPOE-STATS-MIB.my: Altiga PPPoE Statistics MIB.
|
|
||||||
-- *
|
|
||||||
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
|
|
||||||
-- *
|
|
||||||
-- * Copyright (c) 2002,2007 by Cisco Systems, Inc.
|
|
||||||
-- * All rights reserved.
|
|
||||||
-- *
|
|
||||||
-- *------------------------------------------------------------------
|
|
||||||
|
|
||||||
ALTIGA-PPPOE-STATS-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY, OBJECT-TYPE, Integer32, Counter32,
|
|
||||||
Gauge32, Unsigned32
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
DisplayString, MacAddress
|
|
||||||
FROM SNMPv2-TC
|
|
||||||
OBJECT-GROUP, MODULE-COMPLIANCE
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
alStatsPPPoE, alPPPoEGroup
|
|
||||||
FROM ALTIGA-MIB
|
|
||||||
alPPPoEMibModule
|
|
||||||
FROM ALTIGA-GLOBAL-REG;
|
|
||||||
|
|
||||||
altigaPPPoEStatsMibModule MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200707110000Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
E-mail: cs-cvpn3000@cisco.com"
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
"The Altiga PPPoE Statistics MIB models counters and objects that are
|
|
||||||
of management interest for PPPoE.
|
|
||||||
|
|
||||||
Acronyms
|
|
||||||
The following acronyms are used in this document:
|
|
||||||
|
|
||||||
MIB: Management Information Base
|
|
||||||
|
|
||||||
PADI: PPPoE Active Discovery Initiation
|
|
||||||
|
|
||||||
PADO: PPPoE Active Discovery Offer
|
|
||||||
|
|
||||||
PADS: PPPoE Active Discovery Session-confirmation
|
|
||||||
|
|
||||||
PADT: PPPoE Active Discovery Terminate
|
|
||||||
|
|
||||||
PPPoE: Point-to-Point Protocol over Ethernet
|
|
||||||
|
|
||||||
"
|
|
||||||
REVISION "200707110000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added range for Index Object alPPPoEStatsIfIndex object "
|
|
||||||
REVISION "200209051300Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added module compliance."
|
|
||||||
|
|
||||||
REVISION "200207100000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Updated with new header"
|
|
||||||
|
|
||||||
::= { alPPPoEMibModule 2 }
|
|
||||||
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
-- MIB Objects
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
|
|
||||||
alStatsPPPoEGlobal OBJECT IDENTIFIER ::= { alStatsPPPoE 1 }
|
|
||||||
|
|
||||||
alPPPoEStatsActiveSessions OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of active sessions on the interface
|
|
||||||
(currently should max at 1)."
|
|
||||||
::= { alStatsPPPoEGlobal 1 }
|
|
||||||
|
|
||||||
alPPPoEStatsTotalSessions OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Total Sessions since last reset."
|
|
||||||
::= { alStatsPPPoEGlobal 2 }
|
|
||||||
|
|
||||||
alPPPoEStatsMaxSessions OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Peak number of sessions since last reset."
|
|
||||||
::= { alStatsPPPoEGlobal 3 }
|
|
||||||
|
|
||||||
alPPPoEStatsIfTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AlPPPoEStatsIfEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Contains the PPPoE binding entries for stats."
|
|
||||||
::= { alStatsPPPoE 2 }
|
|
||||||
|
|
||||||
alPPPoEStatsIfEntry OBJECT-TYPE
|
|
||||||
SYNTAX AlPPPoEStatsIfEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Contains the PPPoE entries for the status
|
|
||||||
binding table."
|
|
||||||
INDEX { alPPPoEStatsIfIndex }
|
|
||||||
::= { alPPPoEStatsIfTable 1 }
|
|
||||||
|
|
||||||
AlPPPoEStatsIfEntry ::= SEQUENCE {
|
|
||||||
alPPPoEStatsIfIndex Integer32,
|
|
||||||
alPPPoEStatsIfPADTRx Counter32,
|
|
||||||
alPPPoEStatsIfPADTTx Counter32,
|
|
||||||
alPPPoEStatsIfGenericErrorsRx Counter32,
|
|
||||||
alPPPoEStatsIfMalformedPacketsRx Counter32,
|
|
||||||
alPPPoEStatsIfPADITimeouts Counter32,
|
|
||||||
alPPPoEStatsIfPADRTimeouts Counter32,
|
|
||||||
alPPPoEStatsIfMultPADORx Counter32,
|
|
||||||
alPPPoEStatsIfSessionID Integer32,
|
|
||||||
alPPPoEStatsIfPeerAddr MacAddress,
|
|
||||||
alPPPoEStatsIfSessionState INTEGER,
|
|
||||||
alPPPoEStatsIfVersion Integer32,
|
|
||||||
alPPPoEStatsIfType Integer32,
|
|
||||||
alPPPoEStatsIfConnectTime Unsigned32,
|
|
||||||
alPPPoEStatsIfDuration Unsigned32,
|
|
||||||
alPPPoEStatsIfPeerName DisplayString,
|
|
||||||
alPPPoEStatsIfACCookie OCTET STRING,
|
|
||||||
alPPPoEStatsIfHostUnique OCTET STRING,
|
|
||||||
alPPPoEStatsIfRelaySessID OCTET STRING
|
|
||||||
}
|
|
||||||
|
|
||||||
alPPPoEStatsIfIndex OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (1..2147483647)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The interface index for PPPoE status binding table."
|
|
||||||
::= { alPPPoEStatsIfEntry 1 }
|
|
||||||
|
|
||||||
alPPPoEStatsIfPADTRx OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Number of PADT received."
|
|
||||||
::= { alPPPoEStatsIfEntry 2 }
|
|
||||||
|
|
||||||
alPPPoEStatsIfPADTTx OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Number of PADT transmitted."
|
|
||||||
::= { alPPPoEStatsIfEntry 3 }
|
|
||||||
|
|
||||||
alPPPoEStatsIfGenericErrorsRx OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Number of Generic Errors Received."
|
|
||||||
::= { alPPPoEStatsIfEntry 4 }
|
|
||||||
|
|
||||||
alPPPoEStatsIfMalformedPacketsRx OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Number of back packets received."
|
|
||||||
::= { alPPPoEStatsIfEntry 5 }
|
|
||||||
|
|
||||||
alPPPoEStatsIfPADITimeouts OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Number of times timedout waiting for a PADO."
|
|
||||||
::= { alPPPoEStatsIfEntry 6 }
|
|
||||||
|
|
||||||
alPPPoEStatsIfPADRTimeouts OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Number of times timed out waiting for a PADS."
|
|
||||||
::= { alPPPoEStatsIfEntry 7 }
|
|
||||||
|
|
||||||
alPPPoEStatsIfMultPADORx OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Number of times we received more than 1 PADO."
|
|
||||||
::= { alPPPoEStatsIfEntry 8 }
|
|
||||||
|
|
||||||
alPPPoEStatsIfSessionID OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Session ID given by the AC."
|
|
||||||
::= { alPPPoEStatsIfEntry 9 }
|
|
||||||
|
|
||||||
alPPPoEStatsIfPeerAddr OBJECT-TYPE
|
|
||||||
SYNTAX MacAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"MAC address of the remote AC."
|
|
||||||
::= { alPPPoEStatsIfEntry 10 }
|
|
||||||
|
|
||||||
alPPPoEStatsIfSessionState OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
noState(1),
|
|
||||||
pADISent(2),
|
|
||||||
pADIRcvd(3),
|
|
||||||
pADOSent(4),
|
|
||||||
pADORcvd(5),
|
|
||||||
pADRSent(6),
|
|
||||||
pADRRcvd(7),
|
|
||||||
pADSSent(8),
|
|
||||||
pADSRcvd(9),
|
|
||||||
sessionStage(10)
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"State that the session is in."
|
|
||||||
::= { alPPPoEStatsIfEntry 11 }
|
|
||||||
|
|
||||||
alPPPoEStatsIfVersion OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Version as given in the PPPoE RFC."
|
|
||||||
::= { alPPPoEStatsIfEntry 12 }
|
|
||||||
|
|
||||||
alPPPoEStatsIfType OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Type as given in the PPPoE RFC."
|
|
||||||
::= { alPPPoEStatsIfEntry 13 }
|
|
||||||
|
|
||||||
alPPPoEStatsIfConnectTime OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Time_t of when the session was established."
|
|
||||||
::= { alPPPoEStatsIfEntry 14 }
|
|
||||||
|
|
||||||
alPPPoEStatsIfDuration OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Number of seconds since the session was
|
|
||||||
established."
|
|
||||||
::= { alPPPoEStatsIfEntry 15 }
|
|
||||||
|
|
||||||
alPPPoEStatsIfPeerName OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"UTF-8 string of the AC name."
|
|
||||||
::= { alPPPoEStatsIfEntry 16 }
|
|
||||||
|
|
||||||
alPPPoEStatsIfACCookie OBJECT-TYPE
|
|
||||||
SYNTAX OCTET STRING (SIZE(0..64))
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Binary sequence representing the AC cookie given in
|
|
||||||
negotiations."
|
|
||||||
::= { alPPPoEStatsIfEntry 17 }
|
|
||||||
|
|
||||||
alPPPoEStatsIfHostUnique OBJECT-TYPE
|
|
||||||
SYNTAX OCTET STRING (SIZE(4))
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Binary sequence representing the value we assigned the PADI."
|
|
||||||
::= { alPPPoEStatsIfEntry 18 }
|
|
||||||
|
|
||||||
alPPPoEStatsIfRelaySessID OBJECT-TYPE
|
|
||||||
SYNTAX OCTET STRING (SIZE(2))
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"12 octets representing the Relay session if one exists."
|
|
||||||
::= { alPPPoEStatsIfEntry 19 }
|
|
||||||
|
|
||||||
altigaPPPoEStatsMibConformance OBJECT IDENTIFIER ::= { altigaPPPoEStatsMibModule 1 }
|
|
||||||
altigaPPPoEStatsMibCompliances OBJECT IDENTIFIER ::= { altigaPPPoEStatsMibConformance 1 }
|
|
||||||
|
|
||||||
altigaPPPoEStatsMibCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for agents which
|
|
||||||
implement the Altiga PPPoE Statistics MIB."
|
|
||||||
MODULE
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
altigaPPPoEStatsGroup
|
|
||||||
}
|
|
||||||
::= { altigaPPPoEStatsMibCompliances 1 }
|
|
||||||
|
|
||||||
altigaPPPoEStatsGroup OBJECT-GROUP
|
|
||||||
OBJECTS
|
|
||||||
{
|
|
||||||
alPPPoEStatsActiveSessions,
|
|
||||||
alPPPoEStatsTotalSessions,
|
|
||||||
alPPPoEStatsMaxSessions,
|
|
||||||
alPPPoEStatsIfIndex,
|
|
||||||
alPPPoEStatsIfPADTRx,
|
|
||||||
alPPPoEStatsIfPADTTx,
|
|
||||||
alPPPoEStatsIfGenericErrorsRx,
|
|
||||||
alPPPoEStatsIfMalformedPacketsRx,
|
|
||||||
alPPPoEStatsIfPADITimeouts,
|
|
||||||
alPPPoEStatsIfPADRTimeouts,
|
|
||||||
alPPPoEStatsIfMultPADORx,
|
|
||||||
alPPPoEStatsIfSessionID,
|
|
||||||
alPPPoEStatsIfPeerAddr,
|
|
||||||
alPPPoEStatsIfSessionState,
|
|
||||||
alPPPoEStatsIfVersion,
|
|
||||||
alPPPoEStatsIfType,
|
|
||||||
alPPPoEStatsIfConnectTime,
|
|
||||||
alPPPoEStatsIfDuration,
|
|
||||||
alPPPoEStatsIfPeerName,
|
|
||||||
alPPPoEStatsIfACCookie,
|
|
||||||
alPPPoEStatsIfHostUnique,
|
|
||||||
alPPPoEStatsIfRelaySessID
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The objects for PPPoE Statistics."
|
|
||||||
::= { alPPPoEGroup 2 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,811 +0,0 @@
|
|||||||
-- *------------------------------------------------------------------
|
|
||||||
-- * ALTIGA-PPTP-STATS-MIB.my: Altiga PPTP Statistics MIB.
|
|
||||||
-- *
|
|
||||||
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
|
|
||||||
-- *
|
|
||||||
-- * Copyright (c) 2002 by Cisco Systems, Inc.
|
|
||||||
-- * All rights reserved.
|
|
||||||
-- *
|
|
||||||
-- *------------------------------------------------------------------
|
|
||||||
|
|
||||||
ALTIGA-PPTP-STATS-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY, OBJECT-TYPE, Integer32, IpAddress, Counter32, Gauge32
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
RowStatus, DisplayString, TruthValue
|
|
||||||
FROM SNMPv2-TC
|
|
||||||
OBJECT-GROUP, MODULE-COMPLIANCE
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
alStatsPptp, alPptpGroup
|
|
||||||
FROM ALTIGA-MIB
|
|
||||||
alPptpMibModule
|
|
||||||
FROM ALTIGA-GLOBAL-REG;
|
|
||||||
|
|
||||||
altigaPptpStatsMibModule MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200209051300Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
E-mail: cs-cvpn3000@cisco.com"
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
"The Altiga PPTP Statistics MIB models counters and objects that are
|
|
||||||
of management interest for PPTP tunnels.
|
|
||||||
|
|
||||||
Acronyms
|
|
||||||
The following acronyms are used in this document:
|
|
||||||
|
|
||||||
MIB: Management Information Base
|
|
||||||
|
|
||||||
PPTP: Point-to-Point Tunneling Protocol
|
|
||||||
|
|
||||||
"
|
|
||||||
|
|
||||||
REVISION "200209051300Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added module compliance."
|
|
||||||
|
|
||||||
REVISION "200207100000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Updated with new header"
|
|
||||||
|
|
||||||
::= { alPptpMibModule 2 }
|
|
||||||
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
-- MIB Objects
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
|
|
||||||
alStatsPptpGlobal OBJECT IDENTIFIER ::= { alStatsPptp 1 }
|
|
||||||
|
|
||||||
alPptpStatsLocalProtVers OBJECT-TYPE
|
|
||||||
SYNTAX OCTET STRING (SIZE(2))
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object describes the protocol version and
|
|
||||||
revision of the local implementation. The
|
|
||||||
first octet contains the protocol version. The
|
|
||||||
second octet contains the protocol revision."
|
|
||||||
::= { alStatsPptpGlobal 1 }
|
|
||||||
|
|
||||||
alPptpStatsLocalFraming OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..3)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A set of bits indicating the PPTP framing capabilities
|
|
||||||
of this system."
|
|
||||||
::= { alStatsPptpGlobal 2 }
|
|
||||||
|
|
||||||
alPptpStatsLocalBearer OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..3)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A set of bits indicating the PPTP bearer capabilities
|
|
||||||
of this system."
|
|
||||||
::= { alStatsPptpGlobal 3 }
|
|
||||||
|
|
||||||
alPptpStatsLocalFirmwareRev OBJECT-TYPE
|
|
||||||
SYNTAX OCTET STRING(SIZE(2))
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object defines the local firmware revision."
|
|
||||||
::= { alStatsPptpGlobal 4 }
|
|
||||||
|
|
||||||
alPptpStatsTotalTunnels OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object returns the total number of tunnels,
|
|
||||||
including those that did not reach the established
|
|
||||||
state."
|
|
||||||
::= { alStatsPptpGlobal 5 }
|
|
||||||
|
|
||||||
alPptpStatsActiveTunnels OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object returns the number of tunnels that
|
|
||||||
are currently active."
|
|
||||||
::= { alStatsPptpGlobal 6 }
|
|
||||||
|
|
||||||
alPptpStatsMaxTunnels OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The maximum number of simultaneously active PPTP tunnels
|
|
||||||
since the system was booted."
|
|
||||||
::= { alStatsPptpGlobal 7 }
|
|
||||||
|
|
||||||
alPptpStatsTotalSessions OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object returns the total number of sessions,
|
|
||||||
including those that did not reach the established
|
|
||||||
state."
|
|
||||||
::= { alStatsPptpGlobal 8 }
|
|
||||||
|
|
||||||
alPptpStatsActiveSessions OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object returns the number of sessions that
|
|
||||||
are currently active."
|
|
||||||
::= { alStatsPptpGlobal 9 }
|
|
||||||
|
|
||||||
alPptpStatsMaxSessions OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The maximum number of simultaneously active PPTP sessions
|
|
||||||
since the system was booted."
|
|
||||||
::= { alStatsPptpGlobal 10 }
|
|
||||||
|
|
||||||
alPptpStatsControlRecvOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object returns the number of control channel
|
|
||||||
octets received."
|
|
||||||
::= { alStatsPptpGlobal 11 }
|
|
||||||
|
|
||||||
alPptpStatsControlRecvPackets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object returns the number of control packets
|
|
||||||
received."
|
|
||||||
::= { alStatsPptpGlobal 12 }
|
|
||||||
|
|
||||||
alPptpStatsControlRecvDiscards OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object returns the number of control packets
|
|
||||||
received that were discarded."
|
|
||||||
::= { alStatsPptpGlobal 13 }
|
|
||||||
|
|
||||||
alPptpStatsControlSendOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object returns the number of control channel
|
|
||||||
octets that were transmitted to tunnel endpoints."
|
|
||||||
::= { alStatsPptpGlobal 14 }
|
|
||||||
|
|
||||||
alPptpStatsControlSendPackets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object returns the number of control packets
|
|
||||||
that were transmitted to tunnel endpoints."
|
|
||||||
::= { alStatsPptpGlobal 15 }
|
|
||||||
|
|
||||||
alPptpStatsPayloadRecvOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object returns the number of payload channel
|
|
||||||
octets that were received."
|
|
||||||
::= { alStatsPptpGlobal 16 }
|
|
||||||
|
|
||||||
alPptpStatsPayloadRecvPackets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object returns the number of payload packets
|
|
||||||
that were received."
|
|
||||||
::= { alStatsPptpGlobal 17 }
|
|
||||||
|
|
||||||
alPptpStatsPayloadRecvDiscards OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object returns the number of received payload
|
|
||||||
packets that were discarded."
|
|
||||||
::= { alStatsPptpGlobal 18 }
|
|
||||||
|
|
||||||
alPptpStatsPayloadSendOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object returns the number of payload channel
|
|
||||||
octets that were transmitted to tunnel peers."
|
|
||||||
::= { alStatsPptpGlobal 19 }
|
|
||||||
|
|
||||||
alPptpStatsPayloadSendPackets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object returns the number of payload packets
|
|
||||||
that were transmitted to tunnel peers."
|
|
||||||
::= { alStatsPptpGlobal 20 }
|
|
||||||
|
|
||||||
alPptpStatsTunnelTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AlPptpStatsTunnelEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The PPTP tunnel status and statistics table."
|
|
||||||
::= { alStatsPptp 2 }
|
|
||||||
|
|
||||||
alPptpStatsTunnelEntry OBJECT-TYPE
|
|
||||||
SYNTAX AlPptpStatsTunnelEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry in the alPptpStatsTunnelTable."
|
|
||||||
INDEX { alPptpStatsTunnelPeerIpAddr }
|
|
||||||
::= { alPptpStatsTunnelTable 1 }
|
|
||||||
|
|
||||||
AlPptpStatsTunnelEntry ::= SEQUENCE {
|
|
||||||
alPptpStatsTunnelRowStatus RowStatus,
|
|
||||||
alPptpStatsTunnelPeerIpAddr IpAddress,
|
|
||||||
alPptpStatsTunnelDatastreamId Integer32,
|
|
||||||
alPptpStatsTunnelLocalIpAddr IpAddress,
|
|
||||||
alPptpStatsTunnelPeerHostName DisplayString,
|
|
||||||
alPptpStatsTunnelPeerVendorName DisplayString,
|
|
||||||
alPptpStatsTunnelPeerFirmwareRev OCTET STRING,
|
|
||||||
alPptpStatsTunnelPeerProtVers OCTET STRING,
|
|
||||||
alPptpStatsTunnelPeerFramingCap Integer32,
|
|
||||||
alPptpStatsTunnelPeerBearerCap Integer32,
|
|
||||||
alPptpStatsTunnelPeerMaxChan Integer32,
|
|
||||||
alPptpStatsTunnelActiveSessions Counter32
|
|
||||||
}
|
|
||||||
|
|
||||||
alPptpStatsTunnelRowStatus OBJECT-TYPE
|
|
||||||
SYNTAX RowStatus
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The status of this row. Used to terminate the tunnel,
|
|
||||||
cannot be used to create a tunnel."
|
|
||||||
::= { alPptpStatsTunnelEntry 1 }
|
|
||||||
|
|
||||||
alPptpStatsTunnelPeerIpAddr OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The peer's IP address for this tunnel."
|
|
||||||
::= { alPptpStatsTunnelEntry 2 }
|
|
||||||
|
|
||||||
alPptpStatsTunnelDatastreamId OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The IP-GRE datastream ID of this tunnel."
|
|
||||||
::= { alPptpStatsTunnelEntry 3 }
|
|
||||||
|
|
||||||
alPptpStatsTunnelLocalIpAddr OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The local IP address for this tunnel."
|
|
||||||
::= { alPptpStatsTunnelEntry 4 }
|
|
||||||
|
|
||||||
alPptpStatsTunnelPeerHostName OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The peer's host name, as indicated by the peer in a
|
|
||||||
Start-Control-Connection packet."
|
|
||||||
::= { alPptpStatsTunnelEntry 5 }
|
|
||||||
|
|
||||||
alPptpStatsTunnelPeerVendorName OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The peer's vendor name, as indicated by the peer in a
|
|
||||||
Start-Control-Connection packet."
|
|
||||||
::= { alPptpStatsTunnelEntry 6 }
|
|
||||||
|
|
||||||
alPptpStatsTunnelPeerFirmwareRev OBJECT-TYPE
|
|
||||||
SYNTAX OCTET STRING (SIZE(2))
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object contains the tunnel peer's firmware
|
|
||||||
revision number. If the tunnel is idle this object
|
|
||||||
should maintain its value from the last time it
|
|
||||||
was connected."
|
|
||||||
::= { alPptpStatsTunnelEntry 7 }
|
|
||||||
|
|
||||||
alPptpStatsTunnelPeerProtVers OBJECT-TYPE
|
|
||||||
SYNTAX OCTET STRING (SIZE(2))
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object describes the protocol version and
|
|
||||||
revision of the tunnel peers implementation. The
|
|
||||||
first octet contains the protocol version. The
|
|
||||||
second octet contains the protocol revision."
|
|
||||||
::= { alPptpStatsTunnelEntry 8 }
|
|
||||||
|
|
||||||
alPptpStatsTunnelPeerFramingCap OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..3)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object describes the Framing Capabilities of
|
|
||||||
the tunnel peer. If the tunnel is idle this object
|
|
||||||
should maintain its value from the last time it was
|
|
||||||
connected."
|
|
||||||
::= { alPptpStatsTunnelEntry 9 }
|
|
||||||
|
|
||||||
alPptpStatsTunnelPeerBearerCap OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..3)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object describes the Bearer Capabilities of
|
|
||||||
the tunnel peer. If the tunnel is idle this object
|
|
||||||
should maintain its value from the last time it was
|
|
||||||
connected."
|
|
||||||
::= { alPptpStatsTunnelEntry 10 }
|
|
||||||
|
|
||||||
alPptpStatsTunnelPeerMaxChan OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The peer's maximum channels value, as indicated by
|
|
||||||
the peer in a Start-Control-Connection packet."
|
|
||||||
::= { alPptpStatsTunnelEntry 11 }
|
|
||||||
|
|
||||||
alPptpStatsTunnelActiveSessions OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object contains the total number of sessions
|
|
||||||
for this tunnel."
|
|
||||||
::= { alPptpStatsTunnelEntry 12 }
|
|
||||||
|
|
||||||
alPptpStatsSessionTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AlPptpStatsSessionEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"List of active sessions within tunnels."
|
|
||||||
::= { alStatsPptp 3 }
|
|
||||||
|
|
||||||
alPptpStatsSessionEntry OBJECT-TYPE
|
|
||||||
SYNTAX AlPptpStatsSessionEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry in the alPptpStatsSessionTable."
|
|
||||||
INDEX { alPptpStatsSessionDatastreamId }
|
|
||||||
::= { alPptpStatsSessionTable 1 }
|
|
||||||
|
|
||||||
AlPptpStatsSessionEntry ::= SEQUENCE {
|
|
||||||
alPptpStatsSessionRowStatus RowStatus,
|
|
||||||
alPptpStatsSessionDatastreamId Integer32,
|
|
||||||
alPptpStatsSessionLocalCallId Integer32,
|
|
||||||
alPptpStatsSessionPeerCallId Integer32,
|
|
||||||
alPptpStatsSessionUserName DisplayString,
|
|
||||||
alPptpStatsSessionSerial Integer32,
|
|
||||||
alPptpStatsSessionMinimumSpeed Integer32,
|
|
||||||
alPptpStatsSessionMaximumSpeed Integer32,
|
|
||||||
alPptpStatsSessionConnectSpeed Integer32,
|
|
||||||
alPptpStatsSessionBearerType INTEGER,
|
|
||||||
alPptpStatsSessionFramingType INTEGER,
|
|
||||||
alPptpStatsSessionPhysicalChannel Integer32,
|
|
||||||
alPptpStatsSessionLocalWindowSize Integer32,
|
|
||||||
alPptpStatsSessionPeerWindowSize Integer32,
|
|
||||||
alPptpStatsSessionLocalPpd Integer32,
|
|
||||||
alPptpStatsSessionPeerPpd Integer32,
|
|
||||||
alPptpStatsSessionRecvOctets Counter32,
|
|
||||||
alPptpStatsSessionRecvPackets Counter32,
|
|
||||||
alPptpStatsSessionRecvDiscards Counter32,
|
|
||||||
alPptpStatsSessionRecvZLB Counter32,
|
|
||||||
alPptpStatsSessionSendOctets Counter32,
|
|
||||||
alPptpStatsSessionSendPackets Counter32,
|
|
||||||
alPptpStatsSessionSendZLB Counter32,
|
|
||||||
alPptpStatsSessionAckTimeouts Counter32,
|
|
||||||
alPptpStatsSessionLocalFlowOff TruthValue,
|
|
||||||
alPptpStatsSessionPeerFlowOff TruthValue,
|
|
||||||
alPptpStatsSessionOutOfWindow Counter32,
|
|
||||||
alPptpStatsSessionOutOfSequence Counter32,
|
|
||||||
alPptpStatsSessionTunnelPeerIpAddr IpAddress
|
|
||||||
}
|
|
||||||
|
|
||||||
alPptpStatsSessionRowStatus OBJECT-TYPE
|
|
||||||
SYNTAX RowStatus
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The status of this row. Used to terminate the session,
|
|
||||||
cannot be used to create a Session."
|
|
||||||
::= { alPptpStatsSessionEntry 1 }
|
|
||||||
|
|
||||||
alPptpStatsSessionDatastreamId OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The GRE-PPP datastream ID of this tunnel, used as the
|
|
||||||
index for this row."
|
|
||||||
::= { alPptpStatsSessionEntry 2 }
|
|
||||||
|
|
||||||
alPptpStatsSessionLocalCallId OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..65535)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The local call ID within the tunnel of the session
|
|
||||||
represented by this row."
|
|
||||||
::= { alPptpStatsSessionEntry 3 }
|
|
||||||
|
|
||||||
alPptpStatsSessionPeerCallId OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..65535)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The peer call ID within the tunnel of the session
|
|
||||||
represented by this row."
|
|
||||||
::= { alPptpStatsSessionEntry 4 }
|
|
||||||
|
|
||||||
alPptpStatsSessionUserName OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object identifies the peer session name on
|
|
||||||
this interface. This is typically the login name
|
|
||||||
of the remote user. If the user name is unknown to
|
|
||||||
the local tunnel peer then this object will contain
|
|
||||||
a null string."
|
|
||||||
::= { alPptpStatsSessionEntry 5 }
|
|
||||||
|
|
||||||
alPptpStatsSessionSerial OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..65535)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The call serial number within the tunnel of the session
|
|
||||||
represented by this row."
|
|
||||||
::= { alPptpStatsSessionEntry 6 }
|
|
||||||
|
|
||||||
alPptpStatsSessionMinimumSpeed OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The lowest acceptable line speed (in bits/second)
|
|
||||||
for this session, as indicated in the Call-Request
|
|
||||||
packet."
|
|
||||||
::= { alPptpStatsSessionEntry 7 }
|
|
||||||
|
|
||||||
alPptpStatsSessionMaximumSpeed OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The highest acceptable line speed (in bits/second)
|
|
||||||
for this session, as indicated in the Call-Request
|
|
||||||
packet."
|
|
||||||
::= { alPptpStatsSessionEntry 8 }
|
|
||||||
|
|
||||||
alPptpStatsSessionConnectSpeed OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The actual line speed (in bits/second) for this session."
|
|
||||||
::= { alPptpStatsSessionEntry 9 }
|
|
||||||
|
|
||||||
alPptpStatsSessionBearerType OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
analog (1),
|
|
||||||
digital (2),
|
|
||||||
any (3)
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A value indicating the bearer capability required for
|
|
||||||
this session."
|
|
||||||
::= { alPptpStatsSessionEntry 10 }
|
|
||||||
|
|
||||||
alPptpStatsSessionFramingType OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
asynchronous (1),
|
|
||||||
synchronous (2),
|
|
||||||
either (3)
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A value indicating the framing capability required for
|
|
||||||
this session."
|
|
||||||
::= { alPptpStatsSessionEntry 11 }
|
|
||||||
|
|
||||||
alPptpStatsSessionPhysicalChannel OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The physical channel number used for this session."
|
|
||||||
::= { alPptpStatsSessionEntry 12 }
|
|
||||||
|
|
||||||
alPptpStatsSessionLocalWindowSize OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of received data packets this system will
|
|
||||||
buffer for this session, as indicated in the setup packets
|
|
||||||
for this session."
|
|
||||||
::= { alPptpStatsSessionEntry 13 }
|
|
||||||
|
|
||||||
alPptpStatsSessionPeerWindowSize OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of received data packets the peer will
|
|
||||||
buffer for this session, as indicated in the setup packets
|
|
||||||
for this session."
|
|
||||||
::= { alPptpStatsSessionEntry 14 }
|
|
||||||
|
|
||||||
alPptpStatsSessionLocalPpd OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A measure of the packet processing delay that might be
|
|
||||||
imposed on data sent to this system, in units of 1/10
|
|
||||||
seconds."
|
|
||||||
::= { alPptpStatsSessionEntry 15 }
|
|
||||||
|
|
||||||
alPptpStatsSessionPeerPpd OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A measure of the packet processing delay that might be
|
|
||||||
imposed on data sent to the peer, in units of 1/10
|
|
||||||
seconds."
|
|
||||||
::= { alPptpStatsSessionEntry 16 }
|
|
||||||
|
|
||||||
alPptpStatsSessionRecvOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object returns the total number payload octets
|
|
||||||
received for this session."
|
|
||||||
::= { alPptpStatsSessionEntry 17 }
|
|
||||||
|
|
||||||
alPptpStatsSessionRecvPackets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object returns the total number of payload packets
|
|
||||||
received for this session."
|
|
||||||
::= { alPptpStatsSessionEntry 18 }
|
|
||||||
|
|
||||||
alPptpStatsSessionRecvDiscards OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object returns the total number of payload packets
|
|
||||||
received that were discarded for this session."
|
|
||||||
::= { alPptpStatsSessionEntry 19 }
|
|
||||||
|
|
||||||
alPptpStatsSessionRecvZLB OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object returns the total number of Zero Length
|
|
||||||
Body acknowlegement payload packets received for
|
|
||||||
this session."
|
|
||||||
::= { alPptpStatsSessionEntry 20 }
|
|
||||||
|
|
||||||
alPptpStatsSessionSendOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object returns the total number of payload octets
|
|
||||||
transmitted for this session."
|
|
||||||
::= { alPptpStatsSessionEntry 21 }
|
|
||||||
|
|
||||||
alPptpStatsSessionSendPackets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object returns the total number of payload packets
|
|
||||||
transmitted for this session."
|
|
||||||
::= { alPptpStatsSessionEntry 22 }
|
|
||||||
|
|
||||||
alPptpStatsSessionSendZLB OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object returns the total number of Zero
|
|
||||||
Length Body acknowledgement packets transmitted
|
|
||||||
for this session."
|
|
||||||
::= { alPptpStatsSessionEntry 23 }
|
|
||||||
|
|
||||||
alPptpStatsSessionAckTimeouts OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object returns the total number of
|
|
||||||
acknowledgement timeouts seen on payload
|
|
||||||
packets for this session."
|
|
||||||
::= { alPptpStatsSessionEntry 24 }
|
|
||||||
|
|
||||||
alPptpStatsSessionLocalFlowOff OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Indicates whether the session is in a locally flowed-off
|
|
||||||
state because the number of outstanding unacknowledged
|
|
||||||
packets received from the peer is equal to the local
|
|
||||||
window size."
|
|
||||||
::= { alPptpStatsSessionEntry 25 }
|
|
||||||
|
|
||||||
alPptpStatsSessionPeerFlowOff OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Indicates whether the session peer is in a flowed-off
|
|
||||||
state because the number of outstanding unacknowledged
|
|
||||||
packets sent to the peer is equal to the peer's window
|
|
||||||
size."
|
|
||||||
::= { alPptpStatsSessionEntry 26 }
|
|
||||||
|
|
||||||
alPptpStatsSessionOutOfWindow OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of data packets received from the peer which
|
|
||||||
were received outside of the offered receive window."
|
|
||||||
::= { alPptpStatsSessionEntry 27 }
|
|
||||||
|
|
||||||
alPptpStatsSessionOutOfSequence OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of data packets that were not received in the
|
|
||||||
correct order (as per the sequence number)."
|
|
||||||
::= { alPptpStatsSessionEntry 28 }
|
|
||||||
|
|
||||||
alPptpStatsSessionTunnelPeerIpAddr OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The peer's IP address for the tunnel over which this session
|
|
||||||
is established."
|
|
||||||
::= { alPptpStatsSessionEntry 29 }
|
|
||||||
|
|
||||||
altigaPptpStatsMibConformance OBJECT IDENTIFIER ::= { altigaPptpStatsMibModule 1 }
|
|
||||||
altigaPptpStatsMibCompliances OBJECT IDENTIFIER ::= { altigaPptpStatsMibConformance 1 }
|
|
||||||
|
|
||||||
altigaPptpStatsMibCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for agents which
|
|
||||||
implement the Altiga PPTP Statistics MIB."
|
|
||||||
MODULE
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
altigaPptpStatsGroup
|
|
||||||
}
|
|
||||||
::= { altigaPptpStatsMibCompliances 1 }
|
|
||||||
|
|
||||||
altigaPptpStatsGroup OBJECT-GROUP
|
|
||||||
OBJECTS
|
|
||||||
{
|
|
||||||
alPptpStatsLocalProtVers,
|
|
||||||
alPptpStatsLocalFraming,
|
|
||||||
alPptpStatsLocalBearer,
|
|
||||||
alPptpStatsLocalFirmwareRev,
|
|
||||||
alPptpStatsTotalTunnels,
|
|
||||||
alPptpStatsActiveTunnels,
|
|
||||||
alPptpStatsMaxTunnels,
|
|
||||||
alPptpStatsTotalSessions,
|
|
||||||
alPptpStatsActiveSessions,
|
|
||||||
alPptpStatsMaxSessions,
|
|
||||||
alPptpStatsControlRecvOctets,
|
|
||||||
alPptpStatsControlRecvPackets,
|
|
||||||
alPptpStatsControlRecvDiscards,
|
|
||||||
alPptpStatsControlSendOctets,
|
|
||||||
alPptpStatsControlSendPackets,
|
|
||||||
alPptpStatsPayloadRecvOctets,
|
|
||||||
alPptpStatsPayloadRecvPackets,
|
|
||||||
alPptpStatsPayloadRecvDiscards,
|
|
||||||
alPptpStatsPayloadSendOctets,
|
|
||||||
alPptpStatsPayloadSendPackets,
|
|
||||||
alPptpStatsTunnelRowStatus,
|
|
||||||
alPptpStatsTunnelDatastreamId,
|
|
||||||
alPptpStatsTunnelLocalIpAddr,
|
|
||||||
alPptpStatsTunnelPeerIpAddr,
|
|
||||||
alPptpStatsTunnelPeerHostName,
|
|
||||||
alPptpStatsTunnelPeerVendorName,
|
|
||||||
alPptpStatsTunnelPeerFirmwareRev,
|
|
||||||
alPptpStatsTunnelPeerProtVers,
|
|
||||||
alPptpStatsTunnelPeerFramingCap,
|
|
||||||
alPptpStatsTunnelPeerBearerCap,
|
|
||||||
alPptpStatsTunnelPeerMaxChan,
|
|
||||||
alPptpStatsTunnelActiveSessions,
|
|
||||||
alPptpStatsSessionRowStatus,
|
|
||||||
alPptpStatsSessionDatastreamId,
|
|
||||||
alPptpStatsSessionLocalCallId,
|
|
||||||
alPptpStatsSessionPeerCallId,
|
|
||||||
alPptpStatsSessionUserName,
|
|
||||||
alPptpStatsSessionSerial,
|
|
||||||
alPptpStatsSessionMinimumSpeed,
|
|
||||||
alPptpStatsSessionMaximumSpeed,
|
|
||||||
alPptpStatsSessionConnectSpeed,
|
|
||||||
alPptpStatsSessionBearerType,
|
|
||||||
alPptpStatsSessionFramingType,
|
|
||||||
alPptpStatsSessionPhysicalChannel,
|
|
||||||
alPptpStatsSessionLocalWindowSize,
|
|
||||||
alPptpStatsSessionPeerWindowSize,
|
|
||||||
alPptpStatsSessionLocalPpd,
|
|
||||||
alPptpStatsSessionPeerPpd,
|
|
||||||
alPptpStatsSessionRecvOctets,
|
|
||||||
alPptpStatsSessionRecvPackets,
|
|
||||||
alPptpStatsSessionRecvDiscards,
|
|
||||||
alPptpStatsSessionRecvZLB,
|
|
||||||
alPptpStatsSessionSendOctets,
|
|
||||||
alPptpStatsSessionSendPackets,
|
|
||||||
alPptpStatsSessionSendZLB,
|
|
||||||
alPptpStatsSessionAckTimeouts,
|
|
||||||
alPptpStatsSessionLocalFlowOff,
|
|
||||||
alPptpStatsSessionPeerFlowOff,
|
|
||||||
alPptpStatsSessionOutOfWindow,
|
|
||||||
alPptpStatsSessionOutOfSequence,
|
|
||||||
alPptpStatsSessionTunnelPeerIpAddr
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The objects for PPTP statistics."
|
|
||||||
::= { alPptpGroup 2 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
@ -1,239 +0,0 @@
|
|||||||
-- *------------------------------------------------------------------
|
|
||||||
-- * ALTIGA-SDI-ACE-STATS-MIB.my: SDI ACE Server Statistics MIB.
|
|
||||||
-- *
|
|
||||||
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
|
|
||||||
-- *
|
|
||||||
-- * Copyright (c) 2002 by Cisco Systems, Inc.
|
|
||||||
-- * All rights reserved.
|
|
||||||
-- *
|
|
||||||
-- *------------------------------------------------------------------
|
|
||||||
|
|
||||||
ALTIGA-SDI-ACE-STATS-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY, OBJECT-TYPE, Integer32, IpAddress, Counter32, Gauge32
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
OBJECT-GROUP, MODULE-COMPLIANCE
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
alACEServerStats, alACEServerGroup
|
|
||||||
FROM ALTIGA-MIB
|
|
||||||
alACEServerMibModule
|
|
||||||
FROM ALTIGA-GLOBAL-REG;
|
|
||||||
|
|
||||||
altigaACEStatsMibModule MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200209051300Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
E-mail: cs-cvpn3000@cisco.com"
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
"The Altiga SDI ACE Server Statistics MIB models counters and objects that are
|
|
||||||
of management interest for SDI ACE Server.
|
|
||||||
|
|
||||||
Acronyms
|
|
||||||
The following acronyms are used in this document:
|
|
||||||
|
|
||||||
ACE: Access Control Encryption
|
|
||||||
|
|
||||||
MIB: Management Information Base
|
|
||||||
|
|
||||||
PIN: Personal Identification Number
|
|
||||||
|
|
||||||
SDI: Security Dynamics Technologies, Inc
|
|
||||||
|
|
||||||
"
|
|
||||||
|
|
||||||
REVISION "200209051300Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added module compliance."
|
|
||||||
|
|
||||||
REVISION "200207100000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Updated with new header"
|
|
||||||
|
|
||||||
::= { alACEServerMibModule 1 }
|
|
||||||
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
-- MIB Objects
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
|
|
||||||
alCfgACEGlobal OBJECT IDENTIFIER ::= { alACEServerStats 1 }
|
|
||||||
|
|
||||||
alACEServerTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AlACEServerEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The list of authentication servers."
|
|
||||||
::= { alACEServerStats 2 }
|
|
||||||
|
|
||||||
alACEServerEntry OBJECT-TYPE
|
|
||||||
SYNTAX AlACEServerEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry in the alAuthServerTable."
|
|
||||||
INDEX { alACEPrimaryIndex, alACEServerIndex }
|
|
||||||
::= { alACEServerTable 1 }
|
|
||||||
|
|
||||||
AlACEServerEntry ::= SEQUENCE {
|
|
||||||
alACEPrimaryIndex Integer32,
|
|
||||||
alACEServerIndex Integer32,
|
|
||||||
alACEServerPriority Integer32,
|
|
||||||
alACEServerAddress IpAddress,
|
|
||||||
alACEServerPort Integer32,
|
|
||||||
alACEServerRetries Counter32,
|
|
||||||
alACEServerTimeout Counter32,
|
|
||||||
alACEServerGroupId Gauge32,
|
|
||||||
alACEServerAuthSuccesses Counter32,
|
|
||||||
alACEServerAuthFailures Counter32,
|
|
||||||
alACEServerBadCodeSent Counter32,
|
|
||||||
alACEServerBadPinSent Counter32
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
alACEPrimaryIndex OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The index of the configured primary server"
|
|
||||||
::= { alACEServerEntry 1 }
|
|
||||||
|
|
||||||
alACEServerIndex OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..10)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The index of this server into the server list"
|
|
||||||
::= { alACEServerEntry 2 }
|
|
||||||
|
|
||||||
alACEServerPriority OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..10)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The priority as computed by loadbalancing"
|
|
||||||
::= { alACEServerEntry 3 }
|
|
||||||
|
|
||||||
|
|
||||||
alACEServerAddress OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Resolved address from the ACE Server."
|
|
||||||
::= { alACEServerEntry 4 }
|
|
||||||
|
|
||||||
alACEServerPort OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..65535)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Port over ride for this entry"
|
|
||||||
::= { alACEServerEntry 5 }
|
|
||||||
|
|
||||||
alACEServerRetries OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Number of retries for this server."
|
|
||||||
::= { alACEServerEntry 6 }
|
|
||||||
|
|
||||||
alACEServerTimeout OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Timeout, in seconds to access this server."
|
|
||||||
::= { alACEServerEntry 7 }
|
|
||||||
|
|
||||||
alACEServerGroupId OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The group that this authentication server entry belongs to."
|
|
||||||
::= { alACEServerEntry 8 }
|
|
||||||
|
|
||||||
|
|
||||||
alACEServerAuthSuccesses OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"number of auth successes."
|
|
||||||
::= { alACEServerEntry 9 }
|
|
||||||
|
|
||||||
alACEServerAuthFailures OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"number of failures for this server."
|
|
||||||
::= { alACEServerEntry 10 }
|
|
||||||
|
|
||||||
alACEServerBadCodeSent OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"number of Bad Code sent to this server."
|
|
||||||
::= { alACEServerEntry 11 }
|
|
||||||
|
|
||||||
alACEServerBadPinSent OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"number of Bad Pin sent to this server."
|
|
||||||
::= { alACEServerEntry 12 }
|
|
||||||
|
|
||||||
altigaACEStatsMibConformance OBJECT IDENTIFIER ::= { altigaACEStatsMibModule 1 }
|
|
||||||
altigaACEStatsMibCompliances OBJECT IDENTIFIER ::= { altigaACEStatsMibConformance 1 }
|
|
||||||
|
|
||||||
altigaACEStatsMibCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for agents which
|
|
||||||
implement the Altiga ACE Server Statistics MIB."
|
|
||||||
MODULE
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
altigaACEServerGroup
|
|
||||||
}
|
|
||||||
::= { altigaACEStatsMibCompliances 1 }
|
|
||||||
|
|
||||||
altigaACEServerGroup OBJECT-GROUP
|
|
||||||
OBJECTS
|
|
||||||
{
|
|
||||||
alACEPrimaryIndex,
|
|
||||||
alACEServerIndex,
|
|
||||||
alACEServerPriority,
|
|
||||||
alACEServerAddress,
|
|
||||||
alACEServerPort,
|
|
||||||
alACEServerRetries,
|
|
||||||
alACEServerTimeout,
|
|
||||||
alACEServerGroupId,
|
|
||||||
alACEServerAuthSuccesses,
|
|
||||||
alACEServerAuthFailures,
|
|
||||||
alACEServerBadCodeSent,
|
|
||||||
alACEServerBadPinSent
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The objects for ACE-STATS."
|
|
||||||
::= { alACEServerGroup 1 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,497 +0,0 @@
|
|||||||
-- *------------------------------------------------------------------
|
|
||||||
-- * ALTIGA-SEP-STATS-MIB.my: Cisco VPN3000 Series SEP Statistics MIB.
|
|
||||||
-- *
|
|
||||||
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
|
|
||||||
-- *
|
|
||||||
-- * Copyright (c) 2002, 2003 by Cisco Systems, Inc.
|
|
||||||
-- * All rights reserved.
|
|
||||||
-- *
|
|
||||||
-- *------------------------------------------------------------------
|
|
||||||
|
|
||||||
ALTIGA-SEP-STATS-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY, OBJECT-TYPE, Integer32, Counter32
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
RowStatus, DisplayString
|
|
||||||
FROM SNMPv2-TC
|
|
||||||
OBJECT-GROUP, MODULE-COMPLIANCE
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
alStatsSep, alSepGroup
|
|
||||||
FROM ALTIGA-MIB
|
|
||||||
alSepMibModule
|
|
||||||
FROM ALTIGA-GLOBAL-REG;
|
|
||||||
|
|
||||||
altigaSepStatsMibModule MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200303270000Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
E-mail: cs-cvpn3000@cisco.com"
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
"The Cisco VPN 3000 Series SEP Statistics MIB models counters
|
|
||||||
and objects that are of management interest for the SEP
|
|
||||||
hardware.
|
|
||||||
|
|
||||||
Acronyms
|
|
||||||
The following acronyms are used in this document:
|
|
||||||
|
|
||||||
MIB: Management Information Base
|
|
||||||
|
|
||||||
RSA: Rivest, Shamir, and Adelman
|
|
||||||
|
|
||||||
SEP: Scalable Encryption Processor
|
|
||||||
|
|
||||||
"
|
|
||||||
REVISION "200303270000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added new enum value to alSepModuleStatsType
|
|
||||||
and alSepModuleStatsState."
|
|
||||||
|
|
||||||
REVISION "200209051300Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added module compliance."
|
|
||||||
|
|
||||||
REVISION "200207100000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Updated with new header"
|
|
||||||
|
|
||||||
::= { alSepMibModule 2 }
|
|
||||||
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
-- MIB Objects
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
|
|
||||||
-- per SEP statistics
|
|
||||||
|
|
||||||
alSepModuleStatsTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AlSepModuleStatsEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"List of SEPs modules found."
|
|
||||||
::= { alStatsSep 2 }
|
|
||||||
|
|
||||||
alSepModuleStatsEntry OBJECT-TYPE
|
|
||||||
SYNTAX AlSepModuleStatsEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry in the alSepModuleStatsTable."
|
|
||||||
INDEX { alSepModuleStatsSlotNum }
|
|
||||||
::= { alSepModuleStatsTable 1 }
|
|
||||||
|
|
||||||
AlSepModuleStatsEntry ::= SEQUENCE {
|
|
||||||
alSepModuleStatsRowStatus RowStatus,
|
|
||||||
alSepModuleStatsSlotNum INTEGER,
|
|
||||||
alSepModuleStatsType INTEGER,
|
|
||||||
alSepModuleStatsState INTEGER,
|
|
||||||
alSepModuleStatsDspCodeVersion DisplayString,
|
|
||||||
alSepModuleStatsHashOutboundPackets Counter32,
|
|
||||||
alSepModuleStatsHashOutboundOctets Counter32,
|
|
||||||
alSepModuleStatsHashInboundPackets Counter32,
|
|
||||||
alSepModuleStatsHashInboundOctets Counter32,
|
|
||||||
alSepModuleStatsEncPackets Counter32,
|
|
||||||
alSepModuleStatsEncOctets Counter32,
|
|
||||||
alSepModuleStatsDecPackets Counter32,
|
|
||||||
alSepModuleStatsDecOctets Counter32,
|
|
||||||
alSepModuleStatsHashEncPackets Counter32,
|
|
||||||
alSepModuleStatsHashDecPackets Counter32,
|
|
||||||
alSepModuleStatsCryptoTransformsTotal Counter32,
|
|
||||||
alSepModuleStatsPacketDrops Counter32,
|
|
||||||
alSepModuleStatsRandRequests Counter32,
|
|
||||||
alSepModuleStatsRandReplens Counter32,
|
|
||||||
alSepModuleStatsRandBytesAvail Integer32,
|
|
||||||
alSepModuleStatsRandCacheEmpty Counter32,
|
|
||||||
alSepModuleStatsDHKeysGenerated Counter32,
|
|
||||||
alSepModuleStatsDHDerivedSecretKeys Counter32,
|
|
||||||
alSepModuleStatsRSASignings Counter32,
|
|
||||||
alSepModuleStatsRSAVerifications Counter32,
|
|
||||||
alSepModuleStatsRSAEncPackets Counter32,
|
|
||||||
alSepModuleStatsRSAEncOctets Counter32,
|
|
||||||
alSepModuleStatsRSADecPackets Counter32,
|
|
||||||
alSepModuleStatsRSADecOctets Counter32,
|
|
||||||
alSepModuleStatsDSAKeysGenerated Counter32,
|
|
||||||
alSepModuleStatsDSASignings Counter32,
|
|
||||||
alSepModuleStatsDSAVerifications Counter32,
|
|
||||||
alSepModuleStatsRSAKeysGenerated Counter32
|
|
||||||
}
|
|
||||||
|
|
||||||
alSepModuleStatsRowStatus OBJECT-TYPE
|
|
||||||
SYNTAX RowStatus
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The status of this row."
|
|
||||||
::= { alSepModuleStatsEntry 1 }
|
|
||||||
|
|
||||||
alSepModuleStatsSlotNum OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER(1..4)
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The physical slot this SEP is connected to."
|
|
||||||
::= { alSepModuleStatsEntry 2 }
|
|
||||||
|
|
||||||
|
|
||||||
alSepModuleStatsType OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
cryptSet(1),
|
|
||||||
cryptIc(2),
|
|
||||||
bcm582x(3)
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Indicates the type of HW engine used to perform the
|
|
||||||
cryptographic transforms.
|
|
||||||
cryptSet: First generation of Hardware Cryptographic Processor.
|
|
||||||
cryptIc: Cryptographic Integrated Circuit.
|
|
||||||
bcm582x: BroadCom 582x series Hardware Cryptographic Products.
|
|
||||||
"
|
|
||||||
::= { alSepModuleStatsEntry 3 }
|
|
||||||
|
|
||||||
alSepModuleStatsState OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
sepNotFound(1),
|
|
||||||
sepFound(2),
|
|
||||||
sepDiagFailure(3),
|
|
||||||
sepNotOperational(4),
|
|
||||||
sepLoading(5),
|
|
||||||
sepInitializing(6),
|
|
||||||
sepOperational(7),
|
|
||||||
sepDisabled(8)
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The functional state of this SEP.
|
|
||||||
sepNotFound: SEP is not found.
|
|
||||||
sepFound: SEP is found.
|
|
||||||
sepDiagFailure: SEP dialog fail.
|
|
||||||
sepNotOperational: SEP is not operational.
|
|
||||||
sepLoading: SEP is loading data.
|
|
||||||
sepInitializing: SEP is initializing.
|
|
||||||
sepOperational: SEP is operational.
|
|
||||||
sepDisabled: SEP is disabled.
|
|
||||||
"
|
|
||||||
::= { alSepModuleStatsEntry 4 }
|
|
||||||
|
|
||||||
alSepModuleStatsDspCodeVersion OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The version of DSP microcode running on this SEP."
|
|
||||||
::= { alSepModuleStatsEntry 5 }
|
|
||||||
|
|
||||||
alSepModuleStatsHashOutboundPackets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of outbound authentication-only packets processed
|
|
||||||
by this SEP."
|
|
||||||
::= { alSepModuleStatsEntry 6 }
|
|
||||||
|
|
||||||
alSepModuleStatsHashOutboundOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of outbound octets authenticated by this SEP."
|
|
||||||
::= { alSepModuleStatsEntry 7 }
|
|
||||||
|
|
||||||
alSepModuleStatsHashInboundPackets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of inbound authentication-only packets processed
|
|
||||||
by this SEP."
|
|
||||||
::= { alSepModuleStatsEntry 8 }
|
|
||||||
|
|
||||||
alSepModuleStatsHashInboundOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of inbound octets authenticated by this SEP."
|
|
||||||
::= { alSepModuleStatsEntry 9 }
|
|
||||||
|
|
||||||
alSepModuleStatsEncPackets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of outbound encryption-only packets processed by
|
|
||||||
this SEP."
|
|
||||||
::= { alSepModuleStatsEntry 10 }
|
|
||||||
|
|
||||||
alSepModuleStatsEncOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of outbound octets encrypted by this SEP."
|
|
||||||
::= { alSepModuleStatsEntry 11 }
|
|
||||||
|
|
||||||
alSepModuleStatsDecPackets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of inbound decryption-only packets processed by
|
|
||||||
this SEP."
|
|
||||||
::= { alSepModuleStatsEntry 12 }
|
|
||||||
|
|
||||||
alSepModuleStatsDecOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of inbound octets decrypted by this SEP."
|
|
||||||
::= { alSepModuleStatsEntry 13 }
|
|
||||||
|
|
||||||
alSepModuleStatsHashEncPackets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of combined outbound hash/encrypt packets processed
|
|
||||||
by this SEP."
|
|
||||||
::= { alSepModuleStatsEntry 14 }
|
|
||||||
|
|
||||||
alSepModuleStatsHashDecPackets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of combined inbound hash/decrypt packets processed
|
|
||||||
by this SEP."
|
|
||||||
::= { alSepModuleStatsEntry 15 }
|
|
||||||
|
|
||||||
alSepModuleStatsCryptoTransformsTotal OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of hash, encryption, decryption,
|
|
||||||
hash/encrypt, and hash/decrypt transforms
|
|
||||||
performed by this SEP."
|
|
||||||
::= { alSepModuleStatsEntry 16 }
|
|
||||||
|
|
||||||
alSepModuleStatsPacketDrops OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of packets intended for SEP processing,
|
|
||||||
dropped due to the SEP ring being full."
|
|
||||||
::= { alSepModuleStatsEntry 17 }
|
|
||||||
|
|
||||||
alSepModuleStatsRandRequests OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of random # requests made to the SEP."
|
|
||||||
::= { alSepModuleStatsEntry 18 }
|
|
||||||
|
|
||||||
alSepModuleStatsRandReplens OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of random # requests fulfilled by the SEP."
|
|
||||||
::= { alSepModuleStatsEntry 19 }
|
|
||||||
|
|
||||||
alSepModuleStatsRandBytesAvail OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of random bytes currently cached on the Host."
|
|
||||||
::= { alSepModuleStatsEntry 20 }
|
|
||||||
|
|
||||||
alSepModuleStatsRandCacheEmpty OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of times a random # request came in and
|
|
||||||
we had no SEP generated random #'s available on the host."
|
|
||||||
::= { alSepModuleStatsEntry 21 }
|
|
||||||
|
|
||||||
alSepModuleStatsDHKeysGenerated OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of times a new Diffie Hellman key pair has been
|
|
||||||
generated by a SEP."
|
|
||||||
::= { alSepModuleStatsEntry 22 }
|
|
||||||
|
|
||||||
alSepModuleStatsDHDerivedSecretKeys OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of times a SEP has derived the Diffie Hellman
|
|
||||||
secret key."
|
|
||||||
::= { alSepModuleStatsEntry 23 }
|
|
||||||
|
|
||||||
alSepModuleStatsRSASignings OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of times an RSA Digital Signature has been
|
|
||||||
generated by a SEP."
|
|
||||||
::= { alSepModuleStatsEntry 24 }
|
|
||||||
|
|
||||||
alSepModuleStatsRSAVerifications OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of times an RSA Digital Signature has been
|
|
||||||
verified by a SEP."
|
|
||||||
::= { alSepModuleStatsEntry 25 }
|
|
||||||
|
|
||||||
alSepModuleStatsRSAEncPackets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of packets RSA-encrypted by this SEP."
|
|
||||||
::= { alSepModuleStatsEntry 26 }
|
|
||||||
|
|
||||||
alSepModuleStatsRSAEncOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of octets RSA-encrypted by this SEP."
|
|
||||||
::= { alSepModuleStatsEntry 27 }
|
|
||||||
|
|
||||||
alSepModuleStatsRSADecPackets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of packets RSA-decrypted by this SEP."
|
|
||||||
::= { alSepModuleStatsEntry 28 }
|
|
||||||
|
|
||||||
alSepModuleStatsRSADecOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of octets RSA-decrypted by this SEP."
|
|
||||||
::= { alSepModuleStatsEntry 29 }
|
|
||||||
|
|
||||||
alSepModuleStatsDSAKeysGenerated OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of times a new DSA Key pair has been
|
|
||||||
generated by a SEP."
|
|
||||||
::= { alSepModuleStatsEntry 30 }
|
|
||||||
|
|
||||||
alSepModuleStatsDSASignings OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of times a DSA Digital Signature has been
|
|
||||||
generated by a SEP."
|
|
||||||
::= { alSepModuleStatsEntry 31 }
|
|
||||||
|
|
||||||
alSepModuleStatsDSAVerifications OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of times a DSA Digital Signature has been
|
|
||||||
verified by a SEP."
|
|
||||||
::= { alSepModuleStatsEntry 32 }
|
|
||||||
|
|
||||||
alSepModuleStatsRSAKeysGenerated OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of times a new RSA Key pair has been
|
|
||||||
generated by a SEP."
|
|
||||||
::= { alSepModuleStatsEntry 33 }
|
|
||||||
|
|
||||||
altigaSepStatsMibConformance OBJECT IDENTIFIER
|
|
||||||
::= { altigaSepStatsMibModule 1 }
|
|
||||||
|
|
||||||
altigaSepStatsMibCompliances OBJECT IDENTIFIER
|
|
||||||
::= { altigaSepStatsMibConformance 1 }
|
|
||||||
|
|
||||||
altigaSepStatsMibCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for agents which
|
|
||||||
implement the Altiga SEP Statistics MIB."
|
|
||||||
MODULE
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
altigaSepStatsGroup
|
|
||||||
}
|
|
||||||
::= { altigaSepStatsMibCompliances 1 }
|
|
||||||
|
|
||||||
altigaSepStatsGroup OBJECT-GROUP
|
|
||||||
OBJECTS
|
|
||||||
{
|
|
||||||
alSepModuleStatsRowStatus,
|
|
||||||
alSepModuleStatsType,
|
|
||||||
alSepModuleStatsState,
|
|
||||||
alSepModuleStatsDspCodeVersion,
|
|
||||||
alSepModuleStatsHashOutboundPackets,
|
|
||||||
alSepModuleStatsHashOutboundOctets,
|
|
||||||
alSepModuleStatsHashInboundPackets,
|
|
||||||
alSepModuleStatsHashInboundOctets,
|
|
||||||
alSepModuleStatsEncPackets,
|
|
||||||
alSepModuleStatsEncOctets,
|
|
||||||
alSepModuleStatsDecPackets,
|
|
||||||
alSepModuleStatsDecOctets,
|
|
||||||
alSepModuleStatsHashEncPackets,
|
|
||||||
alSepModuleStatsHashDecPackets,
|
|
||||||
alSepModuleStatsCryptoTransformsTotal,
|
|
||||||
alSepModuleStatsPacketDrops,
|
|
||||||
alSepModuleStatsRandRequests,
|
|
||||||
alSepModuleStatsRandReplens,
|
|
||||||
alSepModuleStatsRandBytesAvail,
|
|
||||||
alSepModuleStatsRandCacheEmpty,
|
|
||||||
alSepModuleStatsDHKeysGenerated,
|
|
||||||
alSepModuleStatsDHDerivedSecretKeys,
|
|
||||||
alSepModuleStatsRSASignings,
|
|
||||||
alSepModuleStatsRSAVerifications,
|
|
||||||
alSepModuleStatsRSAEncPackets,
|
|
||||||
alSepModuleStatsRSAEncOctets,
|
|
||||||
alSepModuleStatsRSADecPackets,
|
|
||||||
alSepModuleStatsRSADecOctets,
|
|
||||||
alSepModuleStatsDSAKeysGenerated,
|
|
||||||
alSepModuleStatsDSASignings,
|
|
||||||
alSepModuleStatsDSAVerifications,
|
|
||||||
alSepModuleStatsRSAKeysGenerated
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The objects for the SEP Module statistics."
|
|
||||||
::= { alSepGroup 2 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
@ -1,287 +0,0 @@
|
|||||||
-- *------------------------------------------------------------------
|
|
||||||
-- * ALTIGA-SSH-STATS-MIB.my: Altiga SSH Statistics MIB.
|
|
||||||
-- *
|
|
||||||
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
|
|
||||||
-- *
|
|
||||||
-- * Copyright (c) 2002 by Cisco Systems, Inc.
|
|
||||||
-- * All rights reserved.
|
|
||||||
-- *
|
|
||||||
-- *------------------------------------------------------------------
|
|
||||||
|
|
||||||
ALTIGA-SSH-STATS-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY, OBJECT-TYPE, Counter32, Gauge32, Unsigned32, IpAddress,
|
|
||||||
Integer32, TimeTicks
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
DisplayString
|
|
||||||
FROM SNMPv2-TC
|
|
||||||
EncryptionAlgorithm
|
|
||||||
FROM ALTIGA-SESSION-STATS-MIB
|
|
||||||
OBJECT-GROUP, MODULE-COMPLIANCE
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
alStatsSsh, alSshGroup
|
|
||||||
FROM ALTIGA-MIB
|
|
||||||
alSshMibModule
|
|
||||||
FROM ALTIGA-GLOBAL-REG;
|
|
||||||
|
|
||||||
altigaSshStatsMibModule MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200209051300Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
E-mail: cs-cvpn3000@cisco.com"
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
"The Altiga SSH Statistics MIB models counters and objects that are
|
|
||||||
of management interest for SSH.
|
|
||||||
|
|
||||||
Acronyms
|
|
||||||
The following acronyms are used in this document:
|
|
||||||
|
|
||||||
MIB: Management Information Base
|
|
||||||
|
|
||||||
SSH: Secure Shell
|
|
||||||
|
|
||||||
"
|
|
||||||
|
|
||||||
REVISION "200209051300Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added module compliance."
|
|
||||||
|
|
||||||
REVISION "200207100000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Updated with new header"
|
|
||||||
|
|
||||||
::= { alSshMibModule 2 }
|
|
||||||
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
-- MIB Objects
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
|
|
||||||
alStatsSshGlobal OBJECT IDENTIFIER ::= { alStatsSsh 1 }
|
|
||||||
|
|
||||||
alSshStatsOctetsSent OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of octets sent."
|
|
||||||
::= { alStatsSshGlobal 1 }
|
|
||||||
|
|
||||||
alSshStatsOctetsRcvd OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of octets received."
|
|
||||||
::= { alStatsSshGlobal 2 }
|
|
||||||
|
|
||||||
alSshStatsPacketsSent OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of packets."
|
|
||||||
::= { alStatsSshGlobal 3 }
|
|
||||||
|
|
||||||
alSshStatsPacketsRcvd OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of packets received."
|
|
||||||
::= { alStatsSshGlobal 4 }
|
|
||||||
|
|
||||||
alSshStatsTotalSessions OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of SSH sessions established."
|
|
||||||
::= { alStatsSshGlobal 5 }
|
|
||||||
|
|
||||||
alSshStatsActiveSessions OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of active sessions."
|
|
||||||
::= { alStatsSshGlobal 6 }
|
|
||||||
|
|
||||||
alSshStatsMaxSessions OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The maximum number of active sessions that existed at one any time."
|
|
||||||
::= { alStatsSshGlobal 7 }
|
|
||||||
|
|
||||||
|
|
||||||
alSshStatsSessionTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AlSshStatsSessionEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"List of active HTTP sessions."
|
|
||||||
::= { alStatsSsh 2 }
|
|
||||||
|
|
||||||
alSshStatsSessionEntry OBJECT-TYPE
|
|
||||||
SYNTAX AlSshStatsSessionEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry in the alSshStatsSessionTable."
|
|
||||||
INDEX { alSshStatsSessionIndex }
|
|
||||||
::= { alSshStatsSessionTable 1 }
|
|
||||||
|
|
||||||
AlSshStatsSessionEntry ::= SEQUENCE {
|
|
||||||
alSshStatsSessionIndex Integer32,
|
|
||||||
alSshStatsSessionName DisplayString,
|
|
||||||
alSshStatsSessionIpAddr IpAddress,
|
|
||||||
alSshStatsSessionPort Unsigned32,
|
|
||||||
alSshStatsSessionStartTime TimeTicks,
|
|
||||||
alSshStatsSessionLoginTime Unsigned32,
|
|
||||||
alSshStatsSessionEncr EncryptionAlgorithm,
|
|
||||||
alSshStatsSessionOctetsSent Counter32,
|
|
||||||
alSshStatsSessionOctetsRcvd Counter32,
|
|
||||||
alSshStatsSessionPacketsSent Counter32,
|
|
||||||
alSshStatsSessionPacketsRcvd Counter32
|
|
||||||
}
|
|
||||||
|
|
||||||
alSshStatsSessionIndex OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Index of this session."
|
|
||||||
::= { alSshStatsSessionEntry 1 }
|
|
||||||
|
|
||||||
alSshStatsSessionName OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Name of the administrator using this session."
|
|
||||||
::= { alSshStatsSessionEntry 2 }
|
|
||||||
|
|
||||||
alSshStatsSessionIpAddr OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Remote IP address of this session.."
|
|
||||||
::= { alSshStatsSessionEntry 3 }
|
|
||||||
|
|
||||||
alSshStatsSessionPort OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Remote IP port address of this session.."
|
|
||||||
::= { alSshStatsSessionEntry 4 }
|
|
||||||
|
|
||||||
alSshStatsSessionStartTime OBJECT-TYPE
|
|
||||||
SYNTAX TimeTicks
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Login time of this session."
|
|
||||||
::= { alSshStatsSessionEntry 5 }
|
|
||||||
|
|
||||||
alSshStatsSessionLoginTime OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"time_t value of the concentrator at the start of this session."
|
|
||||||
::= { alSshStatsSessionEntry 6 }
|
|
||||||
|
|
||||||
alSshStatsSessionEncr OBJECT-TYPE
|
|
||||||
SYNTAX EncryptionAlgorithm
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The type of encryption algorithm used for this session."
|
|
||||||
::= { alSshStatsSessionEntry 7 }
|
|
||||||
|
|
||||||
alSshStatsSessionOctetsSent OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Number of octets sent during this session."
|
|
||||||
::= { alSshStatsSessionEntry 8 }
|
|
||||||
|
|
||||||
alSshStatsSessionOctetsRcvd OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Number of octets received during this session."
|
|
||||||
::= { alSshStatsSessionEntry 9 }
|
|
||||||
|
|
||||||
alSshStatsSessionPacketsSent OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Number of packets sent during this session."
|
|
||||||
::= { alSshStatsSessionEntry 10 }
|
|
||||||
|
|
||||||
alSshStatsSessionPacketsRcvd OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Number of packets received during this session."
|
|
||||||
::= { alSshStatsSessionEntry 11 }
|
|
||||||
|
|
||||||
altigaSshStatsMibConformance OBJECT IDENTIFIER ::= { altigaSshStatsMibModule 1 }
|
|
||||||
altigaSshStatsMibCompliances OBJECT IDENTIFIER ::= { altigaSshStatsMibConformance 1 }
|
|
||||||
|
|
||||||
altigaSshStatsMibCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for agents which
|
|
||||||
implement the Altiga SSH Statistics MIB."
|
|
||||||
MODULE
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
altigaSshStatsGroup
|
|
||||||
}
|
|
||||||
::= { altigaSshStatsMibCompliances 1 }
|
|
||||||
|
|
||||||
altigaSshStatsGroup OBJECT-GROUP
|
|
||||||
OBJECTS
|
|
||||||
{
|
|
||||||
alSshStatsOctetsSent,
|
|
||||||
alSshStatsOctetsRcvd,
|
|
||||||
alSshStatsPacketsSent,
|
|
||||||
alSshStatsPacketsRcvd,
|
|
||||||
alSshStatsTotalSessions,
|
|
||||||
alSshStatsActiveSessions,
|
|
||||||
alSshStatsMaxSessions,
|
|
||||||
alSshStatsSessionIndex,
|
|
||||||
alSshStatsSessionName,
|
|
||||||
alSshStatsSessionIpAddr,
|
|
||||||
alSshStatsSessionPort,
|
|
||||||
alSshStatsSessionStartTime,
|
|
||||||
alSshStatsSessionLoginTime,
|
|
||||||
alSshStatsSessionEncr,
|
|
||||||
alSshStatsSessionOctetsSent,
|
|
||||||
alSshStatsSessionOctetsRcvd,
|
|
||||||
alSshStatsSessionPacketsSent,
|
|
||||||
alSshStatsSessionPacketsRcvd
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The objects for SSH statistics."
|
|
||||||
::= { alSshGroup 2 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
@ -1,154 +0,0 @@
|
|||||||
-- *------------------------------------------------------------------
|
|
||||||
-- * ALTIGA-SSL-STATS-MIB.my: Altiga SSL Statistics MIB.
|
|
||||||
-- *
|
|
||||||
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
|
|
||||||
-- *
|
|
||||||
-- * Copyright (c) 2002 by Cisco Systems, Inc.
|
|
||||||
-- * All rights reserved.
|
|
||||||
-- *
|
|
||||||
-- *------------------------------------------------------------------
|
|
||||||
|
|
||||||
ALTIGA-SSL-STATS-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY, OBJECT-TYPE, Counter32, Gauge32
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
OBJECT-GROUP, MODULE-COMPLIANCE
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
alStatsSsl, alSslGroup
|
|
||||||
FROM ALTIGA-MIB
|
|
||||||
alSslMibModule
|
|
||||||
FROM ALTIGA-GLOBAL-REG;
|
|
||||||
|
|
||||||
altigaSslStatsMibModule MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200209051300Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
E-mail: cs-cvpn3000@cisco.com"
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
"The Altiga SSL Statistics MIB models counters and objects that are
|
|
||||||
of management interest for SSL.
|
|
||||||
|
|
||||||
Acronyms
|
|
||||||
The following acronyms are used in this document:
|
|
||||||
|
|
||||||
MIB: Management Information Base
|
|
||||||
|
|
||||||
SSL: Secure Sockets Layer
|
|
||||||
|
|
||||||
"
|
|
||||||
|
|
||||||
REVISION "200209051300Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added module compliance."
|
|
||||||
|
|
||||||
REVISION "200207100000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Updated with new header"
|
|
||||||
|
|
||||||
::= { alSslMibModule 2 }
|
|
||||||
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
-- MIB Objects
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
|
|
||||||
alStatsSslGlobal OBJECT IDENTIFIER ::= { alStatsSsl 1 }
|
|
||||||
|
|
||||||
alSslStatsTotalSessions OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of total sessions."
|
|
||||||
::= { alStatsSslGlobal 1 }
|
|
||||||
|
|
||||||
alSslStatsActiveSessions OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The current number of active sessions."
|
|
||||||
::= { alStatsSslGlobal 2 }
|
|
||||||
|
|
||||||
alSslStatsMaxSessions OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The maximum number current of active sessions at
|
|
||||||
any one time."
|
|
||||||
::= { alStatsSslGlobal 3 }
|
|
||||||
|
|
||||||
alSslStatsPreDecryptOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of octets sent to the decryption engine. Includes
|
|
||||||
octets used as part of negotiation."
|
|
||||||
::= { alStatsSslGlobal 4 }
|
|
||||||
|
|
||||||
alSslStatsPostDecryptOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of octets received from the decryption engine."
|
|
||||||
::= { alStatsSslGlobal 5 }
|
|
||||||
|
|
||||||
alSslStatsPreEncryptOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of octets send to the encryption engine."
|
|
||||||
::= { alStatsSslGlobal 6 }
|
|
||||||
|
|
||||||
alSslStatsPostEncryptOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of octets received from the encryption engine.
|
|
||||||
Includes octets used as part of negitiation."
|
|
||||||
::= { alStatsSslGlobal 7 }
|
|
||||||
|
|
||||||
altigaSslStatsMibConformance OBJECT IDENTIFIER ::= { altigaSslStatsMibModule 1 }
|
|
||||||
altigaSslStatsMibCompliances OBJECT IDENTIFIER ::= { altigaSslStatsMibConformance 1 }
|
|
||||||
|
|
||||||
altigaSslStatsMibCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for agents which
|
|
||||||
implement the Altiga SSL Statistics MIB."
|
|
||||||
MODULE
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
altigaSslStatsGroup
|
|
||||||
}
|
|
||||||
::= { altigaSslStatsMibCompliances 1 }
|
|
||||||
|
|
||||||
altigaSslStatsGroup OBJECT-GROUP
|
|
||||||
OBJECTS
|
|
||||||
{
|
|
||||||
alSslStatsTotalSessions,
|
|
||||||
alSslStatsActiveSessions,
|
|
||||||
alSslStatsMaxSessions,
|
|
||||||
alSslStatsPreDecryptOctets,
|
|
||||||
alSslStatsPostDecryptOctets,
|
|
||||||
alSslStatsPreEncryptOctets,
|
|
||||||
alSslStatsPostEncryptOctets
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The objects for SSL statistics."
|
|
||||||
::= { alSslGroup 2 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
@ -1,362 +0,0 @@
|
|||||||
-- *------------------------------------------------------------------
|
|
||||||
-- * ALTIGA-SYNC-STATS-MIB.my: Altiga Sync Statistics MIB.
|
|
||||||
-- *
|
|
||||||
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
|
|
||||||
-- *
|
|
||||||
-- * Copyright (c) 2002 by Cisco Systems, Inc.
|
|
||||||
-- * All rights reserved.
|
|
||||||
-- *
|
|
||||||
-- *------------------------------------------------------------------
|
|
||||||
|
|
||||||
ALTIGA-SYNC-STATS-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY, OBJECT-TYPE, Integer32, Counter32
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
RowStatus
|
|
||||||
FROM SNMPv2-TC
|
|
||||||
OBJECT-GROUP, MODULE-COMPLIANCE
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
alStatsSync, alSyncGroup
|
|
||||||
FROM ALTIGA-MIB
|
|
||||||
alSyncMibModule
|
|
||||||
FROM ALTIGA-GLOBAL-REG
|
|
||||||
InterfaceIndex
|
|
||||||
FROM IF-MIB;
|
|
||||||
|
|
||||||
altigaSyncStatsMibModule MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200209051300Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
E-mail: cs-cvpn3000@cisco.com"
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
"The Altiga Sync Statistics MIB models counters and objects
|
|
||||||
that are of management interest.
|
|
||||||
|
|
||||||
Acronyms
|
|
||||||
The following acronyms are used in this document:
|
|
||||||
|
|
||||||
CRC: Cyclic Redundancy Check
|
|
||||||
|
|
||||||
HDLC: High-level Data Link Control
|
|
||||||
|
|
||||||
MIB: Management Information Base
|
|
||||||
|
|
||||||
MTU: Maximum Transmission Unit
|
|
||||||
|
|
||||||
"
|
|
||||||
|
|
||||||
REVISION "200209051300Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added module compliance."
|
|
||||||
|
|
||||||
REVISION "200207100000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Updated with new header"
|
|
||||||
|
|
||||||
::= { alSyncMibModule 2 }
|
|
||||||
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
-- MIB Objects
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
|
|
||||||
alStatsSyncGlobal OBJECT IDENTIFIER ::= { alStatsSync 1 }
|
|
||||||
|
|
||||||
alSyncStatsTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AlSyncStatsEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The SYNC interface statistics MIB."
|
|
||||||
::= { alStatsSync 2 }
|
|
||||||
|
|
||||||
alSyncStatsEntry OBJECT-TYPE
|
|
||||||
SYNTAX AlSyncStatsEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry the alSyncStatsTable."
|
|
||||||
INDEX { alSyncStatsSlot, alSyncStatsConn, alSyncStatsChannel }
|
|
||||||
::= { alSyncStatsTable 1 }
|
|
||||||
|
|
||||||
AlSyncStatsEntry ::= SEQUENCE {
|
|
||||||
alSyncStatsRowStatus RowStatus,
|
|
||||||
alSyncStatsSlot Integer32,
|
|
||||||
alSyncStatsConn Integer32,
|
|
||||||
alSyncStatsChannel Integer32,
|
|
||||||
alSyncStatsIfIndex InterfaceIndex,
|
|
||||||
alSyncStatsPortState INTEGER,
|
|
||||||
alSyncStatsRxFrames Counter32,
|
|
||||||
alSyncStatsRxOctets Counter32,
|
|
||||||
alSyncStatsRxReplenFails Counter32,
|
|
||||||
alSyncStatsRxClockErrors Counter32,
|
|
||||||
alSyncStatsRxDpllErrors Counter32,
|
|
||||||
alSyncStatsRxFrameTooLongErrors Counter32,
|
|
||||||
alSyncStatsRxFrameOctetAlignErrors Counter32,
|
|
||||||
alSyncStatsRxAbortErrors Counter32,
|
|
||||||
alSyncStatsRxCrcErrors Counter32,
|
|
||||||
alSyncStatsRxRcvrOverrunErrors Counter32,
|
|
||||||
alSyncStatsTxFrames Counter32,
|
|
||||||
alSyncStatsTxOctets Counter32,
|
|
||||||
alSyncStatsTxRingFullDropsErrors Counter32,
|
|
||||||
alSyncStatsTxClockErrors Counter32,
|
|
||||||
alSyncStatsTxFrameTooLongErrors Counter32,
|
|
||||||
alSyncStatsTxUnderrunErrors Counter32
|
|
||||||
}
|
|
||||||
|
|
||||||
alSyncStatsRowStatus OBJECT-TYPE
|
|
||||||
SYNTAX RowStatus
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The status of this row."
|
|
||||||
::= { alSyncStatsEntry 1 }
|
|
||||||
|
|
||||||
alSyncStatsSlot OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..2147483647)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The physical slot for this Sync port. Part of the index."
|
|
||||||
::= { alSyncStatsEntry 2 }
|
|
||||||
|
|
||||||
alSyncStatsConn OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..2147483647)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The physical connector for this Sync port. Part of the index."
|
|
||||||
::= { alSyncStatsEntry 3 }
|
|
||||||
|
|
||||||
alSyncStatsChannel OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..2147483647)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The virtual channel for this Sync port. Part of the index."
|
|
||||||
::= { alSyncStatsEntry 4 }
|
|
||||||
|
|
||||||
alSyncStatsIfIndex OBJECT-TYPE
|
|
||||||
SYNTAX InterfaceIndex
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The IfIndex of this SYNC slot/conn/channel. This is
|
|
||||||
configured, but configuration is not available via
|
|
||||||
SNMP."
|
|
||||||
::= { alSyncStatsEntry 5 }
|
|
||||||
|
|
||||||
alSyncStatsPortState OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
init(1), -- port is coming up
|
|
||||||
running(2), -- port has finished initialization
|
|
||||||
-- and is waiting to transition to
|
|
||||||
-- data state
|
|
||||||
up(3), -- ready to pass packets
|
|
||||||
down(4) -- port is down, unable to pass
|
|
||||||
-- packets
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The current operational state of the interface.
|
|
||||||
The init(1) state indicates the port is in the state
|
|
||||||
of trying to come up. It will transition to running(2)
|
|
||||||
once initialization is complete. up(3) indicates the
|
|
||||||
interface is capable of passing packets. down(4) indicates
|
|
||||||
the interface is no longer capable of passing packets."
|
|
||||||
::= { alSyncStatsEntry 6 }
|
|
||||||
|
|
||||||
alSyncStatsRxFrames OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of frames received on this HDLC interface."
|
|
||||||
::= { alSyncStatsEntry 7 }
|
|
||||||
|
|
||||||
alSyncStatsRxOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of octets received on this HDLC interface."
|
|
||||||
::= { alSyncStatsEntry 8 }
|
|
||||||
|
|
||||||
alSyncStatsRxReplenFails OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of times receive buffers could not be allocated
|
|
||||||
on this HDLC interface."
|
|
||||||
::= { alSyncStatsEntry 9 }
|
|
||||||
|
|
||||||
alSyncStatsRxClockErrors OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of clock errors on this HDLC interface."
|
|
||||||
::= { alSyncStatsEntry 10 }
|
|
||||||
|
|
||||||
alSyncStatsRxDpllErrors OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of DPLL errors received on this HDLC interface."
|
|
||||||
::= { alSyncStatsEntry 11 }
|
|
||||||
|
|
||||||
alSyncStatsRxFrameTooLongErrors OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of received long frame errors received on this
|
|
||||||
HDLC interface."
|
|
||||||
::= { alSyncStatsEntry 12 }
|
|
||||||
|
|
||||||
alSyncStatsRxFrameOctetAlignErrors OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of received long frame errors received on
|
|
||||||
this HDLC interface."
|
|
||||||
::= { alSyncStatsEntry 13 }
|
|
||||||
|
|
||||||
alSyncStatsRxAbortErrors OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of received abort errors received on
|
|
||||||
this HDLC interface."
|
|
||||||
::= { alSyncStatsEntry 14 }
|
|
||||||
|
|
||||||
alSyncStatsRxCrcErrors OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of received CRC errors received on
|
|
||||||
this HDLC interface."
|
|
||||||
::= { alSyncStatsEntry 15 }
|
|
||||||
|
|
||||||
alSyncStatsRxRcvrOverrunErrors OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of received CRC errors received on
|
|
||||||
this HDLC interface."
|
|
||||||
::= { alSyncStatsEntry 16 }
|
|
||||||
|
|
||||||
alSyncStatsTxFrames OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of transmitted frames on this HDLC interface."
|
|
||||||
::= { alSyncStatsEntry 17 }
|
|
||||||
|
|
||||||
alSyncStatsTxOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of transmitted frames on this HDLC interface."
|
|
||||||
::= { alSyncStatsEntry 18 }
|
|
||||||
|
|
||||||
alSyncStatsTxRingFullDropsErrors OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of frames dropped on this HDLC interface because
|
|
||||||
the transmit ring was full."
|
|
||||||
::= { alSyncStatsEntry 19 }
|
|
||||||
|
|
||||||
alSyncStatsTxClockErrors OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of transmit clock errors on this HDLC interface."
|
|
||||||
::= { alSyncStatsEntry 20 }
|
|
||||||
|
|
||||||
alSyncStatsTxFrameTooLongErrors OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of frames dropped this HDLC interface because they
|
|
||||||
were long than the interface's MTU."
|
|
||||||
::= { alSyncStatsEntry 21 }
|
|
||||||
|
|
||||||
alSyncStatsTxUnderrunErrors OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of transmitter underruns on this HDLC interface."
|
|
||||||
::= { alSyncStatsEntry 22 }
|
|
||||||
|
|
||||||
altigaSyncStatsMibConformance OBJECT IDENTIFIER
|
|
||||||
::= { altigaSyncStatsMibModule 1 }
|
|
||||||
|
|
||||||
altigaSyncStatsMibCompliances OBJECT IDENTIFIER
|
|
||||||
::= { altigaSyncStatsMibConformance 1 }
|
|
||||||
|
|
||||||
altigaSyncStatsMibCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for agents which
|
|
||||||
implement the Altiga Sync Statistics MIB."
|
|
||||||
MODULE
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
altigaSyncStatsGroup
|
|
||||||
}
|
|
||||||
::= { altigaSyncStatsMibCompliances 1 }
|
|
||||||
|
|
||||||
altigaSyncStatsGroup OBJECT-GROUP
|
|
||||||
OBJECTS
|
|
||||||
{
|
|
||||||
alSyncStatsRowStatus,
|
|
||||||
alSyncStatsSlot,
|
|
||||||
alSyncStatsConn,
|
|
||||||
alSyncStatsChannel,
|
|
||||||
alSyncStatsIfIndex,
|
|
||||||
alSyncStatsPortState,
|
|
||||||
alSyncStatsRxFrames,
|
|
||||||
alSyncStatsRxOctets,
|
|
||||||
alSyncStatsRxReplenFails,
|
|
||||||
alSyncStatsRxClockErrors,
|
|
||||||
alSyncStatsRxDpllErrors,
|
|
||||||
alSyncStatsRxFrameTooLongErrors,
|
|
||||||
alSyncStatsRxFrameOctetAlignErrors,
|
|
||||||
alSyncStatsRxAbortErrors,
|
|
||||||
alSyncStatsRxCrcErrors,
|
|
||||||
alSyncStatsRxRcvrOverrunErrors,
|
|
||||||
alSyncStatsTxFrames,
|
|
||||||
alSyncStatsTxOctets,
|
|
||||||
alSyncStatsTxRingFullDropsErrors,
|
|
||||||
alSyncStatsTxClockErrors,
|
|
||||||
alSyncStatsTxFrameTooLongErrors,
|
|
||||||
alSyncStatsTxUnderrunErrors
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The objects for SYNC configuration."
|
|
||||||
::= { alSyncGroup 2 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
@ -1,275 +0,0 @@
|
|||||||
-- *------------------------------------------------------------------
|
|
||||||
-- * ALTIGA-T1E1-STATS-MIB.my: Altiga T1/E1 Statistics MIB.
|
|
||||||
-- *
|
|
||||||
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
|
|
||||||
-- *
|
|
||||||
-- * Copyright (c) 2002 by Cisco Systems, Inc.
|
|
||||||
-- * All rights reserved.
|
|
||||||
-- *
|
|
||||||
-- *------------------------------------------------------------------
|
|
||||||
|
|
||||||
ALTIGA-T1E1-STATS-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY, OBJECT-TYPE, Integer32, Counter32
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
RowStatus
|
|
||||||
FROM SNMPv2-TC
|
|
||||||
OBJECT-GROUP, MODULE-COMPLIANCE
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
alStatsT1E1, alT1E1Group
|
|
||||||
FROM ALTIGA-MIB
|
|
||||||
alT1E1MibModule
|
|
||||||
FROM ALTIGA-GLOBAL-REG;
|
|
||||||
|
|
||||||
altigaT1E1StatsMibModule MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200209051300Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
E-mail: cs-cvpn3000@cisco.com"
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
"The Altiga T1/E1 Statistics MIB models counters and objects that are
|
|
||||||
of management interest.
|
|
||||||
|
|
||||||
Acronyms
|
|
||||||
The following acronyms are used in this document:
|
|
||||||
|
|
||||||
MIB: Management Information Base
|
|
||||||
|
|
||||||
"
|
|
||||||
|
|
||||||
REVISION "200209051300Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added module compliance."
|
|
||||||
|
|
||||||
REVISION "200207100000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Updated with new header"
|
|
||||||
|
|
||||||
::= { alT1E1MibModule 2 }
|
|
||||||
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
-- MIB Objects
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
|
|
||||||
alStatsT1E1Global OBJECT IDENTIFIER ::= { alStatsT1E1 1 }
|
|
||||||
|
|
||||||
alT1E1StatsTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AlT1E1StatsEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The T1/E1 interface statistics MIB."
|
|
||||||
::= { alStatsT1E1 2 }
|
|
||||||
|
|
||||||
alT1E1StatsEntry OBJECT-TYPE
|
|
||||||
SYNTAX AlT1E1StatsEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry the alT1E1StatsTable."
|
|
||||||
INDEX { alT1E1StatsSlot, alT1E1StatsConn }
|
|
||||||
::= { alT1E1StatsTable 1 }
|
|
||||||
|
|
||||||
AlT1E1StatsEntry ::= SEQUENCE {
|
|
||||||
alT1E1StatsRowStatus RowStatus,
|
|
||||||
alT1E1StatsSlot Integer32,
|
|
||||||
alT1E1StatsConn Integer32,
|
|
||||||
alT1E1StatsLineStatus INTEGER,
|
|
||||||
alT1E1StatsElapsedSecs Counter32,
|
|
||||||
alT1E1StatsBPVs Counter32,
|
|
||||||
alT1E1StatsESs Counter32,
|
|
||||||
alT1E1StatsSESs Counter32,
|
|
||||||
alT1E1StatsBESs Counter32,
|
|
||||||
alT1E1StatsSEFSs Counter32,
|
|
||||||
alT1E1StatsUASs Counter32,
|
|
||||||
alT1E1StatsLCVs Counter32,
|
|
||||||
alT1E1StatsCSSs Counter32,
|
|
||||||
alT1E1StatsDMs Counter32,
|
|
||||||
alT1E1StatsPCVs Counter32,
|
|
||||||
alT1E1StatsLESs Counter32
|
|
||||||
}
|
|
||||||
|
|
||||||
alT1E1StatsRowStatus OBJECT-TYPE
|
|
||||||
SYNTAX RowStatus
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The status of this row."
|
|
||||||
::= { alT1E1StatsEntry 1 }
|
|
||||||
|
|
||||||
alT1E1StatsSlot OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The physical slot for this T1/E1 port. Part of the index."
|
|
||||||
::= { alT1E1StatsEntry 2 }
|
|
||||||
|
|
||||||
alT1E1StatsConn OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The physical connector for this T1/E1 port. Part of the index."
|
|
||||||
::= { alT1E1StatsEntry 3 }
|
|
||||||
|
|
||||||
alT1E1StatsLineStatus OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
init (1),
|
|
||||||
up (2),
|
|
||||||
red (3),
|
|
||||||
blue (4),
|
|
||||||
yellow (5),
|
|
||||||
loopback (6)
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The current status of the line."
|
|
||||||
::= { alT1E1StatsEntry 4 }
|
|
||||||
|
|
||||||
alT1E1StatsElapsedSecs OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of seconds this T1/E1 port has been running."
|
|
||||||
::= { alT1E1StatsEntry 5 }
|
|
||||||
|
|
||||||
alT1E1StatsBPVs OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of bipolar violations detected on this T1/E1 port."
|
|
||||||
::= { alT1E1StatsEntry 6 }
|
|
||||||
|
|
||||||
alT1E1StatsESs OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of errored seconds detected on this T1/E1 port."
|
|
||||||
::= { alT1E1StatsEntry 7 }
|
|
||||||
|
|
||||||
alT1E1StatsSESs OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of severly errored secondss detected on this T1/E1 port."
|
|
||||||
::= { alT1E1StatsEntry 8 }
|
|
||||||
|
|
||||||
alT1E1StatsBESs OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of bursty errored seconds detected on this T1/E1 port."
|
|
||||||
::= { alT1E1StatsEntry 9 }
|
|
||||||
|
|
||||||
alT1E1StatsSEFSs OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of severly errored framing seconds detected on this T1/E1 port."
|
|
||||||
::= { alT1E1StatsEntry 10 }
|
|
||||||
|
|
||||||
alT1E1StatsUASs OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of unavailable seconds detected on this T1/E1 port."
|
|
||||||
::= { alT1E1StatsEntry 11 }
|
|
||||||
|
|
||||||
alT1E1StatsLCVs OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of line coding violations detected on this T1/E1 port."
|
|
||||||
::= { alT1E1StatsEntry 12 }
|
|
||||||
|
|
||||||
alT1E1StatsCSSs OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of controlled slips detected on this T1/E1 port."
|
|
||||||
::= { alT1E1StatsEntry 13 }
|
|
||||||
|
|
||||||
alT1E1StatsDMs OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of degraded minutes detected on this T1/E1 port."
|
|
||||||
::= { alT1E1StatsEntry 14 }
|
|
||||||
|
|
||||||
alT1E1StatsPCVs OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of path coding violations detected on this T1/E1 port."
|
|
||||||
::= { alT1E1StatsEntry 15 }
|
|
||||||
|
|
||||||
alT1E1StatsLESs OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of line errored seconds detected on this T1/E1 port."
|
|
||||||
::= { alT1E1StatsEntry 16 }
|
|
||||||
|
|
||||||
altigaT1E1StatsMibConformance OBJECT IDENTIFIER ::= { altigaT1E1StatsMibModule 1 }
|
|
||||||
altigaT1E1StatsMibCompliances OBJECT IDENTIFIER ::= { altigaT1E1StatsMibConformance 1 }
|
|
||||||
|
|
||||||
altigaT1E1StatsMibCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for agents which
|
|
||||||
implement the Altiga T1/E1 Statistics MIB."
|
|
||||||
MODULE
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
altigaT1E1StatsGroup
|
|
||||||
}
|
|
||||||
::= { altigaT1E1StatsMibCompliances 1 }
|
|
||||||
|
|
||||||
altigaT1E1StatsGroup OBJECT-GROUP
|
|
||||||
OBJECTS
|
|
||||||
{
|
|
||||||
alT1E1StatsRowStatus,
|
|
||||||
alT1E1StatsSlot,
|
|
||||||
alT1E1StatsConn,
|
|
||||||
alT1E1StatsLineStatus,
|
|
||||||
alT1E1StatsElapsedSecs,
|
|
||||||
alT1E1StatsBPVs,
|
|
||||||
alT1E1StatsESs,
|
|
||||||
alT1E1StatsSESs,
|
|
||||||
alT1E1StatsBESs,
|
|
||||||
alT1E1StatsSEFSs,
|
|
||||||
alT1E1StatsUASs,
|
|
||||||
alT1E1StatsLCVs,
|
|
||||||
alT1E1StatsCSSs,
|
|
||||||
alT1E1StatsDMs,
|
|
||||||
alT1E1StatsPCVs,
|
|
||||||
alT1E1StatsLESs
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The objects for T1/E1 configuration."
|
|
||||||
::= { alT1E1Group 2 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
@ -1,585 +0,0 @@
|
|||||||
-- *------------------------------------------------------------------
|
|
||||||
-- * ALTIGA-TELNET-STATS-MIB.my: Altiga TELNET Statistics MIB.
|
|
||||||
-- *
|
|
||||||
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
|
|
||||||
-- *
|
|
||||||
-- * Copyright (c) 2002 by Cisco Systems, Inc.
|
|
||||||
-- * All rights reserved.
|
|
||||||
-- *
|
|
||||||
-- *------------------------------------------------------------------
|
|
||||||
|
|
||||||
ALTIGA-TELNET-STATS-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY, OBJECT-TYPE, Integer32, IpAddress, Gauge32, Counter32
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
RowStatus, DisplayString
|
|
||||||
FROM SNMPv2-TC
|
|
||||||
OBJECT-GROUP, MODULE-COMPLIANCE
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
alStatsTelnet, alTelnetGroup
|
|
||||||
FROM ALTIGA-MIB
|
|
||||||
alTelnetMibModule
|
|
||||||
FROM ALTIGA-GLOBAL-REG;
|
|
||||||
|
|
||||||
altigaTelnetStatsMibModule MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200209051300Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
E-mail: cs-cvpn3000@cisco.com"
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
"The Altiga TELNET Statistics MIB models counters and objects that are
|
|
||||||
of management interest for telnet sessions.
|
|
||||||
|
|
||||||
Acronyms
|
|
||||||
The following acronyms are used in this document:
|
|
||||||
|
|
||||||
MIB: Management Information Base
|
|
||||||
|
|
||||||
"
|
|
||||||
|
|
||||||
REVISION "200209051300Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added module compliance."
|
|
||||||
|
|
||||||
REVISION "200207100000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Updated with new header"
|
|
||||||
|
|
||||||
::= { alTelnetMibModule 2 }
|
|
||||||
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
-- MIB Objects
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
|
|
||||||
alStatsTelnetGlobal OBJECT IDENTIFIER ::= { alStatsTelnet 1 }
|
|
||||||
|
|
||||||
alTelnetStatsActiveSessions OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of active Telnet sessions."
|
|
||||||
::= { alStatsTelnetGlobal 1 }
|
|
||||||
|
|
||||||
alTelnetStatsAttemptedSessions OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of attempts made to establish Telnet sessions."
|
|
||||||
::= { alStatsTelnetGlobal 2 }
|
|
||||||
|
|
||||||
alTelnetStatsSuccessfulSessions OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of successfully established Telnet sessions."
|
|
||||||
::= { alStatsTelnetGlobal 3 }
|
|
||||||
|
|
||||||
alTelnetStatsInNetPackets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of Telnet packets that were received from the network
|
|
||||||
since the system was booted."
|
|
||||||
::= { alStatsTelnetGlobal 4 }
|
|
||||||
|
|
||||||
alTelnetStatsInNetOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of Telnet octets that were received from the network
|
|
||||||
since the system was booted."
|
|
||||||
::= { alStatsTelnetGlobal 5 }
|
|
||||||
|
|
||||||
alTelnetStatsInNetCmdOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of octets that contained Telnet commands or options
|
|
||||||
that were received from the network since the system was booted."
|
|
||||||
::= { alStatsTelnetGlobal 6 }
|
|
||||||
|
|
||||||
-- /* Syncs sequences are not yet supported, but when they are add the following:
|
|
||||||
-- /* should move it to the bottom to avoid renumbering, but this is it's pos in TNSTATS
|
|
||||||
-- alTelnetStatsSyncSeqs OBJECT-TYPE
|
|
||||||
-- SYNTAX Counter32
|
|
||||||
-- MAX-ACCESS read-only
|
|
||||||
-- STATUS current
|
|
||||||
-- DESCRIPTION
|
|
||||||
-- "The total number of Telnet sync sequences that were received from
|
|
||||||
-- the network since the system was booted."
|
|
||||||
-- ::= { alStatsTelnetGlobal X }
|
|
||||||
|
|
||||||
alTelnetStatsInNetDropPackets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of Telnet packets from the network that were
|
|
||||||
dropped during input processing since the system was booted."
|
|
||||||
::= { alStatsTelnetGlobal 7 }
|
|
||||||
|
|
||||||
alTelnetStatsInNetDropOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of Telnet octets from the network that were
|
|
||||||
dropped during input processing since the system was booted."
|
|
||||||
::= { alStatsTelnetGlobal 8 }
|
|
||||||
|
|
||||||
-- /* Out Net
|
|
||||||
|
|
||||||
alTelnetStatsOutNetPackets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of Telnet packets that were transmitted to the network
|
|
||||||
since the system was booted."
|
|
||||||
::= { alStatsTelnetGlobal 9 }
|
|
||||||
|
|
||||||
alTelnetStatsOutNetOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of Telnet octets that were transmitted to the network
|
|
||||||
since the system was booted."
|
|
||||||
::= { alStatsTelnetGlobal 10 }
|
|
||||||
|
|
||||||
alTelnetStatsOutNetDropPackets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of Telnet packets destined for the network that were
|
|
||||||
dropped during output processing since the system was booted."
|
|
||||||
::= { alStatsTelnetGlobal 11 }
|
|
||||||
|
|
||||||
alTelnetStatsOutNetDropOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of Telnet octets destined for the network that were
|
|
||||||
dropped during output processing since the system was booted."
|
|
||||||
::= { alStatsTelnetGlobal 12 }
|
|
||||||
|
|
||||||
-- In Shell
|
|
||||||
|
|
||||||
alTelnetStatsInShPackets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of Telnet packets that were received from the shell
|
|
||||||
since the system was booted."
|
|
||||||
::= { alStatsTelnetGlobal 13 }
|
|
||||||
|
|
||||||
alTelnetStatsInShOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of Telnet octets that were received from the shell
|
|
||||||
since the system was booted."
|
|
||||||
::= { alStatsTelnetGlobal 14 }
|
|
||||||
|
|
||||||
alTelnetStatsInShDropPackets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of Telnet packets from the shell that were
|
|
||||||
dropped during input processing since the system was booted."
|
|
||||||
::= { alStatsTelnetGlobal 15 }
|
|
||||||
|
|
||||||
alTelnetStatsInShDropOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of Telnet octets from the shell that were
|
|
||||||
dropped during input processing since the system was booted."
|
|
||||||
::= { alStatsTelnetGlobal 16 }
|
|
||||||
|
|
||||||
-- Out Shell
|
|
||||||
|
|
||||||
alTelnetStatsOutShPackets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of Telnet packets that were transmitted to the shell
|
|
||||||
since the system was booted."
|
|
||||||
::= { alStatsTelnetGlobal 17 }
|
|
||||||
|
|
||||||
alTelnetStatsOutShOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of Telnet octets that were transmitted to the shell
|
|
||||||
since the system was booted."
|
|
||||||
::= { alStatsTelnetGlobal 18 }
|
|
||||||
|
|
||||||
alTelnetStatsOutShDropPackets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of Telnet packets destined for the shell that were
|
|
||||||
dropped during output processing since the system was booted."
|
|
||||||
::= { alStatsTelnetGlobal 19 }
|
|
||||||
|
|
||||||
alTelnetStatsOutShDropOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of Telnet octets destined for the shell that were
|
|
||||||
dropped during output processing since the system was booted."
|
|
||||||
::= { alStatsTelnetGlobal 20 }
|
|
||||||
|
|
||||||
|
|
||||||
-- Per session stats
|
|
||||||
|
|
||||||
alTelnetStatsSessionTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AlTelnetStatsSessionEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"List of active sessions."
|
|
||||||
::= { alStatsTelnet 2 }
|
|
||||||
|
|
||||||
alTelnetStatsSessionEntry OBJECT-TYPE
|
|
||||||
SYNTAX AlTelnetStatsSessionEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry in the alTelnetStatsSessionTable."
|
|
||||||
INDEX { alTelnetStatsSessionId }
|
|
||||||
::= { alTelnetStatsSessionTable 1 }
|
|
||||||
|
|
||||||
AlTelnetStatsSessionEntry ::= SEQUENCE {
|
|
||||||
alTelnetStatsSessionRowStatus RowStatus,
|
|
||||||
alTelnetStatsSessionId Integer32,
|
|
||||||
alTelnetStatsSessionIpAddr IpAddress,
|
|
||||||
alTelnetStatsSessionSrcPort Integer32,
|
|
||||||
alTelnetStatsSessionName DisplayString,
|
|
||||||
alTelnetStatsSessionInNetPackets Counter32,
|
|
||||||
alTelnetStatsSessionInNetOctets Counter32,
|
|
||||||
alTelnetStatsSessionInNetCmdOctets Counter32,
|
|
||||||
-- alTelnetStatsSessionSyncSeqs Counter32,
|
|
||||||
alTelnetStatsSessionInNetDropPackets Counter32,
|
|
||||||
alTelnetStatsSessionInNetDropOctets Counter32,
|
|
||||||
alTelnetStatsSessionOutNetPackets Counter32,
|
|
||||||
alTelnetStatsSessionOutNetOctets Counter32,
|
|
||||||
alTelnetStatsSessionOutNetDropPackets Counter32,
|
|
||||||
alTelnetStatsSessionOutNetDropOctets Counter32,
|
|
||||||
alTelnetStatsSessionInShPackets Counter32,
|
|
||||||
alTelnetStatsSessionInShOctets Counter32,
|
|
||||||
alTelnetStatsSessionInShDropPackets Counter32,
|
|
||||||
alTelnetStatsSessionInShDropOctets Counter32,
|
|
||||||
alTelnetStatsSessionOutShPackets Counter32,
|
|
||||||
alTelnetStatsSessionOutShOctets Counter32,
|
|
||||||
alTelnetStatsSessionOutShDropPackets Counter32,
|
|
||||||
alTelnetStatsSessionOutShDropOctets Counter32
|
|
||||||
}
|
|
||||||
|
|
||||||
alTelnetStatsSessionRowStatus OBJECT-TYPE
|
|
||||||
SYNTAX RowStatus
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The status of this row. Used to terminate the session,
|
|
||||||
cannot be used to create a Session."
|
|
||||||
::= { alTelnetStatsSessionEntry 1 }
|
|
||||||
|
|
||||||
alTelnetStatsSessionId OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The unique Telnet session process ID, used as the
|
|
||||||
index for this row."
|
|
||||||
::= { alTelnetStatsSessionEntry 2 }
|
|
||||||
|
|
||||||
alTelnetStatsSessionIpAddr OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The IP address of the remote client."
|
|
||||||
::= { alTelnetStatsSessionEntry 3 }
|
|
||||||
|
|
||||||
alTelnetStatsSessionSrcPort OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The TCP source port number of the remote client."
|
|
||||||
::= { alTelnetStatsSessionEntry 4 }
|
|
||||||
|
|
||||||
alTelnetStatsSessionName OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The unique Telnet session process name, used as the
|
|
||||||
index for this row."
|
|
||||||
::= { alTelnetStatsSessionEntry 5 }
|
|
||||||
|
|
||||||
alTelnetStatsSessionInNetPackets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The per session number of Telnet packets that were received from the network
|
|
||||||
since the system was booted."
|
|
||||||
::= { alTelnetStatsSessionEntry 6 }
|
|
||||||
|
|
||||||
alTelnetStatsSessionInNetOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The per session number of Telnet octets that were received from the network
|
|
||||||
since the system was booted."
|
|
||||||
::= { alTelnetStatsSessionEntry 7 }
|
|
||||||
|
|
||||||
alTelnetStatsSessionInNetCmdOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The per session number of octets that contained Telnet commands or options
|
|
||||||
that were received from the network since the system was booted."
|
|
||||||
::= { alTelnetStatsSessionEntry 8 }
|
|
||||||
|
|
||||||
-- Syncs sequences are not yet supported, but when they are add the following:
|
|
||||||
-- should move it to the bottom to avoid renumbering, but this is it's pos in TNSTATS
|
|
||||||
-- alTelnetStatsSessionSyncSeqs OBJECT-TYPE
|
|
||||||
-- SYNTAX Counter32
|
|
||||||
-- MAX-ACCESS read-only
|
|
||||||
-- STATUS current
|
|
||||||
-- DESCRIPTION
|
|
||||||
-- "The per session number of Telnet sync sequences that were received from
|
|
||||||
-- the network since the system was booted."
|
|
||||||
-- ::= { alTelnetStatsSessionEntry XX }
|
|
||||||
|
|
||||||
alTelnetStatsSessionInNetDropPackets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The per session number of Telnet packets from the network that were
|
|
||||||
dropped during input processing since the system was booted."
|
|
||||||
::= { alTelnetStatsSessionEntry 9 }
|
|
||||||
|
|
||||||
alTelnetStatsSessionInNetDropOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The per session number of Telnet octets from the network that were
|
|
||||||
dropped during input processing since the system was booted."
|
|
||||||
::= { alTelnetStatsSessionEntry 10 }
|
|
||||||
|
|
||||||
-- Out Net
|
|
||||||
|
|
||||||
alTelnetStatsSessionOutNetPackets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The per session number of Telnet packets that were transmitted to the network
|
|
||||||
since the system was booted."
|
|
||||||
::= { alTelnetStatsSessionEntry 11 }
|
|
||||||
|
|
||||||
alTelnetStatsSessionOutNetOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The per session number of Telnet octets that were transmitted to the network
|
|
||||||
since the system was booted."
|
|
||||||
::= { alTelnetStatsSessionEntry 12 }
|
|
||||||
|
|
||||||
alTelnetStatsSessionOutNetDropPackets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The per session number of Telnet packets destined for the network that were
|
|
||||||
dropped during output processing since the system was booted."
|
|
||||||
::= { alTelnetStatsSessionEntry 13 }
|
|
||||||
|
|
||||||
alTelnetStatsSessionOutNetDropOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The per session number of Telnet octets destined for the network that were
|
|
||||||
dropped during output processing since the system was booted."
|
|
||||||
::= { alTelnetStatsSessionEntry 14 }
|
|
||||||
|
|
||||||
-- In Shell
|
|
||||||
|
|
||||||
alTelnetStatsSessionInShPackets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The per session number of Telnet packets that were received from the shell
|
|
||||||
since the system was booted."
|
|
||||||
::= { alTelnetStatsSessionEntry 15 }
|
|
||||||
|
|
||||||
alTelnetStatsSessionInShOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The per session number of Telnet octets that were received from the shell
|
|
||||||
since the system was booted."
|
|
||||||
::= { alTelnetStatsSessionEntry 16 }
|
|
||||||
|
|
||||||
alTelnetStatsSessionInShDropPackets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The per session number of Telnet packets from the shell that were
|
|
||||||
dropped during input processing since the system was booted."
|
|
||||||
::= { alTelnetStatsSessionEntry 17 }
|
|
||||||
|
|
||||||
alTelnetStatsSessionInShDropOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The per session number of Telnet octets from the shell that were
|
|
||||||
dropped during input processing since the system was booted."
|
|
||||||
::= { alTelnetStatsSessionEntry 18 }
|
|
||||||
|
|
||||||
-- Out Shell
|
|
||||||
|
|
||||||
alTelnetStatsSessionOutShPackets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The per session number of Telnet packets that were transmitted to the shell
|
|
||||||
since the system was booted."
|
|
||||||
::= { alTelnetStatsSessionEntry 19 }
|
|
||||||
|
|
||||||
alTelnetStatsSessionOutShOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The per session number of Telnet octets that were transmitted to the shell
|
|
||||||
since the system was booted."
|
|
||||||
::= { alTelnetStatsSessionEntry 20 }
|
|
||||||
|
|
||||||
alTelnetStatsSessionOutShDropPackets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The per session number of Telnet packets destined for the shell that were
|
|
||||||
dropped during output processing since the system was booted."
|
|
||||||
::= { alTelnetStatsSessionEntry 21 }
|
|
||||||
|
|
||||||
alTelnetStatsSessionOutShDropOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The per session number of Telnet octets destined for the shell that were
|
|
||||||
dropped during output processing since the system was booted."
|
|
||||||
::= { alTelnetStatsSessionEntry 22 }
|
|
||||||
|
|
||||||
altigaTelnetStatsMibConformance OBJECT IDENTIFIER ::= { altigaTelnetStatsMibModule 1 }
|
|
||||||
altigaTelnetStatsMibCompliances OBJECT IDENTIFIER ::= { altigaTelnetStatsMibConformance 1 }
|
|
||||||
|
|
||||||
altigaTelnetStatsMibCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for agents which
|
|
||||||
implement the Altiga Telnet Statistics MIB."
|
|
||||||
MODULE
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
altigaTelnetStatsGroup
|
|
||||||
}
|
|
||||||
::= { altigaTelnetStatsMibCompliances 1 }
|
|
||||||
|
|
||||||
altigaTelnetStatsGroup OBJECT-GROUP
|
|
||||||
OBJECTS
|
|
||||||
{
|
|
||||||
alTelnetStatsActiveSessions,
|
|
||||||
alTelnetStatsAttemptedSessions,
|
|
||||||
alTelnetStatsSuccessfulSessions,
|
|
||||||
alTelnetStatsInNetPackets,
|
|
||||||
alTelnetStatsInNetOctets,
|
|
||||||
alTelnetStatsInNetCmdOctets,
|
|
||||||
-- alTelnetStatsSyncSeqs,
|
|
||||||
alTelnetStatsInNetDropPackets,
|
|
||||||
alTelnetStatsInNetDropOctets,
|
|
||||||
alTelnetStatsOutNetPackets,
|
|
||||||
alTelnetStatsOutNetOctets,
|
|
||||||
alTelnetStatsOutNetDropPackets,
|
|
||||||
alTelnetStatsOutNetDropOctets,
|
|
||||||
alTelnetStatsInShPackets,
|
|
||||||
alTelnetStatsInShOctets,
|
|
||||||
alTelnetStatsInShDropPackets,
|
|
||||||
alTelnetStatsInShDropOctets,
|
|
||||||
alTelnetStatsOutShPackets,
|
|
||||||
alTelnetStatsOutShOctets,
|
|
||||||
alTelnetStatsOutShDropPackets,
|
|
||||||
alTelnetStatsOutShDropOctets,
|
|
||||||
alTelnetStatsSessionRowStatus,
|
|
||||||
alTelnetStatsSessionId,
|
|
||||||
alTelnetStatsSessionIpAddr,
|
|
||||||
alTelnetStatsSessionSrcPort,
|
|
||||||
alTelnetStatsSessionName,
|
|
||||||
alTelnetStatsSessionInNetPackets,
|
|
||||||
alTelnetStatsSessionInNetOctets,
|
|
||||||
alTelnetStatsSessionInNetCmdOctets,
|
|
||||||
-- alTelnetStatsSessionSyncSeqs,
|
|
||||||
alTelnetStatsSessionInNetDropPackets,
|
|
||||||
alTelnetStatsSessionInNetDropOctets,
|
|
||||||
alTelnetStatsSessionOutNetPackets,
|
|
||||||
alTelnetStatsSessionOutNetOctets,
|
|
||||||
alTelnetStatsSessionOutNetDropPackets,
|
|
||||||
alTelnetStatsSessionOutNetDropOctets,
|
|
||||||
alTelnetStatsSessionInShPackets,
|
|
||||||
alTelnetStatsSessionInShOctets,
|
|
||||||
alTelnetStatsSessionInShDropPackets,
|
|
||||||
alTelnetStatsSessionInShDropOctets,
|
|
||||||
alTelnetStatsSessionOutShPackets,
|
|
||||||
alTelnetStatsSessionOutShOctets,
|
|
||||||
alTelnetStatsSessionOutShDropPackets,
|
|
||||||
alTelnetStatsSessionOutShDropOctets
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The objects for the Telnet Server statistics."
|
|
||||||
::= { alTelnetGroup 2 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
@ -1,158 +0,0 @@
|
|||||||
-- *------------------------------------------------------------------
|
|
||||||
-- * ALTIGA-VERSION-STATS-MIB.my: Altiga Version MIB.
|
|
||||||
-- *
|
|
||||||
-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
|
|
||||||
-- *
|
|
||||||
-- * Copyright (c) 2002 by Cisco Systems, Inc.
|
|
||||||
-- * All rights reserved.
|
|
||||||
-- *
|
|
||||||
-- *------------------------------------------------------------------
|
|
||||||
|
|
||||||
ALTIGA-VERSION-STATS-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY, OBJECT-TYPE, Unsigned32
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
TEXTUAL-CONVENTION, DisplayString
|
|
||||||
FROM SNMPv2-TC
|
|
||||||
MODULE-COMPLIANCE, OBJECT-GROUP
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
alStatsVersion, alVersionGroup
|
|
||||||
FROM ALTIGA-MIB
|
|
||||||
alVersionMibModule
|
|
||||||
FROM ALTIGA-GLOBAL-REG;
|
|
||||||
|
|
||||||
altigaVersionStatsMibModule MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200209051300Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
E-mail: cs-cvpn3000@cisco.com"
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
"The Altiga (VPN 3000) Version MIB models counters and
|
|
||||||
objects that are of management interest.
|
|
||||||
|
|
||||||
Acronyms
|
|
||||||
The following acronyms are used in this document:
|
|
||||||
|
|
||||||
MIB: Management Information Base
|
|
||||||
|
|
||||||
"
|
|
||||||
|
|
||||||
REVISION "200209051300Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Initial version of this MIB module."
|
|
||||||
|
|
||||||
::= { alVersionMibModule 2 }
|
|
||||||
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
-- MIB Objects
|
|
||||||
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
|
|
||||||
alStatsVersionGlobal OBJECT IDENTIFIER ::= { alStatsVersion 1 }
|
|
||||||
|
|
||||||
alVersionMajor OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The major release number of the VPN 3000 software. In the
|
|
||||||
release identifier 1.4.2, the 1 is the major release
|
|
||||||
number."
|
|
||||||
::= { alStatsVersionGlobal 1 }
|
|
||||||
|
|
||||||
alVersionMinor OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The minor release number of the VPN 3000 software. In the
|
|
||||||
release identifier 1.4.2, the 4 is the minor release
|
|
||||||
number."
|
|
||||||
::= { alStatsVersionGlobal 2 }
|
|
||||||
|
|
||||||
alVersionInt OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The integration string of the VPN 3000 software. In the
|
|
||||||
release identifier 1.4.2, the 2 is the patch release
|
|
||||||
number."
|
|
||||||
::= { alStatsVersionGlobal 3 }
|
|
||||||
|
|
||||||
alVersionString OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The string representation of the VPN 3000 software
|
|
||||||
version."
|
|
||||||
::= { alStatsVersionGlobal 4 }
|
|
||||||
|
|
||||||
alVersionLong OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The long string representation of the VPN 3000 software
|
|
||||||
version."
|
|
||||||
::= { alStatsVersionGlobal 5 }
|
|
||||||
|
|
||||||
alVersionShort OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The short string representation of the VPN3000 software
|
|
||||||
version."
|
|
||||||
::= { alStatsVersionGlobal 6 }
|
|
||||||
|
|
||||||
alVersionBoot OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The version of the Boot image."
|
|
||||||
::= { alStatsVersionGlobal 7 }
|
|
||||||
|
|
||||||
altigaVersionStatsMibConformance OBJECT IDENTIFIER
|
|
||||||
::= { altigaVersionStatsMibModule 1 }
|
|
||||||
|
|
||||||
altigaVersionStatsMibCompliances OBJECT IDENTIFIER
|
|
||||||
::= { altigaVersionStatsMibConformance 1 }
|
|
||||||
|
|
||||||
altigaVersionStatsMibCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for agents which
|
|
||||||
implement the Altiga Version Statistics MIB."
|
|
||||||
MODULE
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
altigaVersionStatsGroup
|
|
||||||
}
|
|
||||||
::= { altigaVersionStatsMibCompliances 1 }
|
|
||||||
|
|
||||||
altigaVersionStatsGroup OBJECT-GROUP
|
|
||||||
OBJECTS
|
|
||||||
{
|
|
||||||
alVersionMajor,
|
|
||||||
alVersionMinor,
|
|
||||||
alVersionInt,
|
|
||||||
alVersionString,
|
|
||||||
alVersionLong,
|
|
||||||
alVersionShort,
|
|
||||||
alVersionBoot
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The objects for the version statistics."
|
|
||||||
::= { alVersionGroup 2 }
|
|
||||||
|
|
||||||
END
|
|
@ -1,378 +0,0 @@
|
|||||||
-- *****************************************************************
|
|
||||||
-- APPN DLUR MIB
|
|
||||||
--
|
|
||||||
-- Jan 1996, Barry Chan
|
|
||||||
--
|
|
||||||
-- Copyright (c) 1996 by cisco Systems, Inc.
|
|
||||||
-- All rights reserved.
|
|
||||||
-- *****************************************************************
|
|
||||||
--
|
|
||||||
-- This mib was extracted from RFC xxxx
|
|
||||||
|
|
||||||
|
|
||||||
APPN-DLUR-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
-- ***********************************************************************
|
|
||||||
-- MIB for APPN Dependent LU Requester
|
|
||||||
--
|
|
||||||
-- This MIB contains information that is useful for the management of an
|
|
||||||
-- APPN product that implements DLUR (Dependent Logical Unit Requester).
|
|
||||||
-- This DLUR product has a client/server relationship with an APPN product
|
|
||||||
-- that implements DLUR (Dependent Logical Unit Server).
|
|
||||||
--
|
|
||||||
-- This MIB has three groups:
|
|
||||||
--
|
|
||||||
--
|
|
||||||
-- dlurNodeCapabilities * information about the DLUR implementation
|
|
||||||
--
|
|
||||||
-- dlurPuInfo * information about the PUs supported by DLUR
|
|
||||||
--
|
|
||||||
-- (this MIB assumes the presence of the IETF
|
|
||||||
-- NAU MIB, which provides a standard model
|
|
||||||
-- for representing PU configurations)
|
|
||||||
--
|
|
||||||
-- dlurDlurInfo * information about the DLUS nodes that this
|
|
||||||
-- DLUR node has sessions with
|
|
||||||
-- ***********************************************************************
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
enterprises
|
|
||||||
FROM RFC1155-SMI
|
|
||||||
|
|
||||||
DisplayString
|
|
||||||
FROM RFC1213-MIB
|
|
||||||
|
|
||||||
OBJECT-TYPE
|
|
||||||
FROM RFC-1212;
|
|
||||||
|
|
||||||
-- *************** The appnDlur registration point ********************
|
|
||||||
|
|
||||||
ibm OBJECT IDENTIFIER ::= { enterprises 2 }
|
|
||||||
ibmArchitecture OBJECT IDENTIFIER ::= { ibm 5 }
|
|
||||||
appnDlur OBJECT IDENTIFIER ::= { ibmArchitecture 12 }
|
|
||||||
|
|
||||||
-- ********************************************************************
|
|
||||||
-- DLUR Capabilities of the node
|
|
||||||
--
|
|
||||||
-- This group represents the capabilities and options of the DLUR
|
|
||||||
-- implementation.
|
|
||||||
-- ********************************************************************
|
|
||||||
dlurNodeCapabilities OBJECT IDENTIFIER ::= { appnDlur 1 }
|
|
||||||
|
|
||||||
dlurReleaseLevel OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString (SIZE (2))
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"The DLUR release level of this implementation. This is the
|
|
||||||
value that is encoded in the DLUR/DLUS Capabilities (CV51).
|
|
||||||
To insure consistent display, this one-byte value is encoded
|
|
||||||
here as two displayable characters that are equivalent to a
|
|
||||||
hexidecimal display. For example, if the one-byte value as
|
|
||||||
encoded in CV51 is X' 1', this object will contain the
|
|
||||||
displayable string ' 1'."
|
|
||||||
|
|
||||||
::= { dlurNodeCapabilities 1 }
|
|
||||||
|
|
||||||
dlurANSsupport OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
continueOrStop(1),
|
|
||||||
stopOnly(2)
|
|
||||||
}
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"Automatic Network Shutdown capability of this node.
|
|
||||||
|
|
||||||
'continueOrStop' indicates that the DLUR implementation
|
|
||||||
supports either ANS value (continue or stop) as specified by the
|
|
||||||
SLU on ACTPU value of stop.
|
|
||||||
|
|
||||||
'stopOnly' indicates that the DLUR implementation only
|
|
||||||
supports the AND value of stop.
|
|
||||||
|
|
||||||
ANS = continue means that the DLUR node will keep LU-LU sessions
|
|
||||||
active even is the SSCP-PU and SSCP-LU control sessions are interrupted.
|
|
||||||
|
|
||||||
ANS = stop means that LU-LU sessions will be interrupted when the
|
|
||||||
SSCP-PU and SSCP-LU sessions are interrupted."
|
|
||||||
|
|
||||||
::= { dlurNodeCapabilities 2 }
|
|
||||||
|
|
||||||
dlurMultiSubnetSupport OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
yes(1),
|
|
||||||
no(2)
|
|
||||||
}
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"Capability of this implementation to support CP-SVR sessions
|
|
||||||
that cross NETID boundaries.
|
|
||||||
|
|
||||||
'yes' means that these sessions can cross NETID boundaries.
|
|
||||||
|
|
||||||
'no' means that these sessions cannot cross NETID boundaries."
|
|
||||||
|
|
||||||
::= { dlurNodeCapabilities 3 }
|
|
||||||
|
|
||||||
-- **************************************************************************
|
|
||||||
-- DLUR-unique Information about the PUs
|
|
||||||
--
|
|
||||||
-- The following talbe carries DLUR-unique information about the PUs
|
|
||||||
-- that this APPN node is supporting via DLUR. Notice that this table
|
|
||||||
-- is intended to supplement the snaNodeAdminTable and snaNodeOperTable
|
|
||||||
-- in the IETF NAU MIB. Those tables provide a general purpose method
|
|
||||||
-- for representing information about a set of PU resources.
|
|
||||||
-- **************************************************************************
|
|
||||||
dlurPuInfo OBJECT IDENTIFIER ::= { appnDlur 2 }
|
|
||||||
|
|
||||||
dlurPuTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF DlurPuEntry
|
|
||||||
ACCESS not-accessible
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"DLUr-unique information about supported PUs."
|
|
||||||
|
|
||||||
::= { dlurPuInfo 1 }
|
|
||||||
|
|
||||||
dlurPuEntry OBJECT-TYPE
|
|
||||||
SYNTAX DlurPuEntry
|
|
||||||
ACCESS not-accessible
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"Entry in table of DLUR-unique information about PUs."
|
|
||||||
|
|
||||||
INDEX
|
|
||||||
{ dlurPuIndex }
|
|
||||||
|
|
||||||
::= { dlurPuTable 1 }
|
|
||||||
|
|
||||||
DlurPuEntry ::= SEQUENCE {
|
|
||||||
dlurPuIndex
|
|
||||||
INTEGER,
|
|
||||||
dlurPuName
|
|
||||||
DisplayString,
|
|
||||||
dlurPuStatus
|
|
||||||
INTEGER,
|
|
||||||
dlurPuANSsupport
|
|
||||||
INTEGER,
|
|
||||||
dlurPuLocation
|
|
||||||
INTEGER,
|
|
||||||
dlurPuDlusSessnStatus
|
|
||||||
INTEGER,
|
|
||||||
dlurPuActiveDlusName
|
|
||||||
DisplayString,
|
|
||||||
dlurPuDefPrimDlusName
|
|
||||||
DisplayString,
|
|
||||||
dlurPuDefBackDlusName
|
|
||||||
DisplayString
|
|
||||||
}
|
|
||||||
|
|
||||||
dlurPuIndex OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"This object has the same value as snaNodeAdminIndex
|
|
||||||
in the snaNodeAdminEntry and snaNodeOperEntry entries of the
|
|
||||||
IETF SNA NAU MIB that provide information about the same PU."
|
|
||||||
|
|
||||||
::= { dlurPuEntry 1 }
|
|
||||||
|
|
||||||
dlurPuName OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString (SIZE (1..17))
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"The SNA name of the PU. This value is expressed as
|
|
||||||
NETID.PUNAME, including the perios (.). If the NETID is
|
|
||||||
not known, the PU name alone is provided. A null string
|
|
||||||
indicates that the value is unavailable."
|
|
||||||
|
|
||||||
::= { dlurPuEntry 2 }
|
|
||||||
|
|
||||||
dlurPuStatus OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
reset(1),
|
|
||||||
pendReqActRsp(2),
|
|
||||||
pendActpu(3),
|
|
||||||
pendActpuRsp(4),
|
|
||||||
active(5),
|
|
||||||
pendLinkact(6),
|
|
||||||
pendDactpuRsp(7),
|
|
||||||
pendInop(8),
|
|
||||||
pendInopActpu(9)
|
|
||||||
}
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"Status of the DLUR-supported PU.
|
|
||||||
This is a more detailed enumeration os the state of the PU
|
|
||||||
than is found in the ANU MB."
|
|
||||||
|
|
||||||
::= { dlurPuEntry 3 }
|
|
||||||
|
|
||||||
dlurPuANSsupport OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
continue(1),
|
|
||||||
stop(2)
|
|
||||||
}
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"The Automatic Network Shutdown (AND) support configured for this
|
|
||||||
PU. This value (as configured by the network administrator) is
|
|
||||||
sent by the DLUS with ACTPU for each PU.
|
|
||||||
|
|
||||||
'continue' means that the DLUR node will attempt to keep LU-LU
|
|
||||||
sessions active even is the SSCP-PU and SSCP-LU control sessions
|
|
||||||
are interrupted.
|
|
||||||
|
|
||||||
'stop' means that LU-LU sessions will be interrupted when the
|
|
||||||
SSCP-PU and SSCP-LU sessions are interrupted."
|
|
||||||
|
|
||||||
::= { dlurPuEntry 4 }
|
|
||||||
|
|
||||||
dlurPuLocation OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
internal(1),
|
|
||||||
downstream(2)
|
|
||||||
}
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"Location of the DLUR-supported PU. Either internal to the APPN
|
|
||||||
node itself (no link)_ or downstream of the APPN node
|
|
||||||
(connected via a link)."
|
|
||||||
|
|
||||||
::= { dlurPuEntry 5 }
|
|
||||||
|
|
||||||
dlurPuDlusSessnStatus OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
reset(1),
|
|
||||||
pendingActive(2),
|
|
||||||
active(3),
|
|
||||||
pendingInactive(4)
|
|
||||||
}
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"Status of the control session to the DLUS identified in
|
|
||||||
dlurPuActiveDlusName. This is a combination os
|
|
||||||
the separate states for the conwinner and conloser sessions."
|
|
||||||
|
|
||||||
::= { dlurPuEntry 6 }
|
|
||||||
|
|
||||||
|
|
||||||
dlurPuActiveDlusName OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString (SIZE (0..17))
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"The SNA name of the active DLUS. This value is expressed as
|
|
||||||
NETID.CPNAME, including the periois (.). A null string
|
|
||||||
indicates that the value is unavailable."
|
|
||||||
|
|
||||||
::= { dlurPuEntry 7 }
|
|
||||||
|
|
||||||
dlurPuDefPrimDlusName OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString (SIZE (0..17))
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"The SNA name os the defined primary DLUS for this PU.
|
|
||||||
Expressed as NETID.CPNAME, including the period (.).
|
|
||||||
A null string indicates that he value is unavailable."
|
|
||||||
|
|
||||||
::= { dlurPuEntry 8 }
|
|
||||||
|
|
||||||
dlurPuDefBackDlusName OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString (SIZE (0..17))
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"The SNA name of the defined backup DLUR for this PU.
|
|
||||||
Expressed as NETID.CPNAME, including the period (.).
|
|
||||||
A null string indicates that the value is unavailable."
|
|
||||||
|
|
||||||
::= { dlurPuEntry 9 }
|
|
||||||
|
|
||||||
-- ***********************************************************************
|
|
||||||
-- DLUS Control Sessions (CP-SVR Pipes)
|
|
||||||
--
|
|
||||||
-- This table contains information about DLUS control sessions (also known
|
|
||||||
-- as CP-SVR pipes). Although DLUR uses a pair of CP-SVR sessions for
|
|
||||||
-- communication, for purposes of status, information about those two
|
|
||||||
-- sessions is combined to yield a single status for the request/server
|
|
||||||
-- connection.
|
|
||||||
-- ***********************************************************************
|
|
||||||
dlurDlusInfo OBJECT IDENTIFIER ::= { appnDlur 3 }
|
|
||||||
|
|
||||||
dlurDlusTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF DlurDlusEntry
|
|
||||||
ACCESS not-accessible
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"Information about DLUS control sessions."
|
|
||||||
|
|
||||||
::= { dlurDlusInfo 1 }
|
|
||||||
|
|
||||||
dlurDlusEntry OBJECT-TYPE
|
|
||||||
SYNTAX DlurDlusEntry
|
|
||||||
ACCESS not-accessible
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"Entry in table of information about DLUS control sessions."
|
|
||||||
|
|
||||||
INDEX
|
|
||||||
{ dlurDlusIndex }
|
|
||||||
|
|
||||||
::= { dlurDlusTable 1 }
|
|
||||||
|
|
||||||
DlurDlusEntry ::= SEQUENCE {
|
|
||||||
dlurDlusIndex
|
|
||||||
INTEGER,
|
|
||||||
dlurDlusName
|
|
||||||
DisplayString,
|
|
||||||
dlurDlusSessnStatus
|
|
||||||
INTEGER
|
|
||||||
}
|
|
||||||
|
|
||||||
dlurDlusIndex OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"Index to the table."
|
|
||||||
|
|
||||||
::= { dlurDlusEntry 1 }
|
|
||||||
|
|
||||||
dlurDlusName OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString (SIZE(0..17))
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"The SNA name of the DLUS. This value is expressed as
|
|
||||||
NETID.CPNAME, including the period (.). A null string
|
|
||||||
indicates that the value is unavailable."
|
|
||||||
|
|
||||||
::= { dlurDlusEntry 2 }
|
|
||||||
|
|
||||||
dlurDlusSessnStatus OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
reset(1),
|
|
||||||
pendingActive(2),
|
|
||||||
active(3),
|
|
||||||
pendingInactive(4)
|
|
||||||
}
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"Status of the session with the DLUS. This is the combination os
|
|
||||||
the separate states for the conwinner and conloser sessions."
|
|
||||||
|
|
||||||
::= { dlurDlusEntry 3 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
@ -1,523 +0,0 @@
|
|||||||
-- *****************************************************************
|
|
||||||
-- APPN Trap MIB
|
|
||||||
--
|
|
||||||
-- May 1999, Patrick Tate
|
|
||||||
--
|
|
||||||
-- Copyright (c) 1999 by cisco Systems, Inc.
|
|
||||||
-- All rights reserved.
|
|
||||||
-- *****************************************************************
|
|
||||||
--
|
|
||||||
|
|
||||||
APPN-TRAP-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
|
|
||||||
Counter32, OBJECT-TYPE, MODULE-IDENTITY,
|
|
||||||
NOTIFICATION-TYPE
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
|
|
||||||
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
|
|
||||||
appnMIB, appnIsInP2SFmdPius, appnIsInS2PFmdPius,
|
|
||||||
appnIsInP2SNonFmdPius, appnIsInS2PNonFmdPius,
|
|
||||||
appnIsInP2SFmdBytes, appnIsInS2PFmdBytes,
|
|
||||||
appnIsInP2SNonFmdBytes, appnIsInS2PNonFmdBytes,
|
|
||||||
appnIsInSessUpTime, appnObjects,
|
|
||||||
appnLocalTgOperational, appnLocalTgCpCpSession,
|
|
||||||
appnPortOperState, appnLsOperState,
|
|
||||||
appnCompliances, appnGroups
|
|
||||||
FROM APPN-MIB
|
|
||||||
|
|
||||||
dlurDlusSessnStatus
|
|
||||||
FROM APPN-DLUR-MIB;
|
|
||||||
|
|
||||||
appnTrapMIB MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "9808310000Z" -- August 31, 1998
|
|
||||||
ORGANIZATION "IETF SNA NAU MIB WG / AIW APPN MIBs SIG"
|
|
||||||
CONTACT-INFO
|
|
||||||
|
|
||||||
"
|
|
||||||
Bob Clouston
|
|
||||||
Cisco Systems
|
|
||||||
7025 Kit Creek Road
|
|
||||||
P.O. Box 14987
|
|
||||||
Research Triangle Park, NC 27709, USA
|
|
||||||
Tel: 1 919 472 2333
|
|
||||||
E-mail: clouston@cisco.com
|
|
||||||
|
|
||||||
Bob Moore
|
|
||||||
IBM Corporation
|
|
||||||
4205 S. Miami Boulevard
|
|
||||||
BRQA/501
|
|
||||||
P.O. Box 12195
|
|
||||||
Research Triangle Park, NC 27709, USA
|
|
||||||
|
|
||||||
|
|
||||||
Tel: 1 919 254 4436
|
|
||||||
E-mail: remoore@us.ibm.com
|
|
||||||
"
|
|
||||||
DESCRIPTION
|
|
||||||
"This MIB module defines notifications to be generated by
|
|
||||||
network devices with APPN capabilities. It presupposes
|
|
||||||
support for the APPN MIB. It also presupposes
|
|
||||||
support for the DLUR MIB for implementations
|
|
||||||
that support the DLUR-related groups."
|
|
||||||
|
|
||||||
::= { appnMIB 0 }
|
|
||||||
|
|
||||||
-- *********************************************************************
|
|
||||||
-- Notifications
|
|
||||||
-- *********************************************************************
|
|
||||||
|
|
||||||
appnIsrAccountingDataTrap NOTIFICATION-TYPE
|
|
||||||
OBJECTS {
|
|
||||||
appnIsInP2SFmdPius,
|
|
||||||
appnIsInS2PFmdPius,
|
|
||||||
appnIsInP2SNonFmdPius,
|
|
||||||
appnIsInS2PNonFmdPius,
|
|
||||||
appnIsInP2SFmdBytes,
|
|
||||||
appnIsInS2PFmdBytes,
|
|
||||||
appnIsInP2SNonFmdBytes,
|
|
||||||
appnIsInS2PNonFmdBytes,
|
|
||||||
appnIsInSessUpTime
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"When it has been enabled, this notification is generated by an
|
|
||||||
APPN node whenever an ISR session passing through the node is
|
|
||||||
taken down, regardless of whether the session went down
|
|
||||||
normally or abnormally. Its purpose is to allow a management
|
|
||||||
application (primarily an accounting application) that is
|
|
||||||
monitoring the ISR counts to receive the final values of these
|
|
||||||
counts, so that the application can properly account for the
|
|
||||||
amounts the counts were incremented since the last time the
|
|
||||||
application polled them. The appnIsInSessUpTime object
|
|
||||||
provides the total amount of time that the session was active.
|
|
||||||
|
|
||||||
This notification is not a substitute for polling the ISR
|
|
||||||
counts. In particular, the count values reported in this
|
|
||||||
notification cannot be assumed to be the complete totals for
|
|
||||||
the life of the session, since they may have wrapped while the
|
|
||||||
session was up.
|
|
||||||
|
|
||||||
|
|
||||||
The session to which the objects in this notification apply is
|
|
||||||
identified by the fully qualified CP name and PCID that make up
|
|
||||||
the table index. An instance of this notification will contain
|
|
||||||
exactly one instance of each of its objects, and these objects
|
|
||||||
will all belong to the same conceptual row of the
|
|
||||||
appnIsInTable.
|
|
||||||
|
|
||||||
Generation of this notification is controlled by the same
|
|
||||||
object in the APPN MIB, appnIsInGlobeCtrAdminStatus, that
|
|
||||||
controls whether the count objects themselves are being
|
|
||||||
incremented."
|
|
||||||
|
|
||||||
::= { appnTrapMIB 1 }
|
|
||||||
|
|
||||||
appnLocalTgOperStateChangeTrap NOTIFICATION-TYPE
|
|
||||||
OBJECTS {
|
|
||||||
appnLocalTgTableChanges,
|
|
||||||
appnLocalTgOperational
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"When it has been enabled, this notification makes it possible
|
|
||||||
for an APPN topology application to get asynchronous
|
|
||||||
notifications of local TG operational state changes,
|
|
||||||
and thus to reduce the frequency with which it polls
|
|
||||||
for these changes.
|
|
||||||
|
|
||||||
This notification is sent whenever there is a change to
|
|
||||||
the appnLocalTgOperational object in a row of the
|
|
||||||
appnLocalTgTable. This notification is only sent for row
|
|
||||||
creation if the row is created with a value of 'true' for
|
|
||||||
appnLocalTgOperational. This notification is only sent for
|
|
||||||
row deletion if the last value of appnLocalTgOperational was
|
|
||||||
'true'. In this case, the value of appnLocalTgOperational
|
|
||||||
in the notification shall be 'false', since the deletion of
|
|
||||||
a row indicates that the TG is no longer operational.
|
|
||||||
|
|
||||||
The notification is more than a simple 'poll me now' indication.
|
|
||||||
It carries both a count of local TG topology changes, and the
|
|
||||||
current operational state itself. The count of changes allows an
|
|
||||||
application to detect lost notifications, either when polling
|
|
||||||
or upon receiving a subsequent notification, at which point it
|
|
||||||
knows it must retrieve the entire appnLocalTgTable again.
|
|
||||||
This is the same count as used in the appnLocalCpCpStateChangeTrap.
|
|
||||||
A lost notification could indicate a local TG CP-CP session state
|
|
||||||
change or an operational state change.
|
|
||||||
|
|
||||||
|
|
||||||
Generation of this notification is controlled by the
|
|
||||||
appnTrapControl object."
|
|
||||||
|
|
||||||
::= { appnTrapMIB 2 }
|
|
||||||
|
|
||||||
appnLocalTgCpCpChangeTrap NOTIFICATION-TYPE
|
|
||||||
OBJECTS {
|
|
||||||
appnLocalTgTableChanges,
|
|
||||||
appnLocalTgCpCpSession
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"When it has been enabled, this notification makes it possible
|
|
||||||
for an APPN topology application to get asynchronous
|
|
||||||
notifications of local TG control-point to control-point (CP-CP)
|
|
||||||
session state changes, and thus to reduce the
|
|
||||||
frequency with which it polls for these changes.
|
|
||||||
|
|
||||||
This notification is sent whenever there is a change to
|
|
||||||
the appnLocalTgCpCpSession object but NOT the
|
|
||||||
appnLocalTgOperational object in a row of the appnLocalTgTable.
|
|
||||||
This notification is never sent for appnLocalTgTable row
|
|
||||||
creation or deletion.
|
|
||||||
|
|
||||||
The notification is more than a simple 'poll me now' indication.
|
|
||||||
It carries both a count of local TG topology changes, and the
|
|
||||||
current CP-CP session state itself. The count of changes allows
|
|
||||||
an application to detect lost notifications, either when polling
|
|
||||||
or upon receiving a subsequent notification, at which point it
|
|
||||||
knows it must retrieve the entire appnLocalTgTable again. This
|
|
||||||
is the same count as used in the appnLocalTgOperStateChangeTrap.
|
|
||||||
A lost notification could indicate a local TG CP-CP session
|
|
||||||
state change or an operational state change.
|
|
||||||
|
|
||||||
Generation of this notification is controlled by the
|
|
||||||
appnTrapControl object."
|
|
||||||
|
|
||||||
::= { appnTrapMIB 3 }
|
|
||||||
|
|
||||||
appnPortOperStateChangeTrap NOTIFICATION-TYPE
|
|
||||||
OBJECTS {
|
|
||||||
appnPortTableChanges,
|
|
||||||
appnPortOperState
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"When it has been enabled, this notification makes it possible
|
|
||||||
for an APPN topology application to get asynchronous
|
|
||||||
notifications of port operational state changes, and thus to
|
|
||||||
reduce the frequency with which it polls for these changes.
|
|
||||||
This notification is only sent when a appnPortOperState has
|
|
||||||
transitioned to a value of 'active' or 'inactive'.
|
|
||||||
|
|
||||||
This notification is sent whenever there is a appnPortOperState
|
|
||||||
object transition to 'inactive' or 'active' state in the
|
|
||||||
appnPortTable. This notification is only sent for row creation
|
|
||||||
if the row is created with a value of 'active' for
|
|
||||||
appnPortOperState. This notification is only sent for
|
|
||||||
row deletion if the last value of appnPortOperState was
|
|
||||||
'active'. In this case, the value of appnPortOperState
|
|
||||||
in the notification shall be 'inactive', since the deletion of
|
|
||||||
a row indicates that the port is no longer active.
|
|
||||||
|
|
||||||
The notification is more than a simple 'poll me now' indication.
|
|
||||||
It carries both a count of port table changes, and the
|
|
||||||
operational state itself. The count of changes allows an
|
|
||||||
application to detect lost notifications, either when polling
|
|
||||||
or upon receiving a subsequent notification, at which point
|
|
||||||
it knows it must retrieve the entire appnPortTable again.
|
|
||||||
|
|
||||||
Generation of this notification is controlled by the
|
|
||||||
appnTrapControl object."
|
|
||||||
|
|
||||||
::= { appnTrapMIB 4 }
|
|
||||||
|
|
||||||
appnLsOperStateChangeTrap NOTIFICATION-TYPE
|
|
||||||
OBJECTS {
|
|
||||||
appnLsTableChanges,
|
|
||||||
appnLsOperState
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"When it has been enabled, this notification makes it possible
|
|
||||||
for an APPN topology application to get asynchronous
|
|
||||||
notifications of link station operational state changes, and
|
|
||||||
thus to reduce the frequency with which it polls for these
|
|
||||||
changes. This notification is only sent when a appnLsOperState
|
|
||||||
has transitioned to a value of 'active' or 'inactive'.
|
|
||||||
|
|
||||||
This notification is sent whenever there is a appnLsOperState
|
|
||||||
|
|
||||||
|
|
||||||
object transition to 'inactive' or 'active' state in the
|
|
||||||
appnLsTable. This notification is only sent for row creation
|
|
||||||
if the row is created with a value of 'active' for
|
|
||||||
appnLsOperState. This notification is only sent for
|
|
||||||
row deletion if the last value of appnLsOperState was
|
|
||||||
'active'. In this case, the value of appnLsOperState
|
|
||||||
in the notification shall be 'inactive', since the deletion of
|
|
||||||
a row indicates that the link station is no longer active.
|
|
||||||
|
|
||||||
The notification is more than a simple 'poll me now' indication.
|
|
||||||
It carries both a count of link station table changes, and the
|
|
||||||
operational state itself. The count of changes allows an
|
|
||||||
application to detect lost notifications, either when polling
|
|
||||||
or upon receiving a subsequent notification, at which point it
|
|
||||||
knows it must retrieve the entire appnLsTable again.
|
|
||||||
|
|
||||||
Generation of this notification is controlled by the
|
|
||||||
appnTrapControl object."
|
|
||||||
|
|
||||||
::= { appnTrapMIB 5 }
|
|
||||||
|
|
||||||
dlurDlusStateChangeTrap NOTIFICATION-TYPE
|
|
||||||
OBJECTS {
|
|
||||||
dlurDlusTableChanges,
|
|
||||||
dlurDlusSessnStatus
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"When it has been enabled, this notification makes it possible
|
|
||||||
for an APPN topology application to get asynchronous
|
|
||||||
notifications of DLUR-DLUS session changes, and thus to reduce
|
|
||||||
the frequency with which it polls for these changes.
|
|
||||||
|
|
||||||
This notification is sent whenever there is a dlurDlusSessnStatus
|
|
||||||
object transition to 'inactive' or 'active' state in the
|
|
||||||
dlurDlusTable. This notification is only sent for row creation
|
|
||||||
if the row is created with a value of 'active' for
|
|
||||||
dlurDlusSessnStatus. This notification is only sent for
|
|
||||||
row deletion if the last value of dlurDlusSessnStatus was
|
|
||||||
'active'. In this case, the value of dlurDlusSessnStatus
|
|
||||||
in the notification shall be 'inactive', since the deletion of
|
|
||||||
a row indicates that the session is no longer active.
|
|
||||||
|
|
||||||
The notification is more than a simple 'poll me now' indication.
|
|
||||||
It carries both a count of DLUR-DLUS table changes, and the
|
|
||||||
session status itself. The count of changes allows an
|
|
||||||
|
|
||||||
|
|
||||||
application to detect lost notifications, either when polling
|
|
||||||
or upon receiving a subsequent notification, at which point it
|
|
||||||
knows it must retrieve the entire dlurDlusTable again.
|
|
||||||
|
|
||||||
Generation of this notification is controlled by the
|
|
||||||
appnTrapControl object."
|
|
||||||
|
|
||||||
::= { appnTrapMIB 6 }
|
|
||||||
|
|
||||||
-- *********************************************************************
|
|
||||||
-- Supporting Objects
|
|
||||||
-- *********************************************************************
|
|
||||||
|
|
||||||
appnTrapObjects OBJECT IDENTIFIER ::= { appnObjects 7 }
|
|
||||||
|
|
||||||
appnTrapControl OBJECT-TYPE
|
|
||||||
|
|
||||||
SYNTAX BITS {
|
|
||||||
appnLocalTgOperStateChangeTrap(0),
|
|
||||||
appnLocalTgCpCpChangeTrap(1),
|
|
||||||
appnPortOperStateChangeTrap(2),
|
|
||||||
appnLsOperStateChangeTrap(3),
|
|
||||||
dlurDlusStateChangeTrap(4)
|
|
||||||
-- add other notification types here
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An object to turn APPN notification generation on and off.
|
|
||||||
Setting a notification type's bit to 1 enables generation of
|
|
||||||
notifications of that type, subject to further filtering
|
|
||||||
resulting from entries in the snmpNotificationMIB. Setting
|
|
||||||
this bit to 0 disables generation of notifications of that
|
|
||||||
type.
|
|
||||||
|
|
||||||
Note that generation of the appnIsrAccountingDataTrap is
|
|
||||||
controlled by the appnIsInGlobeCtrAdminStatus object in
|
|
||||||
the APPN MIB: if counts of intermediate session traffic
|
|
||||||
are being kept at all, then the notification is also enabled."
|
|
||||||
|
|
||||||
::= { appnTrapObjects 1 }
|
|
||||||
|
|
||||||
appnLocalTgTableChanges OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
|
|
||||||
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A count of the number of times a row in the appnLocalTgTable
|
|
||||||
has changed status since the APPN node was last reinitialized.
|
|
||||||
This counter is incremented whenever a condition is detected
|
|
||||||
that would cause a appnLocalTgOperStateChangeTrap or
|
|
||||||
appnLocalTgCpCpChangeTrap notification to be sent, whether
|
|
||||||
or not those notifications are enabled."
|
|
||||||
|
|
||||||
::= { appnTrapObjects 2 }
|
|
||||||
|
|
||||||
appnPortTableChanges OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A count of the number of times a row in the appnPortTable
|
|
||||||
has changed status since the APPN node was last reinitialized.
|
|
||||||
This counter is incremented whenever a condition is detected
|
|
||||||
that would cause a appnPortOperStateChangeTrap notification
|
|
||||||
to be sent, whether or not this notification is enabled."
|
|
||||||
|
|
||||||
::= { appnTrapObjects 3 }
|
|
||||||
|
|
||||||
appnLsTableChanges OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A count of the number of times a row in the appnLsTable
|
|
||||||
has changed status since the APPN node was last reinitialized.
|
|
||||||
This counter is incremented whenever a condition is detected
|
|
||||||
that would cause a appnLsOperStateChangeTrap notification
|
|
||||||
to be sent, whether or not this notification is enabled."
|
|
||||||
|
|
||||||
::= { appnTrapObjects 4 }
|
|
||||||
|
|
||||||
dlurDlusTableChanges OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A count of the number of times a row in the dlurDlusTable
|
|
||||||
has changed status since the APPN node was last reinitialized.
|
|
||||||
This counter is incremented whenever a condition is detected
|
|
||||||
that would cause a dlurDlusStateChangeTrap notification
|
|
||||||
|
|
||||||
|
|
||||||
to be sent, whether or not this notification is enabled."
|
|
||||||
|
|
||||||
::= { appnTrapObjects 5 }
|
|
||||||
|
|
||||||
-- *********************************************************************
|
|
||||||
-- Conformance information
|
|
||||||
-- *********************************************************************
|
|
||||||
|
|
||||||
-- Tie into the conformance structure in the APPN MIB:
|
|
||||||
-- appnConformance OBJECT IDENTIFIER ::= {appnMIB 3 }
|
|
||||||
--
|
|
||||||
-- appnCompliances OBJECT IDENTIFIER ::= {appnConformance 1 }
|
|
||||||
-- appnGroups OBJECT IDENTIFIER ::= {appnConformance 2 }
|
|
||||||
|
|
||||||
-- Compliance statement
|
|
||||||
appnTrapMibCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for the SNMP entities that
|
|
||||||
implement the APPN-TRAP-MIB."
|
|
||||||
|
|
||||||
MODULE -- this module
|
|
||||||
|
|
||||||
-- Conditionally mandatory groups
|
|
||||||
GROUP appnTrapMibIsrNotifGroup
|
|
||||||
DESCRIPTION
|
|
||||||
"This group is mandatory for APPN nodes supporting
|
|
||||||
reporting of final ISR counter values via notifications."
|
|
||||||
|
|
||||||
GROUP appnTrapMibTopoConfGroup
|
|
||||||
DESCRIPTION
|
|
||||||
"This group is mandatory for APPN nodes supporting
|
|
||||||
polling reduction for local topology."
|
|
||||||
|
|
||||||
GROUP appnTrapMibTopoNotifGroup
|
|
||||||
DESCRIPTION
|
|
||||||
"This group is mandatory for APPN nodes supporting
|
|
||||||
polling reduction for local topology."
|
|
||||||
|
|
||||||
GROUP appnTrapMibDlurConfGroup
|
|
||||||
DESCRIPTION
|
|
||||||
"This group is mandatory for APPN nodes supporting
|
|
||||||
polling reduction for the dlurDlusTable."
|
|
||||||
|
|
||||||
GROUP appnTrapMibDlurNotifGroup
|
|
||||||
DESCRIPTION
|
|
||||||
|
|
||||||
|
|
||||||
"This group is mandatory for APPN nodes supporting
|
|
||||||
polling reduction for the dlurDlusTable."
|
|
||||||
|
|
||||||
OBJECT appnTrapControl
|
|
||||||
MIN-ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"An agent is not required to support a set to
|
|
||||||
this object."
|
|
||||||
|
|
||||||
::= {appnCompliances 2 }
|
|
||||||
|
|
||||||
-- Units of conformance
|
|
||||||
appnTrapMibIsrNotifGroup NOTIFICATION-GROUP
|
|
||||||
NOTIFICATIONS {
|
|
||||||
appnIsrAccountingDataTrap
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A notification for reporting the final values of the
|
|
||||||
APPN MIB's ISR counters."
|
|
||||||
|
|
||||||
::= { appnGroups 21 }
|
|
||||||
|
|
||||||
appnTrapMibTopoConfGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
appnTrapControl,
|
|
||||||
appnLocalTgTableChanges,
|
|
||||||
appnPortTableChanges,
|
|
||||||
appnLsTableChanges
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of objects for reducing the polling
|
|
||||||
associated with the local topology tables in the
|
|
||||||
APPN MIB. Nodes that implement this group SHALL
|
|
||||||
also implement the appnTrapMibTopoNotifGroup."
|
|
||||||
|
|
||||||
::= { appnGroups 22 }
|
|
||||||
|
|
||||||
appnTrapMibTopoNotifGroup NOTIFICATION-GROUP
|
|
||||||
NOTIFICATIONS {
|
|
||||||
appnLocalTgOperStateChangeTrap,
|
|
||||||
appnLocalTgCpCpChangeTrap,
|
|
||||||
appnPortOperStateChangeTrap,
|
|
||||||
appnLsOperStateChangeTrap
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of notifications for reducing the polling
|
|
||||||
associated with the local topology tables in the
|
|
||||||
APPN MIB. Nodes that implement this group SHALL
|
|
||||||
also implement the appnTrapMibTopoConfGroup."
|
|
||||||
|
|
||||||
::= { appnGroups 23 }
|
|
||||||
|
|
||||||
appnTrapMibDlurConfGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
appnTrapControl,
|
|
||||||
dlurDlusTableChanges
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of objects for reducing the polling
|
|
||||||
associated with the dlurDlusTable in the DLUR
|
|
||||||
MIB. Nodes that implement this group SHALL also
|
|
||||||
implement the appnTrapMibDlurNotifGroup."
|
|
||||||
|
|
||||||
::= { appnGroups 24 }
|
|
||||||
|
|
||||||
appnTrapMibDlurNotifGroup NOTIFICATION-GROUP
|
|
||||||
NOTIFICATIONS {
|
|
||||||
dlurDlusStateChangeTrap
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A notification for reducing the polling associated
|
|
||||||
with the dlurDlusTable in the DLUR MIB. Nodes that
|
|
||||||
implement this group SHALL also implement the
|
|
||||||
appnTrapMibDlurConfGroup."
|
|
||||||
|
|
||||||
::= { appnGroups 25 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
@ -1,465 +0,0 @@
|
|||||||
-- *****************************************************************
|
|
||||||
-- ATM Accounting Information MIB
|
|
||||||
--
|
|
||||||
-- Feb 1997, Vasmi Abidi
|
|
||||||
--
|
|
||||||
-- Copyright (c) 1996-1997, 1998 by cisco Systems, Inc.
|
|
||||||
-- All rights reserved.
|
|
||||||
-- *****************************************************************
|
|
||||||
--
|
|
||||||
-- This mib was extracted from an IETF Draft.
|
|
||||||
-- It currently uses a ciscoExperiment number.
|
|
||||||
|
|
||||||
ATM-ACCOUNTING-INFORMATION-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY, OBJECT-TYPE, OBJECT-IDENTITY,
|
|
||||||
Integer32,
|
|
||||||
Counter64 FROM SNMPv2-SMI
|
|
||||||
DisplayString, DateAndTime, TEXTUAL-CONVENTION
|
|
||||||
FROM SNMPv2-TC
|
|
||||||
ciscoExperiment FROM CISCO-SMI;
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
atmAccountingInformationMIB MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "9711050000Z"
|
|
||||||
ORGANIZATION "IETF AToM MIB Working Group"
|
|
||||||
CONTACT-INFO "
|
|
||||||
Keith McCloghrie
|
|
||||||
Cisco Systems, Inc.
|
|
||||||
170 West Tasman Drive,
|
|
||||||
San Jose CA 95134-1706.
|
|
||||||
Phone: +1 408 526 5260
|
|
||||||
Email: kzm@cisco.com"
|
|
||||||
DESCRIPTION
|
|
||||||
"The MIB module for identifying items of accounting
|
|
||||||
information which are applicable to ATM connections."
|
|
||||||
REVISION "9711050000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added objects atmAcctngTransmittedPeakCells and
|
|
||||||
atmAcctngReceivedPeakCells."
|
|
||||||
::= { ciscoExperiment 18 }
|
|
||||||
|
|
||||||
atmAcctngMIBObjects OBJECT IDENTIFIER ::= { atmAccountingInformationMIB 1 }
|
|
||||||
|
|
||||||
AtmAddr ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The ATM address used by the network entity.
|
|
||||||
The address types are: no address (0 octets),
|
|
||||||
E.164 (8 octets), and NSAP (20 octets).
|
|
||||||
Note: The E.164 address is encoded in BCD
|
|
||||||
format."
|
|
||||||
SYNTAX OCTET STRING (SIZE(0|8|20))
|
|
||||||
|
|
||||||
|
|
||||||
-- Definitions of objects for use in specifying ATM accounting
|
|
||||||
-- data to be collected
|
|
||||||
|
|
||||||
atmAcctngDataObjects OBJECT-IDENTITY
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This identifier defines a subtree under which various
|
|
||||||
objects are defined such that a set of objects to be
|
|
||||||
collected as ATM accounting data can be specified as a
|
|
||||||
(subtree, list) tuple using this identifier as the subtree."
|
|
||||||
::= { atmAcctngMIBObjects 1 }
|
|
||||||
|
|
||||||
-- Objects defined under the atmAcctngDataObjects subtree
|
|
||||||
--
|
|
||||||
-- In each case the semantics of the object are interpreted with
|
|
||||||
-- respect to the creation/storage of an accounting record for a
|
|
||||||
-- particular connection on a particular interface.
|
|
||||||
|
|
||||||
atmAcctngConnectionType OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER { pvc(1),
|
|
||||||
pvp(2),
|
|
||||||
svcIncoming(3),
|
|
||||||
svcOutgoing(4),
|
|
||||||
svpIncoming(5),
|
|
||||||
svpOutgoing(6),
|
|
||||||
spvcInitiator(7),
|
|
||||||
spvcTarget(8),
|
|
||||||
spvpInitiator(9),
|
|
||||||
spvpTarget(10) }
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The type of connection."
|
|
||||||
::= { atmAcctngDataObjects 1 }
|
|
||||||
|
|
||||||
atmAcctngCastType OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER { p2p(1), p2mp(2) }
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An indication of whether the connection is point-to-point
|
|
||||||
or point-to-multipoint."
|
|
||||||
::= { atmAcctngDataObjects 2 }
|
|
||||||
|
|
||||||
atmAcctngIfName OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A textual name for the interface on which the data for the
|
|
||||||
connection was collected. If the local SNMP agent supports
|
|
||||||
the object ifName, the value of this object must be
|
|
||||||
identical that of ifName in the conceptual row of the
|
|
||||||
ifTable corresponding to this interface."
|
|
||||||
::= { atmAcctngDataObjects 3 }
|
|
||||||
|
|
||||||
atmAcctngIfAlias OBJECT-TYPE
|
|
||||||
|
|
||||||
SYNTAX DisplayString
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The 'alias' name for the interface as specified by a
|
|
||||||
network manager, e.g., via a management set operation to
|
|
||||||
modify the relevant instance of the ifAlias object. Note
|
|
||||||
that in contrast to ifIndex, ifAlias provides a non-volatile
|
|
||||||
'handle' for the interface, the value of which is retained
|
|
||||||
across agent reboots."
|
|
||||||
::= { atmAcctngDataObjects 4 }
|
|
||||||
|
|
||||||
atmAcctngVpi OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (0..4095)
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The VPI used for the connection."
|
|
||||||
::= { atmAcctngDataObjects 5 }
|
|
||||||
|
|
||||||
atmAcctngVci OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (0..65535)
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The VCI used for the connection."
|
|
||||||
::= { atmAcctngDataObjects 6 }
|
|
||||||
|
|
||||||
atmAcctngCallingParty OBJECT-TYPE
|
|
||||||
SYNTAX AtmAddr
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The connection's calling party. If unknown (e.g., for a
|
|
||||||
PVC), then the value of this object is the zero-length
|
|
||||||
string."
|
|
||||||
::= { atmAcctngDataObjects 7 }
|
|
||||||
|
|
||||||
atmAcctngCalledParty OBJECT-TYPE
|
|
||||||
SYNTAX AtmAddr
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The connection's called party. If unknown (e.g., for a
|
|
||||||
PVC), then the value of this object is the zero-length
|
|
||||||
string."
|
|
||||||
::= { atmAcctngDataObjects 8 }
|
|
||||||
|
|
||||||
atmAcctngCallReference OBJECT-TYPE
|
|
||||||
SYNTAX OCTET STRING (SIZE(0..3))
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The connection's call reference value (e.g., from Q.2931).
|
|
||||||
If unknown (e.g., for a PVC), then the value of this object
|
|
||||||
is the zero-length string."
|
|
||||||
::= { atmAcctngDataObjects 9 }
|
|
||||||
|
|
||||||
atmAcctngStartTime OBJECT-TYPE
|
|
||||||
SYNTAX DateAndTime
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The time when the connection was established."
|
|
||||||
::= { atmAcctngDataObjects 10 }
|
|
||||||
|
|
||||||
atmAcctngCollectionTime OBJECT-TYPE
|
|
||||||
SYNTAX DateAndTime
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The time at which the data in this record was collected."
|
|
||||||
::= { atmAcctngDataObjects 11 }
|
|
||||||
|
|
||||||
atmAcctngCollectMode OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER { onRelease(1),
|
|
||||||
periodically(2),
|
|
||||||
onCommand(3) }
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The reason why this connection data was collected."
|
|
||||||
::= { atmAcctngDataObjects 12 }
|
|
||||||
|
|
||||||
atmAcctngReleaseCause OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"If the connection data was collected because of the release
|
|
||||||
|
|
||||||
of an SVC, then this is the cause code in the Release
|
|
||||||
message for the connection; otherwise, this object has the
|
|
||||||
value zero."
|
|
||||||
::= { atmAcctngDataObjects 13 }
|
|
||||||
|
|
||||||
atmAcctngServiceCategory OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER { other(1), cbr(2), vbrRt(3), vbrNrt(4),
|
|
||||||
abr(5), ubr(6), unknown(7) }
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The connection's service category."
|
|
||||||
::= { atmAcctngDataObjects 14 }
|
|
||||||
|
|
||||||
atmAcctngTransmittedCells OBJECT-TYPE
|
|
||||||
SYNTAX Counter64
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of cells, including OAM cells, transmitted by
|
|
||||||
this switch on this connection."
|
|
||||||
::= { atmAcctngDataObjects 15 }
|
|
||||||
|
|
||||||
atmAcctngTransmittedClp0Cells OBJECT-TYPE
|
|
||||||
SYNTAX Counter64
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of cells with CLP=0, including OAM cells,
|
|
||||||
transmitted by this switch on this connection."
|
|
||||||
::= { atmAcctngDataObjects 16 }
|
|
||||||
|
|
||||||
atmAcctngReceivedCells OBJECT-TYPE
|
|
||||||
SYNTAX Counter64
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of cells, including OAM cells, received by this
|
|
||||||
switch on this connection."
|
|
||||||
::= { atmAcctngDataObjects 17 }
|
|
||||||
|
|
||||||
atmAcctngReceivedClp0Cells OBJECT-TYPE
|
|
||||||
SYNTAX Counter64
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of cells with CLP=0, including OAM cells,
|
|
||||||
received by this switch on this connection."
|
|
||||||
::= { atmAcctngDataObjects 18 }
|
|
||||||
|
|
||||||
atmAcctngTransmitTrafficDescriptorType OBJECT-TYPE
|
|
||||||
SYNTAX OBJECT IDENTIFIER
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The traffic descriptor type (as defined in RFC 1695 and its
|
|
||||||
successors) in the direction in which the switch transmits
|
|
||||||
cells on the connection."
|
|
||||||
REFERENCE
|
|
||||||
"See atmTrafficDescriptorTypes in ATM-MIB.my in RFC 1695 and
|
|
||||||
its successors."
|
|
||||||
::= { atmAcctngDataObjects 19 }
|
|
||||||
|
|
||||||
atmAcctngTransmitTrafficDescriptorParam1 OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (0..2147483647)
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The first traffic descriptor parameter in the direction in
|
|
||||||
which this switch transmits cells on this connection.
|
|
||||||
Interpretation of this parameter is dependent on the value
|
|
||||||
of atmAcctngTransmitTrafficDescriptorType."
|
|
||||||
::= { atmAcctngDataObjects 20 }
|
|
||||||
|
|
||||||
atmAcctngTransmitTrafficDescriptorParam2 OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (0..2147483647)
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The second traffic descriptor parameter in the direction in
|
|
||||||
which this switch transmits cells on this connection.
|
|
||||||
Interpretation of this parameter is dependent on the value
|
|
||||||
of atmAcctngTransmitTrafficDescriptorType."
|
|
||||||
::= { atmAcctngDataObjects 21 }
|
|
||||||
|
|
||||||
atmAcctngTransmitTrafficDescriptorParam3 OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (0..2147483647)
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
|
|
||||||
"The third traffic descriptor parameter in the direction in
|
|
||||||
which this switch transmits cells on this connection.
|
|
||||||
Interpretation of this parameter is dependent on the value
|
|
||||||
of atmAcctngTransmitTrafficDescriptorType."
|
|
||||||
::= { atmAcctngDataObjects 22 }
|
|
||||||
|
|
||||||
atmAcctngTransmitTrafficDescriptorParam4 OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (0..2147483647)
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The fourth traffic descriptor parameter in the direction in
|
|
||||||
which this switch transmits cells on this connection.
|
|
||||||
Interpretation of this parameter is dependent on the value
|
|
||||||
of atmAcctngTransmitTrafficDescriptorType."
|
|
||||||
::= { atmAcctngDataObjects 23 }
|
|
||||||
|
|
||||||
atmAcctngTransmitTrafficDescriptorParam5 OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (0..2147483647)
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The fifth traffic descriptor parameter in the direction in
|
|
||||||
which this switch transmits cells on this connection.
|
|
||||||
Interpretation of this parameter is dependent on the value
|
|
||||||
of atmAcctngTransmitTrafficDescriptorType."
|
|
||||||
::= { atmAcctngDataObjects 24 }
|
|
||||||
|
|
||||||
atmAcctngReceiveTrafficDescriptorType OBJECT-TYPE
|
|
||||||
SYNTAX OBJECT IDENTIFIER
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The traffic descriptor type (as defined in RFC 1695 and its
|
|
||||||
successors) in the direction in which this switch receives
|
|
||||||
cells on this connection."
|
|
||||||
REFERENCE
|
|
||||||
"See atmTrafficDescriptorTypes in ATM-MIB.my in RFC 1695 and
|
|
||||||
its successors."
|
|
||||||
::= { atmAcctngDataObjects 25 }
|
|
||||||
|
|
||||||
atmAcctngReceiveTrafficDescriptorParam1 OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (0..2147483647)
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
"The first traffic descriptor parameter in the direction in
|
|
||||||
which this switch receives cells on this connection.
|
|
||||||
Interpretation of this parameter is dependent on the value
|
|
||||||
of atmAcctngReceiveTrafficDescriptorType."
|
|
||||||
::= { atmAcctngDataObjects 26 }
|
|
||||||
|
|
||||||
atmAcctngReceiveTrafficDescriptorParam2 OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (0..2147483647)
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The second traffic descriptor parameter in the direction in
|
|
||||||
which this switch receives cells on this connection.
|
|
||||||
Interpretation of this parameter is dependent on the value
|
|
||||||
of atmAcctngReceiveTrafficDescriptorType."
|
|
||||||
::= { atmAcctngDataObjects 27 }
|
|
||||||
|
|
||||||
atmAcctngReceiveTrafficDescriptorParam3 OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (0..2147483647)
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The third traffic descriptor parameter in the direction in
|
|
||||||
which this switch receives cells on this connection.
|
|
||||||
Interpretation of this parameter is dependent on the value
|
|
||||||
of atmAcctngReceiveTrafficDescriptorType."
|
|
||||||
::= { atmAcctngDataObjects 28 }
|
|
||||||
|
|
||||||
atmAcctngReceiveTrafficDescriptorParam4 OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (0..2147483647)
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The fourth traffic descriptor parameter in the direction in
|
|
||||||
which this switch receives cells on this connection.
|
|
||||||
Interpretation of this parameter is dependent on the value
|
|
||||||
of atmAcctngReceiveTrafficDescriptorType."
|
|
||||||
::= { atmAcctngDataObjects 29 }
|
|
||||||
|
|
||||||
atmAcctngReceiveTrafficDescriptorParam5 OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (0..2147483647)
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The fifth traffic descriptor parameter in the direction in
|
|
||||||
which this switch receives cells on this connection.
|
|
||||||
Interpretation of this parameter is dependent on the value
|
|
||||||
of atmAcctngReceiveTrafficDescriptorType."
|
|
||||||
::= { atmAcctngDataObjects 30 }
|
|
||||||
|
|
||||||
atmAcctngCallingPartySubAddress OBJECT-TYPE
|
|
||||||
SYNTAX AtmAddr
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The connection's calling party sub-address. If the
|
|
||||||
connection has no calling party sub-address, or it's value
|
|
||||||
is unknown, then the value of this object is the zero-length
|
|
||||||
string."
|
|
||||||
::= { atmAcctngDataObjects 31 }
|
|
||||||
|
|
||||||
atmAcctngCalledPartySubAddress OBJECT-TYPE
|
|
||||||
SYNTAX AtmAddr
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The connection's called party sub-address. If the
|
|
||||||
connection has no called party sub-address, or it's value is
|
|
||||||
unknown, then the value of this object is the zero-length
|
|
||||||
string."
|
|
||||||
::= { atmAcctngDataObjects 32 }
|
|
||||||
|
|
||||||
atmAcctngRecordCrc16 OBJECT-TYPE
|
|
||||||
SYNTAX OCTET STRING (SIZE(2))
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The value of the CRC-16 checksum (as defined by ISO 3309
|
|
||||||
(HDLC) and/or ITU X.25) calculated over the accounting
|
|
||||||
record containing this object.
|
|
||||||
|
|
||||||
While the mechanism for calculating/encoding the checksum
|
|
||||||
value is specific to the method of encoding the accounting
|
|
||||||
record, an accounting record containing this object is
|
|
||||||
typically generated by initializing the value of this object
|
|
||||||
to the all-zeros string ('0000'H), with the location of
|
|
||||||
these zeros being saved. After generating the record, the
|
|
||||||
checksum is calculated over the whole connection record and
|
|
||||||
then the all-zeros value is overwritten (at the saved
|
|
||||||
location) by the calculated value of the checksum."
|
|
||||||
::= { atmAcctngDataObjects 33 }
|
|
||||||
|
|
||||||
atmAcctngTransmittedPeakCells OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of cells transmitted on the connection within
|
|
||||||
the peak 5-second sub-interval, where the peak sub-interval
|
|
||||||
is the one having the highest value of any sub-interval in
|
|
||||||
the current/completing accounting period. One accounting
|
|
||||||
period ends and the next starts at the time of each
|
|
||||||
'periodic' collection of accounting information. A value
|
|
||||||
of '-1' indicates that no peak value is available."
|
|
||||||
::= { atmAcctngDataObjects 34 }
|
|
||||||
|
|
||||||
atmAcctngReceivedPeakCells OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of cells received on the connection within
|
|
||||||
the peak 5-second sub-interval, where the peak sub-interval
|
|
||||||
is the one having the highest value of any sub-interval in
|
|
||||||
the current/completing accounting period. One accounting
|
|
||||||
period ends and the next starts at the time of each
|
|
||||||
'periodic' collection of accounting information. A value
|
|
||||||
of '-1' indicates that no peak value is available."
|
|
||||||
::= { atmAcctngDataObjects 35 }
|
|
||||||
|
|
||||||
END
|
|
@ -1,288 +0,0 @@
|
|||||||
--------------------------------------------------------------------
|
|
||||||
-- ATM Address Registration MIB
|
|
||||||
--
|
|
||||||
-- March, 1995; Kartik Chandrasekhar
|
|
||||||
--
|
|
||||||
-- Copyright (c) 1995-1997 by cisco Systems, Inc.
|
|
||||||
-- All rights reserved.
|
|
||||||
-- *****************************************************************
|
|
||||||
--
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
ATM-FORUM-ADDR-REG DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
atmfNetPrefixGroup,
|
|
||||||
atmfAddressGroup,
|
|
||||||
atmfAddressRegistrationAdminGroup,
|
|
||||||
AtmAddress,
|
|
||||||
NetPrefix FROM ATM-FORUM-TC-MIB
|
|
||||||
OBJECT-TYPE FROM RFC-1212;
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
-- The NetPrefix Group
|
|
||||||
--
|
|
||||||
-- The Network Prefix Table is implemented by the user-side IME.
|
|
||||||
|
|
||||||
atmfNetPrefixTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AtmfNetPrefixEntry
|
|
||||||
ACCESS not-accessible
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"A table implemented by the user-side IME, containing the
|
|
||||||
network-prefix(es) for ATM-layer addresses in effect on
|
|
||||||
the user side of the UNI."
|
|
||||||
::= { atmfNetPrefixGroup 1 }
|
|
||||||
|
|
||||||
atmfNetPrefixEntry OBJECT-TYPE
|
|
||||||
SYNTAX AtmfNetPrefixEntry
|
|
||||||
ACCESS not-accessible
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"Information about a single network-prefix for
|
|
||||||
ATM-layer addresses in effect on the user-side IME.
|
|
||||||
Note that the index variable atmNetPrefixPrefix is a
|
|
||||||
variable-length string, and as such the rule for
|
|
||||||
variable-length strings in section 4.1.6 of RFC 1212
|
|
||||||
applies."
|
|
||||||
|
|
||||||
INDEX { atmfNetPrefixPort, atmfNetPrefixPrefix }
|
|
||||||
::= { atmfNetPrefixTable 1 }
|
|
||||||
|
|
||||||
AtmfNetPrefixEntry ::=
|
|
||||||
SEQUENCE {
|
|
||||||
atmfNetPrefixPort
|
|
||||||
INTEGER,
|
|
||||||
atmfNetPrefixPrefix
|
|
||||||
NetPrefix,
|
|
||||||
atmfNetPrefixStatus
|
|
||||||
INTEGER
|
|
||||||
}
|
|
||||||
|
|
||||||
atmfNetPrefixPort OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (0..2147483647)
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"A unique value which identifies the UNI port for
|
|
||||||
which the network prefix for ATM addresses is in
|
|
||||||
effect. The value of 0 has the special meaning of
|
|
||||||
identifying the local UNI."
|
|
||||||
::= { atmfNetPrefixEntry 1 }
|
|
||||||
|
|
||||||
atmfNetPrefixPrefix OBJECT-TYPE
|
|
||||||
SYNTAX NetPrefix
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"The network prefix for ATM addresses which is in
|
|
||||||
effect on the user side of the ATM UNI port."
|
|
||||||
::= { atmfNetPrefixEntry 2 }
|
|
||||||
|
|
||||||
atmfNetPrefixStatus OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER { valid(1), invalid(2) }
|
|
||||||
ACCESS read-write
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"An indication of the validity of the network prefix
|
|
||||||
for ATM addresses on the user side of the UNI port.
|
|
||||||
To configure a new network prefix in this table, the
|
|
||||||
network-side IME must set the appropriate instance of this
|
|
||||||
object to the value valid(1). To delete an existing
|
|
||||||
network prefix in this table, the network-side IME must
|
|
||||||
set the appropriate instance of this object to the
|
|
||||||
value invalid(2).
|
|
||||||
|
|
||||||
If circumstances occur on the user-side IME which cause a
|
|
||||||
prefix to become invalid, the user-side IME modifies the
|
|
||||||
value of the appropriate instance of this object to invalid(2).
|
|
||||||
|
|
||||||
Whenever the value of this object for a particular
|
|
||||||
prefix becomes invalid(2), the conceptual row for that
|
|
||||||
prefix may be removed from the table at any time,
|
|
||||||
either immediately or subsequently."
|
|
||||||
::= { atmfNetPrefixEntry 3 }
|
|
||||||
|
|
||||||
|
|
||||||
-- The Address Group
|
|
||||||
--
|
|
||||||
-- The Address Table is implemented by the network-side IME.
|
|
||||||
|
|
||||||
atmfAddressTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AtmfAddressEntry
|
|
||||||
ACCESS not-accessible
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"A table implemented by the network-side IME, containing the
|
|
||||||
ATM-layer addresses in effect on the user side of the UNI."
|
|
||||||
::= { atmfAddressGroup 1 }
|
|
||||||
|
|
||||||
atmfAddressEntry OBJECT-TYPE
|
|
||||||
SYNTAX AtmfAddressEntry
|
|
||||||
ACCESS not-accessible
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"Information about a single ATM-layer address in effect
|
|
||||||
on the user-side IME. Note that the index variable
|
|
||||||
atmAddressAtmAddress is a variable-length string, and as
|
|
||||||
such the rule for variable-length strings in section
|
|
||||||
4.1.6 of RFC 1212 applies."
|
|
||||||
INDEX { atmfAddressPort, atmfAddressAtmAddress }
|
|
||||||
::= { atmfAddressTable 1 }
|
|
||||||
|
|
||||||
AtmfAddressEntry ::=
|
|
||||||
SEQUENCE {
|
|
||||||
atmfAddressPort
|
|
||||||
INTEGER,
|
|
||||||
atmfAddressAtmAddress
|
|
||||||
AtmAddress,
|
|
||||||
atmfAddressStatus
|
|
||||||
INTEGER,
|
|
||||||
atmfAddressOrgScope
|
|
||||||
INTEGER
|
|
||||||
}
|
|
||||||
|
|
||||||
atmfAddressPort OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (0..2147483647)
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"A unique value which identifies the UNI port for
|
|
||||||
which the ATM address is in effect. The value of 0
|
|
||||||
has the special meaning of identifying the local UNI."
|
|
||||||
::= { atmfAddressEntry 1 }
|
|
||||||
|
|
||||||
atmfAddressAtmAddress OBJECT-TYPE
|
|
||||||
SYNTAX AtmAddress
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"The ATM address which is in effect on the user side
|
|
||||||
of the ATM UNI port."
|
|
||||||
::= { atmfAddressEntry 2 }
|
|
||||||
|
|
||||||
atmfAddressStatus OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER { valid(1), invalid(2) }
|
|
||||||
ACCESS read-write
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"An indication of the validity of the ATM address at
|
|
||||||
the user side of the UNI port. To configure a new
|
|
||||||
address in this table, the user-side IME must set the
|
|
||||||
appropriate instance of this object to the value
|
|
||||||
valid(1). To delete an existing address in this table,
|
|
||||||
the user-side IME must set the appropriate instance of
|
|
||||||
this object to the value invalid(2).
|
|
||||||
|
|
||||||
If circumstances occur on the network-side IME which cause
|
|
||||||
an address to become invalid, the network-side IME
|
|
||||||
modifies the value of the appropriate instance of this
|
|
||||||
object to invalid(2).
|
|
||||||
|
|
||||||
Whenever the value of this object for a particular
|
|
||||||
address becomes invalid(2), the conceptual row for
|
|
||||||
that address may be removed from the table at any
|
|
||||||
time, either immediately or subsequently."
|
|
||||||
::= { atmfAddressEntry 3 }
|
|
||||||
|
|
||||||
atmfAddressOrgScope OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
localNetwork(1),
|
|
||||||
localNetworkPlusOne(2),
|
|
||||||
localNetworkPlusTwo(3),
|
|
||||||
siteMinusOne(4),
|
|
||||||
intraSite(5),
|
|
||||||
sitePlusOne(6),
|
|
||||||
organizationMinusOne(7),
|
|
||||||
intraOrganization(8),
|
|
||||||
organizationPlusOne(9),
|
|
||||||
communityMinusOne(10),
|
|
||||||
intraCommunity(11),
|
|
||||||
communityPlusOne(12),
|
|
||||||
regional(13),
|
|
||||||
interRegional(14),
|
|
||||||
global(15)
|
|
||||||
}
|
|
||||||
ACCESS read-write
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"This object indicates the organizational
|
|
||||||
scope for the referenced address. The information of
|
|
||||||
the referenced address shall not be distributed
|
|
||||||
outside the indicated scope. If the user-side IME does
|
|
||||||
not specify a value for the atmfAddressOrgScope object,
|
|
||||||
the network shall set the value of this object to
|
|
||||||
localNetwork(1), if the registered address is an ATM group
|
|
||||||
address, or to global(15), if the registered address is
|
|
||||||
an individual address. Refer to Annex 6.0
|
|
||||||
of ATM Forum UNI Signalling 4.0 for guidelines regarding
|
|
||||||
the use of organizational scopes.
|
|
||||||
|
|
||||||
This organization hierarchy may be mapped to ATM network's
|
|
||||||
routing hierarchy such as PNNI's routing level and
|
|
||||||
the mapping shall be configurable in
|
|
||||||
nodes. Use of this object in a public network is for
|
|
||||||
further study.
|
|
||||||
The default values for organizational scope are
|
|
||||||
localNetwork(1) for ATM group addresses, and global(15)
|
|
||||||
for individual addresses."
|
|
||||||
::= { atmfAddressEntry 4 }
|
|
||||||
|
|
||||||
|
|
||||||
-- The Address Registration Admin Group
|
|
||||||
--
|
|
||||||
-- The Address Registration Admin Table is mandatory for all IMEs.
|
|
||||||
|
|
||||||
atmfAddressRegistrationAdminTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AtmfAddressRegistrationAdminEntry
|
|
||||||
ACCESS not-accessible
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"A table of Address Registration administrative
|
|
||||||
information for the ATM Interface."
|
|
||||||
::= { atmfAddressRegistrationAdminGroup 1 }
|
|
||||||
|
|
||||||
atmfAddressRegistrationAdminEntry OBJECT-TYPE
|
|
||||||
SYNTAX AtmfAddressRegistrationAdminEntry
|
|
||||||
ACCESS not-accessible
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry in the table, containing Address
|
|
||||||
Registration administrative information for the ATM
|
|
||||||
Interface."
|
|
||||||
INDEX { atmfAddressRegistrationAdminIndex }
|
|
||||||
::= { atmfAddressRegistrationAdminTable 1 }
|
|
||||||
|
|
||||||
|
|
||||||
AtmfAddressRegistrationAdminEntry ::=
|
|
||||||
SEQUENCE {
|
|
||||||
atmfAddressRegistrationAdminIndex
|
|
||||||
INTEGER,
|
|
||||||
atmfAddressRegistrationAdminStatus
|
|
||||||
INTEGER
|
|
||||||
}
|
|
||||||
|
|
||||||
atmfAddressRegistrationAdminIndex OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (0..2147483647)
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"The value of 0 which has the special meaning of
|
|
||||||
identifying the ATM Interface over which this message
|
|
||||||
was received."
|
|
||||||
::= { atmfAddressRegistrationAdminEntry 1 }
|
|
||||||
|
|
||||||
atmfAddressRegistrationAdminStatus OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER { supported(1), unsupported(2) }
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"An indication of whether or not Address Registration
|
|
||||||
is supported on this ATM Interface. Supported(1)
|
|
||||||
indicates that this ATM Interface supports address
|
|
||||||
registration. Unsupported(2) indicates that this ATM
|
|
||||||
Interface does not support address registration."
|
|
||||||
::= { atmfAddressRegistrationAdminEntry 2 }
|
|
||||||
END
|
|
File diff suppressed because it is too large
Load Diff
@ -1,188 +0,0 @@
|
|||||||
-- --------------------------------------------------------------------
|
|
||||||
-- ATM FORUM TC MIB
|
|
||||||
--
|
|
||||||
-- October 1996, Kartik Chandrasekhar
|
|
||||||
--
|
|
||||||
-- Copyright (c) 1996-1997 by cisco Systems, Inc.
|
|
||||||
-- All rights reserved.
|
|
||||||
-- *****************************************************************
|
|
||||||
|
|
||||||
ATM-FORUM-TC-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
TEXTUAL-CONVENTION FROM SNMPv2-TC
|
|
||||||
enterprises FROM RFC1155-SMI;
|
|
||||||
|
|
||||||
|
|
||||||
-- Textual Conventions
|
|
||||||
|
|
||||||
-- Boolean values use this data type from RFC-1903, "Textual Conventions
|
|
||||||
-- for Version 2 of the Simple Network Management Protocol (SNMPv2)"
|
|
||||||
TruthValue ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Boolean values use this data type from RFC-1903"
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
true(1),
|
|
||||||
false(2)
|
|
||||||
}
|
|
||||||
|
|
||||||
-- CLNP address values use this data type from RFC-1238, "CLNS MIB for
|
|
||||||
-- use with Connectionless Network Protocol (ISO 8473) and End System
|
|
||||||
-- to Intermediate System (ISO 9542)"
|
|
||||||
ClnpAddress ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"CLNP address values use this data type from RFC-1238"
|
|
||||||
SYNTAX OCTET STRING (SIZE (1..21))
|
|
||||||
|
|
||||||
|
|
||||||
-- ATM Service Categories use this data type (See [TM4.0]):
|
|
||||||
AtmServiceCategory ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"ATM Service Categories use this data type"
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
other(1),
|
|
||||||
cbr(2),
|
|
||||||
rtVbr(3),
|
|
||||||
nrtVbr(4),
|
|
||||||
abr(5),
|
|
||||||
ubr(6)
|
|
||||||
}
|
|
||||||
|
|
||||||
-- ATM End-System Addresses use this data type:
|
|
||||||
AtmAddress ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"ATM End-System Addresses"
|
|
||||||
SYNTAX OCTET STRING (SIZE (8 | 20))
|
|
||||||
|
|
||||||
-- Network-Prefixes for an ATM Address use this data type:
|
|
||||||
NetPrefix ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"ATM End-System Addresses"
|
|
||||||
SYNTAX OCTET STRING (SIZE (8 | 13))
|
|
||||||
|
|
||||||
|
|
||||||
-- In both the AtmAddress and NetPrefix conventions, Native E.164 addresses
|
|
||||||
-- are represented as 8 octets using the format specified in section
|
|
||||||
-- 3.1.1.3 of the ATM Forum UNI Signalling 4.0 specification.
|
|
||||||
-- In contrast, an NSAP-encoded address is 20 octets, and an NSAP-encoded
|
|
||||||
-- network prefix is 13 octets long.
|
|
||||||
|
|
||||||
|
|
||||||
-- MIB Groups
|
|
||||||
|
|
||||||
-- a subtree for defining ATM Forum MIB object types
|
|
||||||
atmForum OBJECT IDENTIFIER ::= { enterprises 353 }
|
|
||||||
|
|
||||||
-- a subtree for defining administrative object types
|
|
||||||
atmForumAdmin OBJECT IDENTIFIER ::= { atmForum 1 }
|
|
||||||
atmfTransmissionTypes OBJECT IDENTIFIER ::= { atmForumAdmin 2 }
|
|
||||||
atmfMediaTypes OBJECT IDENTIFIER ::= { atmForumAdmin 3 }
|
|
||||||
atmfTrafficDescrTypes OBJECT IDENTIFIER ::= { atmForumAdmin 4 }
|
|
||||||
atmfSrvcRegTypes OBJECT IDENTIFIER ::= { atmForumAdmin 5 }
|
|
||||||
|
|
||||||
-- a subtree for defining ATM Interface MIB object types
|
|
||||||
atmForumUni OBJECT IDENTIFIER ::= { atmForum 2 }
|
|
||||||
atmfPhysicalGroup OBJECT IDENTIFIER ::= { atmForumUni 1 }
|
|
||||||
atmfAtmLayerGroup OBJECT IDENTIFIER ::= { atmForumUni 2 }
|
|
||||||
atmfAtmStatsGroup OBJECT IDENTIFIER ::= { atmForumUni 3 }
|
|
||||||
atmfVpcGroup OBJECT IDENTIFIER ::= { atmForumUni 4 }
|
|
||||||
atmfVccGroup OBJECT IDENTIFIER ::= { atmForumUni 5 }
|
|
||||||
atmfAddressGroup OBJECT IDENTIFIER ::= { atmForumUni 6 }
|
|
||||||
atmfNetPrefixGroup OBJECT IDENTIFIER ::= { atmForumUni 7 }
|
|
||||||
atmfSrvcRegistryGroup OBJECT IDENTIFIER ::= { atmForumUni 8 }
|
|
||||||
atmfVpcAbrGroup OBJECT IDENTIFIER ::= { atmForumUni 9 }
|
|
||||||
atmfVccAbrGroup OBJECT IDENTIFIER ::= { atmForumUni 10 }
|
|
||||||
atmfAddressRegistrationAdminGroup OBJECT IDENTIFIER ::= { atmForumUni 11 }
|
|
||||||
|
|
||||||
|
|
||||||
-- Object Identifier definitions
|
|
||||||
|
|
||||||
-- Transmission Types: These values are no longer used
|
|
||||||
atmfUnknownType OBJECT IDENTIFIER ::= { atmfTransmissionTypes 1}
|
|
||||||
atmfSonetSTS3c OBJECT IDENTIFIER ::= { atmfTransmissionTypes 2 }
|
|
||||||
atmfDs3 OBJECT IDENTIFIER ::= { atmfTransmissionTypes 3 }
|
|
||||||
atmf4B5B OBJECT IDENTIFIER ::= { atmfTransmissionTypes 4 }
|
|
||||||
atmf8B10B OBJECT IDENTIFIER ::= { atmfTransmissionTypes 5 }
|
|
||||||
atmfSonetSTS12c OBJECT IDENTIFIER ::= { atmfTransmissionTypes 6 }
|
|
||||||
atmfE3 OBJECT IDENTIFIER ::= { atmfTransmissionTypes 7 }
|
|
||||||
atmfT1 OBJECT IDENTIFIER ::= { atmfTransmissionTypes 8 }
|
|
||||||
atmfE1 OBJECT IDENTIFIER ::= { atmfTransmissionTypes 9 }
|
|
||||||
|
|
||||||
-- Media Types: These values are no longer used
|
|
||||||
atmfMediaUnknownType OBJECT IDENTIFIER ::= { atmfMediaTypes 1 }
|
|
||||||
atmfMediaCoaxCable OBJECT IDENTIFIER ::= { atmfMediaTypes 2 }
|
|
||||||
atmfMediaSingleMode OBJECT IDENTIFIER ::= { atmfMediaTypes 3 }
|
|
||||||
atmfMediaMultiMode OBJECT IDENTIFIER ::= { atmfMediaTypes 4 }
|
|
||||||
atmfMediaStp OBJECT IDENTIFIER ::= { atmfMediaTypes 5 }
|
|
||||||
atmfMediaUtp OBJECT IDENTIFIER ::= { atmfMediaTypes 6 }
|
|
||||||
|
|
||||||
-- Traffic Descriptor Types: These types are combined with a five element
|
|
||||||
-- parameter vector to describe a Traffic Descriptor.
|
|
||||||
-- Traffic Descriptors along with a Best Effort Indicator are used to
|
|
||||||
-- indicate a Conformance Definition as defined in [TM4.0].
|
|
||||||
|
|
||||||
-- These types are no longer used
|
|
||||||
atmfNoDescriptor OBJECT IDENTIFIER ::= { atmfTrafficDescrTypes 1 }
|
|
||||||
atmfPeakRate OBJECT IDENTIFIER ::= { atmfTrafficDescrTypes 2 }
|
|
||||||
|
|
||||||
-- The No CLP/No SCR Type
|
|
||||||
-- Indicates the CBR.1 Conformance Definition if Best Effort is No
|
|
||||||
-- Indicates the UBR.1 and UBR.2 Conformance Definitions if Best Effort is Yes
|
|
||||||
atmfNoClpNoScr OBJECT IDENTIFIER ::= { atmfTrafficDescrTypes 3 }
|
|
||||||
-- The use of the parameter vector for this type:
|
|
||||||
-- Parameter #1 - peak cell rate in cells/second for CLP=0+1 traffic
|
|
||||||
-- Parameter #2 - CDVT in tenths of microseconds
|
|
||||||
-- Parameters #3, #4 and #5 are unused
|
|
||||||
|
|
||||||
-- These types are no longer used
|
|
||||||
atmfClpNoTaggingNoScr OBJECT IDENTIFIER ::= { atmfTrafficDescrTypes 4 }
|
|
||||||
atmfClpTaggingNoScr OBJECT IDENTIFIER ::= { atmfTrafficDescrTypes 5 }
|
|
||||||
|
|
||||||
-- The SCR/No CLP Type
|
|
||||||
-- Indicates the VBR.1 Conformance Definition
|
|
||||||
atmfNoClpScr OBJECT IDENTIFIER ::= { atmfTrafficDescrTypes 6 }
|
|
||||||
-- The use of the parameter vector for this type:
|
|
||||||
-- Parameter #1 - peak cell rate in cells/second for CLP=0+1 traffic
|
|
||||||
-- Parameter #2 - sustainable cell rate in cells/second for CLP=0+1 traffic
|
|
||||||
-- Parameter #3 - maximum burst size in cells
|
|
||||||
-- Parameter #4 - CDVT in tenths of microseconds
|
|
||||||
-- Parameter #5 - unused
|
|
||||||
|
|
||||||
-- The CLP without Tagging/SCR Type
|
|
||||||
-- Indicates the VBR.2 Conformance Definition
|
|
||||||
atmfClpNoTaggingScr OBJECT IDENTIFIER ::= { atmfTrafficDescrTypes 7 }
|
|
||||||
-- The use of the parameter vector for this type:
|
|
||||||
-- Parameter #1 - peak cell rate in cells/second for CLP=0+1 traffic
|
|
||||||
-- Parameter #2 - sustainable cell rate in cells/second for CLP=0 traffic
|
|
||||||
-- Parameter #3 - maximum burst size in cells
|
|
||||||
-- Parameter #4 - CDVT in tenths of microseconds
|
|
||||||
-- Parameter #5 - unused
|
|
||||||
|
|
||||||
-- The CLP with Tagging/SCR Type
|
|
||||||
-- Indicates the VBR.3 Conformance Definition
|
|
||||||
atmfClpTaggingScr OBJECT IDENTIFIER ::= { atmfTrafficDescrTypes 8 }
|
|
||||||
-- The use of the parameter vector for this type:
|
|
||||||
-- Parameter #1 - peak cell rate in cells/second for CLP=0+1 traffic
|
|
||||||
-- Parameter #2 - sustainable cell rate in cells/second for CLP=0
|
|
||||||
-- traffic, excess tagged as CLP=1
|
|
||||||
-- Parameter #3 - maximum burst size in cells
|
|
||||||
-- Parameter #4 - CDVT in tenths of microseconds
|
|
||||||
-- Parameter #5 - unused
|
|
||||||
|
|
||||||
-- The ABR Type
|
|
||||||
-- Indicates the ABR Conformance Definition
|
|
||||||
atmfClpNoTaggingMcr OBJECT IDENTIFIER ::= { atmfTrafficDescrTypes 9 }
|
|
||||||
-- The use of the parameter vector for this type:
|
|
||||||
-- Parameter #1 - peak cell rate in cells/second
|
|
||||||
-- parameter #2 - CDVT in tenths of microseconds
|
|
||||||
-- Parameter #3 - minimum cell rate in cells/second
|
|
||||||
-- Parameter #4 - unused
|
|
||||||
-- Parameter #5 - unused
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,724 +0,0 @@
|
|||||||
-- *****************************************************************
|
|
||||||
-- ATM TC MIB
|
|
||||||
--
|
|
||||||
-- October 2002, Srikar B S
|
|
||||||
--
|
|
||||||
-- Copyright (c) 2002 by cisco Systems, Inc.
|
|
||||||
-- All rights reserved.
|
|
||||||
-- *****************************************************************
|
|
||||||
--
|
|
||||||
-- This mib is extracted from RFC 2514
|
|
||||||
|
|
||||||
ATM-TC-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY, OBJECT-IDENTITY,
|
|
||||||
TimeTicks, mib-2
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
TEXTUAL-CONVENTION
|
|
||||||
FROM SNMPv2-TC;
|
|
||||||
|
|
||||||
|
|
||||||
atmTCMIB MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "9810190200Z"
|
|
||||||
ORGANIZATION "IETF AToMMIB Working Group"
|
|
||||||
CONTACT-INFO
|
|
||||||
" Michael Noto
|
|
||||||
Postal: 3Com Corporation
|
|
||||||
5400 Bayfront Plaza, M/S 3109
|
|
||||||
Santa Clara, CA 95052
|
|
||||||
USA
|
|
||||||
Tel: +1 408 326 2218
|
|
||||||
E-mail: mike_noto@3com.com
|
|
||||||
|
|
||||||
Ethan Mickey Spiegel
|
|
||||||
Postal: Cisco Systems
|
|
||||||
170 W. Tasman Dr.
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
Tel: +1 408 526 6408
|
|
||||||
E-mail: mspiegel@cisco.com
|
|
||||||
|
|
||||||
Kaj Tesink
|
|
||||||
Postal: Bellcore
|
|
||||||
331 Newman Springs Road
|
|
||||||
Red Bank, NJ 07701
|
|
||||||
USA
|
|
||||||
Tel: +1 732 758 5254
|
|
||||||
Fax: +1 732 758 4177
|
|
||||||
E-mail: kaj@bellcore.com"
|
|
||||||
DESCRIPTION
|
|
||||||
"This MIB Module provides Textual Conventions
|
|
||||||
and OBJECT-IDENTITY Objects to be used by
|
|
||||||
ATM systems."
|
|
||||||
::= { mib-2 37 3 } -- atmMIB 3 (see [3])
|
|
||||||
|
|
||||||
-- The Textual Conventions defined below are organized
|
|
||||||
-- alphabetically
|
|
||||||
|
|
||||||
|
|
||||||
AtmAddr ::= TEXTUAL-CONVENTION
|
|
||||||
DISPLAY-HINT "1x"
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An ATM address. The semantics are implied by
|
|
||||||
the length. The address types are: - no
|
|
||||||
address (0 octets) - E.164 (8 octets) - NSAP
|
|
||||||
(20 octets) In addition, when subaddresses
|
|
||||||
are used the AtmAddr may represent the
|
|
||||||
concatenation of address and subaddress. The
|
|
||||||
associated address types are: - E.164, E.164
|
|
||||||
(16 octets) - E.164, NSAP (28 octets) - NSAP,
|
|
||||||
NSAP (40 octets) Address lengths other than
|
|
||||||
defined in this definition imply address
|
|
||||||
types defined elsewhere. Note: The E.164
|
|
||||||
address is encoded in BCD format."
|
|
||||||
SYNTAX OCTET STRING (SIZE(0..40))
|
|
||||||
|
|
||||||
|
|
||||||
AtmConnCastType ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The type of topology of a connection (point-
|
|
||||||
to-point, point-to-multipoint). In the case
|
|
||||||
of point-to-multipoint, the orientation of
|
|
||||||
this VPL or VCL in the connection.
|
|
||||||
On a host:
|
|
||||||
- p2mpRoot indicates that the host
|
|
||||||
is the root of the p2mp connection.
|
|
||||||
- p2mpLeaf indicates that the host
|
|
||||||
is a leaf of the p2mp connection.
|
|
||||||
On a switch interface:
|
|
||||||
- p2mpRoot indicates that cells received
|
|
||||||
by the switching fabric from the interface
|
|
||||||
are from the root of the p2mp connection.
|
|
||||||
- p2mpLeaf indicates that cells transmitted
|
|
||||||
to the interface from the switching fabric
|
|
||||||
are to the leaf of the p2mp connection."
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
p2p(1),
|
|
||||||
p2mpRoot(2),
|
|
||||||
p2mpLeaf(3)
|
|
||||||
}
|
|
||||||
|
|
||||||
AtmConnKind ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The type of call control used for an ATM
|
|
||||||
connection at a particular interface. The use
|
|
||||||
is as follows:
|
|
||||||
pvc(1)
|
|
||||||
Virtual link of a PVC. Should not be
|
|
||||||
used for an PVC/SVC (i.e., Soft PVC)
|
|
||||||
crossconnect.
|
|
||||||
svcIncoming(2)
|
|
||||||
Virtual link established after a
|
|
||||||
received signaling request to setup
|
|
||||||
an SVC.
|
|
||||||
svcOutgoing(3)
|
|
||||||
Virtual link established after a
|
|
||||||
transmitted or forwarded signaling
|
|
||||||
request to setup an SVC.
|
|
||||||
spvcInitiator(4)
|
|
||||||
Virtual link at the PVC side of an
|
|
||||||
SVC/PVC crossconnect, where the
|
|
||||||
switch is the initiator of the Soft PVC
|
|
||||||
setup.
|
|
||||||
spvcTarget(5)
|
|
||||||
Virtual link at the PVC side of an
|
|
||||||
SVC/PVC crossconnect, where the
|
|
||||||
switch is the target of the Soft PVC
|
|
||||||
setup.
|
|
||||||
|
|
||||||
For PVCs, a pvc virtual link is always cross-
|
|
||||||
connected to a pvc virtual link.
|
|
||||||
|
|
||||||
For SVCs, an svcIncoming virtual link is always cross-
|
|
||||||
connected to an svcOutgoing virtual link.
|
|
||||||
|
|
||||||
For Soft PVCs, an spvcInitiator is either cross-connected to
|
|
||||||
an svcOutgoing or an spvcTarget, and an spvcTarget is either
|
|
||||||
cross-connected to an svcIncoming or an spvcInitiator."
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
pvc(1),
|
|
||||||
svcIncoming(2),
|
|
||||||
svcOutgoing(3),
|
|
||||||
spvcInitiator(4),
|
|
||||||
spvcTarget(5)
|
|
||||||
}
|
|
||||||
|
|
||||||
AtmIlmiNetworkPrefix ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A network prefix used for ILMI address
|
|
||||||
registration. In the case of ATM endsystem
|
|
||||||
addresses (AESAs), the network prefix is the first
|
|
||||||
13 octets of the address which includes the AFI,
|
|
||||||
IDI, and HO-DSP fields. In the case of native
|
|
||||||
E.164 addresses, the network prefix is the entire
|
|
||||||
E.164 address encoded in 8 octets, as if it were
|
|
||||||
an E.164 IDP in an ATM endsystem address
|
|
||||||
structure."
|
|
||||||
REFERENCE
|
|
||||||
"ATM Forum, Integrated Local Management Interface
|
|
||||||
(ILMI) Specification, Version 4.0,
|
|
||||||
af-ilmi-0065.000, September 1996, Section 9
|
|
||||||
ATM Forum, ATM User-Network Interface Signalling
|
|
||||||
Specification, Version 4.0 (UNI 4.0),
|
|
||||||
af-sig-0061.000, June 1996, Section 3"
|
|
||||||
SYNTAX OCTET STRING (SIZE(8|13))
|
|
||||||
|
|
||||||
AtmInterfaceType ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The connection setup procedures used for the
|
|
||||||
identified interface.
|
|
||||||
|
|
||||||
Other: Connection setup procedures other than
|
|
||||||
those listed below.
|
|
||||||
|
|
||||||
Auto-configuration:
|
|
||||||
Indicates that the connection setup
|
|
||||||
procedures are to be determined dynamically,
|
|
||||||
or that determination has not yet been
|
|
||||||
completed. One such mechanism is via ATM
|
|
||||||
Forum ILMI auto-configuration procedures.
|
|
||||||
|
|
||||||
ITU-T DSS2:
|
|
||||||
- ITU-T Recommendation Q.2931, Broadband
|
|
||||||
Integrated Service Digital Network (B-ISDN)
|
|
||||||
Digital Subscriber Signalling System No.2
|
|
||||||
(DSS2) User-Network Interface (UNI) Layer 3
|
|
||||||
Specification for Basic Call/Connection
|
|
||||||
Control (September 1994)
|
|
||||||
- ITU-T Draft Recommendation Q.2961,
|
|
||||||
B-ISDN DSS 2 Support of Additional Traffic
|
|
||||||
Parameters (May 1995)
|
|
||||||
|
|
||||||
- ITU-T Draft Recommendation Q.2971,
|
|
||||||
B-ISDN DSS 2 User Network Interface Layer 3
|
|
||||||
Specification for Point-to-multipoint
|
|
||||||
Call/connection Control (May 1995)
|
|
||||||
|
|
||||||
ATM Forum UNI 3.0:
|
|
||||||
ATM Forum, ATM User-Network Interface,
|
|
||||||
Version 3.0 (UNI 3.0) Specification,
|
|
||||||
(1994).
|
|
||||||
|
|
||||||
ATM Forum UNI 3.1:
|
|
||||||
ATM Forum, ATM User-Network Interface,
|
|
||||||
Version 3.1 (UNI 3.1) Specification,
|
|
||||||
(November 1994).
|
|
||||||
|
|
||||||
ATM Forum UNI Signalling 4.0:
|
|
||||||
ATM Forum, ATM User-Network Interface (UNI)
|
|
||||||
Signalling Specification Version 4.0,
|
|
||||||
af-sig-0061.000 (June 1996).
|
|
||||||
|
|
||||||
ATM Forum IISP (based on UNI 3.0 or UNI 3.1) :
|
|
||||||
Interim Inter-switch Signaling Protocol
|
|
||||||
(IISP) Specification, Version 1.0,
|
|
||||||
af-pnni-0026.000, (December 1994).
|
|
||||||
|
|
||||||
ATM Forum PNNI 1.0 :
|
|
||||||
ATM Forum, Private Network-Network Interface
|
|
||||||
Specification, Version 1.0, af-pnni-0055.000,
|
|
||||||
(March 1996).
|
|
||||||
|
|
||||||
ATM Forum B-ICI:
|
|
||||||
ATM Forum, B-ICI Specification, Version 2.0,
|
|
||||||
af-bici-0013.002, (November 1995).
|
|
||||||
|
|
||||||
ATM Forum UNI PVC Only:
|
|
||||||
An ATM Forum compliant UNI with the
|
|
||||||
signalling disabled.
|
|
||||||
ATM Forum NNI PVC Only:
|
|
||||||
An ATM Forum compliant NNI with the
|
|
||||||
signalling disabled."
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
other(1),
|
|
||||||
autoConfig(2),
|
|
||||||
ituDss2(3),
|
|
||||||
atmfUni3Dot0(4),
|
|
||||||
atmfUni3Dot1(5),
|
|
||||||
atmfUni4Dot0(6),
|
|
||||||
atmfIispUni3Dot0(7),
|
|
||||||
atmfIispUni3Dot1(8),
|
|
||||||
atmfIispUni4Dot0(9),
|
|
||||||
atmfPnni1Dot0(10),
|
|
||||||
atmfBici2Dot0(11),
|
|
||||||
atmfUniPvcOnly(12),
|
|
||||||
atmfNniPvcOnly(13) }
|
|
||||||
|
|
||||||
AtmServiceCategory ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The service category for a connection."
|
|
||||||
REFERENCE
|
|
||||||
"ATM Forum Traffic Management Specification,
|
|
||||||
Version 4.0, af-tm-0056.000, June 1996."
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
other(1), -- none of the following
|
|
||||||
cbr(2), -- constant bit rate
|
|
||||||
rtVbr(3), -- real-time variable bit rate
|
|
||||||
nrtVbr(4), -- non real-time variable bit rate
|
|
||||||
abr(5), -- available bit rate
|
|
||||||
ubr(6) -- unspecified bit rate
|
|
||||||
}
|
|
||||||
|
|
||||||
AtmSigDescrParamIndex ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The value of this object identifies a row in the
|
|
||||||
atmSigDescrParamTable. The value 0 signifies that
|
|
||||||
none of the signalling parameters defined in the
|
|
||||||
atmSigDescrParamTable are applicable."
|
|
||||||
SYNTAX INTEGER (0..2147483647)
|
|
||||||
|
|
||||||
AtmTrafficDescrParamIndex ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The value of this object identifies a row in the
|
|
||||||
atmTrafficDescrParamTable. The value 0 signifies
|
|
||||||
that no row has been identified."
|
|
||||||
SYNTAX INTEGER (0..2147483647)
|
|
||||||
|
|
||||||
AtmVcIdentifier ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The VCI value for a VCL. The maximum VCI value
|
|
||||||
cannot exceed the value allowable by
|
|
||||||
atmInterfaceMaxVciBits defined in ATM-MIB."
|
|
||||||
SYNTAX INTEGER (0..65535)
|
|
||||||
|
|
||||||
AtmVpIdentifier ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The VPI value for a VPL or VCL. The value VPI=0
|
|
||||||
is only allowed for a VCL. For ATM UNIs supporting
|
|
||||||
VPCs the VPI value ranges from 0 to 255. The VPI
|
|
||||||
value 0 is supported for ATM UNIs conforming to
|
|
||||||
the ATM Forum UNI 4.0 Annex 8 (Virtual UNIs)
|
|
||||||
specification. For ATM UNIs supporting VCCs the
|
|
||||||
VPI value ranges from 0 to 255. For ATM NNIs the
|
|
||||||
VPI value ranges from 0 to 4095. The maximum VPI
|
|
||||||
value cannot exceed the value allowable by
|
|
||||||
atmInterfaceMaxVpiBits defined in ATM-MIB."
|
|
||||||
SYNTAX INTEGER (0..4095)
|
|
||||||
|
|
||||||
AtmVorXAdminStatus ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The value determines the desired administrative
|
|
||||||
status of a virtual link or cross-connect. The up
|
|
||||||
and down states indicate that the traffic flow is
|
|
||||||
enabled or disabled respectively on the virtual
|
|
||||||
link or cross-connect."
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
up(1),
|
|
||||||
down(2)
|
|
||||||
}
|
|
||||||
|
|
||||||
AtmVorXLastChange ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The value of MIB II's sysUpTime at the time a
|
|
||||||
virtual link or cross-connect entered its current
|
|
||||||
operational state. If the current state was
|
|
||||||
entered prior to the last re-initialization of the
|
|
||||||
agent then this object contains a zero value."
|
|
||||||
SYNTAX TimeTicks
|
|
||||||
|
|
||||||
AtmVorXOperStatus ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The value determines the operational status of a
|
|
||||||
virtual link or cross-connect. The up and down
|
|
||||||
states indicate that the traffic flow is enabled
|
|
||||||
or disabled respectively on the virtual link or
|
|
||||||
cross-connect. The unknown state indicates that
|
|
||||||
the state of it cannot be determined. The state
|
|
||||||
will be down or unknown if the supporting ATM
|
|
||||||
interface(s) is down or unknown respectively."
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
up(1),
|
|
||||||
down(2),
|
|
||||||
unknown(3)
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
-- OBJECT-IDENTITIES:
|
|
||||||
|
|
||||||
-- The following atmTrafficDescriptorTypes has been moved
|
|
||||||
-- from RFC1695 and no longer appear in the revision of
|
|
||||||
-- RFC1695[3].
|
|
||||||
|
|
||||||
atmTrafficDescriptorTypes OBJECT IDENTIFIER ::= {mib-2 37 1 1}
|
|
||||||
-- atmMIBObjects
|
|
||||||
-- See [3].
|
|
||||||
|
|
||||||
-- All other and new OBJECT IDENTITIES
|
|
||||||
-- are defined under the following subtree:
|
|
||||||
|
|
||||||
atmObjectIdentities OBJECT IDENTIFIER ::= {atmTCMIB 1}
|
|
||||||
|
|
||||||
-- The following values are defined for use as
|
|
||||||
-- possible values of the ATM traffic descriptor type.
|
|
||||||
|
|
||||||
atmNoTrafficDescriptor OBJECT-IDENTITY
|
|
||||||
STATUS deprecated
|
|
||||||
DESCRIPTION
|
|
||||||
"This identifies the no ATM traffic
|
|
||||||
descriptor type. Parameters 1, 2, 3, 4,
|
|
||||||
and 5 are not used. This traffic descriptor
|
|
||||||
type can be used for best effort traffic."
|
|
||||||
::= {atmTrafficDescriptorTypes 1}
|
|
||||||
|
|
||||||
atmNoClpNoScr OBJECT-IDENTITY
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This traffic descriptor type is for no CLP
|
|
||||||
and no Sustained Cell Rate. The use of the
|
|
||||||
parameter vector for this type:
|
|
||||||
Parameter 1: peak cell rate in cells/second
|
|
||||||
for CLP=0+1 traffic
|
|
||||||
Parameter 2: not used
|
|
||||||
Parameter 3: not used
|
|
||||||
Parameter 4: not used
|
|
||||||
Parameter 5: not used."
|
|
||||||
REFERENCE
|
|
||||||
"ATM Forum,ATM User-Network Interface,
|
|
||||||
Version 3.0 (UNI 3.0) Specification, 1994.
|
|
||||||
ATM Forum, ATM User-Network Interface,
|
|
||||||
Version 3.1 (UNI 3.1) Specification,
|
|
||||||
November 1994."
|
|
||||||
::= {atmTrafficDescriptorTypes 2}
|
|
||||||
|
|
||||||
atmClpNoTaggingNoScr OBJECT-IDENTITY
|
|
||||||
STATUS deprecated
|
|
||||||
DESCRIPTION
|
|
||||||
"This traffic descriptor is for CLP without
|
|
||||||
tagging and no Sustained Cell Rate. The use
|
|
||||||
of the parameter vector for this type:
|
|
||||||
Parameter 1: peak cell rate in cells/second
|
|
||||||
for CLP=0+1 traffic
|
|
||||||
Parameter 2: peak cell rate in cells/second
|
|
||||||
for CLP=0 traffic
|
|
||||||
Parameter 3: not used
|
|
||||||
Parameter 4: not used
|
|
||||||
Parameter 5: not used."
|
|
||||||
::= {atmTrafficDescriptorTypes 3}
|
|
||||||
|
|
||||||
atmClpTaggingNoScr OBJECT-IDENTITY
|
|
||||||
STATUS deprecated
|
|
||||||
DESCRIPTION
|
|
||||||
"This traffic descriptor is for CLP with
|
|
||||||
tagging and no Sustained Cell Rate. The use
|
|
||||||
of the parameter vector for this type:
|
|
||||||
Parameter 1: peak cell rate in cells/second
|
|
||||||
for CLP=0+1 traffic
|
|
||||||
Parameter 2: peak cell rate in cells/second
|
|
||||||
for CLP=0 traffic, excess
|
|
||||||
tagged as CLP=1
|
|
||||||
Parameter 3: not used
|
|
||||||
Parameter 4: not used
|
|
||||||
Parameter 5: not used."
|
|
||||||
::= {atmTrafficDescriptorTypes 4}
|
|
||||||
|
|
||||||
atmNoClpScr OBJECT-IDENTITY
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This traffic descriptor type is for no CLP
|
|
||||||
with Sustained Cell Rate. The use of the
|
|
||||||
parameter vector for this type:
|
|
||||||
Parameter 1: peak cell rate in cells/second
|
|
||||||
for CLP=0+1 traffic
|
|
||||||
Parameter 2: sustainable cell rate in cells/second
|
|
||||||
for CLP=0+1 traffic
|
|
||||||
Parameter 3: maximum burst size in cells
|
|
||||||
Parameter 4: not used
|
|
||||||
Parameter 5: not used."
|
|
||||||
REFERENCE
|
|
||||||
"ATM Forum,ATM User-Network Interface,
|
|
||||||
Version 3.0 (UNI 3.0) Specification, 1994.
|
|
||||||
ATM Forum, ATM User-Network Interface,
|
|
||||||
Version 3.1 (UNI 3.1) Specification,
|
|
||||||
November 1994."
|
|
||||||
::= {atmTrafficDescriptorTypes 5}
|
|
||||||
|
|
||||||
atmClpNoTaggingScr OBJECT-IDENTITY
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This traffic descriptor type is for CLP with
|
|
||||||
Sustained Cell Rate and no tagging. The use
|
|
||||||
of the parameter vector for this type:
|
|
||||||
Parameter 1: peak cell rate in cells/second
|
|
||||||
for CLP=0+1 traffic
|
|
||||||
Parameter 2: sustainable cell rate in cells/second
|
|
||||||
for CLP=0 traffic
|
|
||||||
Parameter 3: maximum burst size in cells
|
|
||||||
Parameter 4: not used
|
|
||||||
Parameter 5: not used."
|
|
||||||
REFERENCE
|
|
||||||
"ATM Forum,ATM User-Network Interface,
|
|
||||||
Version 3.0 (UNI 3.0) Specification, 1994.
|
|
||||||
ATM Forum, ATM User-Network Interface,
|
|
||||||
Version 3.1 (UNI 3.1) Specification,
|
|
||||||
November 1994."
|
|
||||||
::= {atmTrafficDescriptorTypes 6}
|
|
||||||
|
|
||||||
atmClpTaggingScr OBJECT-IDENTITY
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This traffic descriptor type is for CLP with
|
|
||||||
tagging and Sustained Cell Rate. The use of
|
|
||||||
the parameter vector for this type:
|
|
||||||
Parameter 1: peak cell rate in cells/second
|
|
||||||
for CLP=0+1 traffic
|
|
||||||
Parameter 2: sustainable cell rate in cells/second
|
|
||||||
for CLP=0 traffic, excess tagged as
|
|
||||||
CLP=1
|
|
||||||
Parameter 3: maximum burst size in cells
|
|
||||||
Parameter 4: not used
|
|
||||||
Parameter 5: not used."
|
|
||||||
REFERENCE
|
|
||||||
"ATM Forum,ATM User-Network Interface,
|
|
||||||
Version 3.0 (UNI 3.0) Specification, 1994.
|
|
||||||
ATM Forum, ATM User-Network Interface,
|
|
||||||
Version 3.1 (UNI 3.1) Specification,
|
|
||||||
November 1994."
|
|
||||||
::= {atmTrafficDescriptorTypes 7}
|
|
||||||
|
|
||||||
atmClpNoTaggingMcr OBJECT-IDENTITY
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This traffic descriptor type is for CLP with
|
|
||||||
Minimum Cell Rate and no tagging. The use of
|
|
||||||
the parameter vector for this type:
|
|
||||||
Parameter 1: peak cell rate in cells/second
|
|
||||||
for CLP=0+1 traffic
|
|
||||||
Parameter 2: CDVT in tenths of microseconds
|
|
||||||
Parameter 3: minimum cell rate in cells/second
|
|
||||||
Parameter 4: unused
|
|
||||||
Parameter 5: unused."
|
|
||||||
REFERENCE
|
|
||||||
"ATM Forum,ATM User-Network Interface,
|
|
||||||
Version 3.0 (UNI 3.0) Specification, 1994.
|
|
||||||
ATM Forum, ATM User-Network Interface,
|
|
||||||
Version 3.1 (UNI 3.1) Specification,
|
|
||||||
November 1994."
|
|
||||||
::= {atmTrafficDescriptorTypes 8}
|
|
||||||
|
|
||||||
atmClpTransparentNoScr OBJECT-IDENTITY
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This traffic descriptor type is for the CLP-
|
|
||||||
transparent model and no Sustained Cell Rate.
|
|
||||||
The use of the parameter vector for this type:
|
|
||||||
Parameter 1: peak cell rate in cells/second
|
|
||||||
for CLP=0+1 traffic
|
|
||||||
Parameter 2: CDVT in tenths of microseconds
|
|
||||||
Parameter 3: not used
|
|
||||||
Parameter 4: not used
|
|
||||||
Parameter 5: not used.
|
|
||||||
|
|
||||||
This traffic descriptor type is applicable to
|
|
||||||
connections following the CBR.1 conformance
|
|
||||||
definition.
|
|
||||||
|
|
||||||
Connections specifying this traffic descriptor
|
|
||||||
type will be rejected at UNI 3.0 or UNI 3.1
|
|
||||||
interfaces. For a similar traffic descriptor
|
|
||||||
type that can be accepted at UNI 3.0 and
|
|
||||||
UNI 3.1 interfaces, see atmNoClpNoScr."
|
|
||||||
REFERENCE
|
|
||||||
"ATM Forum,ATM User-Network Interface,
|
|
||||||
Version 3.0 (UNI 3.0) Specification, 1994.
|
|
||||||
ATM Forum, ATM User-Network Interface,
|
|
||||||
Version 3.1 (UNI 3.1) Specification,
|
|
||||||
November 1994.
|
|
||||||
ATM Forum, Traffic Management Specification,
|
|
||||||
Version 4.0, af-tm-0056.000, June 1996."
|
|
||||||
::= {atmTrafficDescriptorTypes 9}
|
|
||||||
|
|
||||||
atmClpTransparentScr OBJECT-IDENTITY
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This traffic descriptor type is for the CLP-
|
|
||||||
transparent model with Sustained Cell Rate.
|
|
||||||
The use of the parameter vector for this type:
|
|
||||||
Parameter 1: peak cell rate in cells/second
|
|
||||||
for CLP=0+1 traffic
|
|
||||||
Parameter 2: sustainable cell rate in cells/second
|
|
||||||
for CLP=0+1 traffic
|
|
||||||
Parameter 3: maximum burst size in cells
|
|
||||||
Parameter 4: CDVT in tenths of microseconds
|
|
||||||
Parameter 5: not used.
|
|
||||||
|
|
||||||
This traffic descriptor type is applicable to
|
|
||||||
connections following the VBR.1 conformance
|
|
||||||
definition.
|
|
||||||
|
|
||||||
Connections specifying this traffic descriptor
|
|
||||||
type will be rejected at UNI 3.0 or UNI 3.1
|
|
||||||
interfaces. For a similar traffic descriptor
|
|
||||||
type that can be accepted at UNI 3.0 and
|
|
||||||
UNI 3.1 interfaces, see atmNoClpScr."
|
|
||||||
REFERENCE
|
|
||||||
"ATM Forum,ATM User-Network Interface,
|
|
||||||
Version 3.0 (UNI 3.0) Specification, 1994.
|
|
||||||
ATM Forum, ATM User-Network Interface,
|
|
||||||
Version 3.1 (UNI 3.1) Specification,
|
|
||||||
November 1994.
|
|
||||||
ATM Forum, Traffic Management Specification,
|
|
||||||
Version 4.0, af-tm-0056.000, June 1996."
|
|
||||||
::= {atmTrafficDescriptorTypes 10}
|
|
||||||
|
|
||||||
atmNoClpTaggingNoScr OBJECT-IDENTITY
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This traffic descriptor type is for no CLP
|
|
||||||
with tagging and no Sustained Cell Rate. The
|
|
||||||
use of the parameter vector for this type:
|
|
||||||
Parameter 1: peak cell rate in cells/second
|
|
||||||
for CLP=0+1 traffic
|
|
||||||
Parameter 2: CDVT in tenths of microseconds
|
|
||||||
Parameter 3: not used
|
|
||||||
Parameter 4: not used
|
|
||||||
Parameter 5: not used.
|
|
||||||
|
|
||||||
This traffic descriptor type is applicable to
|
|
||||||
connections following the UBR.2 conformance
|
|
||||||
definition ."
|
|
||||||
REFERENCE
|
|
||||||
"ATM Forum,ATM User-Network Interface,
|
|
||||||
Version 3.0 (UNI 3.0) Specification, 1994.
|
|
||||||
ATM Forum, ATM User-Network Interface,
|
|
||||||
Version 3.1 (UNI 3.1) Specification,
|
|
||||||
November 1994.
|
|
||||||
ATM Forum, Traffic Management Specification,
|
|
||||||
Version 4.0, af-tm-0056.000, June 1996."
|
|
||||||
::= {atmTrafficDescriptorTypes 11}
|
|
||||||
|
|
||||||
atmNoClpNoScrCdvt OBJECT-IDENTITY
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This traffic descriptor type is for no CLP
|
|
||||||
and no Sustained Cell Rate. The use of the
|
|
||||||
parameter vector for this type:
|
|
||||||
Parameter 1: peak cell rate in cells/second
|
|
||||||
for CLP=0+1 traffic
|
|
||||||
Parameter 2: CDVT in tenths of microseconds
|
|
||||||
Parameter 3: not used
|
|
||||||
Parameter 4: not used
|
|
||||||
Parameter 5: not used.
|
|
||||||
|
|
||||||
This traffic descriptor type is applicable to
|
|
||||||
CBR connections following the UNI 3.0/3.1
|
|
||||||
conformance definition for PCR CLP=0+1.
|
|
||||||
These CBR connections differ from CBR.1
|
|
||||||
connections in that the CLR objective
|
|
||||||
applies only to the CLP=0 cell flow.
|
|
||||||
|
|
||||||
This traffic descriptor type is also
|
|
||||||
applicable to connections following the UBR.1
|
|
||||||
conformance definition."
|
|
||||||
REFERENCE
|
|
||||||
"ATM Forum,ATM User-Network Interface,
|
|
||||||
Version 3.0 (UNI 3.0) Specification, 1994.
|
|
||||||
ATM Forum, ATM User-Network Interface,
|
|
||||||
Version 3.1 (UNI 3.1) Specification,
|
|
||||||
November 1994.
|
|
||||||
ATM Forum, Traffic Management Specification,
|
|
||||||
Version 4.0, af-tm-0056.000, June 1996."
|
|
||||||
::= {atmTrafficDescriptorTypes 12}
|
|
||||||
|
|
||||||
atmNoClpScrCdvt OBJECT-IDENTITY
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This traffic descriptor type is for no CLP
|
|
||||||
with Sustained Cell Rate. The use of the
|
|
||||||
parameter vector for this type:
|
|
||||||
Parameter 1: peak cell rate in cells/second
|
|
||||||
for CLP=0+1 traffic
|
|
||||||
Parameter 2: sustainable cell rate in cells/second
|
|
||||||
for CLP=0+1 traffic
|
|
||||||
Parameter 3: maximum burst size in cells
|
|
||||||
Parameter 4: CDVT in tenths of microseconds
|
|
||||||
Parameter 5: not used.
|
|
||||||
|
|
||||||
This traffic descriptor type is applicable
|
|
||||||
to VBR connections following the UNI 3.0/3.1
|
|
||||||
conformance definition for PCR CLP=0+1 and
|
|
||||||
SCR CLP=0+1. These VBR connections
|
|
||||||
differ from VBR.1 connections in that
|
|
||||||
the CLR objective applies only to the CLP=0
|
|
||||||
cell flow."
|
|
||||||
REFERENCE
|
|
||||||
"ATM Forum,ATM User-Network Interface,
|
|
||||||
Version 3.0 (UNI 3.0) Specification, 1994.
|
|
||||||
ATM Forum, ATM User-Network Interface,
|
|
||||||
Version 3.1 (UNI 3.1) Specification,
|
|
||||||
November 1994.
|
|
||||||
ATM Forum, Traffic Management Specification,
|
|
||||||
Version 4.0, af-tm-0056.000, June 1996."
|
|
||||||
::= {atmTrafficDescriptorTypes 13}
|
|
||||||
|
|
||||||
atmClpNoTaggingScrCdvt OBJECT-IDENTITY
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This traffic descriptor type is for CLP with
|
|
||||||
Sustained Cell Rate and no tagging. The use
|
|
||||||
of the parameter vector for this type:
|
|
||||||
Parameter 1: peak cell rate in cells/second
|
|
||||||
for CLP=0+1 traffic
|
|
||||||
Parameter 2: sustainable cell rate in cells/second
|
|
||||||
for CLP=0 traffic
|
|
||||||
Parameter 3: maximum burst size in cells
|
|
||||||
Parameter 4: CDVT in tenths of microseconds
|
|
||||||
Parameter 5: not used.
|
|
||||||
|
|
||||||
This traffic descriptor type is applicable to
|
|
||||||
connections following the VBR.2 conformance
|
|
||||||
definition."
|
|
||||||
REFERENCE
|
|
||||||
"ATM Forum,ATM User-Network Interface,
|
|
||||||
Version 3.0 (UNI 3.0) Specification, 1994.
|
|
||||||
ATM Forum, ATM User-Network Interface,
|
|
||||||
Version 3.1 (UNI 3.1) Specification,
|
|
||||||
November 1994.
|
|
||||||
ATM Forum, Traffic Management Specification,
|
|
||||||
Version 4.0, af-tm-0056.000, June 1996."
|
|
||||||
::= {atmTrafficDescriptorTypes 14}
|
|
||||||
|
|
||||||
atmClpTaggingScrCdvt OBJECT-IDENTITY
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This traffic descriptor type is for CLP with
|
|
||||||
tagging and Sustained Cell Rate. The use of
|
|
||||||
the parameter vector for this type:
|
|
||||||
Parameter 1: peak cell rate in cells/second
|
|
||||||
for CLP=0+1 traffic
|
|
||||||
Parameter 2: sustainable cell rate in cells/second
|
|
||||||
for CLP=0 traffic, excess tagged as
|
|
||||||
CLP=1
|
|
||||||
Parameter 3: maximum burst size in cells
|
|
||||||
Parameter 4: CDVT in tenths of microseconds
|
|
||||||
Parameter 5: not used.
|
|
||||||
|
|
||||||
This traffic descriptor type is applicable to
|
|
||||||
connections following the VBR.3 conformance
|
|
||||||
definition."
|
|
||||||
REFERENCE
|
|
||||||
"ATM Forum,ATM User-Network Interface,
|
|
||||||
Version 3.0 (UNI 3.0) Specification, 1994.
|
|
||||||
ATM Forum, ATM User-Network Interface,
|
|
||||||
Version 3.1 (UNI 3.1) Specification,
|
|
||||||
November 1994.
|
|
||||||
ATM Forum, Traffic Management Specification,
|
|
||||||
Version 4.0, af-tm-0056.000, June 1996."
|
|
||||||
::= {atmTrafficDescriptorTypes 15}
|
|
||||||
|
|
||||||
END
|
|
File diff suppressed because it is too large
Load Diff
@ -1,440 +0,0 @@
|
|||||||
-- *****************************************************************
|
|
||||||
-- AWC-VLAN-MIB.my: Cisco Aironet Wireless LAN VLAN Configuration
|
|
||||||
-- MIB file
|
|
||||||
--
|
|
||||||
-- September 2002, Victor Griswold
|
|
||||||
--
|
|
||||||
-- Copyright (c) 2002 by Cisco Systems, Inc.
|
|
||||||
-- All rights reserved.
|
|
||||||
-- *****************************************************************
|
|
||||||
--
|
|
||||||
|
|
||||||
AWC-VLAN-CFG-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY,
|
|
||||||
OBJECT-TYPE,
|
|
||||||
Unsigned32
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
MODULE-COMPLIANCE,
|
|
||||||
OBJECT-GROUP
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
TEXTUAL-CONVENTION,
|
|
||||||
RowStatus,
|
|
||||||
TruthValue
|
|
||||||
FROM SNMPv2-TC
|
|
||||||
awcVx,
|
|
||||||
AwcVlanId,
|
|
||||||
AwcPolId,
|
|
||||||
WEPKeytype128,
|
|
||||||
AwcDot11MicAlgorithm,
|
|
||||||
AwcDot11WEPKeyPermuteAlgorithm,
|
|
||||||
AwcPfPriority
|
|
||||||
FROM AWCVX-MIB;
|
|
||||||
|
|
||||||
|
|
||||||
awcVlanCfgMIB MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200209060000Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
" Cisco Systems
|
|
||||||
Customer Service
|
|
||||||
|
|
||||||
Postal: 170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
|
|
||||||
E-mail: cs-aironet@cisco.com"
|
|
||||||
DESCRIPTION
|
|
||||||
"Aironet products VLAN Configuration MIB."
|
|
||||||
REVISION "200107110000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Initial version of this MIB module."
|
|
||||||
::= { awcVx 21 }
|
|
||||||
|
|
||||||
|
|
||||||
awcVlanCfgObjects OBJECT IDENTIFIER ::= { awcVlanCfgMIB 1 }
|
|
||||||
|
|
||||||
|
|
||||||
-- Textual Conventions
|
|
||||||
|
|
||||||
AwcVlanIndex ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A value used to index per-VLAN tables.
|
|
||||||
Represents an IEEE 802.1Q VLAN-ID with global scope
|
|
||||||
within a given bridged domain (see AwcVlanId
|
|
||||||
textual convention). The value 4095 indicates
|
|
||||||
that the conceptual row applies to non-VLAN-tagged
|
|
||||||
frames (though it would be more directly
|
|
||||||
representative of the packet format, 0 can not be
|
|
||||||
used for this purpose, per SNMP conventions)."
|
|
||||||
SYNTAX Unsigned32 (1..4095)
|
|
||||||
|
|
||||||
AwcVlanEncapType ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The 802.1Q encapsulation mode. Valid values are:
|
|
||||||
dot1qDisabled (1), Disabled
|
|
||||||
dot1qPriority (2) 802.1Q Priority Tagging
|
|
||||||
dot1qHybrid (3), 802.1Q VLAN Hybrid Trunk
|
|
||||||
dot1qTrunk (4) 802.1Q VLAN Trunk
|
|
||||||
The default value is normally Disabled."
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
dot1qDisabled(1),
|
|
||||||
dot1qPriority(2),
|
|
||||||
dot1qHybrid(3),
|
|
||||||
dot1qTrunk(4)
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
-- Object Type Definitions
|
|
||||||
|
|
||||||
awcMaxVlanIds OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The Maximum number of discrete VLAN IDs supported.
|
|
||||||
The VLAN IDs need not be consecutive."
|
|
||||||
::= { awcVlanCfgObjects 1 }
|
|
||||||
|
|
||||||
awcVlanEncapMode OBJECT-TYPE
|
|
||||||
SYNTAX AwcVlanEncapType
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The encapsulation mode setting controls transmit
|
|
||||||
tagging logic for all ports. The value of this
|
|
||||||
object is derived from other settings within the
|
|
||||||
VLAN MIB."
|
|
||||||
DEFVAL { dot1qDisabled }
|
|
||||||
::= { awcVlanCfgObjects 2 }
|
|
||||||
|
|
||||||
awcNativeVlanId OBJECT-TYPE
|
|
||||||
SYNTAX AwcVlanId
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Native VLAN ID for the device. The default Native
|
|
||||||
VLAN ID is 0, for no VLAN ID. If the device is attached
|
|
||||||
to an Ethernet bridge/switch VLAN port then a non-zero
|
|
||||||
Native VLAN ID must match the Port VLAN ID of the
|
|
||||||
bridge/switch port. The Native VLAN ID is the default
|
|
||||||
VLAN ID for frames that are not otherwise
|
|
||||||
associated with a VLAN ID."
|
|
||||||
DEFVAL { 0 }
|
|
||||||
::= { awcVlanCfgObjects 3 }
|
|
||||||
|
|
||||||
awcVlanAllowEncrypted OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"When this attribute is true, the STA shall
|
|
||||||
indicate at the MAC service interface received
|
|
||||||
MSDUs regardless of the setting of the WEP
|
|
||||||
subfield of the Frame Control field, so long
|
|
||||||
as no other VLAN parameters necessitate use
|
|
||||||
of encryption. The default value of this attribute
|
|
||||||
shall be true.
|
|
||||||
|
|
||||||
The general use for awcVlanAllowEncrypted to be
|
|
||||||
true even when no static WEP keys are set for
|
|
||||||
a VLAN is to allow a station to utilize EAP
|
|
||||||
authentication to encrypt directed packets,
|
|
||||||
even while multicast packets are unencrypted."
|
|
||||||
DEFVAL { true }
|
|
||||||
::= { awcVlanCfgObjects 4 }
|
|
||||||
|
|
||||||
awcVlanAnyEnabled OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"When this attribute is true, VLAN operation of the
|
|
||||||
system is enabled when any awcVlanEnabled value is
|
|
||||||
true. When this attribute is false, VLAN operation
|
|
||||||
is disabled. The awcVlanAnyEnabled thus acts as a
|
|
||||||
master switch to enable or disable VLAN operation."
|
|
||||||
DEFVAL { false }
|
|
||||||
::= { awcVlanCfgObjects 5 }
|
|
||||||
|
|
||||||
|
|
||||||
-- VLAN Configuration Table
|
|
||||||
|
|
||||||
awcVlanCfgTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AwcVlanCfgEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A table used for configuring and managing VLANS."
|
|
||||||
::= { awcVlanCfgObjects 6 }
|
|
||||||
|
|
||||||
awcVlanCfgEntry OBJECT-TYPE
|
|
||||||
SYNTAX AwcVlanCfgEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"VLAN table entry containing parameters for configuring
|
|
||||||
and managing a particular VLAN."
|
|
||||||
INDEX {awcVlanIndex}
|
|
||||||
::= { awcVlanCfgTable 1 }
|
|
||||||
|
|
||||||
AwcVlanCfgEntry ::= SEQUENCE {
|
|
||||||
awcVlanIndex AwcVlanIndex,
|
|
||||||
awcVlanPolId AwcPolId,
|
|
||||||
awcVlanEnabled TruthValue,
|
|
||||||
awcVlanNUcastKeyRotationInterval INTEGER,
|
|
||||||
awcVlanRowStatus RowStatus,
|
|
||||||
awcVlanMicAlgorithm AwcDot11MicAlgorithm,
|
|
||||||
awcVlanWEPKeyPermuteAlgorithm AwcDot11WEPKeyPermuteAlgorithm,
|
|
||||||
awcVlanName OCTET STRING,
|
|
||||||
awcVlanDefaultUserPriority AwcPfPriority,
|
|
||||||
awcVlanAlert TruthValue
|
|
||||||
}
|
|
||||||
|
|
||||||
awcVlanIndex OBJECT-TYPE
|
|
||||||
SYNTAX AwcVlanIndex
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"VLAN ID to which the parameters in this conceptual
|
|
||||||
row shall be applied. If 4095, the parameters in
|
|
||||||
this conceptual row shall be applied to
|
|
||||||
non-VLAN-tagged frames."
|
|
||||||
::= { awcVlanCfgEntry 1 }
|
|
||||||
|
|
||||||
awcVlanPolId OBJECT-TYPE
|
|
||||||
SYNTAX AwcPolId
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Default Policy Group Identifier for hosts occupying
|
|
||||||
this VLAN."
|
|
||||||
DEFVAL { 0 }
|
|
||||||
::= { awcVlanCfgEntry 2 }
|
|
||||||
|
|
||||||
awcVlanEnabled OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"If true, this VLAN is enabled on all trunk and
|
|
||||||
hybrid ports. If false, this VLAN is disabled on
|
|
||||||
all ports."
|
|
||||||
DEFVAL { false }
|
|
||||||
::= { awcVlanCfgEntry 3 }
|
|
||||||
|
|
||||||
awcVlanNUcastKeyRotationInterval OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (0..10000000)
|
|
||||||
UNITS "seconds"
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"WEP key rotation period. 0 indicates no key rotation."
|
|
||||||
DEFVAL { 0 }
|
|
||||||
::= { awcVlanCfgEntry 4 }
|
|
||||||
|
|
||||||
awcVlanRowStatus OBJECT-TYPE
|
|
||||||
SYNTAX RowStatus
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Used for creating/deleting conceptual rows in this
|
|
||||||
table."
|
|
||||||
::= { awcVlanCfgEntry 5 }
|
|
||||||
|
|
||||||
awcVlanMicAlgorithm OBJECT-TYPE
|
|
||||||
SYNTAX AwcDot11MicAlgorithm
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Auxiliary Message Integrity Check (MIC) calculated on
|
|
||||||
WEP-encoded packets of stations assigned to this VLAN.
|
|
||||||
This object is not applicable for the reserved VLAN
|
|
||||||
4095."
|
|
||||||
DEFVAL { micNone }
|
|
||||||
::= { awcVlanCfgEntry 6 }
|
|
||||||
|
|
||||||
awcVlanWEPKeyPermuteAlgorithm OBJECT-TYPE
|
|
||||||
SYNTAX AwcDot11WEPKeyPermuteAlgorithm
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Function through which the WEP encryption key is
|
|
||||||
permuted between key renewal periods for stations
|
|
||||||
assigned to this VLAN. This object is not
|
|
||||||
applicable for the reserved VLAN 4095."
|
|
||||||
DEFVAL { wepPermuteNone }
|
|
||||||
::= { awcVlanCfgEntry 7 }
|
|
||||||
|
|
||||||
awcVlanName OBJECT-TYPE
|
|
||||||
SYNTAX OCTET STRING
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Descriptive textual name for the VLAN."
|
|
||||||
DEFVAL { "" }
|
|
||||||
::= { awcVlanCfgEntry 8 }
|
|
||||||
|
|
||||||
awcVlanDefaultUserPriority OBJECT-TYPE
|
|
||||||
SYNTAX AwcPfPriority
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Designation of the priority assigned to packets
|
|
||||||
transmitted over this VLAN, if no other filter or
|
|
||||||
classification rule has yet assigned a priority."
|
|
||||||
DEFVAL { default }
|
|
||||||
::= { awcVlanCfgEntry 9 }
|
|
||||||
|
|
||||||
awcVlanAlert OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Should an alert be registered when a packet on
|
|
||||||
this VLAN is observed?"
|
|
||||||
DEFVAL { false }
|
|
||||||
::= { awcVlanCfgEntry 10 }
|
|
||||||
|
|
||||||
|
|
||||||
-- Native VLAN Default Shared WEP Table
|
|
||||||
|
|
||||||
|
|
||||||
awcVlanNUcastKeyTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AwcVlanNUcastKeyEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Default Shared WEP Keys for all 802.11 packets
|
|
||||||
transmitted and received as non-VLAN-tagged
|
|
||||||
frames over a port with the Port VLAN ID specified
|
|
||||||
as awcVlanIndex. If WEP encryption
|
|
||||||
is enabled for transmitted 802.11 frames, then the
|
|
||||||
set of 1 to 4 default shared WEP keys are used
|
|
||||||
to encrypt transmitted 802.11 broadcast/multicast
|
|
||||||
frames associated with the Port VLAN ID. The
|
|
||||||
shared WEP keys are also used to encrypt/decrypt
|
|
||||||
unicast frames, associated with the Port VLAN ID,
|
|
||||||
if an individual session key is not defined for the
|
|
||||||
target station address."
|
|
||||||
::= { awcVlanCfgObjects 7 }
|
|
||||||
|
|
||||||
awcVlanNUcastKeyEntry OBJECT-TYPE
|
|
||||||
SYNTAX AwcVlanNUcastKeyEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry in the awcVlanNUcastKeyTable table."
|
|
||||||
INDEX {awcVlanIndex, awcVlanNUcastKeyIndex}
|
|
||||||
::= { awcVlanNUcastKeyTable 1 }
|
|
||||||
|
|
||||||
AwcVlanNUcastKeyEntry ::= SEQUENCE {
|
|
||||||
awcVlanNUcastKeyIndex INTEGER,
|
|
||||||
awcVlanNUcastKeyLen INTEGER,
|
|
||||||
awcVlanNUcastKeyValue WEPKeytype128
|
|
||||||
}
|
|
||||||
|
|
||||||
awcVlanNUcastKeyIndex OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (1..4)
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"802.11 WEP Key Index, + 1, used when transmitting or
|
|
||||||
receiving frames with this key."
|
|
||||||
::= { awcVlanNUcastKeyEntry 1 }
|
|
||||||
|
|
||||||
awcVlanNUcastKeyLen OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (0..13)
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Length in octets of awcVlanNUcastKeyValue. Common
|
|
||||||
values are 5 for 40-bit WEP and 13 for 128-bit WEP.
|
|
||||||
A value of 0 means that the key is not set."
|
|
||||||
DEFVAL { 0 }
|
|
||||||
::= { awcVlanNUcastKeyEntry 2 }
|
|
||||||
|
|
||||||
awcVlanNUcastKeyValue OBJECT-TYPE
|
|
||||||
SYNTAX WEPKeytype128
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A WEP default secret key value. The value is
|
|
||||||
write-only (attempt to read will result in
|
|
||||||
return of zero-length string)."
|
|
||||||
::= { awcVlanNUcastKeyEntry 3 }
|
|
||||||
|
|
||||||
|
|
||||||
awcVlanAllowUnencryptedVlanId OBJECT-TYPE
|
|
||||||
SYNTAX AwcVlanId
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Single VLAN ID on which unencrypted packets are
|
|
||||||
allowed. The default Unencrypted VLAN ID is 0,
|
|
||||||
meaning that all VLANs require full encryption."
|
|
||||||
DEFVAL { 0 }
|
|
||||||
::= { awcVlanCfgObjects 8 }
|
|
||||||
|
|
||||||
|
|
||||||
-- Notifications
|
|
||||||
|
|
||||||
awcVlanCfgNotifications OBJECT IDENTIFIER ::= { awcVlanCfgMIB 2 }
|
|
||||||
|
|
||||||
|
|
||||||
-- Conformance
|
|
||||||
|
|
||||||
awcVlanCfgConformance OBJECT IDENTIFIER ::= { awcVlanCfgMIB 3 }
|
|
||||||
|
|
||||||
awcVlanCfgCompliances OBJECT IDENTIFIER ::= { awcVlanCfgConformance 1 }
|
|
||||||
|
|
||||||
awcVlanCfgGroups OBJECT IDENTIFIER ::= { awcVlanCfgConformance 2 }
|
|
||||||
|
|
||||||
|
|
||||||
-- Compliance
|
|
||||||
|
|
||||||
awcVlanCfgCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for the awcVlanCfgMIB group."
|
|
||||||
MODULE -- this module
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
awcVlanCfgObjectsGroup
|
|
||||||
}
|
|
||||||
|
|
||||||
::= { awcVlanCfgCompliances 1 }
|
|
||||||
|
|
||||||
|
|
||||||
-- Units of Conformance
|
|
||||||
|
|
||||||
awcVlanCfgObjectsGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
awcMaxVlanIds,
|
|
||||||
awcVlanEncapMode,
|
|
||||||
awcNativeVlanId,
|
|
||||||
awcVlanAllowEncrypted,
|
|
||||||
awcVlanPolId,
|
|
||||||
awcVlanEnabled,
|
|
||||||
awcVlanNUcastKeyRotationInterval,
|
|
||||||
awcVlanRowStatus,
|
|
||||||
awcVlanMicAlgorithm,
|
|
||||||
awcVlanWEPKeyPermuteAlgorithm,
|
|
||||||
awcVlanName,
|
|
||||||
awcVlanDefaultUserPriority,
|
|
||||||
awcVlanAlert,
|
|
||||||
awcVlanNUcastKeyLen,
|
|
||||||
awcVlanNUcastKeyValue,
|
|
||||||
awcVlanAllowUnencryptedVlanId
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
""
|
|
||||||
::= { awcVlanCfgGroups 1 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
@ -1,139 +0,0 @@
|
|||||||
-- *****************************************************************
|
|
||||||
-- BASIS MIB
|
|
||||||
--
|
|
||||||
-- April 2003 Wei Gao
|
|
||||||
--
|
|
||||||
-- Copyright (c) 2003 by cisco Systems, Inc.
|
|
||||||
-- All rights reserved.
|
|
||||||
-- *****************************************************************
|
|
||||||
|
|
||||||
BASIS-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
stratacom,
|
|
||||||
ciscoWan
|
|
||||||
FROM CISCOWAN-SMI
|
|
||||||
MODULE-IDENTITY
|
|
||||||
FROM SNMPv2-SMI;
|
|
||||||
|
|
||||||
basisMIB MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200304040000Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
Customer Service
|
|
||||||
|
|
||||||
Postal: 170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
|
|
||||||
E-mail: cs-wanatm@cisco.com"
|
|
||||||
DESCRIPTION "This MIB Contains OID subtrees used in
|
|
||||||
some of the MIBs under 'stratacom' enterprise.
|
|
||||||
"
|
|
||||||
|
|
||||||
REVISION "200304040000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Initial version of this MIB Module.
|
|
||||||
|
|
||||||
The content of this MIB was originally available
|
|
||||||
in SMIv1 version. The MIB has been converted to
|
|
||||||
SMIv2 version and descriptions of some of the objects
|
|
||||||
have been modified."
|
|
||||||
::= { ciscoWan 67 }
|
|
||||||
|
|
||||||
|
|
||||||
basis OBJECT IDENTIFIER ::= { stratacom 110 }
|
|
||||||
par OBJECT IDENTIFIER ::= { stratacom 130 }
|
|
||||||
|
|
||||||
basisSystem OBJECT IDENTIFIER ::= { basis 1 }
|
|
||||||
cardGeneric OBJECT IDENTIFIER ::= { basis 2 }
|
|
||||||
cardSpecific OBJECT IDENTIFIER ::= { basis 3 }
|
|
||||||
basisLines OBJECT IDENTIFIER ::= { basis 4 }
|
|
||||||
basisServices OBJECT IDENTIFIER ::= { basis 5 }
|
|
||||||
axisDiagnostics OBJECT IDENTIFIER ::= { basis 6 }
|
|
||||||
|
|
||||||
basisShelf OBJECT IDENTIFIER ::= { basisSystem 1 }
|
|
||||||
basisAsm OBJECT IDENTIFIER ::= { basisSystem 2 }
|
|
||||||
axisRedundancy OBJECT IDENTIFIER ::= { basisSystem 3 }
|
|
||||||
axisSvc OBJECT IDENTIFIER ::= { basisSystem 4 }
|
|
||||||
|
|
||||||
atmLmiSignaling OBJECT IDENTIFIER ::= { cardSpecific 4 }
|
|
||||||
|
|
||||||
atmAddressRegistration OBJECT IDENTIFIER ::= { axisSvc 1 }
|
|
||||||
|
|
||||||
dsx1 OBJECT IDENTIFIER ::= { basisLines 3 }
|
|
||||||
dsx3 OBJECT IDENTIFIER ::= { basisLines 4 }
|
|
||||||
x21 OBJECT IDENTIFIER ::= { basisLines 5 }
|
|
||||||
sonet OBJECT IDENTIFIER ::= { basisLines 6 }
|
|
||||||
dsx0Vism OBJECT IDENTIFIER ::= { basisLines 7 }
|
|
||||||
|
|
||||||
dsx1Line OBJECT IDENTIFIER ::= { dsx1 1 }
|
|
||||||
dsx1Framing OBJECT IDENTIFIER ::= { dsx1 2 }
|
|
||||||
dsx1Plcp OBJECT IDENTIFIER ::= { dsx1 3 }
|
|
||||||
dsx3Line OBJECT IDENTIFIER ::= { dsx3 1 }
|
|
||||||
dsx3Framing OBJECT IDENTIFIER ::= { dsx3 2 }
|
|
||||||
plcp OBJECT IDENTIFIER ::= { dsx3 3 }
|
|
||||||
|
|
||||||
cwsonetObjects OBJECT IDENTIFIER ::= { sonet 1 }
|
|
||||||
|
|
||||||
frameRelay OBJECT IDENTIFIER ::= { basisServices 1 }
|
|
||||||
frPort OBJECT IDENTIFIER ::= { frameRelay 1 }
|
|
||||||
frChan OBJECT IDENTIFIER ::= { frameRelay 2 }
|
|
||||||
frPortCnf OBJECT IDENTIFIER ::= { frPort 1 }
|
|
||||||
frPortCnfSig OBJECT IDENTIFIER ::= { frPortCnf 2 }
|
|
||||||
frPortCnfX21PortGrp OBJECT IDENTIFIER ::= { frPortCnf 3 }
|
|
||||||
frPortServiceQueGrp OBJECT IDENTIFIER ::= { frPortCnf 4 }
|
|
||||||
frPortCnfResPartGrp OBJECT IDENTIFIER ::= { frPortCnf 5 }
|
|
||||||
frPortCnt OBJECT IDENTIFIER ::= { frPort 2 }
|
|
||||||
frPortCntSig OBJECT IDENTIFIER ::= { frPortCnt 2 }
|
|
||||||
|
|
||||||
atm OBJECT IDENTIFIER ::= { basisServices 2 }
|
|
||||||
ausmPort OBJECT IDENTIFIER ::= { atm 1 }
|
|
||||||
ausmPortCnf OBJECT IDENTIFIER ::= { ausmPort 1 }
|
|
||||||
ausmPortCnt OBJECT IDENTIFIER ::= { ausmPort 3 }
|
|
||||||
ausmChan OBJECT IDENTIFIER ::= { atm 2 }
|
|
||||||
|
|
||||||
circuitEmulation OBJECT IDENTIFIER ::= { basisServices 3 }
|
|
||||||
cesmChan OBJECT IDENTIFIER ::= { circuitEmulation 2 }
|
|
||||||
|
|
||||||
sna OBJECT IDENTIFIER ::= { basisServices 4 }
|
|
||||||
snaport OBJECT IDENTIFIER ::= { sna 1 }
|
|
||||||
snaportCnf OBJECT IDENTIFIER ::= { snaport 1 }
|
|
||||||
snaportCnfSig OBJECT IDENTIFIER ::= { snaportCnf 2 }
|
|
||||||
snaportCnt OBJECT IDENTIFIER ::= { snaport 2 }
|
|
||||||
snaPortCntSig OBJECT IDENTIFIER ::= { snaportCnt 2 }
|
|
||||||
|
|
||||||
voice OBJECT IDENTIFIER ::= { basisServices 5 }
|
|
||||||
vismPort OBJECT IDENTIFIER ::= { voice 2 }
|
|
||||||
vismChanGrp OBJECT IDENTIFIER ::= { voice 3 }
|
|
||||||
vismChanCnfGrp OBJECT IDENTIFIER ::= { vismChanGrp 1 }
|
|
||||||
|
|
||||||
|
|
||||||
atmLines OBJECT IDENTIFIER ::= { atm 5 }
|
|
||||||
bbInterface OBJECT IDENTIFIER ::= { atm 6 }
|
|
||||||
bbChan OBJECT IDENTIFIER ::= { atm 7 }
|
|
||||||
virtualInterface OBJECT IDENTIFIER ::= { atm 8 }
|
|
||||||
rpmInterface OBJECT IDENTIFIER ::= { atm 9 }
|
|
||||||
rpmChan OBJECT IDENTIFIER ::= { atm 10 }
|
|
||||||
|
|
||||||
atmLineCnfGrp OBJECT IDENTIFIER ::= { atmLines 1 }
|
|
||||||
atmLineCntGrp OBJECT IDENTIFIER ::= { atmLines 2 }
|
|
||||||
|
|
||||||
bbIfCnf OBJECT IDENTIFIER ::= { bbInterface 1 }
|
|
||||||
bbIfCnfResPartGrp OBJECT IDENTIFIER ::= { bbInterface 2 }
|
|
||||||
bbIfStateGrp OBJECT IDENTIFIER ::= { bbInterface 3 }
|
|
||||||
bbIfCnt OBJECT IDENTIFIER ::= { bbInterface 4 }
|
|
||||||
|
|
||||||
bbChanCnfGrp OBJECT IDENTIFIER ::= { bbChan 1 }
|
|
||||||
bbChanStateGrp OBJECT IDENTIFIER ::= { bbChan 2 }
|
|
||||||
bbChanCntGrp OBJECT IDENTIFIER ::= { bbChan 3 }
|
|
||||||
|
|
||||||
rpmPort OBJECT IDENTIFIER ::= { rpmInterface 1 }
|
|
||||||
|
|
||||||
rpmChanGrp OBJECT IDENTIFIER ::= { rpmChan 1 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
@ -1,129 +0,0 @@
|
|||||||
-- *****************************************************************
|
|
||||||
-- BASIS-ONLINE-DIAG-MIB
|
|
||||||
-- Online diagnostics mib
|
|
||||||
--
|
|
||||||
-- June 2003 Subra Hegde
|
|
||||||
--
|
|
||||||
-- Copyright (c) 2003 by cisco Systems, Inc.
|
|
||||||
-- All rights reserved.
|
|
||||||
-- *****************************************************************
|
|
||||||
|
|
||||||
|
|
||||||
BASIS-ONLINE-DIAG-MIB DEFINITIONS ::= BEGIN
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY,
|
|
||||||
OBJECT-TYPE,
|
|
||||||
Integer32
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
MODULE-COMPLIANCE,
|
|
||||||
OBJECT-GROUP FROM SNMPv2-CONF
|
|
||||||
ciscoWan FROM CISCOWAN-SMI
|
|
||||||
axisDiagnostics FROM BASIS-MIB;
|
|
||||||
|
|
||||||
basisOnlineDiagMIB MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200306110000Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
" Cisco Systems
|
|
||||||
Customer Service
|
|
||||||
|
|
||||||
Postal: 170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
|
|
||||||
E-mail: cs-wanatm@cisco.com"
|
|
||||||
DESCRIPTION
|
|
||||||
"This MIB contains information on the online diagnostics
|
|
||||||
in MGX82xx(MGX8250, MGX8220, MGX8230 etc) products."
|
|
||||||
|
|
||||||
REVISION "200306110000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Initial version of the MIB.
|
|
||||||
|
|
||||||
The content of this MIB was originally available
|
|
||||||
in CISCO-WAN-AXIPOP-MIB defined using SMIv1.
|
|
||||||
The applicable objects from CISCO-WAN-AXIPOP-MIB
|
|
||||||
are defined using SMIv2 in this MIB. Also the
|
|
||||||
descriptions of some of the objects have been
|
|
||||||
modified."
|
|
||||||
|
|
||||||
::= { ciscoWan 80 }
|
|
||||||
|
|
||||||
onlineDiagnostics OBJECT IDENTIFIER ::= { axisDiagnostics 3 }
|
|
||||||
|
|
||||||
diagType OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
post (1),
|
|
||||||
onlinediag(2)
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This is used to identify the type of diagnostics.
|
|
||||||
|
|
||||||
post (1) : Power On Self Test.
|
|
||||||
onlineDiag(2) : Online Diagnostics.
|
|
||||||
|
|
||||||
When a trap is sent to report diagnostics results
|
|
||||||
this is used as a varbind to indicate the type of
|
|
||||||
diagnostics."
|
|
||||||
::= { onlineDiagnostics 1 }
|
|
||||||
|
|
||||||
diagResult OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
passed(1),
|
|
||||||
failed(2)
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This is used to indicate the result of the diagnostics."
|
|
||||||
::= { onlineDiagnostics 2 }
|
|
||||||
|
|
||||||
diagTestId OBJECT-TYPE
|
|
||||||
SYNTAX Integer32(0..2147483647)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This is used to indicate the test number of the
|
|
||||||
diagnostics test that failed. The value depends upon
|
|
||||||
the implementation in the each of the MGX82xx product."
|
|
||||||
::= { onlineDiagnostics 3 }
|
|
||||||
|
|
||||||
-- conformance information
|
|
||||||
|
|
||||||
boDiagMIBConformance OBJECT IDENTIFIER ::= { basisOnlineDiagMIB 2 }
|
|
||||||
|
|
||||||
boDiagMIBCompliances OBJECT IDENTIFIER ::= { boDiagMIBConformance 1 }
|
|
||||||
|
|
||||||
boDiagMIBGroups OBJECT IDENTIFIER ::= { boDiagMIBConformance 2 }
|
|
||||||
|
|
||||||
-- compliance statements
|
|
||||||
|
|
||||||
boDiagCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for entities which implement
|
|
||||||
the basis online diagnostics MIB."
|
|
||||||
MODULE -- this module
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
boDiagGroup
|
|
||||||
}
|
|
||||||
::= { boDiagMIBCompliances 1 }
|
|
||||||
|
|
||||||
boDiagGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
diagType,
|
|
||||||
diagResult,
|
|
||||||
diagTestId
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of objects providing the
|
|
||||||
online diagnostics information."
|
|
||||||
::= { boDiagMIBGroups 1 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
@ -1,193 +0,0 @@
|
|||||||
-- *****************************************************************
|
|
||||||
-- BASIS-SERIAL-MIB: Serial Port MIB MGX8250 and MGX8220 products.
|
|
||||||
--
|
|
||||||
-- May 2003, Subra Hegde
|
|
||||||
--
|
|
||||||
-- Copyright (c) 2003 by cisco Systems, Inc.
|
|
||||||
-- All rights reserved.
|
|
||||||
-- ****************************************************************
|
|
||||||
|
|
||||||
BASIS-SERIAL-MIB DEFINITIONS ::= BEGIN
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY,
|
|
||||||
OBJECT-TYPE,
|
|
||||||
Integer32 FROM SNMPv2-SMI
|
|
||||||
MODULE-COMPLIANCE,
|
|
||||||
OBJECT-GROUP FROM SNMPv2-CONF
|
|
||||||
basisLines FROM BASIS-MIB
|
|
||||||
ciscoWan FROM CISCOWAN-SMI;
|
|
||||||
|
|
||||||
basisSerialMIB MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200305030000Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
" Cisco Systems
|
|
||||||
Customer Service
|
|
||||||
|
|
||||||
Postal: 170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
|
|
||||||
E-mail: cs-wanatm@cisco.com"
|
|
||||||
DESCRIPTION
|
|
||||||
"The MIB module to configure serial ports
|
|
||||||
in Processor Module and different Service
|
|
||||||
Modules(cards) in MGX8850,MGX8250 and MGX8220
|
|
||||||
ATM Edge switches."
|
|
||||||
|
|
||||||
REVISION "200305030000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Initial version of the MIB.
|
|
||||||
|
|
||||||
The content of this MIB was originally available
|
|
||||||
in CISCO-WAN-AXIPOP-MIB defined using SMIv1.
|
|
||||||
The applicable objects from CISCO-WAN-AXIPOP-MIB
|
|
||||||
are defined using SMIv2 in this MIB. Also the
|
|
||||||
descriptions of some of the objects have been
|
|
||||||
modified."
|
|
||||||
::= { ciscoWan 69 }
|
|
||||||
|
|
||||||
|
|
||||||
serialInterface OBJECT IDENTIFIER ::= {basisLines 1}
|
|
||||||
|
|
||||||
-- ***************************************************************
|
|
||||||
--
|
|
||||||
-- serial interface table
|
|
||||||
--
|
|
||||||
-- ***************************************************************
|
|
||||||
|
|
||||||
serialPortNumOfValidEntries OBJECT-TYPE
|
|
||||||
SYNTAX Integer32(1..2)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object contains number of serial ports.
|
|
||||||
This identifies the number of entries in
|
|
||||||
serialInterfacetable."
|
|
||||||
::= { serialInterface 2 }
|
|
||||||
|
|
||||||
serialInterfaceTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF SerialInterfaceEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This table represents Physical serial interfaces in
|
|
||||||
the module."
|
|
||||||
::= { serialInterface 1 }
|
|
||||||
|
|
||||||
serialInterfaceEntry OBJECT-TYPE
|
|
||||||
SYNTAX SerialInterfaceEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry for each serial interface.
|
|
||||||
Each entry contains information on
|
|
||||||
port type, port speed."
|
|
||||||
INDEX { serialPortNum }
|
|
||||||
::= { serialInterfaceTable 1}
|
|
||||||
|
|
||||||
SerialInterfaceEntry ::=
|
|
||||||
SEQUENCE {
|
|
||||||
serialPortNum Integer32,
|
|
||||||
serialPortType INTEGER,
|
|
||||||
serialPortEnable INTEGER,
|
|
||||||
serialPortbps INTEGER
|
|
||||||
}
|
|
||||||
|
|
||||||
serialPortNum OBJECT-TYPE
|
|
||||||
SYNTAX Integer32(1..2)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object identifies the serial port number.
|
|
||||||
|
|
||||||
The value 1 is used for Console Port.
|
|
||||||
The Console Port is also known as control port(CP).
|
|
||||||
|
|
||||||
The value 2 is used for Maintenance Port
|
|
||||||
and this can be used as SLIP
|
|
||||||
(Serial Line Internet Protocol) interface.
|
|
||||||
The Maintenance Port is also known as
|
|
||||||
Modem Port(MP)."
|
|
||||||
::= { serialInterfaceEntry 1 }
|
|
||||||
|
|
||||||
serialPortType OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
main (1),
|
|
||||||
debug (2)
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object identifies the type of port.
|
|
||||||
|
|
||||||
main(1) : This is applicable for Maintenance Port
|
|
||||||
debug(2) : This is applicable for Console Port."
|
|
||||||
::= { serialInterfaceEntry 2 }
|
|
||||||
|
|
||||||
serialPortEnable OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
disable (1),
|
|
||||||
enable (2)
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object is used for enabling/disabling
|
|
||||||
serial port."
|
|
||||||
::= { serialInterfaceEntry 3 }
|
|
||||||
|
|
||||||
serialPortbps OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
bps9600 (1),
|
|
||||||
bps2400 (2),
|
|
||||||
bps19200 (3)
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object identifies the baud rate of the ports."
|
|
||||||
DEFVAL { bps9600 }
|
|
||||||
::= { serialInterfaceEntry 4 }
|
|
||||||
|
|
||||||
|
|
||||||
-- conformance information
|
|
||||||
|
|
||||||
basisSerialMIBConformance OBJECT IDENTIFIER ::= { basisSerialMIB 2 }
|
|
||||||
|
|
||||||
basisSerialMIBGroups OBJECT IDENTIFIER ::=
|
|
||||||
{ basisSerialMIBConformance 1 }
|
|
||||||
|
|
||||||
basisSerialMIBCompliances OBJECT IDENTIFIER ::=
|
|
||||||
{ basisSerialMIBConformance 2 }
|
|
||||||
|
|
||||||
-- compliance statements
|
|
||||||
|
|
||||||
basisSerialCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for objects related
|
|
||||||
to Serial Ports."
|
|
||||||
MODULE -- this module
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
basisSerialConfGroup
|
|
||||||
}
|
|
||||||
::= { basisSerialMIBCompliances 1 }
|
|
||||||
|
|
||||||
basisSerialConfGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
serialPortNumOfValidEntries,
|
|
||||||
serialPortNum,
|
|
||||||
serialPortType,
|
|
||||||
serialPortEnable,
|
|
||||||
serialPortbps
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The collection of objects which are used to represent
|
|
||||||
serial ports."
|
|
||||||
::= { basisSerialMIBGroups 1 }
|
|
||||||
|
|
||||||
END
|
|
File diff suppressed because it is too large
Load Diff
@ -1,125 +0,0 @@
|
|||||||
|
|
||||||
BAY-STACK-ARP-INSPECTION-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
OBJECT-TYPE, MODULE-IDENTITY
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
TruthValue
|
|
||||||
FROM SNMPv2-TC
|
|
||||||
InterfaceIndex
|
|
||||||
FROM IF-MIB
|
|
||||||
VlanIndex
|
|
||||||
FROM Q-BRIDGE-MIB
|
|
||||||
bayStackMibs
|
|
||||||
FROM SYNOPTICS-ROOT-MIB;
|
|
||||||
|
|
||||||
bayStackArpInspectionMib MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200606230000Z"
|
|
||||||
ORGANIZATION "Nortel Ltd."
|
|
||||||
CONTACT-INFO "nortel.com"
|
|
||||||
DESCRIPTION
|
|
||||||
"This MIB module is used for ARP inspection configuration
|
|
||||||
settings in Nortel's software and products."
|
|
||||||
|
|
||||||
REVISION "200606230000Z" -- June 23, 2006
|
|
||||||
DESCRIPTION
|
|
||||||
"Ver 1: Initial version."
|
|
||||||
::= { bayStackMibs 18 }
|
|
||||||
|
|
||||||
bsArpInspectionNotifications
|
|
||||||
OBJECT IDENTIFIER ::= { bayStackArpInspectionMib 0 }
|
|
||||||
bsArpInspectionObjects
|
|
||||||
OBJECT IDENTIFIER ::= { bayStackArpInspectionMib 1 }
|
|
||||||
|
|
||||||
--
|
|
||||||
-- VLAN table
|
|
||||||
--
|
|
||||||
|
|
||||||
bsArpInspectionVlanTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF BsArpInspectionVlanEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This table is used to control ARP inspection settings per-VLAN."
|
|
||||||
::= { bsArpInspectionObjects 1 }
|
|
||||||
|
|
||||||
bsArpInspectionVlanEntry OBJECT-TYPE
|
|
||||||
SYNTAX BsArpInspectionVlanEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry containing objects for controlling ARP inspection settings
|
|
||||||
for a VLAN."
|
|
||||||
INDEX { bsArpInspectionVlanId }
|
|
||||||
::= { bsArpInspectionVlanTable 1 }
|
|
||||||
|
|
||||||
BsArpInspectionVlanEntry ::=
|
|
||||||
SEQUENCE {
|
|
||||||
bsArpInspectionVlanId VlanIndex,
|
|
||||||
bsArpInspectionVlanEnabled TruthValue
|
|
||||||
}
|
|
||||||
|
|
||||||
bsArpInspectionVlanId OBJECT-TYPE
|
|
||||||
SYNTAX VlanIndex
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The VLAN ID value of the VLAN."
|
|
||||||
::= { bsArpInspectionVlanEntry 1 }
|
|
||||||
|
|
||||||
bsArpInspectionVlanEnabled OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object is used to control whether ARP inspection is enabled
|
|
||||||
for this VLAN."
|
|
||||||
::= { bsArpInspectionVlanEntry 2 }
|
|
||||||
|
|
||||||
--
|
|
||||||
-- Interface table
|
|
||||||
--
|
|
||||||
|
|
||||||
bsArpInspectionIfTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF BsArpInspectionIfEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This table is used to control ARP inspection settings per-interface."
|
|
||||||
::= { bsArpInspectionObjects 2 }
|
|
||||||
|
|
||||||
bsArpInspectionIfEntry OBJECT-TYPE
|
|
||||||
SYNTAX BsArpInspectionIfEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry containing objects for controlling ARP inspection settings
|
|
||||||
for an interface."
|
|
||||||
INDEX { bsArpInspectionIfIndex }
|
|
||||||
::= { bsArpInspectionIfTable 1 }
|
|
||||||
|
|
||||||
BsArpInspectionIfEntry ::=
|
|
||||||
SEQUENCE {
|
|
||||||
bsArpInspectionIfIndex InterfaceIndex,
|
|
||||||
bsArpInspectionIfTrusted TruthValue
|
|
||||||
}
|
|
||||||
|
|
||||||
bsArpInspectionIfIndex OBJECT-TYPE
|
|
||||||
SYNTAX InterfaceIndex
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The ifIndex value of the interface."
|
|
||||||
::= { bsArpInspectionIfEntry 1 }
|
|
||||||
|
|
||||||
bsArpInspectionIfTrusted OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object is used to control whether this interface is trusted
|
|
||||||
for ARP inspection purposes."
|
|
||||||
::= { bsArpInspectionIfEntry 2 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
@ -1,833 +0,0 @@
|
|||||||
-- *****************************************************************
|
|
||||||
-- BGP4-MIB.my: BGP-4 MIB file
|
|
||||||
--
|
|
||||||
-- May 1994, Jeffrey T. Johnson
|
|
||||||
--
|
|
||||||
-- Copyright (c) 1994-1995 by cisco Systems, Inc.
|
|
||||||
-- All rights reserved.
|
|
||||||
--
|
|
||||||
-- *****************************************************************
|
|
||||||
--
|
|
||||||
-- This mib was extracted from RFC1657
|
|
||||||
|
|
||||||
BGP4-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
|
|
||||||
IpAddress, Integer32, Counter32, Gauge32
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
mib-2
|
|
||||||
FROM RFC1213-MIB;
|
|
||||||
|
|
||||||
bgp MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "9405050000Z"
|
|
||||||
ORGANIZATION "IETF BGP Working Group"
|
|
||||||
CONTACT-INFO
|
|
||||||
" John Chu (Editor)
|
|
||||||
Postal: IBM Corp.
|
|
||||||
P.O.Box 218
|
|
||||||
Yorktown Heights, NY 10598
|
|
||||||
US
|
|
||||||
|
|
||||||
Tel: +1 914 945 3156
|
|
||||||
Fax: +1 914 945 2141
|
|
||||||
E-mail: jychu@watson.ibm.com"
|
|
||||||
DESCRIPTION
|
|
||||||
"The MIB module for BGP-4."
|
|
||||||
::= { mib-2 15 }
|
|
||||||
|
|
||||||
bgpVersion OBJECT-TYPE
|
|
||||||
SYNTAX OCTET STRING (SIZE (1..255))
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Vector of supported BGP protocol version
|
|
||||||
numbers. Each peer negotiates the version
|
|
||||||
from this vector. Versions are identified
|
|
||||||
via the string of bits contained within this
|
|
||||||
object. The first octet contains bits 0 to
|
|
||||||
7, the second octet contains bits 8 to 15,
|
|
||||||
and so on, with the most significant bit
|
|
||||||
referring to the lowest bit number in the
|
|
||||||
octet (e.g., the MSB of the first octet
|
|
||||||
refers to bit 0). If a bit, i, is present
|
|
||||||
and set, then the version (i+1) of the BGP
|
|
||||||
is supported."
|
|
||||||
::= { bgp 1 }
|
|
||||||
|
|
||||||
bgpLocalAs OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (0..65535)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The local autonomous system number."
|
|
||||||
::= { bgp 2 }
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
-- BGP Peer table. This table contains, one entry per
|
|
||||||
-- BGP peer, information about the BGP peer.
|
|
||||||
|
|
||||||
bgpPeerTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF BgpPeerEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"BGP peer table. This table contains,
|
|
||||||
one entry per BGP peer, information about
|
|
||||||
the connections with BGP peers."
|
|
||||||
::= { bgp 3 }
|
|
||||||
|
|
||||||
bgpPeerEntry OBJECT-TYPE
|
|
||||||
SYNTAX BgpPeerEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Entry containing information about the
|
|
||||||
connection with a BGP peer."
|
|
||||||
INDEX { bgpPeerRemoteAddr }
|
|
||||||
::= { bgpPeerTable 1 }
|
|
||||||
|
|
||||||
BgpPeerEntry ::= SEQUENCE {
|
|
||||||
bgpPeerIdentifier
|
|
||||||
IpAddress,
|
|
||||||
bgpPeerState
|
|
||||||
INTEGER,
|
|
||||||
bgpPeerAdminStatus
|
|
||||||
INTEGER,
|
|
||||||
bgpPeerNegotiatedVersion
|
|
||||||
Integer32,
|
|
||||||
bgpPeerLocalAddr
|
|
||||||
IpAddress,
|
|
||||||
bgpPeerLocalPort
|
|
||||||
INTEGER,
|
|
||||||
bgpPeerRemoteAddr
|
|
||||||
IpAddress,
|
|
||||||
bgpPeerRemotePort
|
|
||||||
INTEGER,
|
|
||||||
bgpPeerRemoteAs
|
|
||||||
INTEGER,
|
|
||||||
bgpPeerInUpdates
|
|
||||||
Counter32,
|
|
||||||
bgpPeerOutUpdates
|
|
||||||
Counter32,
|
|
||||||
bgpPeerInTotalMessages
|
|
||||||
Counter32,
|
|
||||||
bgpPeerOutTotalMessages
|
|
||||||
Counter32,
|
|
||||||
bgpPeerLastError
|
|
||||||
OCTET STRING,
|
|
||||||
bgpPeerFsmEstablishedTransitions
|
|
||||||
Counter32,
|
|
||||||
bgpPeerFsmEstablishedTime
|
|
||||||
Gauge32,
|
|
||||||
bgpPeerConnectRetryInterval
|
|
||||||
INTEGER,
|
|
||||||
bgpPeerHoldTime
|
|
||||||
INTEGER,
|
|
||||||
bgpPeerKeepAlive
|
|
||||||
INTEGER,
|
|
||||||
bgpPeerHoldTimeConfigured
|
|
||||||
INTEGER,
|
|
||||||
bgpPeerKeepAliveConfigured
|
|
||||||
INTEGER,
|
|
||||||
bgpPeerMinASOriginationInterval
|
|
||||||
INTEGER,
|
|
||||||
bgpPeerMinRouteAdvertisementInterval
|
|
||||||
INTEGER,
|
|
||||||
bgpPeerInUpdateElapsedTime
|
|
||||||
Gauge32
|
|
||||||
}
|
|
||||||
|
|
||||||
bgpPeerIdentifier OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The BGP Identifier of this entry's BGP
|
|
||||||
peer."
|
|
||||||
::= { bgpPeerEntry 1 }
|
|
||||||
|
|
||||||
bgpPeerState OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
idle(1),
|
|
||||||
connect(2),
|
|
||||||
active(3),
|
|
||||||
opensent(4),
|
|
||||||
openconfirm(5),
|
|
||||||
established(6)
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The BGP peer connection state."
|
|
||||||
::= { bgpPeerEntry 2 }
|
|
||||||
|
|
||||||
bgpPeerAdminStatus OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
stop(1),
|
|
||||||
start(2)
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The desired state of the BGP connection.
|
|
||||||
A transition from 'stop' to 'start' will
|
|
||||||
cause the BGP Start Event to be generated.
|
|
||||||
A transition from 'start' to 'stop' will
|
|
||||||
cause the BGP Stop Event to be generated.
|
|
||||||
This parameter can be used to restart BGP
|
|
||||||
peer connections. Care should be used in
|
|
||||||
providing write access to this object
|
|
||||||
without adequate authentication."
|
|
||||||
::= { bgpPeerEntry 3 }
|
|
||||||
|
|
||||||
bgpPeerNegotiatedVersion OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The negotiated version of BGP running
|
|
||||||
between the two peers."
|
|
||||||
::= { bgpPeerEntry 4 }
|
|
||||||
|
|
||||||
bgpPeerLocalAddr OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The local IP address of this entry's BGP
|
|
||||||
connection."
|
|
||||||
::= { bgpPeerEntry 5 }
|
|
||||||
|
|
||||||
bgpPeerLocalPort OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (0..65535)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The local port for the TCP connection
|
|
||||||
between the BGP peers."
|
|
||||||
::= { bgpPeerEntry 6 }
|
|
||||||
|
|
||||||
bgpPeerRemoteAddr OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The remote IP address of this entry's BGP
|
|
||||||
peer."
|
|
||||||
::= { bgpPeerEntry 7 }
|
|
||||||
|
|
||||||
bgpPeerRemotePort OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (0..65535)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The remote port for the TCP connection
|
|
||||||
between the BGP peers. Note that the
|
|
||||||
objects bgpPeerLocalAddr,
|
|
||||||
bgpPeerLocalPort, bgpPeerRemoteAddr and
|
|
||||||
bgpPeerRemotePort provide the appropriate
|
|
||||||
reference to the standard MIB TCP
|
|
||||||
connection table."
|
|
||||||
::= { bgpPeerEntry 8 }
|
|
||||||
|
|
||||||
bgpPeerRemoteAs OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (0..65535)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The remote autonomous system number."
|
|
||||||
::= { bgpPeerEntry 9 }
|
|
||||||
|
|
||||||
bgpPeerInUpdates OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of BGP UPDATE messages
|
|
||||||
received on this connection. This object
|
|
||||||
should be initialized to zero (0) when the
|
|
||||||
connection is established."
|
|
||||||
::= { bgpPeerEntry 10 }
|
|
||||||
|
|
||||||
bgpPeerOutUpdates OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of BGP UPDATE messages
|
|
||||||
transmitted on this connection. This
|
|
||||||
object should be initialized to zero (0)
|
|
||||||
when the connection is established."
|
|
||||||
::= { bgpPeerEntry 11 }
|
|
||||||
|
|
||||||
bgpPeerInTotalMessages OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of messages received
|
|
||||||
from the remote peer on this connection.
|
|
||||||
This object should be initialized to zero
|
|
||||||
when the connection is established."
|
|
||||||
::= { bgpPeerEntry 12 }
|
|
||||||
|
|
||||||
bgpPeerOutTotalMessages OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of messages transmitted to
|
|
||||||
the remote peer on this connection. This
|
|
||||||
object should be initialized to zero when
|
|
||||||
the connection is established."
|
|
||||||
::= { bgpPeerEntry 13 }
|
|
||||||
|
|
||||||
bgpPeerLastError OBJECT-TYPE
|
|
||||||
SYNTAX OCTET STRING (SIZE (2))
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The last error code and subcode seen by this
|
|
||||||
peer on this connection. If no error has
|
|
||||||
occurred, this field is zero. Otherwise, the
|
|
||||||
first byte of this two byte OCTET STRING
|
|
||||||
contains the error code, and the second byte
|
|
||||||
contains the subcode."
|
|
||||||
::= { bgpPeerEntry 14 }
|
|
||||||
|
|
||||||
bgpPeerFsmEstablishedTransitions OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of times the BGP FSM
|
|
||||||
transitioned into the established state."
|
|
||||||
::= { bgpPeerEntry 15 }
|
|
||||||
|
|
||||||
bgpPeerFsmEstablishedTime OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This timer indicates how long (in
|
|
||||||
seconds) this peer has been in the
|
|
||||||
Established state or how long
|
|
||||||
since this peer was last in the
|
|
||||||
Established state. It is set to zero when
|
|
||||||
a new peer is configured or the router is
|
|
||||||
booted."
|
|
||||||
::= { bgpPeerEntry 16 }
|
|
||||||
|
|
||||||
bgpPeerConnectRetryInterval OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (1..65535)
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Time interval in seconds for the
|
|
||||||
ConnectRetry timer. The suggested value
|
|
||||||
for this timer is 120 seconds."
|
|
||||||
::= { bgpPeerEntry 17 }
|
|
||||||
|
|
||||||
bgpPeerHoldTime OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER ( 0 | 3..65535 )
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Time interval in seconds for the Hold
|
|
||||||
Timer established with the peer. The
|
|
||||||
value of this object is calculated by this
|
|
||||||
BGP speaker by using the smaller of the
|
|
||||||
value in bgpPeerHoldTimeConfigured and the
|
|
||||||
Hold Time received in the OPEN message.
|
|
||||||
This value must be at lease three seconds
|
|
||||||
if it is not zero (0) in which case the
|
|
||||||
Hold Timer has not been established with
|
|
||||||
the peer, or, the value of
|
|
||||||
bgpPeerHoldTimeConfigured is zero (0)."
|
|
||||||
::= { bgpPeerEntry 18 }
|
|
||||||
|
|
||||||
bgpPeerKeepAlive OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER ( 0 | 1..21845 )
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Time interval in seconds for the KeepAlive
|
|
||||||
timer established with the peer. The value
|
|
||||||
of this object is calculated by this BGP
|
|
||||||
speaker such that, when compared with
|
|
||||||
bgpPeerHoldTime, it has the same
|
|
||||||
proportion as what
|
|
||||||
bgpPeerKeepAliveConfigured has when
|
|
||||||
compared with bgpPeerHoldTimeConfigured.
|
|
||||||
If the value of this object is zero (0),
|
|
||||||
it indicates that the KeepAlive timer has
|
|
||||||
not been established with the peer, or,
|
|
||||||
the value of bgpPeerKeepAliveConfigured is
|
|
||||||
zero (0)."
|
|
||||||
::= { bgpPeerEntry 19 }
|
|
||||||
|
|
||||||
bgpPeerHoldTimeConfigured OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER ( 0 | 3..65535 )
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Time interval in seconds for the Hold Time
|
|
||||||
configured for this BGP speaker with this
|
|
||||||
peer. This value is placed in an OPEN
|
|
||||||
message sent to this peer by this BGP
|
|
||||||
speaker, and is compared with the Hold
|
|
||||||
Time field in an OPEN message received
|
|
||||||
from the peer when determining the Hold
|
|
||||||
Time (bgpPeerHoldTime) with the peer.
|
|
||||||
This value must not be less than three
|
|
||||||
seconds if it is not zero (0) in which
|
|
||||||
case the Hold Time is NOT to be
|
|
||||||
established with the peer. The suggested
|
|
||||||
value for this timer is 90 seconds."
|
|
||||||
::= { bgpPeerEntry 20 }
|
|
||||||
|
|
||||||
bgpPeerKeepAliveConfigured OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER ( 0 | 1..21845 )
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Time interval in seconds for the
|
|
||||||
KeepAlive timer configured for this BGP
|
|
||||||
speaker with this peer. The value of this
|
|
||||||
object will only determine the
|
|
||||||
KEEPALIVE messages' frequency relative to
|
|
||||||
the value specified in
|
|
||||||
bgpPeerHoldTimeConfigured; the actual
|
|
||||||
time interval for the KEEPALIVE messages
|
|
||||||
is indicated by bgpPeerKeepAlive. A
|
|
||||||
reasonable maximum value for this timer
|
|
||||||
would be configured to be one
|
|
||||||
third of that of
|
|
||||||
bgpPeerHoldTimeConfigured.
|
|
||||||
If the value of this object is zero (0),
|
|
||||||
no periodical KEEPALIVE messages are sent
|
|
||||||
to the peer after the BGP connection has
|
|
||||||
been established. The suggested value for
|
|
||||||
this timer is 30 seconds."
|
|
||||||
::= { bgpPeerEntry 21 }
|
|
||||||
|
|
||||||
bgpPeerMinASOriginationInterval OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (1..65535)
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Time interval in seconds for the
|
|
||||||
MinASOriginationInterval timer.
|
|
||||||
The suggested value for this timer is 15
|
|
||||||
seconds."
|
|
||||||
::= { bgpPeerEntry 22 }
|
|
||||||
|
|
||||||
bgpPeerMinRouteAdvertisementInterval OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (1..65535)
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Time interval in seconds for the
|
|
||||||
MinRouteAdvertisementInterval timer.
|
|
||||||
The suggested value for this timer is 30
|
|
||||||
seconds."
|
|
||||||
::= { bgpPeerEntry 23 }
|
|
||||||
|
|
||||||
bgpPeerInUpdateElapsedTime OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Elapsed time in seconds since the last BGP
|
|
||||||
UPDATE message was received from the peer.
|
|
||||||
Each time bgpPeerInUpdates is incremented,
|
|
||||||
the value of this object is set to zero
|
|
||||||
(0)."
|
|
||||||
::= { bgpPeerEntry 24 }
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
bgpIdentifier OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The BGP Identifier of local system."
|
|
||||||
::= { bgp 4 }
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
-- Received Path Attribute Table. This table contains,
|
|
||||||
-- one entry per path to a network, path attributes
|
|
||||||
-- received from all peers running BGP version 3 or
|
|
||||||
-- less. This table is deprecated.
|
|
||||||
|
|
||||||
bgpRcvdPathAttrTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF BgpPathAttrEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS obsolete
|
|
||||||
DESCRIPTION
|
|
||||||
"The BGP Received Path Attribute Table
|
|
||||||
contains information about paths to
|
|
||||||
destination networks received from all
|
|
||||||
peers running BGP version 3 or less."
|
|
||||||
::= { bgp 5 }
|
|
||||||
|
|
||||||
bgpPathAttrEntry OBJECT-TYPE
|
|
||||||
SYNTAX BgpPathAttrEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS obsolete
|
|
||||||
DESCRIPTION
|
|
||||||
"Information about a path to a network."
|
|
||||||
INDEX { bgpPathAttrDestNetwork,
|
|
||||||
bgpPathAttrPeer }
|
|
||||||
::= { bgpRcvdPathAttrTable 1 }
|
|
||||||
|
|
||||||
BgpPathAttrEntry ::= SEQUENCE {
|
|
||||||
bgpPathAttrPeer
|
|
||||||
IpAddress,
|
|
||||||
bgpPathAttrDestNetwork
|
|
||||||
IpAddress,
|
|
||||||
bgpPathAttrOrigin
|
|
||||||
INTEGER,
|
|
||||||
bgpPathAttrASPath
|
|
||||||
OCTET STRING,
|
|
||||||
bgpPathAttrNextHop
|
|
||||||
IpAddress,
|
|
||||||
bgpPathAttrInterASMetric
|
|
||||||
Integer32
|
|
||||||
}
|
|
||||||
|
|
||||||
bgpPathAttrPeer OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS obsolete
|
|
||||||
DESCRIPTION
|
|
||||||
"The IP address of the peer where the path
|
|
||||||
information was learned."
|
|
||||||
::= { bgpPathAttrEntry 1 }
|
|
||||||
|
|
||||||
bgpPathAttrDestNetwork OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS obsolete
|
|
||||||
DESCRIPTION
|
|
||||||
"The address of the destination network."
|
|
||||||
::= { bgpPathAttrEntry 2 }
|
|
||||||
|
|
||||||
bgpPathAttrOrigin OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
igp(1),-- networks are interior
|
|
||||||
egp(2),-- networks learned via EGP
|
|
||||||
incomplete(3) -- undetermined
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS obsolete
|
|
||||||
DESCRIPTION
|
|
||||||
"The ultimate origin of the path information."
|
|
||||||
::= { bgpPathAttrEntry 3 }
|
|
||||||
|
|
||||||
bgpPathAttrASPath OBJECT-TYPE
|
|
||||||
SYNTAX OCTET STRING (SIZE (2..255))
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS obsolete
|
|
||||||
DESCRIPTION
|
|
||||||
"The set of ASs that must be traversed to
|
|
||||||
reach the network. This object is
|
|
||||||
probably best represented as SEQUENCE OF
|
|
||||||
INTEGER. For SMI compatibility, though,
|
|
||||||
it is represented as OCTET STRING. Each
|
|
||||||
AS is represented as a pair of octets
|
|
||||||
according to the following algorithm:
|
|
||||||
|
|
||||||
first-byte-of-pair = ASNumber / 256;
|
|
||||||
second-byte-of-pair = ASNumber & 255;"
|
|
||||||
::= { bgpPathAttrEntry 4 }
|
|
||||||
|
|
||||||
bgpPathAttrNextHop OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS obsolete
|
|
||||||
DESCRIPTION
|
|
||||||
"The address of the border router that
|
|
||||||
should be used for the destination
|
|
||||||
network."
|
|
||||||
::= { bgpPathAttrEntry 5 }
|
|
||||||
|
|
||||||
bgpPathAttrInterASMetric OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS obsolete
|
|
||||||
DESCRIPTION
|
|
||||||
"The optional inter-AS metric. If this
|
|
||||||
attribute has not been provided for this
|
|
||||||
route, the value for this object is 0."
|
|
||||||
::= { bgpPathAttrEntry 6 }
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
-- BGP-4 Received Path Attribute Table. This table
|
|
||||||
-- contains, one entry per path to a network, path
|
|
||||||
-- attributes received from all peers running BGP-4.
|
|
||||||
|
|
||||||
bgp4PathAttrTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF Bgp4PathAttrEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The BGP-4 Received Path Attribute Table
|
|
||||||
contains information about paths to
|
|
||||||
destination networks received from all
|
|
||||||
BGP4 peers."
|
|
||||||
::= { bgp 6 }
|
|
||||||
|
|
||||||
bgp4PathAttrEntry OBJECT-TYPE
|
|
||||||
SYNTAX Bgp4PathAttrEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Information about a path to a network."
|
|
||||||
INDEX { bgp4PathAttrIpAddrPrefix,
|
|
||||||
bgp4PathAttrIpAddrPrefixLen,
|
|
||||||
bgp4PathAttrPeer }
|
|
||||||
::= { bgp4PathAttrTable 1 }
|
|
||||||
|
|
||||||
Bgp4PathAttrEntry ::= SEQUENCE {
|
|
||||||
bgp4PathAttrPeer
|
|
||||||
IpAddress,
|
|
||||||
bgp4PathAttrIpAddrPrefixLen
|
|
||||||
INTEGER,
|
|
||||||
bgp4PathAttrIpAddrPrefix
|
|
||||||
IpAddress,
|
|
||||||
bgp4PathAttrOrigin
|
|
||||||
INTEGER,
|
|
||||||
bgp4PathAttrASPathSegment
|
|
||||||
OCTET STRING,
|
|
||||||
bgp4PathAttrNextHop
|
|
||||||
IpAddress,
|
|
||||||
bgp4PathAttrMultiExitDisc
|
|
||||||
INTEGER,
|
|
||||||
bgp4PathAttrLocalPref
|
|
||||||
INTEGER,
|
|
||||||
bgp4PathAttrAtomicAggregate
|
|
||||||
INTEGER,
|
|
||||||
bgp4PathAttrAggregatorAS
|
|
||||||
INTEGER,
|
|
||||||
bgp4PathAttrAggregatorAddr
|
|
||||||
IpAddress,
|
|
||||||
bgp4PathAttrCalcLocalPref
|
|
||||||
INTEGER,
|
|
||||||
bgp4PathAttrBest
|
|
||||||
INTEGER,
|
|
||||||
bgp4PathAttrUnknown
|
|
||||||
OCTET STRING
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
bgp4PathAttrPeer OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The IP address of the peer where the path
|
|
||||||
information was learned."
|
|
||||||
::= { bgp4PathAttrEntry 1 }
|
|
||||||
|
|
||||||
bgp4PathAttrIpAddrPrefixLen OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (0..32)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Length in bits of the IP address prefix
|
|
||||||
in the Network Layer Reachability
|
|
||||||
Information field."
|
|
||||||
::= { bgp4PathAttrEntry 2 }
|
|
||||||
|
|
||||||
bgp4PathAttrIpAddrPrefix OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An IP address prefix in the Network Layer
|
|
||||||
Reachability Information field. This object
|
|
||||||
is an IP address containing the prefix with
|
|
||||||
length specified by
|
|
||||||
bgp4PathAttrIpAddrPrefixLen.
|
|
||||||
Any bits beyond the length specified by
|
|
||||||
bgp4PathAttrIpAddrPrefixLen are zeroed."
|
|
||||||
::= { bgp4PathAttrEntry 3 }
|
|
||||||
|
|
||||||
bgp4PathAttrOrigin OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
igp(1),-- networks are interior
|
|
||||||
egp(2),-- networks learned
|
|
||||||
-- via EGP
|
|
||||||
incomplete(3) -- undetermined
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The ultimate origin of the path
|
|
||||||
information."
|
|
||||||
::= { bgp4PathAttrEntry 4 }
|
|
||||||
|
|
||||||
bgp4PathAttrASPathSegment OBJECT-TYPE
|
|
||||||
SYNTAX OCTET STRING (SIZE (2..255))
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The sequence of AS path segments. Each AS
|
|
||||||
path segment is represented by a triple
|
|
||||||
<type, length, value>.
|
|
||||||
|
|
||||||
The type is a 1-octet field which has two
|
|
||||||
possible values:
|
|
||||||
1 AS_SET: unordered set of ASs a
|
|
||||||
route in the UPDATE
|
|
||||||
message has traversed
|
|
||||||
2 AS_SEQUENCE: ordered set of ASs
|
|
||||||
a route in the UPDATE
|
|
||||||
message has traversed.
|
|
||||||
|
|
||||||
The length is a 1-octet field containing the
|
|
||||||
number of ASs in the value field.
|
|
||||||
|
|
||||||
The value field contains one or more AS
|
|
||||||
numbers, each AS is represented in the octet
|
|
||||||
string as a pair of octets according to the
|
|
||||||
following algorithm:
|
|
||||||
|
|
||||||
first-byte-of-pair = ASNumber / 256;
|
|
||||||
second-byte-of-pair = ASNumber & 255;"
|
|
||||||
::= { bgp4PathAttrEntry 5 }
|
|
||||||
|
|
||||||
bgp4PathAttrNextHop OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The address of the border router that
|
|
||||||
should be used for the destination
|
|
||||||
network."
|
|
||||||
::= { bgp4PathAttrEntry 6 }
|
|
||||||
|
|
||||||
bgp4PathAttrMultiExitDisc OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (-1..2147483647)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This metric is used to discriminate
|
|
||||||
between multiple exit points to an
|
|
||||||
adjacent autonomous system. A value of -1
|
|
||||||
indicates the absence of this attribute."
|
|
||||||
::= { bgp4PathAttrEntry 7 }
|
|
||||||
|
|
||||||
bgp4PathAttrLocalPref OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (-1..2147483647)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The originating BGP4 speaker's degree of
|
|
||||||
preference for an advertised route. A
|
|
||||||
value of -1 indicates the absence of this
|
|
||||||
attribute."
|
|
||||||
::= { bgp4PathAttrEntry 8 }
|
|
||||||
|
|
||||||
bgp4PathAttrAtomicAggregate OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
lessSpecificRrouteNotSelected(1),
|
|
||||||
lessSpecificRouteSelected(2)
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Whether or not the local system has
|
|
||||||
selected a less specific route without
|
|
||||||
selecting a more specific route."
|
|
||||||
::= { bgp4PathAttrEntry 9 }
|
|
||||||
|
|
||||||
bgp4PathAttrAggregatorAS OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (0..65535)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The AS number of the last BGP4 speaker that
|
|
||||||
performed route aggregation. A value of
|
|
||||||
zero (0) indicates the absence of this
|
|
||||||
attribute."
|
|
||||||
::= { bgp4PathAttrEntry 10 }
|
|
||||||
|
|
||||||
bgp4PathAttrAggregatorAddr OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The IP address of the last BGP4 speaker
|
|
||||||
that performed route aggregation. A value
|
|
||||||
of 0.0.0.0 indicates the absence of this
|
|
||||||
attribute."
|
|
||||||
::= { bgp4PathAttrEntry 11 }
|
|
||||||
|
|
||||||
bgp4PathAttrCalcLocalPref OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (-1..2147483647)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The degree of preference calculated by the
|
|
||||||
receiving BGP4 speaker for an advertised
|
|
||||||
route. A value of -1 indicates the
|
|
||||||
absence of this attribute."
|
|
||||||
::= { bgp4PathAttrEntry 12 }
|
|
||||||
|
|
||||||
bgp4PathAttrBest OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
false(1),-- not chosen as best route
|
|
||||||
true(2) -- chosen as best route
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An indication of whether or not this route
|
|
||||||
was chosen as the best BGP4 route."
|
|
||||||
::= { bgp4PathAttrEntry 13 }
|
|
||||||
|
|
||||||
bgp4PathAttrUnknown OBJECT-TYPE
|
|
||||||
SYNTAX OCTET STRING (SIZE(0..255))
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"One or more path attributes not understood
|
|
||||||
by this BGP4 speaker. Size zero (0)
|
|
||||||
indicates the absence of such
|
|
||||||
attribute(s). Octets beyond the maximum
|
|
||||||
size, if any, are not recorded by this
|
|
||||||
object."
|
|
||||||
::= { bgp4PathAttrEntry 14 }
|
|
||||||
|
|
||||||
|
|
||||||
-- Traps.
|
|
||||||
|
|
||||||
bgpTraps OBJECT IDENTIFIER ::= { bgp 7 }
|
|
||||||
|
|
||||||
bgpEstablished NOTIFICATION-TYPE
|
|
||||||
OBJECTS { bgpPeerLastError,
|
|
||||||
bgpPeerState }
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The BGP Established event is generated when
|
|
||||||
the BGP FSM enters the ESTABLISHED state."
|
|
||||||
::= { bgpTraps 1 }
|
|
||||||
|
|
||||||
bgpBackwardTransition NOTIFICATION-TYPE
|
|
||||||
OBJECTS { bgpPeerLastError,
|
|
||||||
bgpPeerState }
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The BGPBackwardTransition Event is generated
|
|
||||||
when the BGP FSM moves from a higher numbered
|
|
||||||
state to a lower numbered state."
|
|
||||||
::= { bgpTraps 2 }
|
|
||||||
|
|
||||||
END
|
|
File diff suppressed because it is too large
Load Diff
@ -1,505 +0,0 @@
|
|||||||
|
|
||||||
CALISTA-DPA-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
-- This MIB is for management of Cisco DPA voicemail gateway devices.
|
|
||||||
-- These allow interfacing of Octel voicemail systems with Cisco
|
|
||||||
-- CallManager.
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
IpAddress, Counter, enterprises
|
|
||||||
FROM RFC1155-SMI
|
|
||||||
OBJECT-TYPE
|
|
||||||
FROM RFC-1212;
|
|
||||||
|
|
||||||
|
|
||||||
DisplayString ::= OCTET STRING
|
|
||||||
|
|
||||||
|
|
||||||
calista OBJECT IDENTIFIER ::= { enterprises 7505 }
|
|
||||||
|
|
||||||
products OBJECT IDENTIFIER ::= { calista 1 }
|
|
||||||
|
|
||||||
dpa OBJECT IDENTIFIER ::= { products 1 }
|
|
||||||
|
|
||||||
serialNumber OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"Unique value assigned to each DPA device."
|
|
||||||
::= { dpa 1 }
|
|
||||||
|
|
||||||
|
|
||||||
imageVersion OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"The version of the main image code that the DPA
|
|
||||||
is currently running."
|
|
||||||
::= { dpa 2 }
|
|
||||||
|
|
||||||
|
|
||||||
loaderVersion OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"The version of the boot loader code that the DPA
|
|
||||||
is currently running."
|
|
||||||
::= { dpa 3 }
|
|
||||||
|
|
||||||
|
|
||||||
integrationMode OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER { unconfigured(1), simple(2), hybrid(3) }
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"The integration mode in which the DPA is currently
|
|
||||||
operating:
|
|
||||||
unconfigured the factory setting; the DPA requires
|
|
||||||
configuring before it can be connected
|
|
||||||
to an Octel voicemail system.
|
|
||||||
|
|
||||||
simple the DPA is connected to only an Octel
|
|
||||||
voicemail system and Cisco CallManager
|
|
||||||
|
|
||||||
hybrid the DPA is connected to an Octel
|
|
||||||
voicemail system, a PBX system and
|
|
||||||
Cisco CallManager
|
|
||||||
|
|
||||||
See the DPA Administration Guide for more detailed
|
|
||||||
descriptions of these modes."
|
|
||||||
::= { dpa 4 }
|
|
||||||
|
|
||||||
|
|
||||||
pbxType OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"The PBX type that the DPA is currently emulating in order
|
|
||||||
to communicate with the Octel voicemail system. This also
|
|
||||||
determines the protocol used on the digital telephony
|
|
||||||
links to the PBX, if in hybrid mode."
|
|
||||||
::= { dpa 5 }
|
|
||||||
|
|
||||||
|
|
||||||
receivedCalls OBJECT-TYPE
|
|
||||||
SYNTAX Counter
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of IP telephony calls made to this DPA. This
|
|
||||||
includes all calls, regardless of whether the Octel
|
|
||||||
answered. This could happen, for instance, if the original
|
|
||||||
caller hangs up before the Octel accepts the call."
|
|
||||||
::= { dpa 6 }
|
|
||||||
|
|
||||||
|
|
||||||
outgoingCallsMade OBJECT-TYPE
|
|
||||||
SYNTAX Counter
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of calls originated by the Octel which go
|
|
||||||
through the DPA. These include networking calls
|
|
||||||
(communication between peer Octel systems), pager and
|
|
||||||
mobile notifications and fax calls."
|
|
||||||
::= { dpa 7 }
|
|
||||||
|
|
||||||
|
|
||||||
mwiCommandsReceived OBJECT-TYPE
|
|
||||||
SYNTAX Counter
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of commands to set or clear a Message Waiting
|
|
||||||
Indicator received by this DPA from the Octel voicemail
|
|
||||||
system. These commands are relayed to the Cisco
|
|
||||||
CallManager via the virtual port, and, if the DPA is
|
|
||||||
operating in hybrid mode, the attached PBX system."
|
|
||||||
::= { dpa 8 }
|
|
||||||
|
|
||||||
|
|
||||||
pbxQueuedMWICommands OBJECT-TYPE
|
|
||||||
SYNTAX Counter
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of commands to set or clear a Message Waiting
|
|
||||||
Indicator which are queued within the DPA, waiting to be
|
|
||||||
sent to the PBX. These commands will be issued to the PBX
|
|
||||||
when the appropriate port becomes available.
|
|
||||||
If the DPA is not operating in hybrid mode, this value will
|
|
||||||
always be zero."
|
|
||||||
::= { dpa 9 }
|
|
||||||
|
|
||||||
|
|
||||||
pbxCompletedMWICommands OBJECT-TYPE
|
|
||||||
SYNTAX Counter
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of commands to set or clear a Message Waiting
|
|
||||||
Indicator which have been successfully sent to the PBX.
|
|
||||||
If the DPA is not operating in hybrid mode, this value will
|
|
||||||
always be zero."
|
|
||||||
::= { dpa 10 }
|
|
||||||
|
|
||||||
|
|
||||||
pbxMWIErrors OBJECT-TYPE
|
|
||||||
SYNTAX Counter
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of commands to set or clear a Message Waiting
|
|
||||||
Indicator that the DPA was unable to send successfully to
|
|
||||||
the PBX. Such commands will have been discarded, and the
|
|
||||||
cause written to the DPA's error log.
|
|
||||||
If the DPA is not operating in hybrid mode, this value will
|
|
||||||
always be zero."
|
|
||||||
::= { dpa 11 }
|
|
||||||
|
|
||||||
|
|
||||||
callManagerQueuedMWICommands OBJECT-TYPE
|
|
||||||
SYNTAX Counter
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of commands to set or clear a Message Waiting
|
|
||||||
Indicator which are queued within the DPA, waiting to be
|
|
||||||
sent to Cisco CallManager."
|
|
||||||
::= { dpa 12 }
|
|
||||||
|
|
||||||
|
|
||||||
callManagerCompletedMWICommands OBJECT-TYPE
|
|
||||||
SYNTAX Counter
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of commands to set or clear a Message Waiting
|
|
||||||
Indicator which have been successfully sent to Cisco
|
|
||||||
CallManager."
|
|
||||||
::= { dpa 13 }
|
|
||||||
|
|
||||||
|
|
||||||
callManagerMWIErrors OBJECT-TYPE
|
|
||||||
SYNTAX Counter
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of commands to set or clear a Message Waiting
|
|
||||||
Indicator that the DPA was unable to send successfully to
|
|
||||||
Cisco CallManager. Such commands will have been discarded,
|
|
||||||
and the cause written to the DPA's error log."
|
|
||||||
::= { dpa 14 }
|
|
||||||
|
|
||||||
|
|
||||||
portTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF PortEntry
|
|
||||||
ACCESS not-accessible
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"A list of the available ports on the DPA, with current state
|
|
||||||
information for each."
|
|
||||||
::= { dpa 15 }
|
|
||||||
|
|
||||||
|
|
||||||
portEntry OBJECT-TYPE
|
|
||||||
SYNTAX PortEntry
|
|
||||||
ACCESS not-accessible
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry containing all relevant information for a DPA port."
|
|
||||||
INDEX { portIndex }
|
|
||||||
::= { portTable 1 }
|
|
||||||
|
|
||||||
|
|
||||||
PortEntry ::=
|
|
||||||
SEQUENCE {
|
|
||||||
portIndex
|
|
||||||
INTEGER,
|
|
||||||
|
|
||||||
portType
|
|
||||||
INTEGER,
|
|
||||||
|
|
||||||
portTelephonyLinkState
|
|
||||||
INTEGER,
|
|
||||||
|
|
||||||
portCallManagerLinkState
|
|
||||||
INTEGER,
|
|
||||||
|
|
||||||
portCallState
|
|
||||||
INTEGER,
|
|
||||||
|
|
||||||
portDeviceName
|
|
||||||
DisplayString,
|
|
||||||
|
|
||||||
portCodecInUse
|
|
||||||
INTEGER,
|
|
||||||
|
|
||||||
portErrors
|
|
||||||
INTEGER,
|
|
||||||
|
|
||||||
portDacLevel
|
|
||||||
INTEGER
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
portIndex OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"A unique value for each port. Its value ranges from
|
|
||||||
1 to the total number of ports."
|
|
||||||
::= { portEntry 1 }
|
|
||||||
|
|
||||||
portType OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER { notInUse(1), octel(2), pbx(3), virtual(4) }
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"How this port is currently being used:
|
|
||||||
notInUse not currently in use (may become active later)
|
|
||||||
octel connected to an Octel voicemail system
|
|
||||||
pbx connected to a digital PBX
|
|
||||||
virtual not a physical port; connected only to
|
|
||||||
Cisco CallManager
|
|
||||||
|
|
||||||
It should be noted that the type of a port is determined when
|
|
||||||
it first becomes active. Significantly, this value will not
|
|
||||||
change back to notInUse if a port is later disconnected; the
|
|
||||||
relevant portTelephonyLinkState value should be read to
|
|
||||||
determine whether the port is currently active."
|
|
||||||
::= { portEntry 2 }
|
|
||||||
|
|
||||||
portTelephonyLinkState OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER { notApplicable(1),
|
|
||||||
down(2),
|
|
||||||
registering(3),
|
|
||||||
up(4) }
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"The state of the digital telephony link. This field only has
|
|
||||||
meaning for physical ports connected to Octel voicemail systems
|
|
||||||
or digital PBX systems. For virtual ports or those currently
|
|
||||||
not in use, the state will be returned as notApplicable."
|
|
||||||
::= { portEntry 3 }
|
|
||||||
|
|
||||||
portCallManagerLinkState OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER { notApplicable(1),
|
|
||||||
down(2),
|
|
||||||
registering(3),
|
|
||||||
up(4) }
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"The state of this port's connection to a Cisco CallManager,
|
|
||||||
if such a connection exists. For ports connected to digital
|
|
||||||
PBX systems (see the portType entry) this will be returned as
|
|
||||||
notApplicable."
|
|
||||||
::= { portEntry 4 }
|
|
||||||
|
|
||||||
portCallState OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER { unknown(1),
|
|
||||||
notApplicable(2),
|
|
||||||
onHook(3),
|
|
||||||
callIn(4),
|
|
||||||
callOut(5),
|
|
||||||
onCall(6),
|
|
||||||
offHook(7),
|
|
||||||
transfer(8),
|
|
||||||
outCall(9),
|
|
||||||
hangingUp(10)
|
|
||||||
}
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"Once a port's required link(s) to an Octel / PBX and
|
|
||||||
CallManager have become active, it then becomes available for
|
|
||||||
use placing calls between the two realms. This entry shows the
|
|
||||||
current state of any active call for a port, as described in
|
|
||||||
the DPA Administration Guide."
|
|
||||||
::= { portEntry 5 }
|
|
||||||
|
|
||||||
portDeviceName OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"The device name under which this port is registered with
|
|
||||||
Cisco CallManager."
|
|
||||||
::= { portEntry 6 }
|
|
||||||
|
|
||||||
portCodecInUse OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER { none(1),
|
|
||||||
g711ALaw(2),
|
|
||||||
g711MuLaw(3),
|
|
||||||
g723dot1(4),
|
|
||||||
g729a(5) }
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"If there is a call in progress on this port, this entry gives
|
|
||||||
the codec in use, otherwise it will return none."
|
|
||||||
::= { portEntry 7 }
|
|
||||||
|
|
||||||
portErrors OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER
|
|
||||||
ACCESS read-write
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of centiseconds during which PBX protocol errors
|
|
||||||
were detected for this port. It is normal for there to be
|
|
||||||
some errors, especially during port initialization, but very
|
|
||||||
large values should only be seen on disconnected ports."
|
|
||||||
::= { portEntry 8 }
|
|
||||||
|
|
||||||
portDacLevel OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"The DAC level for the port; this is related to the voltage
|
|
||||||
level on the digital telephony port, and is only used in
|
|
||||||
diagnosis of internal hardware faults."
|
|
||||||
::= { portEntry 9 }
|
|
||||||
|
|
||||||
|
|
||||||
callManagerConnectionTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF CallManagerConnectionEntry
|
|
||||||
ACCESS not-accessible
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"A list of all of the Cisco CallManager connections that the
|
|
||||||
DPA is currently maintaining."
|
|
||||||
::= { dpa 16 }
|
|
||||||
|
|
||||||
|
|
||||||
callManagerConnectionEntry OBJECT-TYPE
|
|
||||||
SYNTAX CallManagerConnectionEntry
|
|
||||||
ACCESS not-accessible
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry containing all relevant information for a connection
|
|
||||||
to a Cisco CallManager device."
|
|
||||||
INDEX { portIndex, cmConnectionIndex }
|
|
||||||
::= { callManagerConnectionTable 1 }
|
|
||||||
|
|
||||||
|
|
||||||
CallManagerConnectionEntry ::=
|
|
||||||
SEQUENCE {
|
|
||||||
cmConnectionPortIndex
|
|
||||||
INTEGER,
|
|
||||||
|
|
||||||
cmConnectionIndex
|
|
||||||
INTEGER,
|
|
||||||
|
|
||||||
cmConnectionCallManagerName
|
|
||||||
DisplayString,
|
|
||||||
|
|
||||||
cmConnectionIpAddress
|
|
||||||
IpAddress,
|
|
||||||
|
|
||||||
cmConnectionIpPort
|
|
||||||
INTEGER (0..65535),
|
|
||||||
|
|
||||||
cmConnectionState
|
|
||||||
INTEGER
|
|
||||||
}
|
|
||||||
|
|
||||||
cmConnectionPortIndex OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"Corresponds to portIndex in PortEntry."
|
|
||||||
::= { callManagerConnectionEntry 1}
|
|
||||||
|
|
||||||
cmConnectionIndex OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"The index of this connection; each port can have connections
|
|
||||||
to several Cisco CallManagers, with one active connection and
|
|
||||||
the rest operating in standby mode."
|
|
||||||
::= { callManagerConnectionEntry 2 }
|
|
||||||
|
|
||||||
cmConnectionCallManagerName OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"The host name, if known, of the CallManager to which this
|
|
||||||
connection refers."
|
|
||||||
::= { callManagerConnectionEntry 3 }
|
|
||||||
|
|
||||||
cmConnectionIpAddress OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"The IP address of the CallManager to which this connection
|
|
||||||
refers."
|
|
||||||
::= { callManagerConnectionEntry 4 }
|
|
||||||
|
|
||||||
cmConnectionIpPort OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (0..65535)
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"The TCP port number on the CallManager to which this connection
|
|
||||||
has been made."
|
|
||||||
::= { callManagerConnectionEntry 5 }
|
|
||||||
|
|
||||||
cmConnectionState OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER { idle(1),
|
|
||||||
connecting(2),
|
|
||||||
retryBackOff(3),
|
|
||||||
connectPending(4),
|
|
||||||
active(5),
|
|
||||||
standby(6) }
|
|
||||||
ACCESS read-only
|
|
||||||
STATUS mandatory
|
|
||||||
DESCRIPTION
|
|
||||||
"The current state of this connection. The possible values have
|
|
||||||
the following meanings:
|
|
||||||
idle initial state of the link before a
|
|
||||||
connection has been attempted, and the
|
|
||||||
state to which a link changes after
|
|
||||||
teardown
|
|
||||||
|
|
||||||
connecting a TCP link to a Cisco CallManager system
|
|
||||||
is in the process of being established
|
|
||||||
|
|
||||||
retryBackOff the attempt to establish to the Cisco
|
|
||||||
CallManager failed; the connection stays in
|
|
||||||
this state for a short while before the DPA
|
|
||||||
tries again
|
|
||||||
|
|
||||||
connectPending the retry back off period has finished and
|
|
||||||
the DPA is about to re-attempt connection
|
|
||||||
to the Cisco CallManager
|
|
||||||
|
|
||||||
active the connection has been successfully
|
|
||||||
established; this state signifies that the
|
|
||||||
connection is being used for transmission
|
|
||||||
and reception of Skinny Station Protocol
|
|
||||||
messages
|
|
||||||
|
|
||||||
standby the connection has been successfully
|
|
||||||
established but it is not currently being
|
|
||||||
used for data traffic; however, it would
|
|
||||||
move into the active state were the
|
|
||||||
currently active connection to go down
|
|
||||||
"
|
|
||||||
::= { callManagerConnectionEntry 6 }
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
@ -1,610 +0,0 @@
|
|||||||
-- *****************************************************************
|
|
||||||
-- CISCO-5800-HEALTH-MON-MIB.my: CISCO Health Monitor MIB file
|
|
||||||
--
|
|
||||||
-- August 1997 Mark Szczesniak / Ashadevaki Hegde
|
|
||||||
--
|
|
||||||
-- Copyright (c) 1997-1998 by cisco Systems, Inc.
|
|
||||||
-- All rights reserved.
|
|
||||||
--
|
|
||||||
-- *****************************************************************
|
|
||||||
-- $Endlog$
|
|
||||||
--
|
|
||||||
CISCO-5800-HEALTH-MON-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY,
|
|
||||||
OBJECT-TYPE,
|
|
||||||
NOTIFICATION-TYPE,
|
|
||||||
Counter32,
|
|
||||||
Gauge32,
|
|
||||||
Integer32,
|
|
||||||
IpAddress
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
DisplayString,
|
|
||||||
TruthValue
|
|
||||||
FROM SNMPv2-TC
|
|
||||||
MODULE-COMPLIANCE,
|
|
||||||
OBJECT-GROUP
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
ciscoExperiment
|
|
||||||
FROM CISCO-SMI;
|
|
||||||
|
|
||||||
|
|
||||||
cisco5800HealthMonMIB MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "9708260000Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
" Cisco Systems
|
|
||||||
Customer Service
|
|
||||||
|
|
||||||
Postal: 170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
|
|
||||||
E-mail: cs-snmp@cisco.com"
|
|
||||||
DESCRIPTION
|
|
||||||
"This MIB provides a means to monitor the status of a
|
|
||||||
system's health."
|
|
||||||
|
|
||||||
::= { ciscoExperiment 28 }
|
|
||||||
|
|
||||||
|
|
||||||
cisco5800HealthMonObjects OBJECT IDENTIFIER ::= { cisco5800HealthMonMIB 1 }
|
|
||||||
|
|
||||||
--
|
|
||||||
-- This mib gives you the status of the health monitoring subsystem
|
|
||||||
-- running on the system controller. Health monitoring allows the user
|
|
||||||
-- to configure three types of utilization on the system
|
|
||||||
-- controller. Namely modem, trunk, and io-mem. When io-mem monitoring
|
|
||||||
-- type is configured on the system controller, health moniotoring sets
|
|
||||||
-- up the expressions, RMON alarms, RMON events on the known
|
|
||||||
-- shelves. RMON alarm is asked to monitor the result from the set
|
|
||||||
-- expression and if it's value exceeds the configured threshold value
|
|
||||||
-- an event trap is sent to the system-controller. This trap is converted
|
|
||||||
-- into the healthmon MIB format and sent to the management
|
|
||||||
-- station. For the other two monitoring types, health monitor sets up
|
|
||||||
-- the utilization calculation on the system controller based on the info
|
|
||||||
-- available on this mib.
|
|
||||||
--
|
|
||||||
-- Trunk Utilization = (ciscoHealthMonNumActiveDS0 * 100)/
|
|
||||||
-- (ciscoHealthMonNumTotalDS0)
|
|
||||||
-- Modem Utilization = (ciscoHealthMonNumModemsInUse * 100)/
|
|
||||||
-- (ciscoHealthMonNumTotalModems)
|
|
||||||
--
|
|
||||||
--
|
|
||||||
-- 1. ciscoHealthMonStatusTable - This has the status of the configured
|
|
||||||
-- monitoring types.
|
|
||||||
--
|
|
||||||
-- 2. ciscoHealthMonCountTable - This table keeps track of following
|
|
||||||
-- info from each router shelf:
|
|
||||||
--
|
|
||||||
-- o # T1/E1 lines up
|
|
||||||
-- o # T1/E1 lines with operational status down and admin status up
|
|
||||||
-- o # of Active DS0's (cpmActiveDS0 from CISCO-POP-MGMT-MIB.my)
|
|
||||||
-- o # of Total DS0's (#of t1 - 1* 24) + 23 + (#of e1 * 30)
|
|
||||||
-- o # of Installed modems
|
|
||||||
-- (cmSystemInstalledModem from CISCO-MODEM-MGMT-MIB.my)
|
|
||||||
-- o # of Inuse Modems(cmSystemModemsInUse from CISCO-MODEM-MGMT-MIB.my
|
|
||||||
-- o # of Bad modems (cmSystemModemsUnavailable from CISCO-MODEM-MGMT-MIB.my)
|
|
||||||
-- o # of IOmem free (IO-mem ciscoMemoryPoolUsed from CISCO-MEMORY-POOL-MIB.my)
|
|
||||||
-- o # of IOmem used (IO-mem ciscoMemoryPoolFree from CISCO-MEMORY-POOL-MIB.my)
|
|
||||||
-- o % CPU avgBusy5 (avgBusy5 from cisco-10-mib.my)
|
|
||||||
-- o % Utilization of ifOutOctets of egress ports
|
|
||||||
-- A port is considered as an egress port if it's ifSpeed > 1544000
|
|
||||||
-- % Utilization of ifOutOctets = (diff_total_ifOutoctets*100)/
|
|
||||||
-- (time * total_speed)
|
|
||||||
-- o % Utilization of ifInOctets of egress ports
|
|
||||||
--
|
|
||||||
-- % Utilization of ifInOctets = (diff_total_ifInOctets*100)/
|
|
||||||
-- (time * total_speed)
|
|
||||||
--
|
|
||||||
-- The above values are collected from a single shelf. They are added
|
|
||||||
-- together to get the total number in the nitro complex.
|
|
||||||
-- Example:
|
|
||||||
-- #T1 & E1 lines UP = (T1 & E1 Lines up on shelf#1) +
|
|
||||||
-- (T1 & E1 Lines up on shelf#2) +
|
|
||||||
-- :
|
|
||||||
-- :
|
|
||||||
-- (T1 & E1 Lines up on shelf#n)
|
|
||||||
--
|
|
||||||
-- NOTE:
|
|
||||||
-- Monitored shelf - A shelf is discovered by the system controller using
|
|
||||||
-- the Shelf Discovery Protocol
|
|
||||||
|
|
||||||
ciscoHealthMonNumShelves OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of shelves monitored by the health monitor."
|
|
||||||
::= { cisco5800HealthMonObjects 3 }
|
|
||||||
|
|
||||||
ciscoHealthMonNumT1E1LinesUp OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This is the total number of active T1/E1 lines across
|
|
||||||
all the monitored shelves."
|
|
||||||
::= { cisco5800HealthMonObjects 4 }
|
|
||||||
|
|
||||||
ciscoHealthMonNumT1E1LinesDown OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This is the total number of inactive T1/E1 lines
|
|
||||||
across all the monitored shelves."
|
|
||||||
::= { cisco5800HealthMonObjects 5 }
|
|
||||||
|
|
||||||
ciscoHealthMonNumActiveDS0 OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of DS0's in use across all the monitored
|
|
||||||
shelves."
|
|
||||||
::= { cisco5800HealthMonObjects 6 }
|
|
||||||
|
|
||||||
ciscoHealthMonNumTotalDS0 OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of DS0's from all the monitored shelves."
|
|
||||||
::= { cisco5800HealthMonObjects 7 }
|
|
||||||
|
|
||||||
ciscoHealthMonNumTotalModems OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This is the total number of ciscoHealthMonTotalModems
|
|
||||||
from all the monitored shelves."
|
|
||||||
::= { cisco5800HealthMonObjects 8 }
|
|
||||||
|
|
||||||
ciscoHealthMonNumModemsInUse OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This is the total number of ciscoHealthMonModemsInUse
|
|
||||||
from all the monitored shelves ."
|
|
||||||
::= { cisco5800HealthMonObjects 9 }
|
|
||||||
|
|
||||||
ciscoHealthMonNumUnavailableModems OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This is the total number of ciscoHealthMonUnavailableModems
|
|
||||||
from all the monitored shelves."
|
|
||||||
::= { cisco5800HealthMonObjects 10 }
|
|
||||||
|
|
||||||
ciscoHealthMonStatusTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF CiscoHealthMonStatusEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The table of status maintained by the health monitor."
|
|
||||||
::= { cisco5800HealthMonObjects 1 }
|
|
||||||
|
|
||||||
ciscoHealthMonStatusEntry OBJECT-TYPE
|
|
||||||
SYNTAX CiscoHealthMonStatusEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry in the status table, containing the
|
|
||||||
information about the status of the health monitoring setup
|
|
||||||
commands. Depending on the configured monitoring type these commands
|
|
||||||
are setup on the shelf or on the system controller. Monitoring iomem
|
|
||||||
is done on the shelf where as monitoring modem and trunk is done on
|
|
||||||
system controller. ciscoHealthMonShelfId, ciscoHealthMonAddress
|
|
||||||
doesn't exist for the modem and trunk monitoring types since
|
|
||||||
they are done on the system controller. "
|
|
||||||
INDEX { ciscoHealthMonStatusIndex, ciscoHealthMonStatusType }
|
|
||||||
::= { ciscoHealthMonStatusTable 1 }
|
|
||||||
|
|
||||||
CiscoHealthMonStatusEntry ::=
|
|
||||||
SEQUENCE {
|
|
||||||
ciscoHealthMonStatusIndex Integer32,
|
|
||||||
ciscoHealthMonStatusType Integer32 (1..3),
|
|
||||||
ciscoHealthMonShelfId Integer32,
|
|
||||||
ciscoHealthMonAddress IpAddress,
|
|
||||||
ciscoHealthMonDescr DisplayString,
|
|
||||||
ciscoHealthMonValue Gauge32,
|
|
||||||
ciscoHealthMonThreshold Integer32 (1..100),
|
|
||||||
ciscoHealthMonThresholdExceedCount Integer32
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
ciscoHealthMonStatusIndex OBJECT-TYPE
|
|
||||||
SYNTAX Integer32(0..2147483647)
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Unique index for indexing the ciscoHealthMonStatusTable.
|
|
||||||
This index is for SNMP purposes only, and has no intrinsic meaning."
|
|
||||||
::= { ciscoHealthMonStatusEntry 1 }
|
|
||||||
|
|
||||||
ciscoHealthMonStatusType OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (1..3)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Monitoring type
|
|
||||||
modemUtil(1), trunkUtil(2), iomemUtil(3)"
|
|
||||||
::= { ciscoHealthMonStatusEntry 2 }
|
|
||||||
|
|
||||||
ciscoHealthMonShelfId OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This is the shelf-id of the monitored shelf."
|
|
||||||
::= { ciscoHealthMonStatusEntry 3 }
|
|
||||||
|
|
||||||
ciscoHealthMonAddress OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This is the IP address of the monitored shelf."
|
|
||||||
::= { ciscoHealthMonStatusEntry 4 }
|
|
||||||
|
|
||||||
ciscoHealthMonDescr OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString(SIZE (0..32))
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Textual description of the utilization type being
|
|
||||||
monitored on a shelf. This description is a short textual label,
|
|
||||||
suitable as a human-sensible identification for the rest of the
|
|
||||||
information in the entry."
|
|
||||||
::= { ciscoHealthMonStatusEntry 5 }
|
|
||||||
|
|
||||||
ciscoHealthMonValue OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The current value for the monitoring type on a
|
|
||||||
monitored shelf."
|
|
||||||
::= { ciscoHealthMonStatusEntry 6 }
|
|
||||||
|
|
||||||
ciscoHealthMonThreshold OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (1..100)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This is the monitoring threshold value configured
|
|
||||||
through the command line.
|
|
||||||
|
|
||||||
If the configured monitoring type is io-mem, rmon alarm on the
|
|
||||||
shelf will use this value as the threshold for generating the
|
|
||||||
event. Shelf will be asked to send this generated event trap to the
|
|
||||||
system controller. Once the system controller receives this trap,
|
|
||||||
trap will converted to the health monitor mib format and sent to the
|
|
||||||
management station.
|
|
||||||
|
|
||||||
If the configured monitoring types are trunk and/or modem,
|
|
||||||
ciscoHealthMonValue is compared with this value and if
|
|
||||||
ciscoHealthMonValue exceeds this value, a notification is sent to the
|
|
||||||
configured management station. Also, a notification will be sent to
|
|
||||||
the management station if the current monitoring value is less than
|
|
||||||
the configured threshold and the previous monitored value is greater
|
|
||||||
than the configured threshold value."
|
|
||||||
::= { ciscoHealthMonStatusEntry 7 }
|
|
||||||
|
|
||||||
ciscoHealthMonThresholdExceedCount OBJECT-TYPE
|
|
||||||
SYNTAX Integer32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Number of times monitoring value exceeded the
|
|
||||||
configured threshold value."
|
|
||||||
::= { ciscoHealthMonStatusEntry 8 }
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
--
|
|
||||||
-- HealthMonCount Table
|
|
||||||
--
|
|
||||||
|
|
||||||
ciscoHealthMonCountTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF CiscoHealthMonCountEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The table of mib entries maintained by the health monitor."
|
|
||||||
::= { cisco5800HealthMonObjects 2 }
|
|
||||||
|
|
||||||
ciscoHealthMonCountEntry OBJECT-TYPE
|
|
||||||
SYNTAX CiscoHealthMonCountEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry in the count table represents the polled data
|
|
||||||
of ceratin mib variables for a router shelf. System controller will do
|
|
||||||
the polling of the mib variables only if system controller can
|
|
||||||
talk to that particular router shelf."
|
|
||||||
INDEX { ciscoHealthMonCountIndex }
|
|
||||||
::= { ciscoHealthMonCountTable 1 }
|
|
||||||
|
|
||||||
CiscoHealthMonCountEntry ::=
|
|
||||||
SEQUENCE {
|
|
||||||
ciscoHealthMonCountIndex Integer32,
|
|
||||||
ciscoHealthMonT1E1LinesUp Gauge32,
|
|
||||||
ciscoHealthMonT1E1LinesDown Gauge32,
|
|
||||||
ciscoHealthMonActiveDS0 Gauge32,
|
|
||||||
ciscoHealthMonTotalDS0 Gauge32,
|
|
||||||
ciscoHealthMonTotalModems Gauge32,
|
|
||||||
ciscoHealthMonModemsInUse Gauge32,
|
|
||||||
ciscoHealthMonUnavailableModems Gauge32,
|
|
||||||
ciscoHealthMonIOMemUsed Gauge32,
|
|
||||||
ciscoHealthMonIOMemFree Gauge32,
|
|
||||||
ciscoHealthMonCPUavgBusy5 Integer32 (1..100),
|
|
||||||
ciscoHealthMonUtilEgressInOctet Counter32,
|
|
||||||
ciscoHealthMonUtilEgressOutOctet Counter32,
|
|
||||||
ciscoHealthMonShelfLastUpdate DisplayString
|
|
||||||
}
|
|
||||||
|
|
||||||
ciscoHealthMonCountIndex OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..9999)
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Unique index for indexing the
|
|
||||||
ciscoHealthMonCountTable. This unique index represents the shelf-id of
|
|
||||||
the monitored shelf."
|
|
||||||
::= { ciscoHealthMonCountEntry 1 }
|
|
||||||
|
|
||||||
ciscoHealthMonT1E1LinesUp OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of active T1 and E1 lines on a shelf. A
|
|
||||||
line is considered as an active line if it is operationally up."
|
|
||||||
::= { ciscoHealthMonCountEntry 2 }
|
|
||||||
|
|
||||||
ciscoHealthMonT1E1LinesDown OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of inactive T1 and E1 lines on a
|
|
||||||
shelf. This is the special case where a line is counted as down if it
|
|
||||||
is operationally down and administratively up."
|
|
||||||
::= { ciscoHealthMonCountEntry 3 }
|
|
||||||
|
|
||||||
ciscoHealthMonActiveDS0 OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of DS0's that are currently in use."
|
|
||||||
::= { ciscoHealthMonCountEntry 4 }
|
|
||||||
|
|
||||||
ciscoHealthMonTotalDS0 OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of DS0's on a shelf. This is based
|
|
||||||
on the number of T1 and E1 lines present on the router shelf.
|
|
||||||
|
|
||||||
Total DS0 = (# of T1 lines - 1 * 24) + 23 + (# of E1 lines*30)."
|
|
||||||
::= { ciscoHealthMonCountEntry 5 }
|
|
||||||
|
|
||||||
ciscoHealthMonTotalModems OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of modems installed on a shelf. This
|
|
||||||
is the polled value for cmSystemInstalledModem from the router shelf."
|
|
||||||
::= { ciscoHealthMonCountEntry 6 }
|
|
||||||
|
|
||||||
ciscoHealthMonModemsInUse OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of modems on a shelf that are in the
|
|
||||||
following states: connected, offHook, loopback, or
|
|
||||||
downloadFirmware. This the polled value for cmSystemModemsInUse from
|
|
||||||
the router shelf."
|
|
||||||
::= { ciscoHealthMonCountEntry 7 }
|
|
||||||
|
|
||||||
ciscoHealthMonUnavailableModems OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of modems on a shelf that cannot accept the
|
|
||||||
calls. They are in the following states: unknown, onHook, busiedOut,
|
|
||||||
disabled, bad, or downloadFirmwareFailed. This is the polled value for
|
|
||||||
cmSystemModemsUnavailable from the router shelf."
|
|
||||||
::= { ciscoHealthMonCountEntry 8 }
|
|
||||||
ciscoHealthMonIOMemUsed OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
UNITS "bytes"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of bytes of IO memory that are currently
|
|
||||||
in use by the applications on the shelf. This is the polled value for
|
|
||||||
ciscoMemoryPoolUsed of io-mem type on the router shelf."
|
|
||||||
::= { ciscoHealthMonCountEntry 9 }
|
|
||||||
|
|
||||||
ciscoHealthMonIOMemFree OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
UNITS "bytes"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of bytes of IO memory that are currently
|
|
||||||
available to use on the shelf.This is the polled value for
|
|
||||||
ciscoMemoryPoolFree of io-mem type on the router shelf."
|
|
||||||
::= { ciscoHealthMonCountEntry 10 }
|
|
||||||
|
|
||||||
ciscoHealthMonCPUavgBusy5 OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (1..100)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"5 minute exponentially-decayed moving average of the
|
|
||||||
CPU busy percentage. This is the polled value for avgBusy5 from the
|
|
||||||
router shelf."
|
|
||||||
::= { ciscoHealthMonCountEntry 11 }
|
|
||||||
|
|
||||||
ciscoHealthMonUtilEgressInOctet OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This is the percentage utilization of total number of
|
|
||||||
octets received on all the active egress interface, including framing
|
|
||||||
characters.
|
|
||||||
|
|
||||||
A port is considered as an egress port if it's ifSpeed > 1544000
|
|
||||||
% Utilization of ifInOctets = (diff_total_ifInoctets*100)/
|
|
||||||
(time in seconds * total_speed)
|
|
||||||
."
|
|
||||||
::= { ciscoHealthMonCountEntry 12 }
|
|
||||||
|
|
||||||
ciscoHealthMonUtilEgressOutOctet OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This is the percentage utilization of the total
|
|
||||||
number of octets transmitted out on all the active egress interface,
|
|
||||||
including framing characters.
|
|
||||||
|
|
||||||
A port is considered as an egress port if it's ifSpeed > 1544000
|
|
||||||
% Utilization of ifOutOctets = (diff_total_ifOutoctets*100)/
|
|
||||||
(time in seconds * total_speed)
|
|
||||||
."
|
|
||||||
::= { ciscoHealthMonCountEntry 13 }
|
|
||||||
|
|
||||||
ciscoHealthMonShelfLastUpdate OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString (SIZE (0..32))
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This is the last time at which the system-controller
|
|
||||||
has polled the mib entries from a shelf. However, if system-controller
|
|
||||||
can not talk to that shelf, this entry will have the same time as the
|
|
||||||
last update and a string Lost Contact. All the mib entries
|
|
||||||
corresponding to this shelf will remain as it is until
|
|
||||||
system-controller can talk to this shelf again."
|
|
||||||
::= { ciscoHealthMonCountEntry 14 }
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
ciscoHealthMonMIBNotificationEnables OBJECT IDENTIFIER ::= { cisco5800HealthMonMIB 2 }
|
|
||||||
|
|
||||||
|
|
||||||
ciscoHealthMonEnableNotification OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This variable indicates whether the system produces
|
|
||||||
the ciscoHealthNotification. A false value will prevent notifications
|
|
||||||
from being generated by this system."
|
|
||||||
DEFVAL { false }
|
|
||||||
::= { ciscoHealthMonMIBNotificationEnables 1 }
|
|
||||||
|
|
||||||
-- the following two OBJECT IDENTIFIERS are used to define SNMPv2 Notifications
|
|
||||||
-- that are backward compatible with SNMPv1 Traps.
|
|
||||||
ciscoHealthMonMIBNotificationPrefix OBJECT IDENTIFIER ::= { cisco5800HealthMonMIB 3 }
|
|
||||||
ciscoHealthMonMIBNotifications OBJECT IDENTIFIER ::= { ciscoHealthMonMIBNotificationPrefix 0 }
|
|
||||||
|
|
||||||
ciscoHealthMonNotification NOTIFICATION-TYPE
|
|
||||||
OBJECTS {
|
|
||||||
ciscoHealthMonStatusType,
|
|
||||||
ciscoHealthMonShelfId,
|
|
||||||
ciscoHealthMonAddress,
|
|
||||||
ciscoHealthMonDescr,
|
|
||||||
ciscoHealthMonValue,
|
|
||||||
ciscoHealthMonThreshold
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A ciscoHealthMonNotification is sent if the measured
|
|
||||||
utilization has crossed the threshold value. It will be generated
|
|
||||||
when the value rises above the threshold. ciscoHealthMonShelfId and
|
|
||||||
ciscoHealthMonAddress are optional entries. This entry is valid only
|
|
||||||
if the notification generated for the monitoring types set on the
|
|
||||||
router shelf. This entry will not have anything if notification is
|
|
||||||
generated for the monitoring types set on the system controller."
|
|
||||||
::= { ciscoHealthMonMIBNotifications 1 }
|
|
||||||
|
|
||||||
-- conformance information
|
|
||||||
|
|
||||||
cisco5800HealthMonMIBConformance OBJECT IDENTIFIER ::= { cisco5800HealthMonMIB 4 }
|
|
||||||
cisco5800HealthMonMIBCompliances OBJECT IDENTIFIER ::= { cisco5800HealthMonMIBConformance 1 }
|
|
||||||
cisco5800HealthMonMIBGroups OBJECT IDENTIFIER ::= { cisco5800HealthMonMIBConformance 2 }
|
|
||||||
|
|
||||||
|
|
||||||
-- compliance statements
|
|
||||||
|
|
||||||
cisco5800HealthMonMIBCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for entities which implement
|
|
||||||
the Cisco Health Monitor MIB"
|
|
||||||
MODULE -- this module
|
|
||||||
MANDATORY-GROUPS { cisco5800HealthMonMIBGroup }
|
|
||||||
::= { cisco5800HealthMonMIBCompliances 1 }
|
|
||||||
|
|
||||||
-- units of conformance
|
|
||||||
|
|
||||||
cisco5800HealthMonMIBGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
ciscoHealthMonStatusType,
|
|
||||||
ciscoHealthMonShelfId,
|
|
||||||
ciscoHealthMonAddress,
|
|
||||||
ciscoHealthMonDescr,
|
|
||||||
ciscoHealthMonValue,
|
|
||||||
ciscoHealthMonThreshold,
|
|
||||||
ciscoHealthMonThresholdExceedCount,
|
|
||||||
ciscoHealthMonT1E1LinesUp,
|
|
||||||
ciscoHealthMonT1E1LinesDown,
|
|
||||||
ciscoHealthMonActiveDS0,
|
|
||||||
ciscoHealthMonTotalDS0,
|
|
||||||
ciscoHealthMonTotalModems,
|
|
||||||
ciscoHealthMonModemsInUse,
|
|
||||||
ciscoHealthMonUnavailableModems,
|
|
||||||
ciscoHealthMonIOMemUsed,
|
|
||||||
ciscoHealthMonIOMemFree,
|
|
||||||
ciscoHealthMonCPUavgBusy5,
|
|
||||||
ciscoHealthMonUtilEgressInOctet,
|
|
||||||
ciscoHealthMonUtilEgressOutOctet,
|
|
||||||
ciscoHealthMonShelfLastUpdate,
|
|
||||||
|
|
||||||
ciscoHealthMonNumShelves,
|
|
||||||
ciscoHealthMonNumT1E1LinesUp,
|
|
||||||
ciscoHealthMonNumT1E1LinesDown,
|
|
||||||
ciscoHealthMonNumActiveDS0,
|
|
||||||
ciscoHealthMonNumTotalDS0,
|
|
||||||
ciscoHealthMonNumTotalModems,
|
|
||||||
ciscoHealthMonNumModemsInUse,
|
|
||||||
ciscoHealthMonNumUnavailableModems,
|
|
||||||
|
|
||||||
ciscoHealthMonEnableNotification
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of objects providing health monitoring
|
|
||||||
capability to a cisco chassis."
|
|
||||||
::= { cisco5800HealthMonMIBGroups 1 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
@ -1,345 +0,0 @@
|
|||||||
-- *****************************************************************
|
|
||||||
-- CISCO-802-TAP-MIB.my: Cisco intercept ("tap") MIB
|
|
||||||
--
|
|
||||||
-- September 2003, Srinivas Dhulipala
|
|
||||||
--
|
|
||||||
-- Copyright (c) 2003-2006 by Cisco Systems, Inc.
|
|
||||||
-- All rights reserved.
|
|
||||||
--
|
|
||||||
-- *****************************************************************
|
|
||||||
--
|
|
||||||
|
|
||||||
CISCO-802-TAP-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
Integer32,
|
|
||||||
MODULE-IDENTITY,
|
|
||||||
OBJECT-TYPE,
|
|
||||||
Unsigned32
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
|
|
||||||
MODULE-COMPLIANCE,
|
|
||||||
OBJECT-GROUP
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
|
|
||||||
MacAddress,
|
|
||||||
RowStatus
|
|
||||||
FROM SNMPv2-TC
|
|
||||||
|
|
||||||
cTap2MediationContentId,
|
|
||||||
cTap2StreamIndex
|
|
||||||
FROM CISCO-TAP2-MIB
|
|
||||||
|
|
||||||
ciscoMgmt
|
|
||||||
FROM CISCO-SMI;
|
|
||||||
|
|
||||||
cisco802TapMIB MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200403110000Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
" Cisco Systems
|
|
||||||
Customer Service
|
|
||||||
|
|
||||||
Postal:170 W. Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel:+1 800 553-NETS
|
|
||||||
|
|
||||||
E-mail:cs-li@cisco.com"
|
|
||||||
DESCRIPTION
|
|
||||||
"This module manages Cisco's intercept feature for
|
|
||||||
802 (layer 2) streams.
|
|
||||||
|
|
||||||
This MIB is used along with CISCO-TAP2-MIB to
|
|
||||||
intercept 802 traffic. CISCO-TAP2-MIB along with
|
|
||||||
specific filter MIBs like this MIB replace
|
|
||||||
CISCO-TAP-MIB.
|
|
||||||
|
|
||||||
To create an 802 intercept, an entry c802tapStreamEntry
|
|
||||||
is created which contains the filter details. An entry
|
|
||||||
cTap2StreamEntry of CISCO-TAP2-MIB is created which
|
|
||||||
is the common stream information for all kinds of
|
|
||||||
intercepts and type of the specific stream is set to
|
|
||||||
mac in this entry."
|
|
||||||
|
|
||||||
|
|
||||||
REVISION "200403110000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Initial version of this MIB module."
|
|
||||||
::= { ciscoMgmt 395 }
|
|
||||||
|
|
||||||
cisco802TapMIBNotifs OBJECT IDENTIFIER ::= { cisco802TapMIB 0 }
|
|
||||||
cisco802TapMIBObjects OBJECT IDENTIFIER ::= { cisco802TapMIB 1 }
|
|
||||||
cisco802TapMIBConform OBJECT IDENTIFIER ::= { cisco802TapMIB 2 }
|
|
||||||
|
|
||||||
c802tapStreamEncodePacket OBJECT IDENTIFIER ::= { cisco802TapMIBObjects
|
|
||||||
1 }
|
|
||||||
|
|
||||||
--
|
|
||||||
-- The filter specifics for intercepting 802 traffic.
|
|
||||||
--
|
|
||||||
|
|
||||||
c802tapStreamCapabilities OBJECT-TYPE
|
|
||||||
SYNTAX BITS {
|
|
||||||
tapEnable(0),
|
|
||||||
interface(1),
|
|
||||||
dstMacAddr(2),
|
|
||||||
srcMacAddr(3),
|
|
||||||
ethernetPid(4),
|
|
||||||
dstLlcSap(5),
|
|
||||||
srcLlcSap(6)
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object displays what types of intercept streams can be
|
|
||||||
configured on this type of device. This may be dependent on
|
|
||||||
hardware capabilities, software capabilities. The following
|
|
||||||
fields may be supported:
|
|
||||||
tapEnable: set if table entries with
|
|
||||||
cTap2StreamInterceptEnable set to 'false'
|
|
||||||
are used to pre-screen packets for intercept;
|
|
||||||
otherwise these entries are ignored.
|
|
||||||
interface: SNMP ifIndex Value may be used to select
|
|
||||||
interception of all data crossing an
|
|
||||||
interface or set of interfaces.
|
|
||||||
dstMacAddr: Destination MAC Address may be used to select
|
|
||||||
traffic to be intercepted.
|
|
||||||
srcMacAddr: Source MAC Address may be used to select
|
|
||||||
traffic to be intercepted.
|
|
||||||
ethernetPid: Ethernet Protocol Identifier may be used to
|
|
||||||
select traffic to be intercepted.
|
|
||||||
dstLlcSap: IEEE 802.2 Destination SAP may be used to
|
|
||||||
select traffic to be intercepted.
|
|
||||||
srcLlcSap: IEEE 802.2 Source SAP may be used to select
|
|
||||||
traffic to be intercepted."
|
|
||||||
::= { c802tapStreamEncodePacket 1 }
|
|
||||||
--
|
|
||||||
-- The "access list" for intercepting data at the IEEE 802
|
|
||||||
-- link layer
|
|
||||||
--
|
|
||||||
|
|
||||||
c802tapStreamTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF C802tapStreamEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The Intercept Stream 802 Table lists the IEEE 802 data streams
|
|
||||||
to be intercepted. The same data stream may be required by
|
|
||||||
multiple taps, and one might assume that often the intercepted
|
|
||||||
stream is a small subset of the traffic that could be
|
|
||||||
intercepted.
|
|
||||||
|
|
||||||
This essentially provides options for packet selection, only
|
|
||||||
some of which might be used. For example, if all traffic to or
|
|
||||||
from a given interface is to be intercepted, one would
|
|
||||||
configure an entry which lists the interface, and wild-card
|
|
||||||
everything else. If all traffic to or from a given MAC Address
|
|
||||||
is to be intercepted, one would configure two such entries
|
|
||||||
listing the MAC Address as source and destination respectively,
|
|
||||||
and wild-card everything else.
|
|
||||||
|
|
||||||
The first index indicates which Mediation Device the
|
|
||||||
intercepted traffic will be diverted to. The second index
|
|
||||||
permits multiple classifiers to be used together, such as
|
|
||||||
having a MAC address as source or destination.
|
|
||||||
|
|
||||||
Entries are added to this table via c802tapStreamStatus in
|
|
||||||
accordance with the RowStatus convention."
|
|
||||||
::= { c802tapStreamEncodePacket 2 }
|
|
||||||
|
|
||||||
c802tapStreamEntry OBJECT-TYPE
|
|
||||||
SYNTAX C802tapStreamEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A stream entry indicates a single data stream to be
|
|
||||||
intercepted to a Mediation Device. Many selected data
|
|
||||||
streams may go to the same application interface, and many
|
|
||||||
application interfaces are supported."
|
|
||||||
INDEX { cTap2MediationContentId, cTap2StreamIndex }
|
|
||||||
::= { c802tapStreamTable 1 }
|
|
||||||
|
|
||||||
C802tapStreamEntry ::= SEQUENCE {
|
|
||||||
c802tapStreamFields BITS,
|
|
||||||
c802tapStreamInterface Integer32,
|
|
||||||
c802tapStreamDestinationAddress MacAddress,
|
|
||||||
c802tapStreamSourceAddress MacAddress,
|
|
||||||
c802tapStreamEthernetPid Unsigned32,
|
|
||||||
c802tapStreamSourceLlcSap Unsigned32,
|
|
||||||
c802tapStreamDestinationLlcSap Unsigned32,
|
|
||||||
c802tapStreamStatus RowStatus
|
|
||||||
}
|
|
||||||
|
|
||||||
c802tapStreamFields OBJECT-TYPE
|
|
||||||
SYNTAX BITS {
|
|
||||||
interface(0),
|
|
||||||
dstMacAddress(1),
|
|
||||||
srcMacAddress(2),
|
|
||||||
ethernetPid(3),
|
|
||||||
dstLlcSap(4),
|
|
||||||
srcLlcSap(5)
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object displays what attributes must be tested to
|
|
||||||
identify traffic which requires interception. The packet
|
|
||||||
matches if all flagged fields match.
|
|
||||||
|
|
||||||
interface: indicates that traffic on the stated
|
|
||||||
interface is to be intercepted
|
|
||||||
dstMacAddress: indicates that traffic destined to a
|
|
||||||
given address should be intercepted
|
|
||||||
srcMacAddress: indicates that traffic sourced from a
|
|
||||||
given address should be intercepted
|
|
||||||
ethernetPid: indicates that traffic with a stated
|
|
||||||
Ethernet Protocol Identifier should be
|
|
||||||
intercepted
|
|
||||||
dstLlcSap: indicates that traffic with an certain
|
|
||||||
802.2 LLC Destination SAP should be
|
|
||||||
intercepted
|
|
||||||
srcLlcSap: indicates that traffic with an certain
|
|
||||||
802.2 LLC Source SAP should be
|
|
||||||
intercepted
|
|
||||||
|
|
||||||
At least one of the bits has to be set in order to activate an
|
|
||||||
entry. If the bit is not on, the corresponding MIB object
|
|
||||||
value has no effect, and need not be specified when creating
|
|
||||||
the entry."
|
|
||||||
::= { c802tapStreamEntry 1 }
|
|
||||||
|
|
||||||
c802tapStreamInterface OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (-1 | 0 | 1..2147483647)
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The ifIndex value of the interface over which traffic to be
|
|
||||||
intercepted is received or transmitted. The interface may be
|
|
||||||
physical or virtual. If this is the only parameter specified,
|
|
||||||
and it is other than -1 or 0, all traffic on the selected
|
|
||||||
interface will be chosen.
|
|
||||||
|
|
||||||
If the value is zero, matching traffic may be received or
|
|
||||||
transmitted on any interface. Additional selection parameters
|
|
||||||
must be selected to limit the scope of traffic intercepted.
|
|
||||||
This is most useful on non-routing platforms or on intercepts
|
|
||||||
placed elsewhere than a subscriber interface.
|
|
||||||
|
|
||||||
If the value is -1, one or both of
|
|
||||||
c802tapStreamDestinationAddress and c802tapStreamSourceAddress
|
|
||||||
must be specified. Matching traffic on the interface pointed
|
|
||||||
to by the dot1dTpFdbPort values associated with those values is
|
|
||||||
intercepted, whichever is specified. If dot1dTpFdbPort
|
|
||||||
changes, either by operator action or by protocol events, the
|
|
||||||
interface will change with it. This is primarily intended for
|
|
||||||
use on subscriber interfaces and other places where routing is
|
|
||||||
guaranteed to be symmetrical.
|
|
||||||
|
|
||||||
In both of these cases, it is possible to have the same packet
|
|
||||||
selected for intersection on both its ingress and egress
|
|
||||||
interface. Nonetheless, only one instance of the packet is
|
|
||||||
sent to the Mediation Device.
|
|
||||||
|
|
||||||
This value must be set when creating a stream entry, either to
|
|
||||||
select an interface, to select all interfaces, or to select the
|
|
||||||
interface that bridging learns. Some platforms may not
|
|
||||||
implement the entire range of options."
|
|
||||||
REFERENCE "RFC 1493"
|
|
||||||
::= { c802tapStreamEntry 2 }
|
|
||||||
|
|
||||||
c802tapStreamDestinationAddress OBJECT-TYPE
|
|
||||||
SYNTAX MacAddress
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The Destination address used in packet selection."
|
|
||||||
::= { c802tapStreamEntry 3 }
|
|
||||||
|
|
||||||
c802tapStreamSourceAddress OBJECT-TYPE
|
|
||||||
SYNTAX MacAddress
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The Source Address used in packet selection."
|
|
||||||
::= { c802tapStreamEntry 4 }
|
|
||||||
|
|
||||||
c802tapStreamEthernetPid OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The value of the Ethernet Protocol Identifier, which may be
|
|
||||||
found on Ethernet traffic or IEEE 802.2 SNAP traffic."
|
|
||||||
::= { c802tapStreamEntry 5 }
|
|
||||||
|
|
||||||
c802tapStreamDestinationLlcSap OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The value of the IEEE 802.2 Destination SAP."
|
|
||||||
::= { c802tapStreamEntry 6 }
|
|
||||||
|
|
||||||
c802tapStreamSourceLlcSap OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The value of the IEEE 802.2 Source SAP."
|
|
||||||
::= { c802tapStreamEntry 7 }
|
|
||||||
|
|
||||||
c802tapStreamStatus OBJECT-TYPE
|
|
||||||
SYNTAX RowStatus
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The status of this conceptual row. This object manages
|
|
||||||
creation, modification, and deletion of rows in this table.
|
|
||||||
When any rows must be changed, c802tapStreamStatus must
|
|
||||||
be first set to 'notInService'."
|
|
||||||
::= { c802tapStreamEntry 8 }
|
|
||||||
|
|
||||||
|
|
||||||
-- conformance information
|
|
||||||
|
|
||||||
cisco802TapMIBCompliances OBJECT IDENTIFIER ::= { cisco802TapMIBConform
|
|
||||||
1 }
|
|
||||||
cisco802TapMIBGroups OBJECT IDENTIFIER ::= { cisco802TapMIBConform
|
|
||||||
2 }
|
|
||||||
|
|
||||||
-- compliance statement
|
|
||||||
|
|
||||||
cisco802TapMIBCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for entities which implement the
|
|
||||||
Cisco Intercept MIB for 802 streams."
|
|
||||||
MODULE -- this module
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
cisco802TapStreamGroup
|
|
||||||
}
|
|
||||||
::= {cisco802TapMIBCompliances 1 }
|
|
||||||
|
|
||||||
-- units of conformance
|
|
||||||
|
|
||||||
cisco802TapStreamGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
c802tapStreamCapabilities,
|
|
||||||
c802tapStreamFields,
|
|
||||||
c802tapStreamInterface,
|
|
||||||
c802tapStreamDestinationAddress,
|
|
||||||
c802tapStreamSourceAddress,
|
|
||||||
c802tapStreamEthernetPid,
|
|
||||||
c802tapStreamSourceLlcSap,
|
|
||||||
c802tapStreamDestinationLlcSap,
|
|
||||||
c802tapStreamStatus
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"These objects are necessary for a description of IEEE 802
|
|
||||||
packets to select for interception."
|
|
||||||
::= { cisco802TapMIBGroups 1 }
|
|
||||||
|
|
||||||
END
|
|
File diff suppressed because it is too large
Load Diff
@ -1,74 +0,0 @@
|
|||||||
-- *****************************************************************
|
|
||||||
-- CISCO-AAA-CLIENT-CAPABILITY.my:
|
|
||||||
-- Cisco CISCO-AAA-CLIENT-MIB AGENT-CAPABILITIES
|
|
||||||
--
|
|
||||||
-- Aug 2003, Jayakumar Kadirvelu
|
|
||||||
--
|
|
||||||
-- Copyright (c) 2003-2004 by Cisco Systems, Inc.
|
|
||||||
-- All rights reserved.
|
|
||||||
-- *****************************************************************
|
|
||||||
|
|
||||||
CISCO-AAA-CLIENT-CAPABILITY DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
AGENT-CAPABILITIES
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
TruthValue
|
|
||||||
FROM SNMPv2-TC
|
|
||||||
ciscoAgentCapability
|
|
||||||
FROM CISCO-SMI;
|
|
||||||
|
|
||||||
ciscoAaaClientCapability MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200402030000Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
" Cisco Systems
|
|
||||||
Customer Service
|
|
||||||
|
|
||||||
Postal: 170 West Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
|
|
||||||
E-mail: cs-lan-switch-snmp@cisco.com"
|
|
||||||
DESCRIPTION
|
|
||||||
"The capabilities description of CISCO-AAA-CLIENT-MIB."
|
|
||||||
|
|
||||||
REVISION "200402030000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added VARIATION for cacEnable and cacPrimaryMethod."
|
|
||||||
|
|
||||||
REVISION "200308060000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Initial version of this MIB module."
|
|
||||||
::= { ciscoAgentCapability 322 }
|
|
||||||
|
|
||||||
|
|
||||||
ciscoAaaClientCapCatOSV08R0101 AGENT-CAPABILITIES
|
|
||||||
PRODUCT-RELEASE "Cisco CatOS 8.1(1) on Catalyst 6000/6500
|
|
||||||
and Cisco 7600 series devices."
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION "CISCO-AAA-CLIENT-MIB capabilities."
|
|
||||||
|
|
||||||
SUPPORTS CISCO-AAA-CLIENT-MIB
|
|
||||||
INCLUDES { cacPriorityGroup,
|
|
||||||
cacLoginConfigGroup,
|
|
||||||
cacLoginConfigGroupRev1
|
|
||||||
}
|
|
||||||
|
|
||||||
VARIATION cacEnable
|
|
||||||
SYNTAX TruthValue
|
|
||||||
DESCRIPTION "Cannot be set to false(2), when the value
|
|
||||||
of cacAuthen is local(4), and the value of
|
|
||||||
cacPrimaryMethod is true(1)."
|
|
||||||
|
|
||||||
VARIATION cacPrimaryMethod
|
|
||||||
SYNTAX TruthValue
|
|
||||||
DESCRIPTION "Cannot be set to false(2)."
|
|
||||||
::= { ciscoAaaClientCapability 1 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
@ -1,491 +0,0 @@
|
|||||||
|
|
||||||
-- *****************************************************************
|
|
||||||
-- CISCO-AAA-CLIENT-MIB.my: Cisco AAA Client MIB
|
|
||||||
--
|
|
||||||
-- February 2000, Edward Pham
|
|
||||||
-- May 2001, Liwei Lue
|
|
||||||
-- October 2001, Jayakumar Kadirvelu
|
|
||||||
--
|
|
||||||
-- Copyright (c) 2000-2001 by cisco Systems, Inc.
|
|
||||||
-- All rights reserved.
|
|
||||||
-- *****************************************************************
|
|
||||||
--
|
|
||||||
|
|
||||||
CISCO-AAA-CLIENT-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY,
|
|
||||||
OBJECT-TYPE,
|
|
||||||
Integer32
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
MODULE-COMPLIANCE,
|
|
||||||
OBJECT-GROUP
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
TEXTUAL-CONVENTION,
|
|
||||||
TruthValue
|
|
||||||
FROM SNMPv2-TC
|
|
||||||
ciscoMgmt
|
|
||||||
FROM CISCO-SMI;
|
|
||||||
|
|
||||||
|
|
||||||
ciscoAAAClientMIB MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200111190000Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
" Cisco Systems
|
|
||||||
Customer Service
|
|
||||||
|
|
||||||
Postal: 170 W. Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
|
|
||||||
E-mail: cs-aaa@cisco.com"
|
|
||||||
DESCRIPTION
|
|
||||||
"This MIB module provides data for authentication method
|
|
||||||
priority based on Authentication, Authorization,
|
|
||||||
Accounting (AAA) protocols.
|
|
||||||
|
|
||||||
|
|
||||||
References:
|
|
||||||
The TACACS+ Protocol Version 1.78, Internet Draft
|
|
||||||
RFC 1411 Telnet Authentication: Kerberos Version 4.
|
|
||||||
RFC 1964 The Kerberos Version 5 GSS-API Mechanism.
|
|
||||||
"
|
|
||||||
REVISION "200111190000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Deprecate object cacLockoutPeriod and add a new object
|
|
||||||
cacLockoutPeriodExt.
|
|
||||||
"
|
|
||||||
REVISION "200105100000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Initial version
|
|
||||||
"
|
|
||||||
::= { ciscoMgmt 158 }
|
|
||||||
|
|
||||||
|
|
||||||
--
|
|
||||||
-- Textual Conventions
|
|
||||||
--
|
|
||||||
|
|
||||||
--
|
|
||||||
-- Session Type textual convention
|
|
||||||
--
|
|
||||||
SessionType ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Represents a session type.
|
|
||||||
|
|
||||||
telnet(1) indicates telnet session.
|
|
||||||
|
|
||||||
console(2) indicates console session.
|
|
||||||
|
|
||||||
http(3) indicates http session.
|
|
||||||
|
|
||||||
"
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
telnet (1),
|
|
||||||
console (2),
|
|
||||||
http (3)
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
--
|
|
||||||
-- Authentication method textual convention
|
|
||||||
--
|
|
||||||
AuthenMethod ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Represents authentication method.
|
|
||||||
|
|
||||||
tacacs(1) indicates that TACACS method is used for
|
|
||||||
authentication.
|
|
||||||
|
|
||||||
radius(2) indicates that RADIUS method is used for
|
|
||||||
authentication.
|
|
||||||
|
|
||||||
kerberos(3) indicates that KERBEROS method is used
|
|
||||||
for authentication.
|
|
||||||
|
|
||||||
local(4) indicates that local password is used
|
|
||||||
for authentication. Which password is used depend
|
|
||||||
on what login mode users specified.
|
|
||||||
"
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
tacacs (1),
|
|
||||||
radius (2),
|
|
||||||
kerberos (3),
|
|
||||||
local (4)
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
--
|
|
||||||
-- Login Mode textual convention
|
|
||||||
--
|
|
||||||
LoginMode ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Represents login mode.
|
|
||||||
|
|
||||||
login(1) indicates the normal mode.
|
|
||||||
|
|
||||||
enable(2) indicates the privileged mode.
|
|
||||||
"
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
login (1),
|
|
||||||
enable (2)
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
-- AAA Client MIB objects definitions
|
|
||||||
|
|
||||||
cacMIBObjects OBJECT IDENTIFIER ::= { ciscoAAAClientMIB 1 }
|
|
||||||
|
|
||||||
|
|
||||||
-- The AAA Client MIB consists of the following groups
|
|
||||||
-- [1] AAA Client Priority Group (cacPriority)
|
|
||||||
-- [2] AAA Client Login Config Group (cacLoginConfig)
|
|
||||||
|
|
||||||
cacPriority OBJECT IDENTIFIER ::= { cacMIBObjects 1 }
|
|
||||||
cacLoginConfig OBJECT IDENTIFIER ::= { cacMIBObjects 2 }
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
--****************************************************************************
|
|
||||||
-- AAA Client Priority Group
|
|
||||||
--****************************************************************************
|
|
||||||
--
|
|
||||||
--
|
|
||||||
|
|
||||||
--
|
|
||||||
-- Priority Table
|
|
||||||
--
|
|
||||||
|
|
||||||
cacPriorityTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF CacPriorityEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This table contains entries for AAA authentication
|
|
||||||
methods configured in the system. At startup, agent
|
|
||||||
set up all the entries of the table. All authentication
|
|
||||||
methods will be disabled except local authentication will
|
|
||||||
be enabled for each session type and login mode. Users
|
|
||||||
later can enable/disable a specific authentication method
|
|
||||||
through cacEnable object.
|
|
||||||
|
|
||||||
The following table describes the startup state of each
|
|
||||||
authentication method and session type in normal login
|
|
||||||
mode and enable login mode.
|
|
||||||
|
|
||||||
AuthenMethod Console Session Telnet Session Http Session
|
|
||||||
------------ ---------------- ---------------- ------------
|
|
||||||
tacacs disabled disabled disabled
|
|
||||||
radius disabled disabled disabled
|
|
||||||
kerberos disabled disabled disabled
|
|
||||||
local enabled(*) enabled(*) enabled(*)
|
|
||||||
|
|
||||||
(*) denotes primary method.
|
|
||||||
"
|
|
||||||
::= { cacPriority 1 }
|
|
||||||
|
|
||||||
cacPriorityEntry OBJECT-TYPE
|
|
||||||
SYNTAX CacPriorityEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry containing the priority number of an authentication
|
|
||||||
method used in a session.
|
|
||||||
"
|
|
||||||
INDEX { cacSession, cacAuthen, cacLoginMode }
|
|
||||||
::= { cacPriorityTable 1 }
|
|
||||||
|
|
||||||
|
|
||||||
CacPriorityEntry ::=
|
|
||||||
SEQUENCE {
|
|
||||||
cacSession SessionType,
|
|
||||||
cacAuthen AuthenMethod,
|
|
||||||
cacLoginMode LoginMode,
|
|
||||||
cacEnable TruthValue,
|
|
||||||
cacPriorityNumber Integer32,
|
|
||||||
cacPrimaryMethod TruthValue
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
cacSession OBJECT-TYPE
|
|
||||||
SYNTAX SessionType
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This is the session type used to connect to the network
|
|
||||||
device.
|
|
||||||
"
|
|
||||||
::= { cacPriorityEntry 1 }
|
|
||||||
|
|
||||||
|
|
||||||
cacAuthen OBJECT-TYPE
|
|
||||||
SYNTAX AuthenMethod
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This is the authentication method used to authenticate
|
|
||||||
users.
|
|
||||||
"
|
|
||||||
::= { cacPriorityEntry 2 }
|
|
||||||
|
|
||||||
|
|
||||||
cacLoginMode OBJECT-TYPE
|
|
||||||
SYNTAX LoginMode
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This is the login mode user used to login to the network
|
|
||||||
device.
|
|
||||||
"
|
|
||||||
::= { cacPriorityEntry 3 }
|
|
||||||
|
|
||||||
|
|
||||||
cacEnable OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"It indicates whether the authentication method denoted by
|
|
||||||
cacAuthen is enabled or not.
|
|
||||||
|
|
||||||
When this object is true(1), the authentication method denoted
|
|
||||||
by cacAuthen is enabled.
|
|
||||||
|
|
||||||
When this object is false(2), the authentication method denoted
|
|
||||||
by cacAuthen is disabled.
|
|
||||||
|
|
||||||
If the value of cacAuthen is local, the value of this
|
|
||||||
object cannot be set to false(2).
|
|
||||||
"
|
|
||||||
::= { cacPriorityEntry 4 }
|
|
||||||
|
|
||||||
|
|
||||||
cacPriorityNumber OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..4)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This is the priority number of an authentication method to
|
|
||||||
be used in user authentication for a session. This value is
|
|
||||||
automatically assigned and reflects the relative priority
|
|
||||||
of the authentication method denoted by cacAuthen with
|
|
||||||
respected to already configured authentication methods.
|
|
||||||
It is assigned in the order in which the authentication
|
|
||||||
method is enabled by the user through cacEnable.
|
|
||||||
The higher value has the higher priority. This object
|
|
||||||
is used to determine the fallback order in case the
|
|
||||||
primary authentication method indicated by cacPrimaryMethod
|
|
||||||
failed.
|
|
||||||
|
|
||||||
If the authentication method denoted by cacAuthen is disabled
|
|
||||||
for the type of session denoted by cacSession, the value
|
|
||||||
of this object is equal to 0.
|
|
||||||
"
|
|
||||||
::= { cacPriorityEntry 5 }
|
|
||||||
|
|
||||||
|
|
||||||
cacPrimaryMethod OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"It indicates whether the authentication method denoted by
|
|
||||||
cacAuthen is the primary (first one to be tried) method
|
|
||||||
when there are multiple authentication method configured.
|
|
||||||
|
|
||||||
Setting this object to true(1) will make the authentication
|
|
||||||
method denoted by cacAuthen to be the primary authentication
|
|
||||||
method for the session denoted by cacSession. The previously
|
|
||||||
configured primary method will be changed to false(2).
|
|
||||||
|
|
||||||
Setting this object to false(2) is not allowed.
|
|
||||||
"
|
|
||||||
::= { cacPriorityEntry 6 }
|
|
||||||
|
|
||||||
|
|
||||||
-- -------------------------------------------------------------
|
|
||||||
-- AAA Client Login Config Group
|
|
||||||
-- -------------------------------------------------------------
|
|
||||||
|
|
||||||
cacLoginConfigTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF CacLoginConfigEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A table that contains login configuration
|
|
||||||
which is associated with this system.
|
|
||||||
"
|
|
||||||
::= { cacLoginConfig 1 }
|
|
||||||
|
|
||||||
cacLoginConfigEntry OBJECT-TYPE
|
|
||||||
SYNTAX CacLoginConfigEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry containing the configuration of the login.
|
|
||||||
"
|
|
||||||
INDEX { cacLoginMode, cacSession }
|
|
||||||
::= { cacLoginConfigTable 1 }
|
|
||||||
|
|
||||||
CacLoginConfigEntry ::=
|
|
||||||
SEQUENCE {
|
|
||||||
cacMaxLoginAttempt Integer32,
|
|
||||||
cacLockoutPeriod Integer32,
|
|
||||||
cacLockoutPeriodExt Integer32
|
|
||||||
}
|
|
||||||
|
|
||||||
cacMaxLoginAttempt OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0|3..10)
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Indicates the maximum number of login attempts allowed.
|
|
||||||
Setting this variable to 0 will disable the attempt
|
|
||||||
limit checking.
|
|
||||||
|
|
||||||
If the login session type does not support this attempt
|
|
||||||
limit checking, the value of this object can only be set
|
|
||||||
to 0.
|
|
||||||
"
|
|
||||||
DEFVAL { 3 }
|
|
||||||
::= { cacLoginConfigEntry 1 }
|
|
||||||
|
|
||||||
|
|
||||||
cacLockoutPeriod OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0|30..600)
|
|
||||||
UNITS "seconds"
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS deprecated
|
|
||||||
DESCRIPTION
|
|
||||||
"Indicates the lockout period after the maximum number
|
|
||||||
of login attempt is met. For console, the console input
|
|
||||||
will be frozen during this period. For remote logins, the
|
|
||||||
connection will be closed and any subsequent access
|
|
||||||
from that station will be closed during the lockout time.
|
|
||||||
|
|
||||||
Setting this variable to 0 will disable the lockout.
|
|
||||||
If the login session type does not support this lockout
|
|
||||||
period, the value of this object can only be set to 0.
|
|
||||||
|
|
||||||
If the lockout period is greater than the maximum value
|
|
||||||
reportable by this object then this object should report
|
|
||||||
its maximum value (600) and cacLockoutPeriodExt must be
|
|
||||||
used to report the lockout period.
|
|
||||||
"
|
|
||||||
DEFVAL { 30 }
|
|
||||||
::= { cacLoginConfigEntry 2 }
|
|
||||||
|
|
||||||
cacLockoutPeriodExt OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0|30..43200)
|
|
||||||
UNITS "seconds"
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Specifies the lockout period after the maximum number
|
|
||||||
of login attempt is met. For console, the console input
|
|
||||||
will be frozen during this period. For remote logins, the
|
|
||||||
connection will be closed and any subsequent access
|
|
||||||
from that station will be closed during the lockout time.
|
|
||||||
|
|
||||||
Setting this variable to 0 will disable the lockout.
|
|
||||||
If the login session type does not support this lockout
|
|
||||||
period, the value of this object can only be set to 0.
|
|
||||||
"
|
|
||||||
DEFVAL { 30 }
|
|
||||||
::= { cacLoginConfigEntry 3 }
|
|
||||||
|
|
||||||
--****************************************************************************
|
|
||||||
-- Notifications
|
|
||||||
--****************************************************************************
|
|
||||||
cacMIBNotifications OBJECT IDENTIFIER ::= { ciscoAAAClientMIB 2 }
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
cacMIBConformance OBJECT IDENTIFIER ::=
|
|
||||||
{ ciscoAAAClientMIB 3 }
|
|
||||||
cacMIBCompliances OBJECT IDENTIFIER ::=
|
|
||||||
{ cacMIBConformance 1 }
|
|
||||||
cacMIBGroups OBJECT IDENTIFIER ::=
|
|
||||||
{ cacMIBConformance 2 }
|
|
||||||
|
|
||||||
-- compliance statements
|
|
||||||
|
|
||||||
cacMIBCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS deprecated
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for entities which
|
|
||||||
implement the CISCO AAA Client MIB"
|
|
||||||
MODULE -- this module
|
|
||||||
MANDATORY-GROUPS
|
|
||||||
{
|
|
||||||
cacPriorityGroup,
|
|
||||||
cacLoginConfigGroup
|
|
||||||
}
|
|
||||||
::= { cacMIBCompliances 1 }
|
|
||||||
|
|
||||||
|
|
||||||
cacMIBCompliance2 MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for entities which
|
|
||||||
implement the CISCO AAA Client MIB"
|
|
||||||
MODULE -- this module
|
|
||||||
MANDATORY-GROUPS
|
|
||||||
{
|
|
||||||
cacPriorityGroup,
|
|
||||||
cacLoginConfigGroupRev1
|
|
||||||
}
|
|
||||||
::= { cacMIBCompliances 2 }
|
|
||||||
|
|
||||||
-- units of conformance
|
|
||||||
|
|
||||||
|
|
||||||
cacPriorityGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
cacEnable,
|
|
||||||
cacPriorityNumber,
|
|
||||||
cacPrimaryMethod
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of objects providing the
|
|
||||||
AAA client priority information.
|
|
||||||
"
|
|
||||||
::= { cacMIBGroups 1 }
|
|
||||||
|
|
||||||
|
|
||||||
cacLoginConfigGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
cacMaxLoginAttempt,
|
|
||||||
cacLockoutPeriod
|
|
||||||
}
|
|
||||||
STATUS deprecated
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of objects providing the
|
|
||||||
AAA client login configuration.
|
|
||||||
"
|
|
||||||
::= { cacMIBGroups 2 }
|
|
||||||
|
|
||||||
cacLoginConfigGroupRev1 OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
cacMaxLoginAttempt,
|
|
||||||
cacLockoutPeriodExt
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of objects providing the
|
|
||||||
AAA client login configuration.
|
|
||||||
"
|
|
||||||
::= { cacMIBGroups 3 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
@ -1,266 +0,0 @@
|
|||||||
-- *****************************************************************
|
|
||||||
-- CISCO-AAA-SERVER-CAPABILITY.my: Cisco AAA Server MIB AGENT-CAPABILITIES
|
|
||||||
--
|
|
||||||
-- November, 2003 - Mark W. Eklund, Sanjeev C Joshi
|
|
||||||
--
|
|
||||||
-- Copyright (c) 2000, 2003, 2008 by cisco Systems, Inc.
|
|
||||||
-- All rights reserved.
|
|
||||||
--
|
|
||||||
-- *****************************************************************
|
|
||||||
|
|
||||||
CISCO-AAA-SERVER-CAPABILITY DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
AGENT-CAPABILITIES
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
ciscoAgentCapability
|
|
||||||
FROM CISCO-SMI;
|
|
||||||
|
|
||||||
|
|
||||||
ciscoAAAServerCapability MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200807210000Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
Customer Service
|
|
||||||
|
|
||||||
Postal: 170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
|
|
||||||
E-mail: cs-aaa@cisco.com"
|
|
||||||
DESCRIPTION
|
|
||||||
"Agent capabilities for CISCO-AAA-SERVER-MIB"
|
|
||||||
REVISION "200807210000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added VARIATION for casKey object in
|
|
||||||
ciscoAAAServerCapabilityACSWV03R000 agent capability.
|
|
||||||
|
|
||||||
Added Agent capabilities ciscoAAAServerCapc4710aceVA1R70 for
|
|
||||||
ACE 4710 Application Control Engine Appliance."
|
|
||||||
REVISION "200602210000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Agent capabilities for Application
|
|
||||||
Control Engine (ACE)."
|
|
||||||
REVISION "200311140000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Agent capabilities for Cisco MDS 1.3."
|
|
||||||
REVISION "200001200000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Initial version of this MIB."
|
|
||||||
::= { ciscoAgentCapability 129 }
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
ciscoAAAServerCapabilityV10R00 AGENT-CAPABILITIES
|
|
||||||
PRODUCT-RELEASE "Cisco IOS 12.0(4)XJ"
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Cisco AAA Server MIB capabilities"
|
|
||||||
|
|
||||||
SUPPORTS CISCO-AAA-SERVER-MIB
|
|
||||||
INCLUDES {
|
|
||||||
casStatisticsGroup,
|
|
||||||
casConfigGroup,
|
|
||||||
casServerNotificationGroup
|
|
||||||
}
|
|
||||||
VARIATION casConfigEntry
|
|
||||||
CREATION-REQUIRES { casAddress }
|
|
||||||
DESCRIPTION
|
|
||||||
"The address must be specified during
|
|
||||||
creation"
|
|
||||||
|
|
||||||
VARIATION casAddress
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"create is not yet supported"
|
|
||||||
|
|
||||||
VARIATION casAuthenPort
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"create is not yet supported"
|
|
||||||
|
|
||||||
VARIATION casAcctPort
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"create is not yet supported"
|
|
||||||
|
|
||||||
VARIATION casKey
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"create is not yet supported"
|
|
||||||
|
|
||||||
VARIATION casConfigRowStatus
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"create is not yet supported"
|
|
||||||
|
|
||||||
::= { ciscoAAAServerCapability 1 }
|
|
||||||
|
|
||||||
ciscoAAAServerCapabilityMDS13R1 AGENT-CAPABILITIES
|
|
||||||
PRODUCT-RELEASE "Cisco MDS 1.3(1)"
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Cisco AAA Server MIB capabilities"
|
|
||||||
|
|
||||||
SUPPORTS CISCO-AAA-SERVER-MIB
|
|
||||||
INCLUDES { casConfigGroup }
|
|
||||||
VARIATION casServerStateChangeEnable
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION
|
|
||||||
"Not Supported."
|
|
||||||
|
|
||||||
VARIATION casAuthenPort
|
|
||||||
DEFVAL { 1812 }
|
|
||||||
DESCRIPTION
|
|
||||||
"As per the IANA port assignments,
|
|
||||||
DEFVAL is 1812 for radius server and
|
|
||||||
DEFVAL is 49 for tacacs+ server."
|
|
||||||
|
|
||||||
VARIATION casAcctPort
|
|
||||||
DEFVAL { 1813 }
|
|
||||||
DESCRIPTION
|
|
||||||
"As per the IANA port assignments,
|
|
||||||
DEFVAL is 1813 for radius server.
|
|
||||||
The value is ignored for tacacs+
|
|
||||||
server."
|
|
||||||
|
|
||||||
VARIATION casPriority
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION
|
|
||||||
"Not relevant in MDS implementation."
|
|
||||||
|
|
||||||
VARIATION casConfigRowStatus
|
|
||||||
DESCRIPTION
|
|
||||||
"Only allowed values are :
|
|
||||||
- 'createAndGo'
|
|
||||||
- 'destroy'
|
|
||||||
- 'active'
|
|
||||||
."
|
|
||||||
|
|
||||||
VARIATION casProtocol
|
|
||||||
DESCRIPTION
|
|
||||||
"The supported protcols are;
|
|
||||||
- tacacsplus(1) - TACACS+
|
|
||||||
- radius(2) - RADIUS
|
|
||||||
."
|
|
||||||
|
|
||||||
::= { ciscoAAAServerCapability 2 }
|
|
||||||
|
|
||||||
ciscoAAAServerCapabilityACSWV03R000 AGENT-CAPABILITIES
|
|
||||||
PRODUCT-RELEASE "ACSW (Application Control Software) 3.0"
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Cisco AAA Server MIB capabilities
|
|
||||||
for ACSW 3.0"
|
|
||||||
|
|
||||||
SUPPORTS CISCO-AAA-SERVER-MIB
|
|
||||||
INCLUDES { casConfigGroup }
|
|
||||||
VARIATION casServerStateChangeEnable
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported"
|
|
||||||
|
|
||||||
VARIATION casAddress
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported"
|
|
||||||
|
|
||||||
VARIATION casAuthenPort
|
|
||||||
ACCESS read-only
|
|
||||||
DEFVAL { 1812 }
|
|
||||||
DESCRIPTION
|
|
||||||
"As per the IANA port assignments,
|
|
||||||
DEFVAL is 1812 for radius server and
|
|
||||||
DEFVAL is 49 for tacacs+ server.
|
|
||||||
Create operation not supported"
|
|
||||||
|
|
||||||
VARIATION casAcctPort
|
|
||||||
ACCESS read-only
|
|
||||||
DEFVAL { 1813 }
|
|
||||||
DESCRIPTION
|
|
||||||
"As per the IANA port assignments,
|
|
||||||
DEFVAL is 1813 for radius server.
|
|
||||||
The value is ignored for tacacs+
|
|
||||||
server.
|
|
||||||
Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION casKey
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION casPriority
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION
|
|
||||||
"Not supported."
|
|
||||||
|
|
||||||
VARIATION casConfigRowStatus
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported"
|
|
||||||
|
|
||||||
::= { ciscoAAAServerCapability 3 }
|
|
||||||
|
|
||||||
ciscoAAAServerCapc4710aceVA1R70 AGENT-CAPABILITIES
|
|
||||||
PRODUCT-RELEASE "ACSW (Application Control Software) A1(7)
|
|
||||||
for ACE 4710 Application Control Engine
|
|
||||||
Appliance."
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Cisco AAA Server MIB capabilities
|
|
||||||
for ACSW A1(7)"
|
|
||||||
|
|
||||||
SUPPORTS CISCO-AAA-SERVER-MIB
|
|
||||||
INCLUDES { casConfigGroup }
|
|
||||||
VARIATION casServerStateChangeEnable
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported"
|
|
||||||
|
|
||||||
VARIATION casAddress
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported"
|
|
||||||
|
|
||||||
VARIATION casAuthenPort
|
|
||||||
ACCESS read-only
|
|
||||||
DEFVAL { 1812 }
|
|
||||||
DESCRIPTION
|
|
||||||
"As per the IANA port assignments,
|
|
||||||
DEFVAL is 1812 for radius server and
|
|
||||||
DEFVAL is 49 for tacacs+ server.
|
|
||||||
Create operation not supported"
|
|
||||||
|
|
||||||
VARIATION casAcctPort
|
|
||||||
ACCESS read-only
|
|
||||||
DEFVAL { 1813 }
|
|
||||||
DESCRIPTION
|
|
||||||
"As per the IANA port assignments,
|
|
||||||
DEFVAL is 1813 for radius server.
|
|
||||||
The value is ignored for tacacs+
|
|
||||||
server.
|
|
||||||
Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION casKey
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION casPriority
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION
|
|
||||||
"Not supported."
|
|
||||||
|
|
||||||
VARIATION casConfigRowStatus
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported"
|
|
||||||
|
|
||||||
::= { ciscoAAAServerCapability 4 }
|
|
||||||
|
|
||||||
END
|
|
@ -1,612 +0,0 @@
|
|||||||
-- *****************************************************************
|
|
||||||
-- CISCO-AAA-SERVER-EXT-CAPABILITY-MIB.my: Cisco AAA Server Ext MIB
|
|
||||||
-- AGENT-CAPABILITIES
|
|
||||||
--
|
|
||||||
-- November 2003, Sanjeev C Joshi
|
|
||||||
--
|
|
||||||
-- Copyright (c) 2003, 2004, 2006, 2008 by cisco Systems, Inc.
|
|
||||||
-- All rights reserved.
|
|
||||||
--
|
|
||||||
-- *****************************************************************
|
|
||||||
|
|
||||||
CISCO-AAA-SERVER-EXT-CAPABILITY DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY,
|
|
||||||
Unsigned32
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
AGENT-CAPABILITIES
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
TimeIntervalSec
|
|
||||||
FROM CISCO-TC
|
|
||||||
ciscoAgentCapability
|
|
||||||
FROM CISCO-SMI;
|
|
||||||
|
|
||||||
|
|
||||||
ciscoAAAServerExtCapability MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200806160000Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
Customer Service
|
|
||||||
|
|
||||||
Postal: 170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
|
|
||||||
E-mail: cs-aaa@cisco.com"
|
|
||||||
DESCRIPTION
|
|
||||||
"Agent capabilities for CISCO-AAA-SERVER-EXT-MIB"
|
|
||||||
REVISION "200806160000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Agent capabilities for Cisco ACE 4710 Application
|
|
||||||
Control Engine Appliance."
|
|
||||||
REVISION "200602210000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Agent capabilities for Cisco
|
|
||||||
Application Control Engine (ACE)."
|
|
||||||
REVISION "200408240000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Agent capabilities for Cisco MDS 2.0."
|
|
||||||
REVISION "200311220000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Agent capabilities for Cisco MDS 1.3."
|
|
||||||
::= { ciscoAgentCapability 372 }
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
ciscoAAAServerExtCapMDS13R1 AGENT-CAPABILITIES
|
|
||||||
PRODUCT-RELEASE "Cisco MDS 1.3(1)"
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Cisco AAA Server MIB capabilities"
|
|
||||||
|
|
||||||
SUPPORTS CISCO-AAA-SERVER-EXT-MIB
|
|
||||||
INCLUDES {
|
|
||||||
cAAASvrExtGenericConfGroup,
|
|
||||||
cAAASvrExtSvrTableConfGroup,
|
|
||||||
cAAASvrExtProtoParamConfigGroup,
|
|
||||||
cAAASvrExtSvrGroupConfGroup,
|
|
||||||
cAAASvrExtAppSvrGroupConfGroup
|
|
||||||
}
|
|
||||||
VARIATION cAAASvrExtLocalAccLogMaxSize
|
|
||||||
SYNTAX Unsigned32 (0..35000)
|
|
||||||
DESCRIPTION
|
|
||||||
"Only the range 0-35000 is supported with
|
|
||||||
default of 15000."
|
|
||||||
|
|
||||||
VARIATION cAAAServerDeadTime
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION
|
|
||||||
"Not supported."
|
|
||||||
|
|
||||||
VARIATION cAAAServerTimeOut
|
|
||||||
SYNTAX TimeIntervalSec (0..60)
|
|
||||||
DESCRIPTION
|
|
||||||
"Only the range 0-60 is supported.
|
|
||||||
The value of this object is not currently
|
|
||||||
used for radius in the implementation and
|
|
||||||
hence ignored for radius server entries."
|
|
||||||
|
|
||||||
VARIATION cAAAServerRetransmits
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION
|
|
||||||
"Not supported."
|
|
||||||
|
|
||||||
VARIATION cAAAServerProtoDeadTime
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION
|
|
||||||
"Not supported."
|
|
||||||
|
|
||||||
VARIATION cAAAServerProtoTimeOut
|
|
||||||
SYNTAX TimeIntervalSec (1..60)
|
|
||||||
DESCRIPTION
|
|
||||||
"Only the range 1-60 is supported."
|
|
||||||
|
|
||||||
VARIATION cAAAServerProtoRetransmits
|
|
||||||
SYNTAX Unsigned32 (0..5)
|
|
||||||
DESCRIPTION
|
|
||||||
"Only the range of 0-5 is supported. The object
|
|
||||||
is not relevant for tacacs+ servers and hence
|
|
||||||
the value is ignored."
|
|
||||||
|
|
||||||
VARIATION cAAASvrExtSvrGrpConfigEntry
|
|
||||||
DESCRIPTION
|
|
||||||
"There is a special agent defined group with
|
|
||||||
'cAAASvrGrpIndex' as 1, 'cAAASvrGrpName' as
|
|
||||||
'radius' and 'cAAASvrGrpProtocol' as 'radius'.
|
|
||||||
Whenever this group is used by any aplication
|
|
||||||
in the system for any of the AAA functions,
|
|
||||||
then the value of corresponding instance of
|
|
||||||
'cAAAServerList' is updated with all the AAA
|
|
||||||
server entries in the agent. This group entry
|
|
||||||
can not be deleted by the user."
|
|
||||||
|
|
||||||
VARIATION cAAAServerProtocol
|
|
||||||
DESCRIPTION
|
|
||||||
"The supported protcols are;
|
|
||||||
- tacacsplus(1) - TACACS+
|
|
||||||
- radius(2) - RADIUS
|
|
||||||
."
|
|
||||||
|
|
||||||
VARIATION cAAASvrGrpConfigRowStatus
|
|
||||||
DESCRIPTION
|
|
||||||
"Only allowed values are :
|
|
||||||
- createAndGo(4)
|
|
||||||
- destroy(6)
|
|
||||||
- active(1)
|
|
||||||
."
|
|
||||||
|
|
||||||
VARIATION cAAASvrGrpProtocol
|
|
||||||
DESCRIPTION
|
|
||||||
"The supported protcols are;
|
|
||||||
- tacacsplus(1) - TACACS+
|
|
||||||
- radius(2) - RADIUS
|
|
||||||
."
|
|
||||||
|
|
||||||
::= { ciscoAAAServerExtCapability 1 }
|
|
||||||
|
|
||||||
ciscoAAAServerExtCapMDS20R1 AGENT-CAPABILITIES
|
|
||||||
PRODUCT-RELEASE "Cisco MDS 2.0(1)"
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Cisco AAA Server MIB capabilities"
|
|
||||||
|
|
||||||
SUPPORTS CISCO-AAA-SERVER-EXT-MIB
|
|
||||||
INCLUDES {
|
|
||||||
cAAASvrExtGenericConfGroup,
|
|
||||||
cAAASvrExtSvrTableConfGroup,
|
|
||||||
cAAASvrExtProtoParamConfigGroup,
|
|
||||||
cAAASvrExtSvrGroupConfGroup,
|
|
||||||
cAAASvrExtAppSvrGroupConfGroup
|
|
||||||
}
|
|
||||||
VARIATION cAAASvrExtLocalAccLogMaxSize
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION
|
|
||||||
"Not supported."
|
|
||||||
|
|
||||||
VARIATION cAAAServerDeadTime
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION
|
|
||||||
"Not supported."
|
|
||||||
|
|
||||||
VARIATION cAAAServerTimeOut
|
|
||||||
SYNTAX TimeIntervalSec (0..60)
|
|
||||||
DESCRIPTION
|
|
||||||
"Only the range 0-60 is supported."
|
|
||||||
|
|
||||||
VARIATION cAAAServerRetransmits
|
|
||||||
SYNTAX Unsigned32 (0..5)
|
|
||||||
DESCRIPTION
|
|
||||||
"Only the range of 0-5 is supported. The object
|
|
||||||
is not relevant for tacacs+ servers and hence
|
|
||||||
the value is ignored."
|
|
||||||
|
|
||||||
VARIATION cAAAServerProtoDeadTime
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION
|
|
||||||
"Not supported."
|
|
||||||
|
|
||||||
VARIATION cAAAServerProtoTimeOut
|
|
||||||
SYNTAX TimeIntervalSec (1..60)
|
|
||||||
DESCRIPTION
|
|
||||||
"Only the range 1-60 is supported."
|
|
||||||
|
|
||||||
VARIATION cAAAServerProtoRetransmits
|
|
||||||
SYNTAX Unsigned32 (0..5)
|
|
||||||
DESCRIPTION
|
|
||||||
"Only the range of 0-5 is supported. The object
|
|
||||||
is not relevant for tacacs+ servers and hence
|
|
||||||
the value is ignored."
|
|
||||||
|
|
||||||
VARIATION cAAASvrExtSvrGrpConfigEntry
|
|
||||||
DESCRIPTION
|
|
||||||
"There is a special agent defined group with
|
|
||||||
'cAAASvrGrpIndex' as 1, 'cAAASvrGrpName' as
|
|
||||||
'radius' and 'cAAASvrGrpProtocol' as 'radius'.
|
|
||||||
Whenever this group is used by any application
|
|
||||||
in the system for any of the AAA functions,
|
|
||||||
then the value of corresponding instance of
|
|
||||||
'cAAAServerList' is updated with all the AAA
|
|
||||||
server entries in the agent. This group entry
|
|
||||||
can not be deleted by the user."
|
|
||||||
|
|
||||||
VARIATION cAAAServerProtocol
|
|
||||||
DESCRIPTION
|
|
||||||
"The supported protcols are;
|
|
||||||
- tacacsplus(1) - TACACS+
|
|
||||||
- radius(2) - RADIUS
|
|
||||||
."
|
|
||||||
|
|
||||||
VARIATION cAAASvrGrpConfigRowStatus
|
|
||||||
DESCRIPTION
|
|
||||||
"Only allowed values are :
|
|
||||||
- createAndGo(4)
|
|
||||||
- destroy(6)
|
|
||||||
- active(1)
|
|
||||||
."
|
|
||||||
|
|
||||||
VARIATION cAAASvrGrpProtocol
|
|
||||||
DESCRIPTION
|
|
||||||
"The supported protcols are;
|
|
||||||
- tacacsplus(1) - TACACS+
|
|
||||||
- radius(2) - RADIUS
|
|
||||||
."
|
|
||||||
|
|
||||||
::= { ciscoAAAServerExtCapability 2 }
|
|
||||||
|
|
||||||
ciscoAAAServerExtCapACSWV03R000 AGENT-CAPABILITIES
|
|
||||||
PRODUCT-RELEASE "ACSW (Application Control Software) 3.0"
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Cisco AAA Server MIB capabilities"
|
|
||||||
|
|
||||||
SUPPORTS CISCO-AAA-SERVER-EXT-MIB
|
|
||||||
INCLUDES {
|
|
||||||
cAAASvrExtSvrTableConfGroup,
|
|
||||||
cAAASvrExtAppSvrGroupConfGroup,
|
|
||||||
cAAASvrExtGenericConfGroup1,
|
|
||||||
cAAASvrExtGenericConfGroup2,
|
|
||||||
cAAASvrExtSvrGroupConfGroup2,
|
|
||||||
cAAASvrExtProtoParamConfigGroup1,
|
|
||||||
cAAASvrExtSvrTableLDAPConfGroup,
|
|
||||||
cAAASvrExtSvrGroupLDAPConfGroup
|
|
||||||
}
|
|
||||||
VARIATION cAAAServerAddrType
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAAServerAddr
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAAServerKeyEncrType
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAAServerDeadTime
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION
|
|
||||||
"Not supported."
|
|
||||||
|
|
||||||
VARIATION cAAAServerTimeOut
|
|
||||||
SYNTAX TimeIntervalSec (0..60)
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Only the range 0-60 is supported.
|
|
||||||
Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAAServerRetransmits
|
|
||||||
SYNTAX Unsigned32 (0..5)
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Only the range of 0-5 is supported. The object
|
|
||||||
is not relevant for tacacs+ servers and hence
|
|
||||||
the value is ignored.
|
|
||||||
Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAASvrGrpLocal
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAASvrGrpTrivial
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAASvrGrpList
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAASvrExtAppToSvrGrpMaxEnt
|
|
||||||
SYNTAX Unsigned32 (8 )
|
|
||||||
DESCRIPTION
|
|
||||||
"The maximum number of Server Group
|
|
||||||
entries the Agent supports is 8."
|
|
||||||
|
|
||||||
VARIATION cAAASvrExtLocalAccLogMaxSize
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION
|
|
||||||
"Not supported."
|
|
||||||
|
|
||||||
VARIATION cAAASvrExtClearAccLog
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Set operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAALoginAuthTypeMSCHAP
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Set operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAASvrGrpName
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAASvrGrpProtocol
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAAServerList
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAASvrGrpConfigRowStatus
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAASvrExtSvrGrpSvrListMaxEnt
|
|
||||||
SYNTAX Unsigned32 (12 )
|
|
||||||
DESCRIPTION
|
|
||||||
"The maximum number of Server Group
|
|
||||||
entries the Agent supports is 12."
|
|
||||||
|
|
||||||
VARIATION cAAASvrGrpConfigDeadTime
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAAServerProtoAuthKey
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAAServerProtoKeyEncrType
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAAServerProtoDeadTime
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAAServerProtoTimeOut
|
|
||||||
SYNTAX TimeIntervalSec (1..60)
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Only the range 1-60 is supported.
|
|
||||||
Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAAServerProtoRetransmits
|
|
||||||
SYNTAX Unsigned32 (0..5)
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Only the range of 0-5 is supported. The object
|
|
||||||
is not relevant for tacacs+ servers and hence
|
|
||||||
the value is ignored.
|
|
||||||
Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAAServerProtoSvrTableMaxEnt
|
|
||||||
SYNTAX Unsigned32 (64 )
|
|
||||||
DESCRIPTION
|
|
||||||
"The maximum number of AAA server
|
|
||||||
entries in the 'casConfigTable'
|
|
||||||
for a particular protocol is 64."
|
|
||||||
|
|
||||||
VARIATION cAAAServerProtoDirectedReq
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAAServerRootDN
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAASvrGrpLDAPBaseDN
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAASvrGrpLDAPFilterUser
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAASvrGrpLDAPUserProfile
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
::= { ciscoAAAServerExtCapability 3 }
|
|
||||||
|
|
||||||
ciscoAAAServerExtCapc4710aceVA1R700 AGENT-CAPABILITIES
|
|
||||||
PRODUCT-RELEASE "ACSW (Application Control Software) A1(7)
|
|
||||||
for ACE 4710 Application Control Engine
|
|
||||||
Appliance."
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Cisco AAA Server MIB capabilities"
|
|
||||||
|
|
||||||
SUPPORTS CISCO-AAA-SERVER-EXT-MIB
|
|
||||||
INCLUDES {
|
|
||||||
cAAASvrExtSvrTableConfGroup,
|
|
||||||
cAAASvrExtAppSvrGroupConfGroup,
|
|
||||||
cAAASvrExtGenericConfGroup1,
|
|
||||||
cAAASvrExtGenericConfGroup2,
|
|
||||||
cAAASvrExtSvrGroupConfGroup2,
|
|
||||||
cAAASvrExtProtoParamConfigGroup1,
|
|
||||||
cAAASvrExtSvrTableLDAPConfGroup,
|
|
||||||
cAAASvrExtSvrGroupLDAPConfGroup
|
|
||||||
}
|
|
||||||
VARIATION cAAAServerAddrType
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAAServerAddr
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAAServerKeyEncrType
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAAServerDeadTime
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION
|
|
||||||
"Not supported."
|
|
||||||
|
|
||||||
VARIATION cAAAServerTimeOut
|
|
||||||
SYNTAX TimeIntervalSec (0..60)
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Only the range 0-60 is supported.
|
|
||||||
Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAAServerRetransmits
|
|
||||||
SYNTAX Unsigned32 (0..5)
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Only the range of 0-5 is supported. The object
|
|
||||||
is not relevant for tacacs+ servers and hence
|
|
||||||
the value is ignored.
|
|
||||||
Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAASvrGrpLocal
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAASvrGrpTrivial
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAASvrGrpList
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAASvrExtAppToSvrGrpMaxEnt
|
|
||||||
SYNTAX Unsigned32 (8 )
|
|
||||||
DESCRIPTION
|
|
||||||
"The maximum number of Server Group
|
|
||||||
entries the Agent supports is 8."
|
|
||||||
|
|
||||||
VARIATION cAAASvrExtLocalAccLogMaxSize
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION
|
|
||||||
"Not supported."
|
|
||||||
|
|
||||||
VARIATION cAAASvrExtClearAccLog
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Set operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAALoginAuthTypeMSCHAP
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Set operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAASvrGrpName
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAASvrGrpProtocol
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAAServerList
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAASvrGrpConfigRowStatus
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAASvrExtSvrGrpSvrListMaxEnt
|
|
||||||
SYNTAX Unsigned32 (12 )
|
|
||||||
DESCRIPTION
|
|
||||||
"The maximum number of Server Group
|
|
||||||
entries the Agent supports is 12."
|
|
||||||
|
|
||||||
VARIATION cAAASvrGrpConfigDeadTime
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAAServerProtoAuthKey
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAAServerProtoKeyEncrType
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAAServerProtoDeadTime
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAAServerProtoTimeOut
|
|
||||||
SYNTAX TimeIntervalSec (1..60)
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Only the range 1-60 is supported.
|
|
||||||
Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAAServerProtoRetransmits
|
|
||||||
SYNTAX Unsigned32 (0..5)
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Only the range of 0-5 is supported. The object
|
|
||||||
is not relevant for tacacs+ servers and hence
|
|
||||||
the value is ignored.
|
|
||||||
Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAAServerProtoSvrTableMaxEnt
|
|
||||||
SYNTAX Unsigned32 (64 )
|
|
||||||
DESCRIPTION
|
|
||||||
"The maximum number of AAA server
|
|
||||||
entries in the 'casConfigTable'
|
|
||||||
for a particular protocol is 64."
|
|
||||||
|
|
||||||
VARIATION cAAAServerProtoDirectedReq
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAAServerRootDN
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAASvrGrpLDAPBaseDN
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAASvrGrpLDAPFilterUser
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
VARIATION cAAASvrGrpLDAPUserProfile
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Create operation not supported."
|
|
||||||
|
|
||||||
::= { ciscoAAAServerExtCapability 4 }
|
|
||||||
|
|
||||||
END
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,494 +0,0 @@
|
|||||||
-- *****************************************************************
|
|
||||||
-- CISCO-AAA-SESSION-MIB.my: Cisco AAA Session MIB
|
|
||||||
--
|
|
||||||
-- November 1999, Ed Richardson
|
|
||||||
--
|
|
||||||
-- Copyright (c) 1999, 2000, 2002, 2006 by cisco Systems, Inc.
|
|
||||||
-- All rights reserved.
|
|
||||||
-- *****************************************************************
|
|
||||||
--
|
|
||||||
|
|
||||||
|
|
||||||
CISCO-AAA-SESSION-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY,
|
|
||||||
OBJECT-TYPE,
|
|
||||||
Counter32,
|
|
||||||
Gauge32,
|
|
||||||
IpAddress,
|
|
||||||
Unsigned32
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
MODULE-COMPLIANCE,
|
|
||||||
OBJECT-GROUP
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
DisplayString,
|
|
||||||
TruthValue,
|
|
||||||
TEXTUAL-CONVENTION,
|
|
||||||
RowPointer
|
|
||||||
FROM SNMPv2-TC
|
|
||||||
InterfaceIndexOrZero
|
|
||||||
FROM IF-MIB
|
|
||||||
ciscoMgmt
|
|
||||||
FROM CISCO-SMI;
|
|
||||||
|
|
||||||
|
|
||||||
ciscoAAASessionMIB MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200603210000Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
" Cisco Systems
|
|
||||||
Customer Service
|
|
||||||
|
|
||||||
Postal: 170 W. Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
|
|
||||||
E-mail: cs-aaa@cisco.com"
|
|
||||||
DESCRIPTION
|
|
||||||
"This MIB module provides data for accounting sessions
|
|
||||||
based on Authentication, Authorization, Accounting
|
|
||||||
(AAA) protocols.
|
|
||||||
|
|
||||||
|
|
||||||
References:
|
|
||||||
RFC 2139 RADIUS Accounting
|
|
||||||
The TACACS+ Protocol Version 1.78, Internet Draft
|
|
||||||
|
|
||||||
|
|
||||||
"
|
|
||||||
REVISION "200603210000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added the casnNasPort and casnVaiIfIndex objects to the
|
|
||||||
casnActiveTable.
|
|
||||||
"
|
|
||||||
REVISION "200204110000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Imported Unsigned32 from SNMPv2-SMI instead of CISCO-TC
|
|
||||||
"
|
|
||||||
REVISION "9911160000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Initial version
|
|
||||||
"
|
|
||||||
::= { ciscoMgmt 150 }
|
|
||||||
|
|
||||||
|
|
||||||
--
|
|
||||||
-- Textual Conventions
|
|
||||||
--
|
|
||||||
|
|
||||||
--
|
|
||||||
-- Call Identifier textual convention
|
|
||||||
--
|
|
||||||
CctCallId ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Represents a Call Identifier.
|
|
||||||
The call identifier is used as an unique identifier for an
|
|
||||||
call within the system.
|
|
||||||
|
|
||||||
A zero value indicates no call ID.
|
|
||||||
"
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
--
|
|
||||||
-- Session Identifier textual convention
|
|
||||||
--
|
|
||||||
CasnSessionId ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Represents an Accounting Session Identifier.
|
|
||||||
The session identifier is used as an unique identifier for
|
|
||||||
a session within the system.
|
|
||||||
"
|
|
||||||
SYNTAX Unsigned32 (1..4294967295)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
-- AAA Session MIB objects definitions
|
|
||||||
|
|
||||||
casnMIBObjects OBJECT IDENTIFIER ::= { ciscoAAASessionMIB 1 }
|
|
||||||
|
|
||||||
|
|
||||||
-- The AAA Session MIB consists of the following groups
|
|
||||||
-- [1] AAA Session Active Group (casnActive)
|
|
||||||
-- [2] AAA Session General Group (casnGeneral)
|
|
||||||
|
|
||||||
casnActive OBJECT IDENTIFIER ::= { casnMIBObjects 1 }
|
|
||||||
casnGeneral OBJECT IDENTIFIER ::= { casnMIBObjects 2 }
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
--**********************************************************************
|
|
||||||
-- AAA Session Active Group
|
|
||||||
--**********************************************************************
|
|
||||||
--
|
|
||||||
--
|
|
||||||
|
|
||||||
--
|
|
||||||
-- Active Table
|
|
||||||
--
|
|
||||||
|
|
||||||
casnActiveTableEntries OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Number of entries currently in casnActiveTable
|
|
||||||
"
|
|
||||||
::= { casnActive 1 }
|
|
||||||
|
|
||||||
|
|
||||||
casnActiveTableHighWaterMark OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Maximum number of entries present in casnActiveTable
|
|
||||||
since last system re-initialization.
|
|
||||||
|
|
||||||
This corresponds to the maximum value reported by
|
|
||||||
casnActiveTableEntries.
|
|
||||||
"
|
|
||||||
::= { casnActive 2 }
|
|
||||||
|
|
||||||
|
|
||||||
casnActiveTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF CasnActiveEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This table contains entries for active AAA accounting
|
|
||||||
sessions in the system.
|
|
||||||
"
|
|
||||||
::= { casnActive 3 }
|
|
||||||
|
|
||||||
casnActiveEntry OBJECT-TYPE
|
|
||||||
SYNTAX CasnActiveEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The information regarding a single accounting session.
|
|
||||||
|
|
||||||
Entries are created when a new accounting session
|
|
||||||
is begun.
|
|
||||||
|
|
||||||
Entries are removed when the accounting session
|
|
||||||
is ended.
|
|
||||||
|
|
||||||
Initiating termination of a session with the object
|
|
||||||
casnDisconnect will cause removal of the entry when
|
|
||||||
the session completes termination.
|
|
||||||
"
|
|
||||||
INDEX { casnSessionId }
|
|
||||||
::= { casnActiveTable 1 }
|
|
||||||
|
|
||||||
|
|
||||||
CasnActiveEntry ::=
|
|
||||||
SEQUENCE {
|
|
||||||
casnSessionId CasnSessionId,
|
|
||||||
casnUserId DisplayString,
|
|
||||||
casnIpAddr IpAddress,
|
|
||||||
casnIdleTime Gauge32,
|
|
||||||
casnDisconnect TruthValue,
|
|
||||||
casnCallTrackerId CctCallId,
|
|
||||||
casnNasPort RowPointer,
|
|
||||||
casnVaiIfIndex InterfaceIndexOrZero
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
casnSessionId OBJECT-TYPE
|
|
||||||
SYNTAX CasnSessionId
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This is the session identification used by the
|
|
||||||
accounting protocol.
|
|
||||||
|
|
||||||
This value is unique to a session within the system,
|
|
||||||
even if multiple accounting protocols are in use.
|
|
||||||
|
|
||||||
The value of this object corresponds to these
|
|
||||||
accounting protocol attributes.
|
|
||||||
RADIUS: attribute 44, Acct-Session-Id
|
|
||||||
TACACS+: attribute 'task_id'
|
|
||||||
"
|
|
||||||
::= { casnActiveEntry 1 }
|
|
||||||
|
|
||||||
|
|
||||||
casnUserId OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString(SIZE(0..255))
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The User login ID or zero length string if unavailable.
|
|
||||||
|
|
||||||
The value of this object corresponds to these
|
|
||||||
accounting protocol attributes.
|
|
||||||
RADIUS: attribute 1, User-Name
|
|
||||||
TACACS+: attribute 'user'
|
|
||||||
"
|
|
||||||
::= { casnActiveEntry 2 }
|
|
||||||
|
|
||||||
|
|
||||||
casnIpAddr OBJECT-TYPE
|
|
||||||
SYNTAX IpAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The IP address of the session or 0.0.0.0 if not
|
|
||||||
applicable or unavailable.
|
|
||||||
|
|
||||||
RADIUS: attribute 8, Framed-IP-Address
|
|
||||||
TACACS+: attribute 'addr'
|
|
||||||
"
|
|
||||||
::= { casnActiveEntry 3 }
|
|
||||||
|
|
||||||
|
|
||||||
casnIdleTime OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
UNITS "seconds"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The elapsed time that this session has been idle.
|
|
||||||
|
|
||||||
This is the time since the last user-level data has been
|
|
||||||
received or transmitted. Protocol level handshaking
|
|
||||||
associated with the call is considered to be idle for
|
|
||||||
this object.
|
|
||||||
"
|
|
||||||
::= { casnActiveEntry 4 }
|
|
||||||
|
|
||||||
|
|
||||||
casnDisconnect OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object is used to terminate this session.
|
|
||||||
|
|
||||||
Setting the value to true(1) will initiate termination
|
|
||||||
of this session.
|
|
||||||
|
|
||||||
The entry will be removed once the session has completed
|
|
||||||
termination.
|
|
||||||
|
|
||||||
Once this object has been set to true(1), the session
|
|
||||||
termination process can not be cancelled by setting the
|
|
||||||
value false(2).
|
|
||||||
"
|
|
||||||
::= { casnActiveEntry 5 }
|
|
||||||
|
|
||||||
|
|
||||||
casnCallTrackerId OBJECT-TYPE
|
|
||||||
SYNTAX CctCallId
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The value of this object is the entry index in the
|
|
||||||
CISCO-CALL-TRACKER-MIB cctActiveTable of the call
|
|
||||||
corresponding to this accounting session.
|
|
||||||
|
|
||||||
Using the value of this object to query the
|
|
||||||
cctActiveTable will provide more detailed data regarding
|
|
||||||
the session represented by this casnActiveEntry.
|
|
||||||
"
|
|
||||||
::= { casnActiveEntry 6 }
|
|
||||||
|
|
||||||
|
|
||||||
casnNasPort OBJECT-TYPE
|
|
||||||
SYNTAX RowPointer
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The value of this object identifies a particular
|
|
||||||
conceptual row associated with the session identified by
|
|
||||||
casnSessionId. The conceptual row that this object points
|
|
||||||
to represents a port that is used to transport a session.
|
|
||||||
|
|
||||||
If the port transporting the session cannot be determined,
|
|
||||||
the value of this object will be zeroDotZero.
|
|
||||||
|
|
||||||
For example, suppose a session is established using an ATM
|
|
||||||
PVC. If the ifIndex of the ATM interface is 7, and the
|
|
||||||
VPI/VCI values of the PVC are 1, 100 respectively, then
|
|
||||||
the value of this object might be as follows:
|
|
||||||
|
|
||||||
casnNasPort.15 = atmVclAdminStatus.7.1.100
|
|
||||||
^ ^ ^ ^
|
|
||||||
| | | |
|
|
||||||
casnSessionId --+ | | |
|
|
||||||
ifIndex -------------------------+ | |
|
|
||||||
atmVclVpi ---------------------------+ |
|
|
||||||
atmVclVci ------------------------------+
|
|
||||||
|
|
||||||
where atmVclAdminStatus is the first accessible object
|
|
||||||
of the atmVclTable of the ATM-MIB.
|
|
||||||
"
|
|
||||||
::= { casnActiveEntry 7 }
|
|
||||||
|
|
||||||
|
|
||||||
casnVaiIfIndex OBJECT-TYPE
|
|
||||||
SYNTAX InterfaceIndexOrZero
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The ifIndex of the Virtual Access Interface (VAI)
|
|
||||||
that is associated with the PPP session.
|
|
||||||
|
|
||||||
This interface may not be represented in the IF-MIB in
|
|
||||||
which case the value of this object will be zero.
|
|
||||||
"
|
|
||||||
::= { casnActiveEntry 8 }
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
--**********************************************************************
|
|
||||||
-- AAA Session General Group
|
|
||||||
--**********************************************************************
|
|
||||||
--
|
|
||||||
--
|
|
||||||
|
|
||||||
casnTotalSessions OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Total number of sessions since last system
|
|
||||||
re-initialization.
|
|
||||||
|
|
||||||
This value includes all sessions currently in the
|
|
||||||
casnActiveTable and all previous sessions whether
|
|
||||||
terminated via casnDisconnect or via other
|
|
||||||
mechanisms.
|
|
||||||
"
|
|
||||||
::= { casnGeneral 1 }
|
|
||||||
|
|
||||||
|
|
||||||
casnDisconnectedSessions OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Total number of sessions which have been disconnected using
|
|
||||||
casnDisconnect since last system re-initialization.
|
|
||||||
|
|
||||||
This value includes any sessions still in the
|
|
||||||
casnActiveTable with a casnDisconnect value of true(1) and
|
|
||||||
all previous sessions which terminated as a result of
|
|
||||||
setting casnDisconnect.
|
|
||||||
"
|
|
||||||
::= { casnGeneral 2 }
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
--**********************************************************************
|
|
||||||
-- Notifications
|
|
||||||
--**********************************************************************
|
|
||||||
casnMIBNotificationPrefix OBJECT IDENTIFIER ::=
|
|
||||||
{ ciscoAAASessionMIB 2 }
|
|
||||||
casnMIBNotifications OBJECT IDENTIFIER ::=
|
|
||||||
{ casnMIBNotificationPrefix 1 }
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
casnMIBConformance OBJECT IDENTIFIER ::=
|
|
||||||
{ ciscoAAASessionMIB 3 }
|
|
||||||
casnMIBCompliances OBJECT IDENTIFIER ::=
|
|
||||||
{ casnMIBConformance 1 }
|
|
||||||
casnMIBGroups OBJECT IDENTIFIER ::=
|
|
||||||
{ casnMIBConformance 2 }
|
|
||||||
|
|
||||||
-- compliance statements
|
|
||||||
|
|
||||||
casnMIBCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS deprecated
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for entities which
|
|
||||||
implement the CISCO AAA Session MIB"
|
|
||||||
MODULE -- this module
|
|
||||||
MANDATORY-GROUPS
|
|
||||||
{ casnActiveGroup,
|
|
||||||
casnGeneralGroup
|
|
||||||
}
|
|
||||||
|
|
||||||
OBJECT casnDisconnect
|
|
||||||
MIN-ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Write access is not required."
|
|
||||||
|
|
||||||
::= { casnMIBCompliances 1 }
|
|
||||||
|
|
||||||
|
|
||||||
casnMIBComplianceRev1 MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for entities which
|
|
||||||
implement the CISCO AAA Session MIB"
|
|
||||||
MODULE -- this module
|
|
||||||
MANDATORY-GROUPS
|
|
||||||
{ casnActiveGroup,
|
|
||||||
casnGeneralGroup,
|
|
||||||
casnActiveGroupSup1
|
|
||||||
}
|
|
||||||
|
|
||||||
OBJECT casnDisconnect
|
|
||||||
MIN-ACCESS read-only
|
|
||||||
DESCRIPTION
|
|
||||||
"Write access is not required."
|
|
||||||
|
|
||||||
::= { casnMIBCompliances 2 }
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
-- units of conformance
|
|
||||||
|
|
||||||
|
|
||||||
casnActiveGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
casnActiveTableEntries,
|
|
||||||
casnActiveTableHighWaterMark,
|
|
||||||
casnUserId,
|
|
||||||
casnIpAddr,
|
|
||||||
casnIdleTime,
|
|
||||||
casnDisconnect,
|
|
||||||
casnCallTrackerId
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of objects providing the
|
|
||||||
AAA session information.
|
|
||||||
"
|
|
||||||
::= { casnMIBGroups 1 }
|
|
||||||
|
|
||||||
|
|
||||||
casnGeneralGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
casnTotalSessions,
|
|
||||||
casnDisconnectedSessions
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of objects providing the
|
|
||||||
AAA session information.
|
|
||||||
"
|
|
||||||
::= { casnMIBGroups 2 }
|
|
||||||
|
|
||||||
|
|
||||||
casnActiveGroupSup1 OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
casnNasPort,
|
|
||||||
casnVaiIfIndex
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of objects that supplements
|
|
||||||
the casnActiveGroup.
|
|
||||||
"
|
|
||||||
::= { casnMIBGroups 3 }
|
|
||||||
END
|
|
@ -1,207 +0,0 @@
|
|||||||
--*****************************************************************
|
|
||||||
-- CISCO-AAL5-EXT-MIB.my : CISCO AAL5 EXT MIB file
|
|
||||||
--
|
|
||||||
-- June 2001, Salil Wadnerkar
|
|
||||||
--
|
|
||||||
-- Copyright (c) 2001 by cisco Systems, Inc.
|
|
||||||
-- All rights reserved.
|
|
||||||
--
|
|
||||||
--*****************************************************************
|
|
||||||
|
|
||||||
CISCO-AAL5-EXT-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY,
|
|
||||||
OBJECT-TYPE,
|
|
||||||
Counter32
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
MODULE-COMPLIANCE,
|
|
||||||
OBJECT-GROUP
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
ciscoMgmt
|
|
||||||
FROM CISCO-SMI
|
|
||||||
aal5VccEntry
|
|
||||||
FROM ATM-MIB;
|
|
||||||
|
|
||||||
|
|
||||||
ciscoAal5ExtMIB MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200111050000Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
" Cisco Systems
|
|
||||||
Customer Service
|
|
||||||
|
|
||||||
Postal: 170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
|
|
||||||
E-mail: cs-atm@cisco.com"
|
|
||||||
DESCRIPTION
|
|
||||||
"This MIB is the RFC 1695 extension for Cisco product.
|
|
||||||
It provides the additional AAL5 performance statistics
|
|
||||||
of a VCC from RFC 1695."
|
|
||||||
REVISION "200111050000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Initial version of this MIB module."
|
|
||||||
::= { ciscoMgmt 9999 }
|
|
||||||
|
|
||||||
|
|
||||||
ciscoAal5ExtMIBObjects OBJECT IDENTIFIER ::= { ciscoAal5ExtMIB 1 }
|
|
||||||
cAal5ExtConnections OBJECT IDENTIFIER ::= { ciscoAal5ExtMIBObjects 1 }
|
|
||||||
|
|
||||||
-- This table augments the aal5VccTable defined in RFC 1695.
|
|
||||||
-- It contains additional AAL5 performance statistics of a VCC
|
|
||||||
-- in terms of cells and also the drops at the interface associated
|
|
||||||
-- with an AAL5 entity in an ATM host or ATM switch.
|
|
||||||
|
|
||||||
cAal5ExtVccTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF CAal5ExtVccEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This table contains AAL5 VCC performance
|
|
||||||
parameters beyond that provided by aal5VccEntry
|
|
||||||
defined in RFC1695 and AAL5 MIB."
|
|
||||||
::= { cAal5ExtConnections 1 }
|
|
||||||
|
|
||||||
cAal5ExtVccEntry OBJECT-TYPE
|
|
||||||
SYNTAX CAal5ExtVccEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This list contains the additional AAL5 VCC performance
|
|
||||||
parameters beyond that provided by aal5VccEntry defined
|
|
||||||
in RFC1695."
|
|
||||||
AUGMENTS { aal5VccEntry }
|
|
||||||
::= { cAal5ExtVccTable 1 }
|
|
||||||
|
|
||||||
CAal5ExtVccEntry ::= SEQUENCE {
|
|
||||||
cAal5VccInDroppedPkts Counter32,
|
|
||||||
cAal5VccOutDroppedPkts Counter32,
|
|
||||||
cAal5VccInDroppedOctets Counter32,
|
|
||||||
cAal5VccOutDroppedOctets Counter32,
|
|
||||||
cAal5VccInCells Counter32,
|
|
||||||
cAal5VccOutCells Counter32,
|
|
||||||
cAal5VccInDroppedCells Counter32,
|
|
||||||
cAal5VccOutDroppedCells Counter32
|
|
||||||
}
|
|
||||||
|
|
||||||
cAal5VccInDroppedPkts OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "packets"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of AAL5 CPCS PDUs dropped at the receive side of this
|
|
||||||
AAL5 VCC at the interface associated with an AAL5 entity."
|
|
||||||
::= { cAal5ExtVccEntry 1 }
|
|
||||||
|
|
||||||
cAal5VccOutDroppedPkts OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "packets"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of AAL5 CPCS PDUs dropped at the transmit side of this
|
|
||||||
AAL5 VCC at the interface associated with an AAL5 entity."
|
|
||||||
::= { cAal5ExtVccEntry 2 }
|
|
||||||
|
|
||||||
cAal5VccInDroppedOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "octets"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of AAL5 CPCS PDU Octets dropped at the receive side of
|
|
||||||
this AAL5 VCC at the interface associated with an AAL5 entity."
|
|
||||||
::= { cAal5ExtVccEntry 3 }
|
|
||||||
|
|
||||||
cAal5VccOutDroppedOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "octets"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of AAL5 CPCS PDU Octets dropped at the transmit side of
|
|
||||||
this AAL5 VCC at the interface associated with an AAL5 entity."
|
|
||||||
::= { cAal5ExtVccEntry 4 }
|
|
||||||
|
|
||||||
cAal5VccInCells OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "cells"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of AAL5 SAR cells received on this AAL5 VCC at the
|
|
||||||
interface associated with an AAL5 entity."
|
|
||||||
::= { cAal5ExtVccEntry 5 }
|
|
||||||
|
|
||||||
cAal5VccOutCells OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "cells"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of AAL5 SAR cells transmitted on this AAL5 VCC at
|
|
||||||
the interface associated with an AAL5 entity."
|
|
||||||
::= { cAal5ExtVccEntry 6 }
|
|
||||||
|
|
||||||
cAal5VccInDroppedCells OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "cells"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of AAL5 SAR cells dropped at the receive side of this
|
|
||||||
AAL5 VCC at the interface associated with an AAL5 entity."
|
|
||||||
::= { cAal5ExtVccEntry 7 }
|
|
||||||
|
|
||||||
cAal5VccOutDroppedCells OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "cells"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of AAL5 SAR cells dropped at the transmit side of this
|
|
||||||
AAL5 VCC at the interface associated with an AAL5 entity."
|
|
||||||
::= { cAal5ExtVccEntry 8 }
|
|
||||||
|
|
||||||
|
|
||||||
-- Conformance Information
|
|
||||||
|
|
||||||
ciscoAAL5ExtMIBConformance OBJECT IDENTIFIER ::= { ciscoAal5ExtMIB 2 }
|
|
||||||
ciscoAAL5ExtMIBCompliances OBJECT IDENTIFIER ::= { ciscoAAL5ExtMIBConformance 1 }
|
|
||||||
ciscoAAL5ExtMIBGroups OBJECT IDENTIFIER ::= { ciscoAAL5ExtMIBConformance 2 }
|
|
||||||
|
|
||||||
-- Compliance Statement
|
|
||||||
ciscoAAL5ExtMIBCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for entities which implement
|
|
||||||
this Cisco AAL5 EXT MIB."
|
|
||||||
MODULE -- this module
|
|
||||||
MANDATORY-GROUPS { ciscoAal5ExtMIBGroup }
|
|
||||||
::= { ciscoAAL5ExtMIBCompliances 1 }
|
|
||||||
|
|
||||||
-- units of conformance:
|
|
||||||
|
|
||||||
ciscoAal5ExtMIBGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
cAal5VccInDroppedPkts,
|
|
||||||
cAal5VccOutDroppedPkts,
|
|
||||||
cAal5VccInDroppedOctets,
|
|
||||||
cAal5VccOutDroppedOctets,
|
|
||||||
cAal5VccInCells,
|
|
||||||
cAal5VccOutCells,
|
|
||||||
cAal5VccInDroppedCells,
|
|
||||||
cAal5VccOutDroppedCells
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of objects providing these extra AAL5
|
|
||||||
interface related statistics."
|
|
||||||
::= { ciscoAAL5ExtMIBGroups 1 }
|
|
||||||
|
|
||||||
END
|
|
@ -1,318 +0,0 @@
|
|||||||
--*****************************************************************
|
|
||||||
-- CISCO-AAL5-MIB.my : CISCO AAL5 MIB file
|
|
||||||
--
|
|
||||||
-- Novermber 1996, Liqin Dong
|
|
||||||
--
|
|
||||||
-- Copyright (c) 1997, 2003, 2004 by cisco Systems, Inc.
|
|
||||||
-- All rights reserved.
|
|
||||||
--
|
|
||||||
--*****************************************************************
|
|
||||||
|
|
||||||
CISCO-AAL5-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY,
|
|
||||||
OBJECT-TYPE,
|
|
||||||
Counter32,
|
|
||||||
Counter64
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
MODULE-COMPLIANCE,
|
|
||||||
OBJECT-GROUP
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
ciscoMgmt
|
|
||||||
FROM CISCO-SMI
|
|
||||||
aal5VccEntry
|
|
||||||
FROM ATM-MIB;
|
|
||||||
|
|
||||||
ciscoAal5MIB MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200309170000Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
" Cisco Systems
|
|
||||||
Customer Service
|
|
||||||
|
|
||||||
Postal: 170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
|
|
||||||
E-mail: cs-atm@cisco.com"
|
|
||||||
DESCRIPTION
|
|
||||||
"Cisco Enterprise AAL5 MIB file that provide AAL5
|
|
||||||
specific information that are either excluded by
|
|
||||||
RFC 1695 or specific to Cisco product."
|
|
||||||
REVISION "200309170000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added following objects in cAal5VccTable:
|
|
||||||
cAal5VccHCInPkts,
|
|
||||||
cAal5VccHCOutPkts,
|
|
||||||
cAal5VccHCInOctets,
|
|
||||||
cAal5VccHCOutOctets"
|
|
||||||
REVISION "200210170000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Latest version of this MIB module with extended support
|
|
||||||
for vc drop stats."
|
|
||||||
|
|
||||||
REVISION "199611150000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Initial version of this MIB module."
|
|
||||||
::= { ciscoMgmt 66 }
|
|
||||||
|
|
||||||
|
|
||||||
ciscoAal5MIBObjects OBJECT IDENTIFIER ::= { ciscoAal5MIB 1 }
|
|
||||||
cAal5Connections OBJECT IDENTIFIER ::= { ciscoAal5MIBObjects 1 }
|
|
||||||
|
|
||||||
-- This table augments the aal5VccTable defined in RFC 1695.
|
|
||||||
-- It contains additional AAL5 performance statistics of a VCC
|
|
||||||
-- at the interface associated with an AAL5 entity in an ATM
|
|
||||||
-- host or ATM switch.
|
|
||||||
|
|
||||||
cAal5VccTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF CAal5VccEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This table contains AAL5 VCC performance
|
|
||||||
parameters beyond that provided by aal5VccEntry
|
|
||||||
defined in RFC1695."
|
|
||||||
::= { cAal5Connections 1 }
|
|
||||||
|
|
||||||
cAal5VccEntry OBJECT-TYPE
|
|
||||||
SYNTAX CAal5VccEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This list contains the additional AAL5 VCC performance
|
|
||||||
parameters beyond that provided by aal5VccEntry defined
|
|
||||||
in RFC1695."
|
|
||||||
AUGMENTS { aal5VccEntry }
|
|
||||||
::= { cAal5VccTable 1 }
|
|
||||||
|
|
||||||
CAal5VccEntry ::= SEQUENCE {
|
|
||||||
cAal5VccInPkts Counter32,
|
|
||||||
cAal5VccOutPkts Counter32,
|
|
||||||
cAal5VccInOctets Counter32,
|
|
||||||
cAal5VccOutOctets Counter32,
|
|
||||||
cAal5VccInDroppedPkts Counter32,
|
|
||||||
cAal5VccOutDroppedPkts Counter32,
|
|
||||||
cAal5VccInDroppedOctets Counter32,
|
|
||||||
cAal5VccOutDroppedOctets Counter32,
|
|
||||||
cAal5VccHCInPkts Counter64,
|
|
||||||
cAal5VccHCOutPkts Counter64,
|
|
||||||
cAal5VccHCInOctets Counter64,
|
|
||||||
cAal5VccHCOutOctets Counter64
|
|
||||||
}
|
|
||||||
|
|
||||||
cAal5VccInPkts OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "packets"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of AAL5 CPCS PDUs received on this AAL5 VCC at the
|
|
||||||
interface associated with an AAL5 entity."
|
|
||||||
::= { cAal5VccEntry 1 }
|
|
||||||
|
|
||||||
cAal5VccOutPkts OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "packets"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of AAL5 CPCS PDUs transmitted on this AAL5 VCC at
|
|
||||||
the interface associated with an AAL5 entity."
|
|
||||||
::= { cAal5VccEntry 2 }
|
|
||||||
|
|
||||||
cAal5VccInOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "octets"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of AAL5 CPCS PDU octets received on this AAL5 VCC
|
|
||||||
at the interface associated with an AAL5 entity."
|
|
||||||
::= { cAal5VccEntry 3 }
|
|
||||||
|
|
||||||
cAal5VccOutOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "octets"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of AAL5 CPCS PDU octets transmitted on this AAL5
|
|
||||||
VCC at the interface associated with an AAL5 entity."
|
|
||||||
::= { cAal5VccEntry 4 }
|
|
||||||
|
|
||||||
cAal5VccInDroppedPkts OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "packets"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of AAL5 CPCS PDUs dropped at the
|
|
||||||
receive side of this AAL5 VCC at the interface
|
|
||||||
associated with an AAL5 entity."
|
|
||||||
::= { cAal5VccEntry 5 }
|
|
||||||
|
|
||||||
cAal5VccOutDroppedPkts OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "packets"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of AAL5 CPCS PDUs dropped at the transmit side
|
|
||||||
of this AAL5 VCC at the interface associated with an
|
|
||||||
AAL5 entity."
|
|
||||||
::= { cAal5VccEntry 6 }
|
|
||||||
|
|
||||||
cAal5VccInDroppedOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "octets"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of AAL5 CPCS PDU Octets dropped at the
|
|
||||||
receive side of this AAL5 VCC at the interface
|
|
||||||
associated with an AAL5 entity."
|
|
||||||
::= { cAal5VccEntry 7 }
|
|
||||||
|
|
||||||
cAal5VccOutDroppedOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "octets"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of AAL5 CPCS PDU Octets dropped at the
|
|
||||||
transmit side of this AAL5 VCC at the interface
|
|
||||||
associated with an AAL5 entity."
|
|
||||||
::= { cAal5VccEntry 8 }
|
|
||||||
|
|
||||||
cAal5VccHCInPkts OBJECT-TYPE
|
|
||||||
SYNTAX Counter64
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This is 64bit (High Capacity) version of cAal5VccInPkts
|
|
||||||
counters."
|
|
||||||
::= { cAal5VccEntry 9 }
|
|
||||||
|
|
||||||
cAal5VccHCOutPkts OBJECT-TYPE
|
|
||||||
SYNTAX Counter64
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This is 64bit (High Capacity) version of cAal5VccOutPkts
|
|
||||||
counters."
|
|
||||||
::= { cAal5VccEntry 10 }
|
|
||||||
|
|
||||||
cAal5VccHCInOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter64
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This is 64bit (High Capacity) version of cAal5VccInOctets
|
|
||||||
counters."
|
|
||||||
::= { cAal5VccEntry 11 }
|
|
||||||
|
|
||||||
cAal5VccHCOutOctets OBJECT-TYPE
|
|
||||||
SYNTAX Counter64
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This is 64bit (High Capacity) version of cAal5VccOutOctets
|
|
||||||
counters."
|
|
||||||
::= { cAal5VccEntry 12 }
|
|
||||||
|
|
||||||
-- Conformance Information
|
|
||||||
|
|
||||||
ciscoAal5MIBConformance OBJECT IDENTIFIER
|
|
||||||
::= { ciscoAal5MIB 3 }
|
|
||||||
ciscoAal5MIBCompliances OBJECT IDENTIFIER
|
|
||||||
::= { ciscoAal5MIBConformance 1 }
|
|
||||||
ciscoAal5MIBGroups OBJECT IDENTIFIER
|
|
||||||
::= { ciscoAal5MIBConformance 2 }
|
|
||||||
|
|
||||||
-- Compliance Statement
|
|
||||||
ciscoAal5MIBCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS deprecated
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for entities which implement
|
|
||||||
this Cisco AAL5 MIB."
|
|
||||||
MODULE -- this module
|
|
||||||
MANDATORY-GROUPS { ciscoAal5MIBGroup }
|
|
||||||
::= { ciscoAal5MIBCompliances 1 }
|
|
||||||
|
|
||||||
ciscoAal5MIBComplianceRev1 MODULE-COMPLIANCE
|
|
||||||
STATUS deprecated
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for entities which implement
|
|
||||||
this Cisco AAL5 MIB."
|
|
||||||
MODULE -- this module
|
|
||||||
MANDATORY-GROUPS { ciscoAal5MIBGroup }
|
|
||||||
GROUP ciscoAal5VcStatsExtMIBGroup
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of objects providing these extra
|
|
||||||
AAL5 interface related statistics"
|
|
||||||
::= { ciscoAal5MIBCompliances 2 }
|
|
||||||
|
|
||||||
ciscoAal5MIBComplianceRev2 MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for entities which implement
|
|
||||||
64bit counters for Vcc received/transmit PDU and octets
|
|
||||||
objects for Cisco AAL5 MIB."
|
|
||||||
MODULE -- this module
|
|
||||||
MANDATORY-GROUPS { ciscoAal5MIBGroup }
|
|
||||||
GROUP ciscoAal5VcStatsExtMIBGroup
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of objects providing these extra
|
|
||||||
AAL5 interface related statistics."
|
|
||||||
GROUP ciscoAal5MIBHCGroup
|
|
||||||
DESCRIPTION
|
|
||||||
"This group of AAL5 statistics counters are
|
|
||||||
mandatory only for those ATM interfaces
|
|
||||||
which support 64bit counters."
|
|
||||||
::= { ciscoAal5MIBCompliances 3 }
|
|
||||||
|
|
||||||
-- units of conformance:
|
|
||||||
|
|
||||||
ciscoAal5MIBGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
cAal5VccInPkts,
|
|
||||||
cAal5VccOutPkts,
|
|
||||||
cAal5VccInOctets,
|
|
||||||
cAal5VccOutOctets
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of objects providing AAL5 related
|
|
||||||
parameters."
|
|
||||||
::= { ciscoAal5MIBGroups 1 }
|
|
||||||
|
|
||||||
ciscoAal5VcStatsExtMIBGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
cAal5VccInDroppedPkts,
|
|
||||||
cAal5VccOutDroppedPkts,
|
|
||||||
cAal5VccInDroppedOctets,
|
|
||||||
cAal5VccOutDroppedOctets
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of objects providing extension to AAL5
|
|
||||||
related vc drop statistics"
|
|
||||||
::= { ciscoAal5MIBGroups 2 }
|
|
||||||
|
|
||||||
ciscoAal5MIBHCGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
cAal5VccHCInPkts,
|
|
||||||
cAal5VccHCOutPkts,
|
|
||||||
cAal5VccHCInOctets,
|
|
||||||
cAal5VccHCOutOctets
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of objects providing 64bit AAL5 related
|
|
||||||
parameters."
|
|
||||||
::= { ciscoAal5MIBGroups 3 }
|
|
||||||
END
|
|
@ -1,199 +0,0 @@
|
|||||||
-- *****************************************************************
|
|
||||||
-- CISCO-ACCESS-ENVMON-MIB.my: CISCO ACCESS ENVMON MIB file
|
|
||||||
--
|
|
||||||
-- November 1996 Hongchi Shih
|
|
||||||
--
|
|
||||||
-- Copyright (c) 1996, 1997, 1998 by cisco Systems, Inc.
|
|
||||||
-- All rights reserved.
|
|
||||||
-- *****************************************************************
|
|
||||||
|
|
||||||
CISCO-ACCESS-ENVMON-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY,
|
|
||||||
OBJECT-TYPE,
|
|
||||||
NOTIFICATION-TYPE
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
MODULE-COMPLIANCE,
|
|
||||||
OBJECT-GROUP
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
ciscoEnvMonSupplyStatusEntry,
|
|
||||||
ciscoEnvMonTemperatureStatusDescr,
|
|
||||||
ciscoEnvMonTemperatureState,
|
|
||||||
ciscoEnvMonVoltageStatusDescr,
|
|
||||||
ciscoEnvMonVoltageState
|
|
||||||
FROM CISCO-ENVMON-MIB
|
|
||||||
ciscoMgmt
|
|
||||||
FROM CISCO-SMI;
|
|
||||||
|
|
||||||
|
|
||||||
ciscoAccessEnvMonMIB MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "9808050000Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
" Cisco Systems
|
|
||||||
Customer Service
|
|
||||||
|
|
||||||
Postal: 170 W. Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
|
|
||||||
E-mail: cs-snmp@cisco.com"
|
|
||||||
DESCRIPTION
|
|
||||||
"The MIB module to describe the additional status of
|
|
||||||
the Environmental Monitor on those Cisco Access devices
|
|
||||||
which support one.
|
|
||||||
"
|
|
||||||
REVISION "9808050000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Rename the enumerated values for caemSupplyFailedComponent
|
|
||||||
and add fan, overvoltage failure events to it.
|
|
||||||
Add caemVoltageNotification.
|
|
||||||
"
|
|
||||||
::= { ciscoMgmt 61 }
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
-- Cisco Access Environmental Monitor MIB objects definitions
|
|
||||||
|
|
||||||
caemObjects OBJECT IDENTIFIER ::= { ciscoAccessEnvMonMIB 1 }
|
|
||||||
|
|
||||||
--
|
|
||||||
-- Cisco Access Environmental Monitor power supply table
|
|
||||||
-- This table augments the ciscoEnvMonSupplyStatusTable defined in
|
|
||||||
-- CISCO-ENVMON-MIB.
|
|
||||||
--
|
|
||||||
caemSupplyStatusTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF CaemSupplyStatusEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The table contains the additional power supply information
|
|
||||||
that are not covered in the ciscoEnvMonSupplyStatusTable of
|
|
||||||
CISCO-ENVMON-MIB.
|
|
||||||
"
|
|
||||||
::= { caemObjects 1 }
|
|
||||||
|
|
||||||
caemSupplyStatusEntry OBJECT-TYPE
|
|
||||||
SYNTAX CaemSupplyStatusEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Additional information about the failure component or location
|
|
||||||
in the power Supply beyond that provided by Cisco Environmental
|
|
||||||
Monitor MIB's ciscoEnvMonSupplyStatusEntry.
|
|
||||||
"
|
|
||||||
AUGMENTS { ciscoEnvMonSupplyStatusEntry }
|
|
||||||
::= { caemSupplyStatusTable 1 }
|
|
||||||
|
|
||||||
CaemSupplyStatusEntry ::=
|
|
||||||
SEQUENCE {
|
|
||||||
caemSupplyFailedComponent INTEGER
|
|
||||||
}
|
|
||||||
|
|
||||||
caemSupplyFailedComponent OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
none (1),
|
|
||||||
inputVoltage (2),
|
|
||||||
dcOutputVoltage (3),
|
|
||||||
thermal (4),
|
|
||||||
multiple (5),
|
|
||||||
fan (6),
|
|
||||||
overvoltage (7)
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The failure component of the power supply being instrumented.
|
|
||||||
none - No failure.
|
|
||||||
inputVoltage - Input power lost in one of the power supplies
|
|
||||||
dcOutputVoltage - DC output voltage lost in one of the power supplies
|
|
||||||
thermal - Power supply thermal failure.
|
|
||||||
multiple - Multiple failures.
|
|
||||||
fan - Fan failure
|
|
||||||
overvoltage - Over voltage.
|
|
||||||
"
|
|
||||||
::= { caemSupplyStatusEntry 1 }
|
|
||||||
|
|
||||||
--****************************************************************************
|
|
||||||
-- Notifications
|
|
||||||
--****************************************************************************
|
|
||||||
|
|
||||||
caemMIBNotificationPrefix
|
|
||||||
OBJECT IDENTIFIER ::= { ciscoAccessEnvMonMIB 2 }
|
|
||||||
caemMIBNotifications
|
|
||||||
OBJECT IDENTIFIER ::= { caemMIBNotificationPrefix 0 }
|
|
||||||
|
|
||||||
|
|
||||||
caemTemperatureNotification NOTIFICATION-TYPE
|
|
||||||
OBJECTS {
|
|
||||||
ciscoEnvMonTemperatureStatusDescr,
|
|
||||||
ciscoEnvMonTemperatureState
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A caemTemperatureNotification is sent if the over temperature
|
|
||||||
condition is detected in the managed system.
|
|
||||||
This is a replacement for the ciscoEnvMonTemperatureNotification
|
|
||||||
trap because the information 'ciscoEnvMonTemperatureStatusValue'
|
|
||||||
required by the trap is not available in the managed system.
|
|
||||||
"
|
|
||||||
::= { caemMIBNotifications 1 }
|
|
||||||
|
|
||||||
|
|
||||||
caemVoltageNotification NOTIFICATION-TYPE
|
|
||||||
OBJECTS {
|
|
||||||
ciscoEnvMonVoltageStatusDescr,
|
|
||||||
ciscoEnvMonVoltageState
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A caemVoltageNotification is sent if the over voltage
|
|
||||||
condition is detected and ciscoEnvMonVoltageState is not set
|
|
||||||
to 'notPresent' in the managed system.
|
|
||||||
This is a replacement for the ciscoEnvMonVoltageNotification
|
|
||||||
trap because the information 'ciscoEnvMonVoltageStatusValue'
|
|
||||||
required by the trap is not available in the managed system.
|
|
||||||
"
|
|
||||||
::= { caemMIBNotifications 2 }
|
|
||||||
|
|
||||||
|
|
||||||
caemConformance OBJECT IDENTIFIER ::=
|
|
||||||
{ ciscoAccessEnvMonMIB 3 }
|
|
||||||
caemCompliances OBJECT IDENTIFIER ::=
|
|
||||||
{ caemConformance 1 }
|
|
||||||
caemGroups OBJECT IDENTIFIER ::=
|
|
||||||
{ caemConformance 2 }
|
|
||||||
|
|
||||||
-- compliance statements
|
|
||||||
|
|
||||||
caemCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for entities which implement
|
|
||||||
the Cisco Environmental Monitor Supplemental MIB."
|
|
||||||
MODULE -- this module
|
|
||||||
MANDATORY-GROUPS
|
|
||||||
{ caemGroup }
|
|
||||||
::= { caemCompliances 1 }
|
|
||||||
|
|
||||||
-- units of conformance
|
|
||||||
|
|
||||||
|
|
||||||
caemGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
caemSupplyFailedComponent
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of objects providing the additional Environmental
|
|
||||||
Monitor information beyond that provided by
|
|
||||||
Cisco Environmental Monitor MIB.
|
|
||||||
"
|
|
||||||
::= { caemGroups 1 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
||||||
|
|
@ -1,578 +0,0 @@
|
|||||||
-- *****************************************************************
|
|
||||||
-- CISCO-ADMISSION-POLICY-MIB.my
|
|
||||||
--
|
|
||||||
-- April 2008, Edward Pham
|
|
||||||
--
|
|
||||||
-- Copyright (c) 2008 by cisco Systems Inc.
|
|
||||||
-- All rights reserved.
|
|
||||||
--
|
|
||||||
-- *****************************************************************
|
|
||||||
|
|
||||||
CISCO-ADMISSION-POLICY-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY,
|
|
||||||
OBJECT-TYPE,
|
|
||||||
Gauge32,
|
|
||||||
Integer32,
|
|
||||||
Counter32
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
|
|
||||||
MODULE-COMPLIANCE,
|
|
||||||
OBJECT-GROUP
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
|
|
||||||
TEXTUAL-CONVENTION,
|
|
||||||
MacAddress
|
|
||||||
FROM SNMPv2-TC
|
|
||||||
|
|
||||||
InetAddressType,
|
|
||||||
InetAddress
|
|
||||||
FROM INET-ADDRESS-MIB
|
|
||||||
|
|
||||||
InterfaceIndex
|
|
||||||
FROM IF-MIB
|
|
||||||
|
|
||||||
ciscoMgmt
|
|
||||||
FROM CISCO-SMI;
|
|
||||||
|
|
||||||
ciscoAdmissionPolicyMIB MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200806110000Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
Customer Service
|
|
||||||
|
|
||||||
Postal: 170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
|
|
||||||
E-mail: cs-snmp@cisco.com"
|
|
||||||
DESCRIPTION
|
|
||||||
"This MIB module defines managed objects that facilitate
|
|
||||||
the management of policies upon host(s) admission to
|
|
||||||
a network.
|
|
||||||
|
|
||||||
The information available through this MIB includes:
|
|
||||||
|
|
||||||
o Statistics information such as number of total and
|
|
||||||
active sessions.
|
|
||||||
|
|
||||||
o Session information such as IP and MAC address of
|
|
||||||
host, client type, and session state.
|
|
||||||
|
|
||||||
o QoS and Security policy applied to host traffic upon
|
|
||||||
host admission to a network.
|
|
||||||
|
|
||||||
The following terms are used throughout this MIB:
|
|
||||||
|
|
||||||
QoS (Quality of Service) is the method which attempts
|
|
||||||
to ensure that the network requirements of different
|
|
||||||
applications can be met by giving preferential forwarding
|
|
||||||
treatment to some traffic.
|
|
||||||
|
|
||||||
ACL (Access Control List) which contains filters used
|
|
||||||
to identify traffic flows with certain characteristics.
|
|
||||||
|
|
||||||
Downloadable ACL is a set of filters, configured on the
|
|
||||||
RADIUS server which are downloaded during authorization
|
|
||||||
phase of admission features like dot1x, authProxy, etc.
|
|
||||||
|
|
||||||
SGT (Security Group Tag) is a unique 16 bits value assigned
|
|
||||||
to every security group and used by network devices to
|
|
||||||
enforce network policies.
|
|
||||||
|
|
||||||
URL: Universal Resource Locator.
|
|
||||||
|
|
||||||
URL-Redirect ACL is used for URL redirection feature. Any
|
|
||||||
ingress HTTP from the host that matches the ACL content
|
|
||||||
is subjected to redirection to the URL address specified by
|
|
||||||
the URL-Redirect string.
|
|
||||||
|
|
||||||
URL redirect string is the URL to which HTTP traffic to
|
|
||||||
the host would be redirected."
|
|
||||||
REVISION "200806110000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Initial version of this MIB module."
|
|
||||||
::= { ciscoMgmt 653 }
|
|
||||||
|
|
||||||
--
|
|
||||||
-- Definitions of textual convention
|
|
||||||
--
|
|
||||||
|
|
||||||
CapSessionId ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An octet string describes an unique session identification."
|
|
||||||
SYNTAX OCTET STRING (SIZE (1..64))
|
|
||||||
|
|
||||||
CapQosPolicy ::= TEXTUAL-CONVENTION
|
|
||||||
DISPLAY-HINT "255a"
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An octet string, preferably in human-readable form,
|
|
||||||
describes a QoS policy."
|
|
||||||
SYNTAX OCTET STRING (SIZE (0..255))
|
|
||||||
|
|
||||||
CapAclName ::= TEXTUAL-CONVENTION
|
|
||||||
DISPLAY-HINT "255a"
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An octet string, preferably in human-readable form,
|
|
||||||
describes the name of an ACL."
|
|
||||||
SYNTAX OCTET STRING (SIZE (0..255))
|
|
||||||
|
|
||||||
CapURLString ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This textual convention defines the URL string.
|
|
||||||
The Universal Resource Locator (URL). The URL strings
|
|
||||||
are compact string representation for a resource
|
|
||||||
available via internet. This is the address location
|
|
||||||
of the page to load. The string should represent a
|
|
||||||
fully qualifying string with the format
|
|
||||||
'protocol:/server/page'. In general the string should
|
|
||||||
point to any value that can be saved/loaded.
|
|
||||||
Any limitation for the URL must be defined as part of
|
|
||||||
the description of any object which uses this syntax.
|
|
||||||
The description of any object which uses this syntax
|
|
||||||
must specifically describe the meaning of zero length
|
|
||||||
value."
|
|
||||||
REFERENCE
|
|
||||||
"Uniform Resource Locators. RFC 1738."
|
|
||||||
SYNTAX OCTET STRING (SIZE(0..255))
|
|
||||||
|
|
||||||
CapPolicyState ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This textual convention indicates the current state
|
|
||||||
of a policy applied to host traffic.
|
|
||||||
|
|
||||||
'notApplicable' indicates that the policy is not applicable.
|
|
||||||
|
|
||||||
'success' indicates that the policy is applied successfully.
|
|
||||||
|
|
||||||
'failure' indicates that the policy is failed to apply.
|
|
||||||
|
|
||||||
'inProgress' indicates that the policy application is
|
|
||||||
in progress.
|
|
||||||
|
|
||||||
'ipWait' indicates that the policy is waiting for IP
|
|
||||||
address assignment. "
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
notApplicable(1),
|
|
||||||
success(2),
|
|
||||||
failure(3),
|
|
||||||
inProgress(4),
|
|
||||||
ipWait(5)
|
|
||||||
}
|
|
||||||
--
|
|
||||||
-- Objects definition
|
|
||||||
--
|
|
||||||
|
|
||||||
ciscoAdmissionPolicyMIBNotifs OBJECT IDENTIFIER
|
|
||||||
::= { ciscoAdmissionPolicyMIB 0 }
|
|
||||||
|
|
||||||
ciscoAdmissionPolicyMIBObjects OBJECT IDENTIFIER
|
|
||||||
::= { ciscoAdmissionPolicyMIB 1 }
|
|
||||||
|
|
||||||
ciscoAdmissionPolicyMIBConformance OBJECT IDENTIFIER
|
|
||||||
::= { ciscoAdmissionPolicyMIB 2 }
|
|
||||||
|
|
||||||
capSessions
|
|
||||||
OBJECT IDENTIFIER ::= { ciscoAdmissionPolicyMIBObjects 1 }
|
|
||||||
|
|
||||||
|
|
||||||
--
|
|
||||||
-- capSessions
|
|
||||||
--
|
|
||||||
|
|
||||||
capTotalSessions OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object indicates the total numbers of sessions
|
|
||||||
created in the device since the last system reset."
|
|
||||||
::= { capSessions 1 }
|
|
||||||
|
|
||||||
capActiveSessions OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object indicates the currently active sessions
|
|
||||||
in the device."
|
|
||||||
::= { capSessions 2 }
|
|
||||||
|
|
||||||
--
|
|
||||||
-- Session Information Table
|
|
||||||
--
|
|
||||||
|
|
||||||
capSidSessionInfoTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF CapSidSessionInfoEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This table lists admission policy sessions based on unique
|
|
||||||
session identifier.
|
|
||||||
|
|
||||||
An entry is created by the agent when an admission policy
|
|
||||||
session has successfully registered to the system.
|
|
||||||
|
|
||||||
An entry is deleted by the agent upon de-registration of the
|
|
||||||
admission policy session with system."
|
|
||||||
::= { capSessions 3 }
|
|
||||||
|
|
||||||
capSidSessionInfoEntry OBJECT-TYPE
|
|
||||||
SYNTAX CapSidSessionInfoEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Each row contains the management information of a particular
|
|
||||||
active session based on unique session identifier."
|
|
||||||
INDEX { IMPLIED capSidSessionIndex }
|
|
||||||
::= { capSidSessionInfoTable 1 }
|
|
||||||
|
|
||||||
CapSidSessionInfoEntry ::= SEQUENCE {
|
|
||||||
capSidSessionIndex CapSessionId,
|
|
||||||
capSidSessionIfIndex InterfaceIndex,
|
|
||||||
capSidSessionMacAddress MacAddress,
|
|
||||||
capSidSessionAddressType InetAddressType,
|
|
||||||
capSidSessionAddress InetAddress,
|
|
||||||
capSidSessionFeatureType BITS
|
|
||||||
}
|
|
||||||
|
|
||||||
capSidSessionIndex OBJECT-TYPE
|
|
||||||
SYNTAX CapSessionId
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object uniquely identifies a session."
|
|
||||||
::= { capSidSessionInfoEntry 1 }
|
|
||||||
|
|
||||||
capSidSessionIfIndex OBJECT-TYPE
|
|
||||||
SYNTAX InterfaceIndex
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object indicates the ifIndex value of the interface
|
|
||||||
on which the session is established."
|
|
||||||
::= { capSidSessionInfoEntry 2 }
|
|
||||||
|
|
||||||
capSidSessionMacAddress OBJECT-TYPE
|
|
||||||
SYNTAX MacAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object indicates the MAC address of the host."
|
|
||||||
::= { capSidSessionInfoEntry 3 }
|
|
||||||
|
|
||||||
capSidSessionAddressType OBJECT-TYPE
|
|
||||||
SYNTAX InetAddressType
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object indicates the type of Internet address
|
|
||||||
assigned for the host."
|
|
||||||
::= { capSidSessionInfoEntry 4 }
|
|
||||||
|
|
||||||
capSidSessionAddress OBJECT-TYPE
|
|
||||||
SYNTAX InetAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object indicates the Internet address assigned for
|
|
||||||
the host. The type of this address is determined by
|
|
||||||
the value of capSidSessionAddressType object."
|
|
||||||
::= { capSidSessionInfoEntry 5 }
|
|
||||||
|
|
||||||
capSidSessionFeatureType OBJECT-TYPE
|
|
||||||
SYNTAX BITS {
|
|
||||||
dot1x(0),
|
|
||||||
mab(1),
|
|
||||||
eou(2),
|
|
||||||
authProxy(3)
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object indicates the admission features associated
|
|
||||||
with the session.
|
|
||||||
|
|
||||||
'dot1x' indicates that the admission feature is
|
|
||||||
802.1x feature.
|
|
||||||
|
|
||||||
'mab' indicates that the admission feature is
|
|
||||||
Mac Authentication Bypass feature.
|
|
||||||
|
|
||||||
'eou' indicates that the admission feature is
|
|
||||||
Extensible Authentication Protocol over UDP feature.
|
|
||||||
|
|
||||||
'authProxy' indicates that the admission feature is
|
|
||||||
Authentication Proxy feature."
|
|
||||||
::= { capSidSessionInfoEntry 6 }
|
|
||||||
|
|
||||||
--
|
|
||||||
-- Session Policy Table
|
|
||||||
--
|
|
||||||
|
|
||||||
capSidSessionPolicyTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF CapSidSessionPolicyEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This table lists the policies that will be enforced
|
|
||||||
per session per admission feature. The session in this
|
|
||||||
table should have a corresponding entry in
|
|
||||||
capSidSessionInfoTable."
|
|
||||||
::= { capSessions 4 }
|
|
||||||
|
|
||||||
capSidSessionPolicyEntry OBJECT-TYPE
|
|
||||||
SYNTAX CapSidSessionPolicyEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Each row contains the management information of a
|
|
||||||
particular admission feature of a session."
|
|
||||||
INDEX { capSidSessionIndex, capSidSessionPolicyIndex }
|
|
||||||
::= { capSidSessionPolicyTable 1 }
|
|
||||||
|
|
||||||
CapSidSessionPolicyEntry ::= SEQUENCE {
|
|
||||||
capSidSessionPolicyIndex INTEGER,
|
|
||||||
capSidIngressQosPolicy CapQosPolicy,
|
|
||||||
capSidIngressQosPolicyState CapPolicyState,
|
|
||||||
capSidEgressQosPolicy CapQosPolicy,
|
|
||||||
capSidEgressQosPolicyState CapPolicyState,
|
|
||||||
capSidDownloadableAclName CapAclName,
|
|
||||||
capSidDownloadableAclState CapPolicyState,
|
|
||||||
capSidUrlRedirectAclName CapAclName,
|
|
||||||
capSidUrlRedirectAclState CapPolicyState,
|
|
||||||
capSidRedirectUrlString CapURLString,
|
|
||||||
capSidRedirectUrlStringState CapPolicyState,
|
|
||||||
capSidSecurityGroupTag Integer32
|
|
||||||
}
|
|
||||||
|
|
||||||
capSidSessionPolicyIndex OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
dot1x(1),
|
|
||||||
mab(2),
|
|
||||||
eou(3),
|
|
||||||
authProxy(4)
|
|
||||||
}
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object indicates the admission feature which
|
|
||||||
a host is subjected to in a session.
|
|
||||||
|
|
||||||
'dot1x' indicates that the admission feature is
|
|
||||||
802.1x feature.
|
|
||||||
|
|
||||||
'mab' indicates that the admission feature is
|
|
||||||
Mac Authentication Bypass feature.
|
|
||||||
|
|
||||||
'eou' indicates that the admission feature is
|
|
||||||
Extensible Authentication Protocol over UDP feature.
|
|
||||||
|
|
||||||
'authProxy' indicates that the admission feature is
|
|
||||||
Authentication Proxy feature."
|
|
||||||
::= { capSidSessionPolicyEntry 1 }
|
|
||||||
|
|
||||||
capSidIngressQosPolicy OBJECT-TYPE
|
|
||||||
SYNTAX CapQosPolicy
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object indicates the name of an existing QoS
|
|
||||||
policy which will be applied to incoming traffic
|
|
||||||
in this session. An empty string indicates that no such
|
|
||||||
policy is applied."
|
|
||||||
::= { capSidSessionPolicyEntry 2 }
|
|
||||||
|
|
||||||
capSidIngressQosPolicyState OBJECT-TYPE
|
|
||||||
SYNTAX CapPolicyState
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object indicates the current state of the
|
|
||||||
QoS policy which will be applied to incoming traffic
|
|
||||||
in this session."
|
|
||||||
::= { capSidSessionPolicyEntry 3 }
|
|
||||||
|
|
||||||
capSidEgressQosPolicy OBJECT-TYPE
|
|
||||||
SYNTAX CapQosPolicy
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object indicates the name of an existing QoS
|
|
||||||
policy which will be applied to outgoing traffic
|
|
||||||
in this session. An empty string indicates that no
|
|
||||||
such policy is applied."
|
|
||||||
::= { capSidSessionPolicyEntry 4 }
|
|
||||||
|
|
||||||
capSidEgressQosPolicyState OBJECT-TYPE
|
|
||||||
SYNTAX CapPolicyState
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object indicates the current state of the QoS
|
|
||||||
policy which will be applied to outgoing traffic
|
|
||||||
in this session."
|
|
||||||
::= { capSidSessionPolicyEntry 5 }
|
|
||||||
|
|
||||||
capSidDownloadableAclName OBJECT-TYPE
|
|
||||||
SYNTAX CapAclName
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object indicates the name of a Downloadable
|
|
||||||
ACL which will be applied to the host traffic.
|
|
||||||
An empty string indicates that no such ACL is
|
|
||||||
applied."
|
|
||||||
::= { capSidSessionPolicyEntry 6 }
|
|
||||||
|
|
||||||
capSidDownloadableAclState OBJECT-TYPE
|
|
||||||
SYNTAX CapPolicyState
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object indicates the state of this session
|
|
||||||
downloadable ACL policy."
|
|
||||||
::= { capSidSessionPolicyEntry 7 }
|
|
||||||
|
|
||||||
capSidUrlRedirectAclName OBJECT-TYPE
|
|
||||||
SYNTAX CapAclName
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object indicates the ACL name that redirected traffic
|
|
||||||
from the host will be subjected to. An empty string indicates
|
|
||||||
that no such ACL is applied."
|
|
||||||
::= { capSidSessionPolicyEntry 8 }
|
|
||||||
|
|
||||||
capSidUrlRedirectAclState OBJECT-TYPE
|
|
||||||
SYNTAX CapPolicyState
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object indicates the state of this session
|
|
||||||
URL-Redirect ACL policy."
|
|
||||||
::= { capSidSessionPolicyEntry 9 }
|
|
||||||
|
|
||||||
capSidRedirectUrlString OBJECT-TYPE
|
|
||||||
SYNTAX CapURLString
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object indicates the URL that traffic from
|
|
||||||
the host will be redirected to. An empty string indicates
|
|
||||||
that no such URL is applied."
|
|
||||||
::= { capSidSessionPolicyEntry 10 }
|
|
||||||
|
|
||||||
capSidRedirectUrlStringState OBJECT-TYPE
|
|
||||||
SYNTAX CapPolicyState
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object indicates the state of this session
|
|
||||||
URL-Redirect string policy."
|
|
||||||
::= { capSidSessionPolicyEntry 11 }
|
|
||||||
|
|
||||||
capSidSecurityGroupTag OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (-1 | 0..65535)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object indicates the SGT value assigned to the
|
|
||||||
host that initiated this session. Value of -1 indicates
|
|
||||||
that there is no SGT value assigned."
|
|
||||||
::= { capSidSessionPolicyEntry 12 }
|
|
||||||
|
|
||||||
--
|
|
||||||
-- Conformance
|
|
||||||
--
|
|
||||||
|
|
||||||
ciscoAdmissionPolicyMIBCompliances
|
|
||||||
OBJECT IDENTIFIER ::= { ciscoAdmissionPolicyMIBConformance 1 }
|
|
||||||
|
|
||||||
ciscoAdmissionPolicyMIBGroups
|
|
||||||
OBJECT IDENTIFIER ::= { ciscoAdmissionPolicyMIBConformance 2 }
|
|
||||||
|
|
||||||
ciscoAdmissionPolicyMIBCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for the CISCO-ADMISSION-POLICY-MIB"
|
|
||||||
MODULE
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
capSessionStatisticsGroup
|
|
||||||
}
|
|
||||||
|
|
||||||
GROUP capSidSessionPolicyGroup
|
|
||||||
DESCRIPTION
|
|
||||||
"This group is mandatory only for platforms which support
|
|
||||||
policy information for a session based on unique session
|
|
||||||
identifier."
|
|
||||||
|
|
||||||
GROUP capSidSessionInfoGroup
|
|
||||||
DESCRIPTION
|
|
||||||
"This group is mandatory only for platforms which provide
|
|
||||||
session information based on unique session identifier."
|
|
||||||
|
|
||||||
::= { ciscoAdmissionPolicyMIBCompliances 1 }
|
|
||||||
|
|
||||||
--
|
|
||||||
-- Units of Conformance
|
|
||||||
--
|
|
||||||
|
|
||||||
capSessionStatisticsGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
capTotalSessions,
|
|
||||||
capActiveSessions
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of object which provides session statistics
|
|
||||||
information in the device."
|
|
||||||
::= { ciscoAdmissionPolicyMIBGroups 1 }
|
|
||||||
|
|
||||||
capSidSessionInfoGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
capSidSessionAddressType,
|
|
||||||
capSidSessionAddress,
|
|
||||||
capSidSessionIfIndex,
|
|
||||||
capSidSessionMacAddress,
|
|
||||||
capSidSessionFeatureType
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of objects which provides managed information
|
|
||||||
of a session based on unique session identifier."
|
|
||||||
::= { ciscoAdmissionPolicyMIBGroups 2 }
|
|
||||||
|
|
||||||
capSidSessionPolicyGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
capSidIngressQosPolicy,
|
|
||||||
capSidIngressQosPolicyState,
|
|
||||||
capSidEgressQosPolicy,
|
|
||||||
capSidEgressQosPolicyState,
|
|
||||||
capSidDownloadableAclName,
|
|
||||||
capSidDownloadableAclState,
|
|
||||||
capSidRedirectUrlString,
|
|
||||||
capSidRedirectUrlStringState,
|
|
||||||
capSidUrlRedirectAclName,
|
|
||||||
capSidUrlRedirectAclState,
|
|
||||||
capSidSecurityGroupTag
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of objects which provides policy information
|
|
||||||
in a session based on unique session identifier."
|
|
||||||
::= { ciscoAdmissionPolicyMIBGroups 3 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,799 +0,0 @@
|
|||||||
-- *****************************************************************
|
|
||||||
-- Description of managed objects for ADSL CAP line interfaces.
|
|
||||||
--
|
|
||||||
-- October 1999 Patrick Gili
|
|
||||||
--
|
|
||||||
-- Copyright (c) 1999, 2000, 2001 by cisco Systems, Inc.
|
|
||||||
-- All rights reserved.
|
|
||||||
-- *****************************************************************
|
|
||||||
|
|
||||||
CISCO-ADSL-CAP-LINE-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
Counter32,
|
|
||||||
Gauge32,
|
|
||||||
Integer32,
|
|
||||||
MODULE-IDENTITY,
|
|
||||||
OBJECT-TYPE FROM SNMPv2-SMI
|
|
||||||
TEXTUAL-CONVENTION,
|
|
||||||
TruthValue FROM SNMPv2-TC
|
|
||||||
MODULE-COMPLIANCE,
|
|
||||||
OBJECT-GROUP FROM SNMPv2-CONF
|
|
||||||
ciscoMgmt FROM CISCO-SMI
|
|
||||||
AdslPerfCurrDayCount,
|
|
||||||
AdslPerfPrevDayCount FROM ADSL-TC-MIB
|
|
||||||
adslAtucIntervalNumber,
|
|
||||||
adslLineConfProfileName FROM ADSL-LINE-MIB
|
|
||||||
ifIndex FROM IF-MIB
|
|
||||||
PerfCurrentCount,
|
|
||||||
PerfIntervalCount FROM PerfHist-TC-MIB
|
|
||||||
;
|
|
||||||
|
|
||||||
ciscoAdslLineCapMIB MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200103010000Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO "Cisco Systems
|
|
||||||
Customer Service
|
|
||||||
|
|
||||||
Postal: 170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
|
|
||||||
E-mail: cs-dslam.com"
|
|
||||||
DESCRIPTION
|
|
||||||
"This MIB module serves as an enterprise-specific extension of
|
|
||||||
the ADSL-LINE-MIB. The structure of this MIB module shadows
|
|
||||||
the structure of the ADSL-LINE-MIB, table for table. The tables
|
|
||||||
defined by this MIB module contain managed objects that meet the
|
|
||||||
following criteria:
|
|
||||||
|
|
||||||
1) A managed object represents an attribute or characteristic
|
|
||||||
specific to CAP (Carrierless AM/PM) modems.
|
|
||||||
|
|
||||||
2) The ADSL-CAP-LINE-MIB does not already contain a managed
|
|
||||||
object representing the same information as this managed
|
|
||||||
object.
|
|
||||||
|
|
||||||
Observe that entries contained by the tables in this MIB module
|
|
||||||
do not augment the corresponding entries in the ADSL-LINE-MIB,
|
|
||||||
as every modem represented by the ADSL-LINE-MIB is not
|
|
||||||
necessarily a CAP modem.
|
|
||||||
|
|
||||||
Also observe that entries contained by the tables in this MIB
|
|
||||||
module do not augment the corresponding entries in the
|
|
||||||
ADSL-CAP-LINE-MIB, as this assumes that the ADSL-CAP-LINE-MIB
|
|
||||||
defines tables that correspond to every table defined by the
|
|
||||||
ADSL-LINE-MIB. At this time, this assumption does not hold
|
|
||||||
true.
|
|
||||||
|
|
||||||
*** ABBREVIATIONS, ACRONYMS, AND SYMBOLS ***
|
|
||||||
|
|
||||||
ADSL - Asymmetric Digital Subscriber Line.
|
|
||||||
|
|
||||||
ATM - Asynchronous Transfer Mode.
|
|
||||||
|
|
||||||
ATU-C - ADSL Transceiver Unit, Central Office end.
|
|
||||||
|
|
||||||
ATU-R - ADSL Transceiver Unit, Remote terminal end.
|
|
||||||
|
|
||||||
BER - Bit Error Ratio.
|
|
||||||
|
|
||||||
CAP - Carrierless Amplitude Modulation / Pulse Modulation.
|
|
||||||
|
|
||||||
DSL - Digital Subscriber Line.
|
|
||||||
|
|
||||||
SNR - Signal-to-Noise Ratio.
|
|
||||||
|
|
||||||
STM - Synchronous Transfer Mode.
|
|
||||||
|
|
||||||
*** DEFINITIONS ***
|
|
||||||
|
|
||||||
DOWNSTREAM
|
|
||||||
The flow of data in the direction from the ATU-C to ATU-R.
|
|
||||||
|
|
||||||
MARGIN (also referred to as 'SNR margin')
|
|
||||||
The difference between the SNR of the received signal and
|
|
||||||
the SNR required to provide a BER of 10E-7.
|
|
||||||
|
|
||||||
SYMBOL
|
|
||||||
The number of bits the transmitter is capable of
|
|
||||||
multiplexing and modulating in a single signalling interval.
|
|
||||||
|
|
||||||
SYMBOL RATE
|
|
||||||
The rate at which all symbols are transmitted.
|
|
||||||
|
|
||||||
UPSTREAM
|
|
||||||
The flow of data in the direction from the ATU-R to ATU-C."
|
|
||||||
|
|
||||||
REVISION "200103010000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Changed MAX-ACCESS for cAdslAtucCapConfUp17KBaudEnable to
|
|
||||||
read-create due to the the bug fix of MAX-ACCESS in the
|
|
||||||
broken MIB object."
|
|
||||||
|
|
||||||
::= { ciscoMgmt 149 }
|
|
||||||
|
|
||||||
-- Textual Conventions
|
|
||||||
|
|
||||||
AdslLineCapDownstreamRate ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The downstream line rate at which an ADSL line can train at,
|
|
||||||
given an ATU-C and ATU-R implementing the CAP line code."
|
|
||||||
SYNTAX INTEGER ( 7168000 |
|
|
||||||
6272000 |
|
|
||||||
5120000 |
|
|
||||||
4480000 |
|
|
||||||
3200000 |
|
|
||||||
2688000 |
|
|
||||||
2560000 |
|
|
||||||
2240000 |
|
|
||||||
1920000 |
|
|
||||||
1600000 |
|
|
||||||
1280000 |
|
|
||||||
1024000 |
|
|
||||||
960000 |
|
|
||||||
896000 |
|
|
||||||
768000 |
|
|
||||||
640000 |
|
|
||||||
512000 |
|
|
||||||
384000 |
|
|
||||||
256000 |
|
|
||||||
0 )
|
|
||||||
|
|
||||||
AdslLineCapUpstreamRate ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The upstream line rate at which an ADSL line can train at,
|
|
||||||
given an ATU-C and ATU-R implementing the CAP line code."
|
|
||||||
SYNTAX INTEGER ( 1088000 |
|
|
||||||
952000 |
|
|
||||||
816000 |
|
|
||||||
680000 |
|
|
||||||
544000 |
|
|
||||||
408000 |
|
|
||||||
272000 |
|
|
||||||
91000 |
|
|
||||||
0 )
|
|
||||||
|
|
||||||
-- MIB Objects Definitions
|
|
||||||
|
|
||||||
ciscoAdslLineCapMIBObjects OBJECT IDENTIFIER
|
|
||||||
::= { ciscoAdslLineCapMIB 1 }
|
|
||||||
|
|
||||||
-- ADSL ATU-C CAP Physical-Layer Parameters Table
|
|
||||||
|
|
||||||
cAdslAtucCapPhysTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF CAdslAtucCapPhysEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This table extends the adslAtucPhysTable and contains
|
|
||||||
enterprise-specific physical layer parameters for the ATU-C
|
|
||||||
class devices supported by the system."
|
|
||||||
::= { ciscoAdslLineCapMIBObjects 2 }
|
|
||||||
|
|
||||||
cAdslAtucCapPhysEntry OBJECT-TYPE
|
|
||||||
SYNTAX CAdslAtucCapPhysEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A set of enterprise-specific physical-layer parameters for an
|
|
||||||
ATU-C class device supported by the system. There exists an
|
|
||||||
entry for each ifEntry with an ifType of adsl(94) and an
|
|
||||||
adslLineCoding of cap(3)."
|
|
||||||
INDEX { ifIndex }
|
|
||||||
::= { cAdslAtucCapPhysTable 1 }
|
|
||||||
|
|
||||||
CAdslAtucCapPhysEntry ::= SEQUENCE {
|
|
||||||
cAdslAtucCapCurrState INTEGER,
|
|
||||||
cAdslAtucCapCurrRxGain Gauge32,
|
|
||||||
cAdslAtucCapCurrRxSnr Gauge32
|
|
||||||
}
|
|
||||||
|
|
||||||
cAdslAtucCapCurrState OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
other(1),
|
|
||||||
idle(2), -- Administratively down.
|
|
||||||
training(3), -- Transceiver training in progress.
|
|
||||||
steadyState(4), -- Nominal mode of operation.
|
|
||||||
downloading(5), -- ATU-C code download in progress.
|
|
||||||
downloadFailed(6), -- ATU-C code download failed.
|
|
||||||
testing(7) -- Test in progress.
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object specifies the state of the ATU-C transceiver.
|
|
||||||
|
|
||||||
The value of this managed is 'idle' for an ATU-C that has
|
|
||||||
been provisioned, but is not physically present in the system."
|
|
||||||
::= { cAdslAtucCapPhysEntry 1 }
|
|
||||||
|
|
||||||
cAdslAtucCapCurrRxGain OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
UNITS "tenth dB"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This managed object represents the gain applied to the ATU-C
|
|
||||||
receiver.
|
|
||||||
|
|
||||||
The value of this managed object is '0' for an ATU-C that has
|
|
||||||
been provisioned, but is not physically present in the system."
|
|
||||||
::= { cAdslAtucCapPhysEntry 2 }
|
|
||||||
|
|
||||||
cAdslAtucCapCurrRxSnr OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
UNITS "tenth dB"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This managed object represents the signal-to-noise ratio
|
|
||||||
measured across the the ATU-C receive pair.
|
|
||||||
|
|
||||||
The value of this managed object is '0' for an ATU-C that has
|
|
||||||
been provisioned, but is not physically present in the system."
|
|
||||||
::= { cAdslAtucCapPhysEntry 3 }
|
|
||||||
|
|
||||||
-- ADSL ATU-R CAP Physical-Layer Parameters Table
|
|
||||||
|
|
||||||
cAdslAturCapPhysTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF CAdslAturCapPhysEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This table extends the adslAturPhysTable and contains
|
|
||||||
enterprise-specific physical layer parameters for the ATU-R
|
|
||||||
class devices supported by the system."
|
|
||||||
::= { ciscoAdslLineCapMIBObjects 3 }
|
|
||||||
|
|
||||||
cAdslAturCapPhysEntry OBJECT-TYPE
|
|
||||||
SYNTAX CAdslAturCapPhysEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A set of enterprise-specific physical-layer parameters for an
|
|
||||||
ATU-R class device supported by the system. There exists an
|
|
||||||
entry for each ifEntry with an ifType of adsl(94) and an
|
|
||||||
adslLineCoding of cap(3)."
|
|
||||||
INDEX { ifIndex }
|
|
||||||
::= { cAdslAturCapPhysTable 1 }
|
|
||||||
|
|
||||||
CAdslAturCapPhysEntry ::= SEQUENCE {
|
|
||||||
cAdslAturCapCurrRxGain Gauge32
|
|
||||||
}
|
|
||||||
|
|
||||||
cAdslAturCapCurrRxGain OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
UNITS "tenth dB"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This managed object represents the gain applied to the ATU-R
|
|
||||||
receiver.
|
|
||||||
|
|
||||||
The value of this managed object is '0' if the corresponding
|
|
||||||
ATU-C has been provisioned, but is not physically present in
|
|
||||||
the system."
|
|
||||||
::= { cAdslAturCapPhysEntry 1 }
|
|
||||||
|
|
||||||
-- ADSL ATU-C CAP Physical-Layer Statistics Table
|
|
||||||
|
|
||||||
cAdslAtucCapPerfDataTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF CAdslAtucCapPerfDataEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This table extends the adslAtucPerfDataTable and contains
|
|
||||||
enterprise-specific physical layer statistics for the ATU-C
|
|
||||||
class devices supported by the system."
|
|
||||||
::= { ciscoAdslLineCapMIBObjects 6 }
|
|
||||||
|
|
||||||
cAdslAtucCapPerfDataEntry OBJECT-TYPE
|
|
||||||
SYNTAX CAdslAtucCapPerfDataEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A set of enterprise-specific physical-layer statistics for an
|
|
||||||
ATU-C class device supported by the system. There exists an
|
|
||||||
entry for each ifEntry with an ifType of adsl(94) and an
|
|
||||||
adslLineCoding of cap(3)."
|
|
||||||
INDEX { ifIndex }
|
|
||||||
::= { cAdslAtucCapPerfDataTable 1 }
|
|
||||||
|
|
||||||
CAdslAtucCapPerfDataEntry ::= SEQUENCE {
|
|
||||||
cAdslAtucCapPerfInitFailures Counter32,
|
|
||||||
cAdslAtucCapPerfCurr15MinInitFailures PerfCurrentCount,
|
|
||||||
cAdslAtucCapPerfCurr1DayInitFailures AdslPerfCurrDayCount,
|
|
||||||
cAdslAtucCapPerfPrev1DayInitFailures AdslPerfPrevDayCount
|
|
||||||
}
|
|
||||||
|
|
||||||
cAdslAtucCapPerfInitFailures OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object specifies the number of line initialization
|
|
||||||
failures relative to sysUpTime."
|
|
||||||
::= { cAdslAtucCapPerfDataEntry 1 }
|
|
||||||
|
|
||||||
cAdslAtucCapPerfCurr15MinInitFailures OBJECT-TYPE
|
|
||||||
SYNTAX PerfCurrentCount
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object specifies the number of line initialization
|
|
||||||
failures in the current 15-minute interval."
|
|
||||||
::= { cAdslAtucCapPerfDataEntry 2 }
|
|
||||||
|
|
||||||
cAdslAtucCapPerfCurr1DayInitFailures OBJECT-TYPE
|
|
||||||
SYNTAX AdslPerfCurrDayCount
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object specifies the number of line initialization
|
|
||||||
failures in the current 1-day interval."
|
|
||||||
::= { cAdslAtucCapPerfDataEntry 3 }
|
|
||||||
|
|
||||||
cAdslAtucCapPerfPrev1DayInitFailures OBJECT-TYPE
|
|
||||||
SYNTAX AdslPerfPrevDayCount
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object specifies the number of line initialization
|
|
||||||
failures in the previous 1-day interval."
|
|
||||||
::= { cAdslAtucCapPerfDataEntry 4 }
|
|
||||||
|
|
||||||
-- ADSL ATU-C CAP Physical-Layer Statistics 15-Minute Interval Table
|
|
||||||
|
|
||||||
cAdslAtucCapIntervalTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF CAdslAtucCapIntervalEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This table extends the adslAtucIntervalTable and contains
|
|
||||||
enterprise-specific physical layer statistics intervals for
|
|
||||||
the ATU-C class devices supported by the system."
|
|
||||||
::= { ciscoAdslLineCapMIBObjects 8 }
|
|
||||||
|
|
||||||
cAdslAtucCapIntervalEntry OBJECT-TYPE
|
|
||||||
SYNTAX CAdslAtucCapIntervalEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A 15-minute interval of enterprise-specific physical-layer
|
|
||||||
statistics for an ATU-C class device supported by the system.
|
|
||||||
There exists up to 96 entries for each ifEntry with an ifType
|
|
||||||
of adsl(94) and an adslLineCoding of cap(3)."
|
|
||||||
INDEX { ifIndex, adslAtucIntervalNumber}
|
|
||||||
::= { cAdslAtucCapIntervalTable 1 }
|
|
||||||
|
|
||||||
CAdslAtucCapIntervalEntry ::= SEQUENCE {
|
|
||||||
cAdslAtucCapIntervalInitFailures PerfIntervalCount
|
|
||||||
}
|
|
||||||
|
|
||||||
cAdslAtucCapIntervalInitFailures OBJECT-TYPE
|
|
||||||
SYNTAX PerfIntervalCount
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object specifies the number of line initialization
|
|
||||||
failures in the interval."
|
|
||||||
::= { cAdslAtucCapIntervalEntry 1 }
|
|
||||||
|
|
||||||
-- Configuration Profile Table
|
|
||||||
|
|
||||||
cAdslLineCapConfProfileTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF CAdslLineCapConfProfileEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This table extends the adslLineConfProfileTable and contains
|
|
||||||
enterprise-specific ADSL line configuration information."
|
|
||||||
::= { ciscoAdslLineCapMIBObjects 14 }
|
|
||||||
|
|
||||||
cAdslLineCapConfProfileEntry OBJECT-TYPE
|
|
||||||
SYNTAX CAdslLineCapConfProfileEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A configuration profile containing enterprise-specific ADSL
|
|
||||||
line configuration information."
|
|
||||||
INDEX { IMPLIED adslLineConfProfileName }
|
|
||||||
::= { cAdslLineCapConfProfileTable 1 }
|
|
||||||
|
|
||||||
CAdslLineCapConfProfileEntry ::= SEQUENCE {
|
|
||||||
cAdslLineCapConfTrainingMode INTEGER,
|
|
||||||
cAdslLineCapConfInterleaveDelay INTEGER,
|
|
||||||
cAdslLineCapConfCpeSignature INTEGER,
|
|
||||||
cAdslAtucCapConfTargetSnrMgn INTEGER,
|
|
||||||
cAdslAtucCapConfMinTxRate AdslLineCapDownstreamRate,
|
|
||||||
cAdslAtucCapConfMaxTxRate AdslLineCapDownstreamRate,
|
|
||||||
cAdslAtucCapConfDown136KBaudEnable TruthValue,
|
|
||||||
cAdslAtucCapConfUp68KBaudEnable TruthValue,
|
|
||||||
cAdslAtucCapConfUp17KBaudEnable TruthValue,
|
|
||||||
cAdslAtucCapConfPsdmLevel Integer32,
|
|
||||||
cAdslAturCapConfTargetSnrMgn INTEGER,
|
|
||||||
cAdslAturCapConfMinTxRate AdslLineCapUpstreamRate,
|
|
||||||
cAdslAturCapConfMaxTxRate AdslLineCapUpstreamRate,
|
|
||||||
cAdslAturCapConfPsdmLevel Integer32
|
|
||||||
}
|
|
||||||
|
|
||||||
cAdslLineCapConfTrainingMode OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
standard(1),
|
|
||||||
fast(2)
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object specifies the mode employed by the ATU-C and
|
|
||||||
ATU-R when training against each other. One of two training
|
|
||||||
modes can be employed:
|
|
||||||
|
|
||||||
- Standard
|
|
||||||
An ATU-C initiates a training sequence using the method
|
|
||||||
defined by T1E1.4/99-161R3. This training mode is the
|
|
||||||
default for ADSL modems employing the CAP line code.
|
|
||||||
|
|
||||||
- Fast
|
|
||||||
An ATU-C initiates a vendor-specific training sequence that
|
|
||||||
can possibly provide a shorter training sequence."
|
|
||||||
REFERENCE
|
|
||||||
"ANSI T1E1.4/99-161R3, Single-Carrier Rate Adaptive Digital
|
|
||||||
Subscriber Line (RADSL)."
|
|
||||||
DEFVAL { standard }
|
|
||||||
::= { cAdslLineCapConfProfileEntry 1 }
|
|
||||||
|
|
||||||
cAdslLineCapConfInterleaveDelay OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
none(1),
|
|
||||||
short(2),
|
|
||||||
long(3)
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object specifies the interleave delay for the
|
|
||||||
downstream channel. The value of this object specifies the
|
|
||||||
mapping (relative spacing) between subsequent input bytes at
|
|
||||||
the interleaver input and their placement in the bit stream
|
|
||||||
at the interleaver output. The value 'long' provides greater
|
|
||||||
separation between consecutive input bytes in the output bit
|
|
||||||
stream, thereby allowing for improved impulse noise immunity
|
|
||||||
at the expense of payload latency."
|
|
||||||
REFERENCE
|
|
||||||
"ANSI T1E1.4/99-161R3, Single-Carrier Rate Adaptive Digital
|
|
||||||
Subscriber Line (RADSL)."
|
|
||||||
DEFVAL { short }
|
|
||||||
::= { cAdslLineCapConfProfileEntry 2 }
|
|
||||||
|
|
||||||
cAdslLineCapConfCpeSignature OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (0..127)
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object specifies the value of the minimum CPE signature
|
|
||||||
expected from ATU-R during training. The value of the CPE
|
|
||||||
signature corresponds to the software version of the ATU-R.
|
|
||||||
|
|
||||||
If the CPE signature advertised by an ATU-R is less than the
|
|
||||||
value of this object, then the ATU-C will be placed into an
|
|
||||||
idle state, thereby preventing the line from training.
|
|
||||||
|
|
||||||
In addition, the agent increments the value of the
|
|
||||||
cAdslAtucCapPerfInitFailures object for each attempt to train
|
|
||||||
by an ATU-R advertising a CPE signature less than the value of
|
|
||||||
this object. When a management client observes the value of
|
|
||||||
cAdslAtucCapPerfInitFailures increasing, it should retrieve the
|
|
||||||
value of the adslAturInvSerialNumber object (for more details,
|
|
||||||
see the ADSL-LINE-MIB) . This value of this object reflects the
|
|
||||||
CPE signature advertised by an ATU-R implementing the CAP line
|
|
||||||
code. If the CPE signature of the ATU-R is not known, the value
|
|
||||||
of the adslAturInvSerialNumber object should be a zero-length
|
|
||||||
string."
|
|
||||||
DEFVAL { 0 }
|
|
||||||
::= { cAdslLineCapConfProfileEntry 3 }
|
|
||||||
|
|
||||||
cAdslAtucCapConfTargetSnrMgn OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (0..310)
|
|
||||||
UNITS "tenth dB"
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object specifies the target SNR margin. This is the
|
|
||||||
desired noise margin the ATU-C must achieve with a BER of
|
|
||||||
10-7 or better to successfully complete training."
|
|
||||||
DEFVAL { 60 }
|
|
||||||
::= { cAdslLineCapConfProfileEntry 4 }
|
|
||||||
|
|
||||||
cAdslAtucCapConfMinTxRate OBJECT-TYPE
|
|
||||||
SYNTAX AdslLineCapDownstreamRate
|
|
||||||
UNITS "bps"
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object specifies the minimum acceptable downstream
|
|
||||||
line rate."
|
|
||||||
DEFVAL { 0 }
|
|
||||||
::= { cAdslLineCapConfProfileEntry 5 }
|
|
||||||
|
|
||||||
cAdslAtucCapConfMaxTxRate OBJECT-TYPE
|
|
||||||
SYNTAX AdslLineCapDownstreamRate
|
|
||||||
UNITS "bps"
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object specifies the desired line rate which the ATU-C
|
|
||||||
will attempt to train at."
|
|
||||||
DEFVAL { 640000 }
|
|
||||||
::= { cAdslLineCapConfProfileEntry 6 }
|
|
||||||
|
|
||||||
cAdslAtucCapConfDown136KBaudEnable OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object specifies whether the modem can train the
|
|
||||||
downstream channel using a symbol rate of 136K symbols
|
|
||||||
per second."
|
|
||||||
REFERENCE
|
|
||||||
"ANSI T1E1.4/99-161R3, Single-Carrier Rate Adaptive Digital
|
|
||||||
Subscriber Line (RADSL)."
|
|
||||||
DEFVAL { true }
|
|
||||||
::= { cAdslLineCapConfProfileEntry 7 }
|
|
||||||
|
|
||||||
cAdslAtucCapConfUp68KBaudEnable OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object specifies whether the modem can train the
|
|
||||||
upstream channel using a symbol rate of 68K symbols
|
|
||||||
per second.
|
|
||||||
|
|
||||||
The value of this object does not effect whether the modem
|
|
||||||
can train at any other symbol rate; that is, the values of
|
|
||||||
this object and cAdslAtucCapConfUp17KBaudEnable are not
|
|
||||||
mutually exclusive."
|
|
||||||
REFERENCE
|
|
||||||
"ANSI T1E1.4/99-161R3, Single-Carrier Rate Adaptive Digital
|
|
||||||
Subscriber Line (RADSL)."
|
|
||||||
DEFVAL { true }
|
|
||||||
::= { cAdslLineCapConfProfileEntry 8 }
|
|
||||||
|
|
||||||
cAdslAtucCapConfUp17KBaudEnable OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object specifies whether the modem can train the
|
|
||||||
upstream channel using a symbol rate of 17K symbols
|
|
||||||
per second.
|
|
||||||
|
|
||||||
The value of this object does not effect whether the modem
|
|
||||||
can train at any other symbol rate; that is, the values of
|
|
||||||
this object and cAdslAtucCapConfUp68KBaudEnable are not
|
|
||||||
mutually exclusive."
|
|
||||||
REFERENCE
|
|
||||||
"ANSI T1E1.4/99-161R3, Single-Carrier Rate Adaptive Digital
|
|
||||||
Subscriber Line (RADSL)."
|
|
||||||
DEFVAL { true }
|
|
||||||
::= { cAdslLineCapConfProfileEntry 9 }
|
|
||||||
|
|
||||||
cAdslAtucCapConfPsdmLevel OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 ( -52 | -49 | -46 | -43 | -40 | -37 )
|
|
||||||
UNITS "dBm/Hz"
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This managed object specifies the nominal power output of the
|
|
||||||
ATU-C across the entire transmit spectrum. Observe that this
|
|
||||||
implies the attenuation of the signal for some data rates.
|
|
||||||
|
|
||||||
This value does not take effect until the modem has retrained
|
|
||||||
against the ATU-C to which the ATU-R has a connection."
|
|
||||||
REFERENCE
|
|
||||||
"ANSI T1E1.4/99-161R3, Single-Carrier Rate Adaptive Digital
|
|
||||||
Subscriber Line (RADSL)."
|
|
||||||
DEFVAL { -40 }
|
|
||||||
::= { cAdslLineCapConfProfileEntry 10 }
|
|
||||||
|
|
||||||
cAdslAturCapConfTargetSnrMgn OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (0..310)
|
|
||||||
UNITS "tenth dB"
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object specifies the target SNR margin. This is the
|
|
||||||
desired noise margin the ATU-R must achieve with a BER of
|
|
||||||
10-7 or better to successfully complete training."
|
|
||||||
DEFVAL { 60 }
|
|
||||||
::= { cAdslLineCapConfProfileEntry 11 }
|
|
||||||
|
|
||||||
cAdslAturCapConfMinTxRate OBJECT-TYPE
|
|
||||||
SYNTAX AdslLineCapUpstreamRate
|
|
||||||
UNITS "bps"
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object specifies the minimum acceptable upstream
|
|
||||||
line rate."
|
|
||||||
DEFVAL { 0 }
|
|
||||||
::= { cAdslLineCapConfProfileEntry 12 }
|
|
||||||
|
|
||||||
cAdslAturCapConfMaxTxRate OBJECT-TYPE
|
|
||||||
SYNTAX AdslLineCapUpstreamRate
|
|
||||||
UNITS "bps"
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object specifies the desired line rate which the ATU-R
|
|
||||||
will attempt to train at."
|
|
||||||
DEFVAL { 91000 }
|
|
||||||
::= { cAdslLineCapConfProfileEntry 13 }
|
|
||||||
|
|
||||||
cAdslAturCapConfPsdmLevel OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 ( -53 | -50 | -47 | -44 | -41 | -38 )
|
|
||||||
UNITS "dBm/Hz"
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This managed object specifies the nominal power output of the
|
|
||||||
ATU-R across the entire transmit spectrum. Observe that this
|
|
||||||
implies the attenuation of the signal for some data rates.
|
|
||||||
|
|
||||||
This value does not take effect until the modem has retrained
|
|
||||||
against the ATU-C to which the ATU-R has a connection."
|
|
||||||
REFERENCE
|
|
||||||
"ANSI T1E1.4/99-161R3, Single-Carrier Rate Adaptive Digital
|
|
||||||
Subscriber Line (RADSL)."
|
|
||||||
DEFVAL { -38 }
|
|
||||||
::= { cAdslLineCapConfProfileEntry 14 }
|
|
||||||
|
|
||||||
-- MIB Notification Definitions
|
|
||||||
|
|
||||||
cAdslLineCapMIBNotificationsPrefix OBJECT IDENTIFIER
|
|
||||||
::= { ciscoAdslLineCapMIB 2 }
|
|
||||||
|
|
||||||
cAdslLineCapMIBNotifications OBJECT IDENTIFIER
|
|
||||||
::= { cAdslLineCapMIBNotificationsPrefix 0 }
|
|
||||||
|
|
||||||
-- MIB Conformance Statements
|
|
||||||
|
|
||||||
ciscoAdslLineCapMIBConformance OBJECT IDENTIFIER
|
|
||||||
::= { ciscoAdslLineCapMIB 3 }
|
|
||||||
|
|
||||||
ciscoAdslLineCapMIBCompliances OBJECT IDENTIFIER
|
|
||||||
::= { ciscoAdslLineCapMIBConformance 1 }
|
|
||||||
|
|
||||||
ciscoAdslLineCapMIBGroups OBJECT IDENTIFIER
|
|
||||||
::= { ciscoAdslLineCapMIBConformance 2 }
|
|
||||||
|
|
||||||
-- Compliance
|
|
||||||
|
|
||||||
ciscoAdslLineCapMIBAtucCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for entities that implement the
|
|
||||||
CISCO-ADSL-CAP-LINE-MIB. Implementation of this MIB is
|
|
||||||
mandatory for any platform that supports one or more ADSL
|
|
||||||
line interfaces that implement the CAP line code."
|
|
||||||
|
|
||||||
MODULE -- this module
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
cAdslAtucCapBasicGroup
|
|
||||||
}
|
|
||||||
|
|
||||||
GROUP cAdslAturCapGroup
|
|
||||||
DESCRIPTION
|
|
||||||
"The implementation of this group is optional. However,
|
|
||||||
this statement recommends the implementation of this group
|
|
||||||
if the ATU-C and ATU-R support a remote management
|
|
||||||
capability."
|
|
||||||
|
|
||||||
GROUP cAdslAtucCapPM15MinIntervalGroup
|
|
||||||
DESCRIPTION
|
|
||||||
"The implementation of this group is optional."
|
|
||||||
|
|
||||||
GROUP cAdslAtucCapPM1DayIntervalGroup
|
|
||||||
DESCRIPTION
|
|
||||||
"The implementation of this group is optional."
|
|
||||||
::= { ciscoAdslLineCapMIBCompliances 1 }
|
|
||||||
|
|
||||||
ciscoAdslLineCapMIBAturCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for entities that implement the
|
|
||||||
CISCO-ADSL-CAP-LINE-MIB and manage ADSL ATU-R class devices.
|
|
||||||
Implementation of this MIB is mandatory for any platform
|
|
||||||
that supports one or more ADSL line interfaces that implement
|
|
||||||
the CAP line code."
|
|
||||||
|
|
||||||
MODULE -- this module
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
cAdslAturBasicGroup
|
|
||||||
}
|
|
||||||
|
|
||||||
::= { ciscoAdslLineCapMIBCompliances 2 }
|
|
||||||
|
|
||||||
-- Units of Conformance
|
|
||||||
|
|
||||||
cAdslAtucCapBasicGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
cAdslAtucCapCurrState,
|
|
||||||
cAdslAtucCapCurrRxGain,
|
|
||||||
cAdslAtucCapCurrRxSnr,
|
|
||||||
cAdslAtucCapPerfInitFailures,
|
|
||||||
cAdslLineCapConfTrainingMode,
|
|
||||||
cAdslLineCapConfInterleaveDelay,
|
|
||||||
cAdslLineCapConfCpeSignature,
|
|
||||||
cAdslAtucCapConfTargetSnrMgn,
|
|
||||||
cAdslAtucCapConfMinTxRate,
|
|
||||||
cAdslAtucCapConfMaxTxRate,
|
|
||||||
cAdslAtucCapConfDown136KBaudEnable,
|
|
||||||
cAdslAtucCapConfUp68KBaudEnable,
|
|
||||||
cAdslAtucCapConfUp17KBaudEnable,
|
|
||||||
cAdslAtucCapConfPsdmLevel
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of managed objects defining the basic operation
|
|
||||||
of an ATU-C implementing the CAP line code."
|
|
||||||
::= { ciscoAdslLineCapMIBGroups 1 }
|
|
||||||
|
|
||||||
cAdslAturBasicGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
cAdslAturCapCurrRxGain,
|
|
||||||
cAdslLineCapConfTrainingMode,
|
|
||||||
cAdslAturCapConfTargetSnrMgn,
|
|
||||||
cAdslAturCapConfMinTxRate,
|
|
||||||
cAdslAturCapConfMaxTxRate,
|
|
||||||
cAdslAturCapConfPsdmLevel
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of managed objects defining the basic operation
|
|
||||||
of an ATU-R implementing the CAP line code."
|
|
||||||
::= { ciscoAdslLineCapMIBGroups 2 }
|
|
||||||
|
|
||||||
cAdslAturCapGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
cAdslAturCapCurrRxGain,
|
|
||||||
cAdslAturCapConfTargetSnrMgn,
|
|
||||||
cAdslAturCapConfMinTxRate,
|
|
||||||
cAdslAturCapConfMaxTxRate,
|
|
||||||
cAdslAturCapConfPsdmLevel
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of managed objects defining the capability to
|
|
||||||
remotely manage a ATU-R."
|
|
||||||
::= { ciscoAdslLineCapMIBGroups 3 }
|
|
||||||
|
|
||||||
cAdslAtucCapPM15MinIntervalGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
cAdslAtucCapPerfCurr15MinInitFailures,
|
|
||||||
cAdslAtucCapIntervalInitFailures
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of managed objects defining near-end performance
|
|
||||||
data collection capability using 15-minute intervals."
|
|
||||||
::= { ciscoAdslLineCapMIBGroups 4 }
|
|
||||||
|
|
||||||
cAdslAtucCapPM1DayIntervalGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
cAdslAtucCapPerfCurr1DayInitFailures,
|
|
||||||
cAdslAtucCapPerfPrev1DayInitFailures
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of managed objects defining near-end performance
|
|
||||||
data collection capability using 1-day intervals."
|
|
||||||
::= { ciscoAdslLineCapMIBGroups 5 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,594 +0,0 @@
|
|||||||
-- *********************************************************************
|
|
||||||
-- CISCO-ANNOUNCEMENT-MIB.my:
|
|
||||||
-- Media Gateway Announcement MIB file
|
|
||||||
--
|
|
||||||
-- March 2003, Yizhong Shen
|
|
||||||
--
|
|
||||||
-- Copyright (c) 2003 by Cisco Systems, Inc.
|
|
||||||
-- All rights reserved.
|
|
||||||
--
|
|
||||||
-- *********************************************************************
|
|
||||||
|
|
||||||
CISCO-ANNOUNCEMENT-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY,
|
|
||||||
OBJECT-TYPE,
|
|
||||||
Unsigned32 FROM SNMPv2-SMI
|
|
||||||
RowStatus FROM SNMPv2-TC
|
|
||||||
MODULE-COMPLIANCE,
|
|
||||||
OBJECT-GROUP FROM SNMPv2-CONF
|
|
||||||
InetAddress,
|
|
||||||
InetAddressType FROM INET-ADDRESS-MIB
|
|
||||||
SnmpAdminString FROM SNMP-FRAMEWORK-MIB
|
|
||||||
cmgwIndex FROM CISCO-MEDIA-GATEWAY-MIB
|
|
||||||
ciscoMgmt FROM CISCO-SMI;
|
|
||||||
|
|
||||||
ciscoAnnouncementMIB MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200303250000Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
" Cisco Systems
|
|
||||||
Customer Service
|
|
||||||
|
|
||||||
Postal: 170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
|
|
||||||
E-mail: cs-voice-gateway@cisco.com"
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
"This MIB defines the objects for announcement
|
|
||||||
system supported on media gateway.
|
|
||||||
|
|
||||||
With announcement system setup, media gateway will
|
|
||||||
have the capability to play pre-recorded audio files.
|
|
||||||
The audio files can be played in either direction
|
|
||||||
over existing connections (calls) or towards the Time
|
|
||||||
Division Multiplexed (TDM) network on a TDM endpoint
|
|
||||||
that is terminated on the media gateway.
|
|
||||||
"
|
|
||||||
REVISION "200303250000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Initial version of the MIB."
|
|
||||||
|
|
||||||
::= { ciscoMgmt 8888 }
|
|
||||||
|
|
||||||
ciscoAnnouncementMIBNotifs OBJECT IDENTIFIER ::=
|
|
||||||
{ ciscoAnnouncementMIB 0 }
|
|
||||||
|
|
||||||
ciscoAnnouncementMIBObjects OBJECT IDENTIFIER ::=
|
|
||||||
{ ciscoAnnouncementMIB 1}
|
|
||||||
|
|
||||||
ciscoAnnouncementMIBConformance OBJECT IDENTIFIER ::=
|
|
||||||
{ ciscoAnnouncementMIB 2}
|
|
||||||
|
|
||||||
cannoGeneric OBJECT IDENTIFIER ::=
|
|
||||||
{ ciscoAnnouncementMIBObjects 1 }
|
|
||||||
cannoControlConfig OBJECT IDENTIFIER ::=
|
|
||||||
{ cannoGeneric 1 }
|
|
||||||
cannoAudioFileConfig OBJECT IDENTIFIER ::=
|
|
||||||
{ cannoGeneric 2 }
|
|
||||||
|
|
||||||
-- *********************************************************************
|
|
||||||
--
|
|
||||||
-- Announcement Control Table
|
|
||||||
--
|
|
||||||
-- *********************************************************************
|
|
||||||
|
|
||||||
cannoControlTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF CannoControlEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The MIB objects in this table are used to control
|
|
||||||
the announcement system of media gateway.
|
|
||||||
"
|
|
||||||
::= { cannoControlConfig 1 }
|
|
||||||
|
|
||||||
cannoControlEntry OBJECT-TYPE
|
|
||||||
SYNTAX CannoControlEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry in this table contains the control parameters of
|
|
||||||
the announcement system on media gateway.
|
|
||||||
"
|
|
||||||
INDEX { cmgwIndex }
|
|
||||||
::= { cannoControlTable 1 }
|
|
||||||
|
|
||||||
CannoControlEntry ::=
|
|
||||||
SEQUENCE {
|
|
||||||
cannoAudioFileServerName SnmpAdminString,
|
|
||||||
cannoDnResolution INTEGER,
|
|
||||||
cannoIpAddressType InetAddressType,
|
|
||||||
cannoIpAddress InetAddress,
|
|
||||||
cannoAgeTime Unsigned32,
|
|
||||||
cannoSubDirPath SnmpAdminString,
|
|
||||||
cannoReqTimeout Unsigned32,
|
|
||||||
cannoMaxPermanent Unsigned32
|
|
||||||
}
|
|
||||||
|
|
||||||
cannoAudioFileServerName OBJECT-TYPE
|
|
||||||
SYNTAX SnmpAdminString (SIZE (0..64))
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object specifies the domain name of an announcement
|
|
||||||
file server that resides in an IP network and is reachable
|
|
||||||
from the media gateway.
|
|
||||||
The default value of this object is NULL string(size is 0).
|
|
||||||
Before using any object in this table, this object should
|
|
||||||
be configured to non NULL.
|
|
||||||
"
|
|
||||||
DEFVAL { "" }
|
|
||||||
::= { cannoControlEntry 1 }
|
|
||||||
|
|
||||||
cannoDnResolution OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER{
|
|
||||||
internalOnly(1),
|
|
||||||
externalOnly(2)
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object specifies the domain name resolution for
|
|
||||||
the domain name of the Announcement File server which is
|
|
||||||
specified by the cannoAudioFileServerName object.
|
|
||||||
|
|
||||||
If this object is set to internalOnly(1), the IP address
|
|
||||||
associated with the file server (cannoAudioFileServerName) will
|
|
||||||
be determined by the cannoIpAddress object.
|
|
||||||
"
|
|
||||||
DEFVAL { internalOnly }
|
|
||||||
::= { cannoControlEntry 2 }
|
|
||||||
|
|
||||||
cannoIpAddressType OBJECT-TYPE
|
|
||||||
SYNTAX InetAddressType
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object specifies the IP address type of
|
|
||||||
cannoIpAddress.
|
|
||||||
|
|
||||||
This object is not applicable when cannoDnResolution
|
|
||||||
is set to externalOnly(2).
|
|
||||||
"
|
|
||||||
DEFVAL { ipv4 }
|
|
||||||
::= { cannoControlEntry 3 }
|
|
||||||
|
|
||||||
cannoIpAddress OBJECT-TYPE
|
|
||||||
SYNTAX InetAddress
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object specifies the IP address associated with the
|
|
||||||
cannoAudioFileServerName.
|
|
||||||
|
|
||||||
This object is not applicable when cannoDnResolution
|
|
||||||
is set to externalOnly(2).
|
|
||||||
"
|
|
||||||
DEFVAL { '00000000'h }
|
|
||||||
::= { cannoControlEntry 4 }
|
|
||||||
|
|
||||||
cannoAgeTime OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32 (0..65535)
|
|
||||||
UNITS "minutes"
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object specifies the maximum life-span(in minutes) of
|
|
||||||
the dynamic announcement files in the cache.
|
|
||||||
|
|
||||||
A dynamic announcement file starts aging as soon as it is
|
|
||||||
brought into the cache from the file server. When a dynamic
|
|
||||||
file age crosses the 'cannoAgeTime' threshold, the file
|
|
||||||
will be removed from the cache.
|
|
||||||
|
|
||||||
The value zero time specifies that 'cannoAgeTime' is
|
|
||||||
disabled.
|
|
||||||
"
|
|
||||||
DEFVAL { 10080 }
|
|
||||||
::= { cannoControlEntry 5 }
|
|
||||||
|
|
||||||
cannoSubDirPath OBJECT-TYPE
|
|
||||||
SYNTAX SnmpAdminString (SIZE (0..255))
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object specifies the directory path under the default
|
|
||||||
TFTP directory in the Announcement File server for
|
|
||||||
announcement files.
|
|
||||||
|
|
||||||
The individual characters in cannoSubDirPath may be
|
|
||||||
alphanumeric characters, forward slashes, backward slashes,
|
|
||||||
periods, dashes, and underscores, but no embedded spaces.
|
|
||||||
The last character of cannoSubDirPath must not be a dash.
|
|
||||||
"
|
|
||||||
DEFVAL { "" }
|
|
||||||
::= { cannoControlEntry 6 }
|
|
||||||
|
|
||||||
cannoReqTimeout OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32 (0..50)
|
|
||||||
UNITS "seconds"
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object specifies the time for a play announcement
|
|
||||||
request to be serviced.
|
|
||||||
The cannoReqTimeout is the time within which an
|
|
||||||
announcement must start playing after receiving announcement
|
|
||||||
request.
|
|
||||||
|
|
||||||
If the announcement system cannot start playing the
|
|
||||||
announcement within cannoReqTimeout seconds since the
|
|
||||||
request was received, the play request will be aborted.
|
|
||||||
|
|
||||||
The value zero time specifies that 'cannoReqTimeout' is
|
|
||||||
disabled.
|
|
||||||
"
|
|
||||||
DEFVAL { 5 }
|
|
||||||
::= { cannoControlEntry 7 }
|
|
||||||
|
|
||||||
cannoMaxPermanent OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32 (0..500)
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object specifies the maximum number of permanent
|
|
||||||
announcement files that can be added to the media gateway.
|
|
||||||
|
|
||||||
The space on media gateway cache is reserved for the
|
|
||||||
cannoMaxPermanent number of permanent announcement files
|
|
||||||
and the permanent announcement files should be stored on media
|
|
||||||
gateway cache forever until to be deleted.
|
|
||||||
|
|
||||||
The value zero specifies that media gateway only support
|
|
||||||
dynamic announcement file.
|
|
||||||
"
|
|
||||||
DEFVAL { 41 }
|
|
||||||
::= { cannoControlEntry 8 }
|
|
||||||
|
|
||||||
-- *********************************************************************
|
|
||||||
--
|
|
||||||
-- Announcement AUDIO File Table
|
|
||||||
--
|
|
||||||
-- *********************************************************************
|
|
||||||
|
|
||||||
cannoAudioFileTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF CannoAudioFileEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The MIB objects in this table contain information to
|
|
||||||
manage audio announcement files.
|
|
||||||
"
|
|
||||||
::= { cannoAudioFileConfig 1 }
|
|
||||||
|
|
||||||
cannoAudioFileEntry OBJECT-TYPE
|
|
||||||
SYNTAX CannoAudioFileEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Each entry in the cannoAudioFileTable consists of
|
|
||||||
management information for a specific announcement file,
|
|
||||||
which include file descriptor, name, type, age, duration,
|
|
||||||
number of cycles, status.
|
|
||||||
"
|
|
||||||
INDEX { cmgwIndex, cannoAudioFileNumber }
|
|
||||||
::= { cannoAudioFileTable 1 }
|
|
||||||
|
|
||||||
|
|
||||||
CannoAudioFileEntry ::=
|
|
||||||
SEQUENCE {
|
|
||||||
cannoAudioFileNumber Unsigned32,
|
|
||||||
cannoAudioFileDescr SnmpAdminString,
|
|
||||||
cannoAudioFileName SnmpAdminString,
|
|
||||||
cannoAudioFileStatus INTEGER,
|
|
||||||
cannoAudioFileOperStatus INTEGER,
|
|
||||||
cannoAudioFilePlayNoc Unsigned32,
|
|
||||||
cannoAudioFileDuration Unsigned32,
|
|
||||||
cannoAudioFileType INTEGER,
|
|
||||||
cannoAudioFileAge Unsigned32,
|
|
||||||
cannoAudioFileAdminDeletion INTEGER,
|
|
||||||
cannoAudioFileRowStatus RowStatus
|
|
||||||
}
|
|
||||||
|
|
||||||
cannoAudioFileNumber OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32 (1..9999)
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A unique index to identify announcement file
|
|
||||||
to be used in media gateway.
|
|
||||||
"
|
|
||||||
::= { cannoAudioFileEntry 1 }
|
|
||||||
|
|
||||||
cannoAudioFileDescr OBJECT-TYPE
|
|
||||||
SYNTAX SnmpAdminString (SIZE (0..64))
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A textual string containing information about the
|
|
||||||
audio file.
|
|
||||||
User can store any information to this object such as
|
|
||||||
which customer using this audio file, usage of the
|
|
||||||
audio file, etc..
|
|
||||||
"
|
|
||||||
::= { cannoAudioFileEntry 2 }
|
|
||||||
|
|
||||||
cannoAudioFileName OBJECT-TYPE
|
|
||||||
SYNTAX SnmpAdminString (SIZE (0..64))
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object specifies the name of a valid announcement file
|
|
||||||
which has been stored in cannoAudioFileTable. This file name
|
|
||||||
may include path or subdirectory information.
|
|
||||||
|
|
||||||
The individual characters in this name may be alphanumeric
|
|
||||||
characters, forward slashes, backward slashes, periods,
|
|
||||||
dashes, and underscores, but no embedded spaces. The last
|
|
||||||
character of the name must not be a dash or a forward slash.
|
|
||||||
"
|
|
||||||
::= { cannoAudioFileEntry 3 }
|
|
||||||
|
|
||||||
cannoAudioFileStatus OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER{
|
|
||||||
cached (1),
|
|
||||||
loading (2),
|
|
||||||
invalidFile (3),
|
|
||||||
loadFailed (4),
|
|
||||||
notCached (5)
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object indicates the status of the the audio file:
|
|
||||||
|
|
||||||
cached (1): the file successfully downloaded to media
|
|
||||||
gateway cache
|
|
||||||
cache is the memory on media gateway which
|
|
||||||
is used to store announcement files.
|
|
||||||
loading (2): the file in process of downloading
|
|
||||||
invalidFile(3): the file on Announcement File server is too
|
|
||||||
large or corrupted
|
|
||||||
loadFailed (4): timeout when trying to download the file
|
|
||||||
notCached (5): the file is not in cache
|
|
||||||
|
|
||||||
Note:
|
|
||||||
The cache is the memory on media gateway which is used to
|
|
||||||
store announcement files. Some of space on the cache is
|
|
||||||
reserved for the permanent announcement files (refer to
|
|
||||||
'cannoMaxPermanent'), the rest of cache is for the
|
|
||||||
dynamic announcement files.
|
|
||||||
|
|
||||||
The 'notCached' is applicable only for the dynamic
|
|
||||||
announcement files in the following cases:
|
|
||||||
1. The dynamic file age reaches to 'cannoAgeTime', the
|
|
||||||
status of the file will be changed from 'cached' to
|
|
||||||
'notCached'.
|
|
||||||
2. If the cache is full for the dynamic files, and if user
|
|
||||||
try to add a new dynamic file, the one of the dynamic
|
|
||||||
files on cache will be removed by LRU algorithm. The
|
|
||||||
status of that file will be changed from 'cached' to
|
|
||||||
'notCached'.
|
|
||||||
3. If there is no space for the dynamic files (whole cache
|
|
||||||
is reserved for the permanent file), the status of the
|
|
||||||
dynamic files is set to 'notCached'.
|
|
||||||
"
|
|
||||||
::= { cannoAudioFileEntry 4 }
|
|
||||||
|
|
||||||
cannoAudioFileOperStatus OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER{
|
|
||||||
inPlaying (1),
|
|
||||||
notPlaying (2),
|
|
||||||
delPending (3)
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object indicates the current operational status of
|
|
||||||
the entry:
|
|
||||||
|
|
||||||
inPlaying (1): the file is in playing
|
|
||||||
notPlaying (2): the file is not in playing
|
|
||||||
delPending (3): deletion is pending because the file is
|
|
||||||
in playing
|
|
||||||
"
|
|
||||||
::= { cannoAudioFileEntry 5 }
|
|
||||||
|
|
||||||
cannoAudioFilePlayNoc OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32 (0..2147483647)
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object specifies number of cycles the announcement file
|
|
||||||
is played.
|
|
||||||
This object is used only when the Play Announcement signal
|
|
||||||
from the MGC does not include a 'cannoAudioFilePlayNoc'
|
|
||||||
parameter.
|
|
||||||
The value zero is used to represent an announcement that
|
|
||||||
continuously plays or loops.
|
|
||||||
"
|
|
||||||
DEFVAL { 1 }
|
|
||||||
::= { cannoAudioFileEntry 6 }
|
|
||||||
|
|
||||||
cannoAudioFileDuration OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32 (0..4294967295)
|
|
||||||
UNITS "10 milliseconds"
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
|
|
||||||
DESCRIPTION
|
|
||||||
"This object indicates the duration to play the
|
|
||||||
announcement for one cycle, it is applicable only for the
|
|
||||||
fixed announcement play.
|
|
||||||
This object is used only when the Play Announcement signal
|
|
||||||
from the MGC does not include a 'cannoAudioFileDuration'
|
|
||||||
parameter.
|
|
||||||
|
|
||||||
For the fixed announcement play, the 'cannoAudioFilePlayNoc'
|
|
||||||
and the 'cannoAudioFileDuration' are used together to
|
|
||||||
determine how long the announcement is to be played.
|
|
||||||
|
|
||||||
The value zero indicates that this is a variable announcement
|
|
||||||
play and only the 'cannoAudioFilePlayNoc' is used to determine
|
|
||||||
the play time.
|
|
||||||
"
|
|
||||||
DEFVAL { 0 }
|
|
||||||
::= { cannoAudioFileEntry 7 }
|
|
||||||
|
|
||||||
cannoAudioFileType OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER{
|
|
||||||
dynamic (1),
|
|
||||||
permanent (2)
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object specifies announcement file type.
|
|
||||||
|
|
||||||
dynamic(1) : Dynamic file can be removed from cache if
|
|
||||||
file age(cannoAudioFileAge) reaches cannoAgeTime
|
|
||||||
or according to LRU algorithm when cache is full
|
|
||||||
|
|
||||||
permanent(2): Permanent file should be stored on cache forever
|
|
||||||
except to be deleted.
|
|
||||||
The max number of permanent file can be stored on
|
|
||||||
cache is determined by cannoMaxPermanent.
|
|
||||||
"
|
|
||||||
DEFVAL { dynamic }
|
|
||||||
::= { cannoAudioFileEntry 8 }
|
|
||||||
|
|
||||||
cannoAudioFileAge OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32 (0..65535)
|
|
||||||
UNITS "minutes"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object indicates that announcement file age in cache, it
|
|
||||||
is only for dynamic file.
|
|
||||||
|
|
||||||
A dynamic announcement file starts aging as soon as it
|
|
||||||
is brought into the cache from the Announcement File server.
|
|
||||||
When the 'cannoAudioFileAge' reach to 'cannoAgeTime', then
|
|
||||||
the file will be removed from cache.
|
|
||||||
|
|
||||||
This object is not applicable for two cases:
|
|
||||||
(1)For the permanent files, because the the permanent files
|
|
||||||
should be stored on cache forever except to be deleted.
|
|
||||||
(2)The 'cannoAgeTime' is set to zero which means the
|
|
||||||
cannoAgeTime is infinite and 'cannoAudioFileAge' can never
|
|
||||||
reach the cannoAgeTime.
|
|
||||||
"
|
|
||||||
::= { cannoAudioFileEntry 9 }
|
|
||||||
|
|
||||||
cannoAudioFileAdminDeletion OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER{
|
|
||||||
gracefully (1),
|
|
||||||
forcefully (2)
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object specifies entry deletion behavior:
|
|
||||||
|
|
||||||
gracefully(1): gateway will not stop the current announcement
|
|
||||||
file playing (till it completes) while deleting
|
|
||||||
this entry.
|
|
||||||
forcefully(2): gateway will immediately stop current
|
|
||||||
announcement file playing while deleting this
|
|
||||||
entry
|
|
||||||
"
|
|
||||||
DEFVAL { gracefully }
|
|
||||||
::= { cannoAudioFileEntry 10 }
|
|
||||||
|
|
||||||
cannoAudioFileRowStatus OBJECT-TYPE
|
|
||||||
SYNTAX RowStatus
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object is used to create or delete an entry.
|
|
||||||
|
|
||||||
The mandatory objects for creating an entry in this table:
|
|
||||||
'cannoAudioFileName'
|
|
||||||
|
|
||||||
The following objects are not allowed to be modified after
|
|
||||||
the entry to be added:
|
|
||||||
'cannoAudioFileName'
|
|
||||||
'cannoAudioFileType'
|
|
||||||
"
|
|
||||||
::= { cannoAudioFileEntry 11 }
|
|
||||||
|
|
||||||
|
|
||||||
-- *********************************************************************
|
|
||||||
-- Conformance
|
|
||||||
-- *********************************************************************
|
|
||||||
|
|
||||||
|
|
||||||
cannoMIBCompliances OBJECT IDENTIFIER ::=
|
|
||||||
{ ciscoAnnouncementMIBConformance 1}
|
|
||||||
cannoMIBGroups OBJECT IDENTIFIER ::=
|
|
||||||
{ ciscoAnnouncementMIBConformance 2}
|
|
||||||
|
|
||||||
--
|
|
||||||
-- Conformance and compliance statements statements
|
|
||||||
--
|
|
||||||
|
|
||||||
cannoMIBCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
" The compliance statement for Announcement File"
|
|
||||||
MODULE -- this module
|
|
||||||
MANDATORY-GROUPS { cannoControlGroup,
|
|
||||||
cannoAudioFileGroup
|
|
||||||
}
|
|
||||||
::= { cannoMIBCompliances 1 }
|
|
||||||
--
|
|
||||||
-- units of conformance
|
|
||||||
--
|
|
||||||
-- MIB Groups
|
|
||||||
--
|
|
||||||
|
|
||||||
cannoControlGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
cannoAudioFileServerName,
|
|
||||||
cannoDnResolution,
|
|
||||||
cannoIpAddressType,
|
|
||||||
cannoIpAddress,
|
|
||||||
cannoAgeTime,
|
|
||||||
cannoSubDirPath,
|
|
||||||
cannoReqTimeout,
|
|
||||||
cannoMaxPermanent
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This group contains objects related to announcement
|
|
||||||
system control on media gateway.
|
|
||||||
"
|
|
||||||
::= { cannoMIBGroups 1 }
|
|
||||||
|
|
||||||
cannoAudioFileGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
cannoAudioFileDescr,
|
|
||||||
cannoAudioFileName,
|
|
||||||
cannoAudioFileStatus,
|
|
||||||
cannoAudioFileOperStatus,
|
|
||||||
cannoAudioFilePlayNoc,
|
|
||||||
cannoAudioFileDuration,
|
|
||||||
cannoAudioFileType,
|
|
||||||
cannoAudioFileAge,
|
|
||||||
cannoAudioFileAdminDeletion,
|
|
||||||
cannoAudioFileRowStatus
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This group contains objects related to announcement
|
|
||||||
files on media gateway.
|
|
||||||
"
|
|
||||||
::= { cannoMIBGroups 2 }
|
|
||||||
|
|
||||||
END
|
|
File diff suppressed because it is too large
Load Diff
@ -1,541 +0,0 @@
|
|||||||
CISCO-APPLIANCE-REDUNDANCY-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY,
|
|
||||||
NOTIFICATION-TYPE,
|
|
||||||
OBJECT-TYPE,
|
|
||||||
Counter32,
|
|
||||||
Unsigned32
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
InetAddressType,
|
|
||||||
InetAddress
|
|
||||||
FROM INET-ADDRESS-MIB
|
|
||||||
InterfaceIndexOrZero
|
|
||||||
FROM IF-MIB
|
|
||||||
DateAndTime,
|
|
||||||
TruthValue,
|
|
||||||
TimeInterval,
|
|
||||||
TEXTUAL-CONVENTION
|
|
||||||
FROM SNMPv2-TC
|
|
||||||
MODULE-COMPLIANCE,
|
|
||||||
NOTIFICATION-GROUP,
|
|
||||||
OBJECT-GROUP
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
ciscoMgmt
|
|
||||||
FROM CISCO-SMI;
|
|
||||||
|
|
||||||
ciscoApplianceRedundancyMIB MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200412230000Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
Customer Service
|
|
||||||
|
|
||||||
Postal: 170 W. Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
|
|
||||||
E-mail: cs-wlse@cisco.com"
|
|
||||||
DESCRIPTION
|
|
||||||
"This mib defines the SNMP objects to report the status of
|
|
||||||
High Availability (HA) functionality in Cisco network
|
|
||||||
management appliance devices. The HA functinality is
|
|
||||||
achieved via the redundancy of network management appliance
|
|
||||||
devices.
|
|
||||||
|
|
||||||
An network management appliance is a device which combines
|
|
||||||
hardware and software to provide specific network management
|
|
||||||
services. Cisco WLSE, Wireless Service Engine (WLSE) is such
|
|
||||||
an appliance.
|
|
||||||
|
|
||||||
The High Availability is achieved via redundancy of
|
|
||||||
appliances. This redundancy scheme is designed to support
|
|
||||||
hardware or software failure of the appliances in a non-
|
|
||||||
disruptive manner. Redundancy is achieved by configuring
|
|
||||||
a cluster of two appliances with one common virtual IP
|
|
||||||
address. The data is mirrored from the active appliance to
|
|
||||||
the standby appliance at regular intervals.
|
|
||||||
|
|
||||||
One of the appliances is in active mode, performing all
|
|
||||||
normal functions. The other appliance is in warm standby
|
|
||||||
mode; that is, the appliance is up but no application
|
|
||||||
services are running.
|
|
||||||
|
|
||||||
Both the active and standby appliances have their own IP
|
|
||||||
addresses. The active appliance also owns the virtual IP
|
|
||||||
address to which all the service requests are made.
|
|
||||||
|
|
||||||
The active appliance and standby appliance periodically poll
|
|
||||||
each other. If the standby appliance cannot reach the active
|
|
||||||
appliance, it will become the active appliance. This is
|
|
||||||
called a switchover event. The switchover can be caused by
|
|
||||||
other causes, for example, via user commands.
|
|
||||||
|
|
||||||
Both the active and standby appliances should implement
|
|
||||||
this MIB and report any exceptions caused by switchover
|
|
||||||
events."
|
|
||||||
|
|
||||||
::= { ciscoMgmt 458 }
|
|
||||||
|
|
||||||
ciscoApplRedundancyMIBObjects OBJECT IDENTIFIER
|
|
||||||
::= { ciscoApplianceRedundancyMIB 1 }
|
|
||||||
|
|
||||||
carConfigObjects OBJECT IDENTIFIER
|
|
||||||
::= { ciscoApplRedundancyMIBObjects 1 }
|
|
||||||
|
|
||||||
carSwitchOverObjects OBJECT IDENTIFIER
|
|
||||||
::= { ciscoApplRedundancyMIBObjects 2 }
|
|
||||||
|
|
||||||
-- Textual Conventions
|
|
||||||
|
|
||||||
CarRedundancyState ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"States of the HA redundancy:
|
|
||||||
|
|
||||||
notConfigured - The appliance is not configured for
|
|
||||||
redundancy.
|
|
||||||
|
|
||||||
starting - The appliance is configured for redundancy
|
|
||||||
and is initializing. This state could
|
|
||||||
apply to both active and standby
|
|
||||||
appliances.
|
|
||||||
|
|
||||||
active - The appliance is the active appliance.
|
|
||||||
|
|
||||||
preStandby - The appliance is configured to be
|
|
||||||
standby and is attempting to restore
|
|
||||||
data from the active appliance and is not
|
|
||||||
yet in the standby mode.
|
|
||||||
|
|
||||||
standby - The appliance is warm standby mode.
|
|
||||||
|
|
||||||
activeLostStandby - The active appliance is not getting any
|
|
||||||
response from the standby appliance.
|
|
||||||
|
|
||||||
activeLostNetwork - The active appliance is not getting any
|
|
||||||
response from the standby appliance or
|
|
||||||
from the default gateway. There is
|
|
||||||
possibly network issue.
|
|
||||||
|
|
||||||
standbyLostNetwork - The standby appliance is not getting any
|
|
||||||
response from the active appliance or
|
|
||||||
from the default gateway. There is
|
|
||||||
possibly network issue."
|
|
||||||
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
notConfigured (1),
|
|
||||||
starting (2),
|
|
||||||
active (3),
|
|
||||||
preStandby (4),
|
|
||||||
standby (5),
|
|
||||||
activeLostStandby (6),
|
|
||||||
activeLostNetwork (7),
|
|
||||||
standbyLostNetwork (8)
|
|
||||||
}
|
|
||||||
|
|
||||||
CarSwitchOverReason ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Cause of HA switchover event.
|
|
||||||
|
|
||||||
lossConnWithActive - Switchover is caused by loss of
|
|
||||||
connectivity to active appliance.
|
|
||||||
|
|
||||||
forcedSwitchOver - Switchover is caused by user command.
|
|
||||||
|
|
||||||
unknown - Unknown reason."
|
|
||||||
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
lossConnWithActive(1),
|
|
||||||
forcedSwitchOver(2),
|
|
||||||
unknown(3)
|
|
||||||
}
|
|
||||||
|
|
||||||
-- HA Device Configuration data
|
|
||||||
|
|
||||||
carRedundancySyncInterval OBJECT-TYPE
|
|
||||||
SYNTAX TimeInterval
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Time interval at which the active and standby appliances
|
|
||||||
are synchronized. Synchronization consists of incrementally
|
|
||||||
backing up the data on the active appliance and restoring
|
|
||||||
on the standby appliance."
|
|
||||||
::= { carConfigObjects 1 }
|
|
||||||
|
|
||||||
carRedundancyCheckInterval OBJECT-TYPE
|
|
||||||
SYNTAX TimeInterval
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Time interval to check the availability status of each
|
|
||||||
appliance. Both the active and standby appliances will
|
|
||||||
check the status of each other in this time interval.
|
|
||||||
If the standby appliance is not able to connect to the
|
|
||||||
active appliance during this check, it will become the
|
|
||||||
active appliance."
|
|
||||||
::= { carConfigObjects 2 }
|
|
||||||
|
|
||||||
carRedundancyState OBJECT-TYPE
|
|
||||||
SYNTAX CarRedundancyState
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The HA redundancy state of this appliance device."
|
|
||||||
DEFVAL { notConfigured }
|
|
||||||
::= { carConfigObjects 3 }
|
|
||||||
|
|
||||||
carNotificationEnabled OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Enable or disable HA switchover event notifications via SNMP."
|
|
||||||
DEFVAL { false }
|
|
||||||
::= { carConfigObjects 4 }
|
|
||||||
|
|
||||||
carHAAddressTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF CarHAAddressEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This table keeps the current configuration of the address
|
|
||||||
information of the active and standby appliances. There is an
|
|
||||||
entry in this table corresponding to each network interface
|
|
||||||
that is configured for redundancy. Thus, the number of
|
|
||||||
entries in this table corresponds to the number of interfaces
|
|
||||||
configured for redundancy."
|
|
||||||
::= { carConfigObjects 5 }
|
|
||||||
|
|
||||||
carHAAddressEntry OBJECT-TYPE
|
|
||||||
SYNTAX CarHAAddressEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry containing address information for HA configuration
|
|
||||||
on a network interface."
|
|
||||||
INDEX { carHAAddrTableIndex }
|
|
||||||
::= { carHAAddressTable 1 }
|
|
||||||
|
|
||||||
CarHAAddressEntry::=
|
|
||||||
SEQUENCE {
|
|
||||||
carHAAddrTableIndex InterfaceIndexOrZero,
|
|
||||||
carVirtualAddressType InetAddressType,
|
|
||||||
carVirtualAddress InetAddress,
|
|
||||||
carMyAddressType InetAddressType,
|
|
||||||
carMyAddress InetAddress,
|
|
||||||
carPeerAddressType InetAddressType,
|
|
||||||
carPeerAddress InetAddress
|
|
||||||
}
|
|
||||||
|
|
||||||
carHAAddrTableIndex OBJECT-TYPE
|
|
||||||
SYNTAX InterfaceIndexOrZero
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This index matches the interface number for which the Virtual
|
|
||||||
IP configuration is maintained. For example, the Virtual IP
|
|
||||||
configured on interface eth0 will be index 0. Entry for eth1
|
|
||||||
will be index 1,... and so on."
|
|
||||||
::= { carHAAddressEntry 1 }
|
|
||||||
|
|
||||||
carVirtualAddressType OBJECT-TYPE
|
|
||||||
SYNTAX InetAddressType
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The type of address stored in carVirtualAddress."
|
|
||||||
::= { carHAAddressEntry 2 }
|
|
||||||
|
|
||||||
carVirtualAddress OBJECT-TYPE
|
|
||||||
SYNTAX InetAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The virtual IP address configured for this interface. The type
|
|
||||||
of this mib variable is defined in carVirtualAddressType.
|
|
||||||
This address binds to the active appliance at all times.
|
|
||||||
All the management requests should be made to this address."
|
|
||||||
::= { carHAAddressEntry 3 }
|
|
||||||
|
|
||||||
carMyAddressType OBJECT-TYPE
|
|
||||||
SYNTAX InetAddressType
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The type of address stored in carMyAddress"
|
|
||||||
::= { carHAAddressEntry 4 }
|
|
||||||
|
|
||||||
carMyAddress OBJECT-TYPE
|
|
||||||
SYNTAX InetAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The IP address of the interface configured for this HA
|
|
||||||
configuration in this appliance. The type of this mib variable
|
|
||||||
is defined in carMyAddressType. Note this value will not be
|
|
||||||
affected by switchover events."
|
|
||||||
::= { carHAAddressEntry 5 }
|
|
||||||
|
|
||||||
carPeerAddressType OBJECT-TYPE
|
|
||||||
SYNTAX InetAddressType
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The type of address stored in carPeerAddress"
|
|
||||||
::= { carHAAddressEntry 6 }
|
|
||||||
|
|
||||||
carPeerAddress OBJECT-TYPE
|
|
||||||
SYNTAX InetAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The IP address of the interface configured for this HA
|
|
||||||
configuration in the peer appliance. The type of this mib
|
|
||||||
variable is defined in carPeerAddressType. Note this value
|
|
||||||
will not be affected by switchover events."
|
|
||||||
::= { carHAAddressEntry 7 }
|
|
||||||
|
|
||||||
-- HA SwitchOver data
|
|
||||||
|
|
||||||
carLastSwitchOverReason OBJECT-TYPE
|
|
||||||
SYNTAX CarSwitchOverReason
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Cause for the most recent switchover."
|
|
||||||
::= { carSwitchOverObjects 1 }
|
|
||||||
|
|
||||||
carLastSwitchOverTime OBJECT-TYPE
|
|
||||||
SYNTAX DateAndTime
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The local date and time when the last switchover event
|
|
||||||
occurred and was logged to the system."
|
|
||||||
::= { carSwitchOverObjects 2 }
|
|
||||||
|
|
||||||
carTotalSwitchOvers OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of all HA switchover events."
|
|
||||||
::= { carSwitchOverObjects 3 }
|
|
||||||
|
|
||||||
carMaxSwitchOverHistoryRecords OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32 (0..1024)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The maximun number of records to keep in
|
|
||||||
carSwitchOverHistoryTable. New records will replace the old
|
|
||||||
records on a first-in-first-out basis.
|
|
||||||
|
|
||||||
A value of 0 indicates no history will be retained."
|
|
||||||
DEFVAL { 20 }
|
|
||||||
::= { carSwitchOverObjects 4 }
|
|
||||||
|
|
||||||
carSwitchOverHistoryTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF CarSwitchOverHistEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This table keeps an history of HA switchover
|
|
||||||
events. The maximum number of records is equal
|
|
||||||
or less than carMaxSwitchOverRecords."
|
|
||||||
::= { carSwitchOverObjects 5 }
|
|
||||||
|
|
||||||
carSwitchOverHistEntry OBJECT-TYPE
|
|
||||||
SYNTAX CarSwitchOverHistEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry containing information about a HA switchover event."
|
|
||||||
INDEX { carSWHistTableIndex }
|
|
||||||
::= { carSwitchOverHistoryTable 1 }
|
|
||||||
|
|
||||||
CarSwitchOverHistEntry::=
|
|
||||||
SEQUENCE {
|
|
||||||
carSWHistTableIndex Unsigned32,
|
|
||||||
carSWHistActiveNodeAddressType InetAddressType,
|
|
||||||
carSWHistActiveNodeAddress InetAddress,
|
|
||||||
carSWHistStandbyNodeAddressType InetAddressType,
|
|
||||||
carSWHistStandbyNodeAddress InetAddress,
|
|
||||||
carSWHistEventTime DateAndTime,
|
|
||||||
carSWHistEventReason CarSwitchOverReason
|
|
||||||
}
|
|
||||||
|
|
||||||
carSWHistTableIndex OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32 (1..4294967295)
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An monotonically increasing number for the sole purpose
|
|
||||||
of indexing entries. When it reaches maximum value, the agent
|
|
||||||
sets it back to 1."
|
|
||||||
::= { carSwitchOverHistEntry 1 }
|
|
||||||
|
|
||||||
carSWHistActiveNodeAddressType OBJECT-TYPE
|
|
||||||
SYNTAX InetAddressType
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Represents the type of address stored in
|
|
||||||
carSWHistActiveNodeAddress."
|
|
||||||
::= { carSwitchOverHistEntry 2 }
|
|
||||||
|
|
||||||
carSWHistActiveNodeAddress OBJECT-TYPE
|
|
||||||
SYNTAX InetAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The address of the active appliance after the switchover
|
|
||||||
event. carSWHistActiveNodeAddressType specifies the type of
|
|
||||||
this mib variable."
|
|
||||||
::= { carSwitchOverHistEntry 3 }
|
|
||||||
|
|
||||||
carSWHistStandbyNodeAddressType OBJECT-TYPE
|
|
||||||
SYNTAX InetAddressType
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Represents the type of address stored in
|
|
||||||
carSWHistStandbyNodeAddress."
|
|
||||||
::= { carSwitchOverHistEntry 4 }
|
|
||||||
|
|
||||||
carSWHistStandbyNodeAddress OBJECT-TYPE
|
|
||||||
SYNTAX InetAddress
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The address of the standby appliance after the switchover
|
|
||||||
event. carSWHistStandbyNodeAddressType specifies the type
|
|
||||||
of this mib variable."
|
|
||||||
::= { carSwitchOverHistEntry 5 }
|
|
||||||
|
|
||||||
carSWHistEventTime OBJECT-TYPE
|
|
||||||
SYNTAX DateAndTime
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The local date and time when the switchover event occurred
|
|
||||||
and was logged to the system."
|
|
||||||
::= { carSwitchOverHistEntry 6 }
|
|
||||||
|
|
||||||
carSWHistEventReason OBJECT-TYPE
|
|
||||||
SYNTAX CarSwitchOverReason
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Cause of the switchover event."
|
|
||||||
::= { carSwitchOverHistEntry 7 }
|
|
||||||
|
|
||||||
-- Notifications
|
|
||||||
|
|
||||||
carHAMIBNotifPrefix OBJECT IDENTIFIER
|
|
||||||
::= { ciscoApplianceRedundancyMIB 2 }
|
|
||||||
|
|
||||||
carHAMIBNotifications OBJECT IDENTIFIER
|
|
||||||
::= { carHAMIBNotifPrefix 0 }
|
|
||||||
|
|
||||||
carSwitchOverNotification NOTIFICATION-TYPE
|
|
||||||
OBJECTS {
|
|
||||||
carSWHistEventTime,
|
|
||||||
carSWHistEventReason,
|
|
||||||
carSWHistActiveNodeAddressType,
|
|
||||||
carSWHistActiveNodeAddress,
|
|
||||||
carSWHistStandbyNodeAddressType,
|
|
||||||
carSWHistStandbyNodeAddress
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This notification is sent when a switchover event happened.
|
|
||||||
This notification can be enabled or disabled via
|
|
||||||
carNotificationEnabled."
|
|
||||||
::= { carHAMIBNotifications 1 }
|
|
||||||
|
|
||||||
-- conformance
|
|
||||||
|
|
||||||
ciscoHAMIBConformance OBJECT IDENTIFIER
|
|
||||||
::= { ciscoApplianceRedundancyMIB 3 }
|
|
||||||
|
|
||||||
ciscoHAMIBCompliances OBJECT IDENTIFIER
|
|
||||||
::= { ciscoHAMIBConformance 1 }
|
|
||||||
|
|
||||||
ciscoHAMIBGroups OBJECT IDENTIFIER
|
|
||||||
::= { ciscoHAMIBConformance 2 }
|
|
||||||
|
|
||||||
-- compliance
|
|
||||||
|
|
||||||
ciscoHAMIBCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for entities which implement the
|
|
||||||
CISCO-APPLIANCE-HIGH-AVAILABILITY-MIB."
|
|
||||||
|
|
||||||
MODULE -- This module
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
ciscoHAConfigDataGroup,
|
|
||||||
ciscoHASwitchOverDataGroup
|
|
||||||
}
|
|
||||||
|
|
||||||
GROUP ciscoHAExceptionNotifGroup
|
|
||||||
DESCRIPTION
|
|
||||||
"This group is optional."
|
|
||||||
::= { ciscoHAMIBCompliances 1 }
|
|
||||||
|
|
||||||
-- Units of conformance
|
|
||||||
|
|
||||||
ciscoHAConfigDataGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
carVirtualAddressType,
|
|
||||||
carVirtualAddress,
|
|
||||||
carMyAddressType,
|
|
||||||
carMyAddress,
|
|
||||||
carPeerAddressType,
|
|
||||||
carPeerAddress,
|
|
||||||
carRedundancySyncInterval,
|
|
||||||
carRedundancyCheckInterval,
|
|
||||||
carRedundancyState,
|
|
||||||
carNotificationEnabled
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of objects that enable the switchover event
|
|
||||||
notification for the HA network elements."
|
|
||||||
::= { ciscoHAMIBGroups 1 }
|
|
||||||
|
|
||||||
ciscoHASwitchOverDataGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
carLastSwitchOverReason,
|
|
||||||
carLastSwitchOverTime,
|
|
||||||
carTotalSwitchOvers,
|
|
||||||
carMaxSwitchOverHistoryRecords,
|
|
||||||
carSWHistActiveNodeAddressType,
|
|
||||||
carSWHistActiveNodeAddress,
|
|
||||||
carSWHistStandbyNodeAddressType,
|
|
||||||
carSWHistStandbyNodeAddress,
|
|
||||||
carSWHistEventTime,
|
|
||||||
carSWHistEventReason
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of objects that record the switchover events
|
|
||||||
for HA network elements."
|
|
||||||
::= { ciscoHAMIBGroups 2 }
|
|
||||||
|
|
||||||
ciscoHAExceptionNotifGroup NOTIFICATION-GROUP
|
|
||||||
NOTIFICATIONS {
|
|
||||||
carSwitchOverNotification
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of the monitored exception events."
|
|
||||||
::= { ciscoHAMIBGroups 3 }
|
|
||||||
|
|
||||||
END
|
|
@ -1,526 +0,0 @@
|
|||||||
-- *********************************************************************
|
|
||||||
-- CISCO-APPLICATION-ACCELERATION-MIB: Mib for Application Acceleration
|
|
||||||
-- Entities
|
|
||||||
--
|
|
||||||
-- October 2006, Manohar Hungund
|
|
||||||
--
|
|
||||||
-- Copyright (c) 2006 by Cisco Systems, Inc.
|
|
||||||
-- All rights reserved.
|
|
||||||
--
|
|
||||||
-- *********************************************************************
|
|
||||||
|
|
||||||
CISCO-APPLICATION-ACCELERATION-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY,
|
|
||||||
OBJECT-TYPE,
|
|
||||||
Counter32,
|
|
||||||
NOTIFICATION-TYPE
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
MODULE-COMPLIANCE,
|
|
||||||
NOTIFICATION-GROUP,
|
|
||||||
OBJECT-GROUP
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
InetPortNumber
|
|
||||||
FROM INET-ADDRESS-MIB
|
|
||||||
DateAndTime,
|
|
||||||
TruthValue,
|
|
||||||
TEXTUAL-CONVENTION
|
|
||||||
FROM SNMPv2-TC
|
|
||||||
ciscoMgmt
|
|
||||||
FROM CISCO-SMI;
|
|
||||||
|
|
||||||
|
|
||||||
ciscoApplicationAccelerationMIB MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200610300000Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
Customer Service
|
|
||||||
Postal: 170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
|
|
||||||
E-mail: cs-avs@cisco.com"
|
|
||||||
DESCRIPTION
|
|
||||||
"This is a MIB for managing Application Acceleration System(s).
|
|
||||||
This MIB includes instrumentation for providing the
|
|
||||||
performance statistics and status of the condenser which is
|
|
||||||
the core of the Application Acceleration System.
|
|
||||||
A condenser is a software accelerator that applies several
|
|
||||||
optimization techniques to accelerate Web application access.
|
|
||||||
The condenser application accelerates and optimizes any HTML or
|
|
||||||
XML-based application over HTTP resulting in response
|
|
||||||
time improvements and decrease in bandwidth requirements.
|
|
||||||
This application shall reside in a content switching module or
|
|
||||||
appliance.
|
|
||||||
|
|
||||||
Acronyms and terminology:
|
|
||||||
|
|
||||||
HTTP
|
|
||||||
|
|
||||||
In this MIB it refers to both secure ('HTTPS') as
|
|
||||||
well as non-secure ('HTTP') web traffic.
|
|
||||||
|
|
||||||
IMS
|
|
||||||
|
|
||||||
If-Modified-Since is an HTTP request type.
|
|
||||||
The If-Modified-Since request-header field
|
|
||||||
is used with a method to make it
|
|
||||||
conditional: if the requested variant has not
|
|
||||||
been modified since the time specified in this field,
|
|
||||||
an entity will not be returned from the server; instead,
|
|
||||||
a '304' ('not modified') response will be returned without
|
|
||||||
any message-body.
|
|
||||||
|
|
||||||
Delta
|
|
||||||
|
|
||||||
It is the ability of condenser to dynamically
|
|
||||||
update client browser caches directly
|
|
||||||
with content differences, or deltas,
|
|
||||||
resulting in faster page downloads.
|
|
||||||
|
|
||||||
FlashForward
|
|
||||||
|
|
||||||
FlashForward is a object acceleration technology that
|
|
||||||
eliminates network delays associated with embedded cacheable
|
|
||||||
web objects such as images, style sheets, JavaScript files, etc.
|
|
||||||
FlashForward object acceleration places the responsibility for
|
|
||||||
validating object freshness on the condenser, rather than on
|
|
||||||
the client, making it more efficient. With FlashForward, the
|
|
||||||
client never needs to validate the freshness of browser-cached
|
|
||||||
objects with the origin server, thus significantly accelerating
|
|
||||||
page downloads, and reducing both upstream and downstream
|
|
||||||
traffic associated with object validation requests.
|
|
||||||
|
|
||||||
Transformation
|
|
||||||
|
|
||||||
It is the change applied on the incoming
|
|
||||||
web traffic, as part of specific
|
|
||||||
optimization method like delta or
|
|
||||||
flashforward, to achieve web traffic
|
|
||||||
acceleration.
|
|
||||||
|
|
||||||
Objects
|
|
||||||
|
|
||||||
All the non-textual embedded components of a web
|
|
||||||
page are referred to as Objects in this MIB.
|
|
||||||
|
|
||||||
Condensable
|
|
||||||
|
|
||||||
It refers to all objects that can be subjected
|
|
||||||
to optimization by condenser.
|
|
||||||
|
|
||||||
Non-Condensable
|
|
||||||
|
|
||||||
It refers to all objects that cannot be
|
|
||||||
subjected to optimization by condenser.
|
|
||||||
|
|
||||||
REFERENCE
|
|
||||||
|
|
||||||
[1] Hypertext Transfer Protocol -- HTTP/1.1, RFC 2616
|
|
||||||
Section 14.25 If-Modified-Since.
|
|
||||||
|
|
||||||
"
|
|
||||||
REVISION "200610300000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Initial version of this MIB module."
|
|
||||||
::= { ciscoMgmt 594 }
|
|
||||||
|
|
||||||
|
|
||||||
caaMIBNotifications OBJECT IDENTIFIER
|
|
||||||
::= { ciscoApplicationAccelerationMIB 0 }
|
|
||||||
|
|
||||||
caaMIBObjects OBJECT IDENTIFIER
|
|
||||||
::= { ciscoApplicationAccelerationMIB 1 }
|
|
||||||
|
|
||||||
caaMIBConformance OBJECT IDENTIFIER
|
|
||||||
::= { ciscoApplicationAccelerationMIB 2 }
|
|
||||||
|
|
||||||
caaStats OBJECT IDENTIFIER
|
|
||||||
::= { caaMIBObjects 1 }
|
|
||||||
|
|
||||||
caaNotificationObjects OBJECT IDENTIFIER
|
|
||||||
::= { caaMIBObjects 2 }
|
|
||||||
|
|
||||||
-- Textual Conventions
|
|
||||||
|
|
||||||
CaaState ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This textual convention provides the current state of the
|
|
||||||
condenser. The semantics are as follows.
|
|
||||||
'active' : condenser is running and serving HTTP requests.
|
|
||||||
'impaired' : condenser is running, but not serving any
|
|
||||||
HTTP requests.
|
|
||||||
'down' : condenser is not running."
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
active(1),
|
|
||||||
impaired(2),
|
|
||||||
down(3)
|
|
||||||
}
|
|
||||||
|
|
||||||
caaStatTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF CaaStatEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This table provides the information about the
|
|
||||||
performance related statistics and the status
|
|
||||||
of the condenser on this system. An entry is added
|
|
||||||
to this system automatically by the agent when
|
|
||||||
the system boots up. "
|
|
||||||
::= { caaStats 1 }
|
|
||||||
|
|
||||||
caaStatEntry OBJECT-TYPE
|
|
||||||
SYNTAX CaaStatEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry in caaStatTable and corresponds to the performance
|
|
||||||
statistics and status of a condenser on the system."
|
|
||||||
INDEX { caaPort }
|
|
||||||
::= { caaStatTable 1 }
|
|
||||||
|
|
||||||
CaaStatEntry ::= SEQUENCE {
|
|
||||||
caaPort InetPortNumber,
|
|
||||||
caaState CaaState,
|
|
||||||
caaRequests Counter32,
|
|
||||||
caaNoncondensableRequests Counter32,
|
|
||||||
caaRequestedObjectSize Counter32,
|
|
||||||
caaFinalResponseSize Counter32,
|
|
||||||
caaLastRestartedTime DateAndTime,
|
|
||||||
caaTransformed Counter32,
|
|
||||||
caaUntransformed Counter32,
|
|
||||||
caaTransformedObjectRequests Counter32,
|
|
||||||
caaTransformedObjectIMSRequests Counter32,
|
|
||||||
caaStaticObjectHits Counter32,
|
|
||||||
caaStaticObjectHitSize Counter32,
|
|
||||||
caaStaticObjectMisses Counter32,
|
|
||||||
caaStaticObjectMissSize Counter32,
|
|
||||||
caaRefreshHits Counter32,
|
|
||||||
caaIMSHits Counter32,
|
|
||||||
caaIMSMisses Counter32,
|
|
||||||
caaDirectRequests Counter32,
|
|
||||||
caaRequestSize Counter32,
|
|
||||||
caaDeltaAbandons Counter32
|
|
||||||
}
|
|
||||||
|
|
||||||
caaPort OBJECT-TYPE
|
|
||||||
SYNTAX InetPortNumber (1..65535 )
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object represents the port on which the condenser
|
|
||||||
listens."
|
|
||||||
::= { caaStatEntry 1 }
|
|
||||||
|
|
||||||
caaState OBJECT-TYPE
|
|
||||||
SYNTAX CaaState
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object represents the current state of
|
|
||||||
the condenser."
|
|
||||||
::= { caaStatEntry 2 }
|
|
||||||
|
|
||||||
caaRequests OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "requests"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object represents the total number of end-user
|
|
||||||
HTTP requests the condenser has received."
|
|
||||||
::= { caaStatEntry 3 }
|
|
||||||
|
|
||||||
caaNoncondensableRequests OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "requests"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object represents the total number of end-user
|
|
||||||
HTTP requests the condenser has received, that cannot
|
|
||||||
be optimized."
|
|
||||||
::= { caaStatEntry 4 }
|
|
||||||
|
|
||||||
caaRequestedObjectSize OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "bytes"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object represents the accumulated size (in bytes)
|
|
||||||
of each end-user requested object."
|
|
||||||
::= { caaStatEntry 5 }
|
|
||||||
|
|
||||||
caaFinalResponseSize OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "bytes"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object represents the accumulated size (in bytes)
|
|
||||||
of each responses, both for condensable and non-condensable
|
|
||||||
end-user HTTP request."
|
|
||||||
::= { caaStatEntry 6 }
|
|
||||||
|
|
||||||
caaLastRestartedTime OBJECT-TYPE
|
|
||||||
SYNTAX DateAndTime
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object represents the time when the
|
|
||||||
condenser was last started."
|
|
||||||
::= { caaStatEntry 7 }
|
|
||||||
|
|
||||||
caaTransformed OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "transformations"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object represents the total number of successful
|
|
||||||
transformations for FlashForward Objects."
|
|
||||||
::= { caaStatEntry 8 }
|
|
||||||
|
|
||||||
caaUntransformed OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "transformations"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object represents the total number of unsuccessful
|
|
||||||
transformations for FlashForward Objects."
|
|
||||||
::= { caaStatEntry 9 }
|
|
||||||
|
|
||||||
caaTransformedObjectRequests OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "requests"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object represents the total number of HTTP
|
|
||||||
requests (excluding the IMS requests) for the transformed
|
|
||||||
FlashForward objects."
|
|
||||||
::= { caaStatEntry 10 }
|
|
||||||
|
|
||||||
caaTransformedObjectIMSRequests OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "requests"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object represents the total number of IMS requests
|
|
||||||
for those transformed FlashForward objects."
|
|
||||||
::= { caaStatEntry 11 }
|
|
||||||
|
|
||||||
caaStaticObjectHits OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "cache-hits"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object represents the total number of cacheable objects
|
|
||||||
served from the cache, excluding the '304'
|
|
||||||
('not modified') replies."
|
|
||||||
::= { caaStatEntry 12 }
|
|
||||||
|
|
||||||
caaStaticObjectHitSize OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "bytes"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object represents the accumulated size (in bytes)
|
|
||||||
of the cacheable objects served from the cache,
|
|
||||||
excluding '304' ('not modified') replies."
|
|
||||||
::= { caaStatEntry 13 }
|
|
||||||
|
|
||||||
caaStaticObjectMisses OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "cache-misses"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object represents the total number of cacheable
|
|
||||||
objects not found in the cache."
|
|
||||||
::= { caaStatEntry 14 }
|
|
||||||
|
|
||||||
caaStaticObjectMissSize OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "bytes"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object represents the accumulated size (in bytes)
|
|
||||||
of the cacheable objects not found in the cache."
|
|
||||||
::= { caaStatEntry 15 }
|
|
||||||
|
|
||||||
caaRefreshHits OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "requests"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object represents the total number of requests for
|
|
||||||
stale objects that have the responses from the origin
|
|
||||||
server as 'not modified'."
|
|
||||||
::= { caaStatEntry 16 }
|
|
||||||
|
|
||||||
caaIMSHits OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "requests"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object represents the total number of IMS requests
|
|
||||||
for valid copies of objects in the cache."
|
|
||||||
::= { caaStatEntry 17 }
|
|
||||||
|
|
||||||
caaIMSMisses OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "requests"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object represents the total number of IMS requests
|
|
||||||
for objects that either do not exist or are stale in
|
|
||||||
the cache."
|
|
||||||
::= { caaStatEntry 18 }
|
|
||||||
|
|
||||||
caaDirectRequests OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "requests"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object represents the total number of
|
|
||||||
non-cacheable object requests."
|
|
||||||
::= { caaStatEntry 19 }
|
|
||||||
|
|
||||||
caaRequestSize OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "bytes"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object represents the accumulated size (in bytes)
|
|
||||||
of each requests, both for condensable and non-condensable."
|
|
||||||
::= { caaStatEntry 20 }
|
|
||||||
|
|
||||||
caaDeltaAbandons OBJECT-TYPE
|
|
||||||
SYNTAX Counter32
|
|
||||||
UNITS "requests"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object represents the total number of abandons of
|
|
||||||
delta optimization requests."
|
|
||||||
::= { caaStatEntry 21 }
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
-- *************************************************************
|
|
||||||
-- * *
|
|
||||||
-- * Notifications
|
|
||||||
-- * *
|
|
||||||
-- *************************************************************
|
|
||||||
caaStateChangeNotifEnabled OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object represents the status of generation of the
|
|
||||||
caaStateChange notification in response to a change in
|
|
||||||
the state of condenser. A value of 'true' indicates
|
|
||||||
that the notification generation is enabled and the
|
|
||||||
caaStateChange notification is to be generated when the
|
|
||||||
state changes. A value of 'false' indicates that the
|
|
||||||
notification generation is disabled. "
|
|
||||||
DEFVAL { false }
|
|
||||||
::= { caaNotificationObjects 1 }
|
|
||||||
|
|
||||||
|
|
||||||
caaStateChange NOTIFICATION-TYPE
|
|
||||||
OBJECTS { caaState }
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object represents the notification to be generated
|
|
||||||
when a condenser undergoes a state change. caaState represents
|
|
||||||
the new state of the condenser."
|
|
||||||
::= { caaMIBNotifications 1 }
|
|
||||||
-- Compliance statements
|
|
||||||
caaMIBCompliances OBJECT IDENTIFIER
|
|
||||||
::= { caaMIBConformance 1 }
|
|
||||||
|
|
||||||
caaMIBGroups OBJECT IDENTIFIER
|
|
||||||
::= { caaMIBConformance 2 }
|
|
||||||
|
|
||||||
|
|
||||||
caaMIBCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for the SNMP entities
|
|
||||||
that implement the ciscoApplicationAccelerationMIB
|
|
||||||
module. "
|
|
||||||
MODULE -- this module
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
caaMIBStatsGroup,
|
|
||||||
caaMIBNotificationsGroup,
|
|
||||||
caaMIBNotifObjectGroup
|
|
||||||
}
|
|
||||||
::= { caaMIBCompliances 1 }
|
|
||||||
|
|
||||||
-- Units of Conformance
|
|
||||||
caaMIBStatsGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
caaState,
|
|
||||||
caaRequests,
|
|
||||||
caaNoncondensableRequests,
|
|
||||||
caaRequestedObjectSize,
|
|
||||||
caaFinalResponseSize,
|
|
||||||
caaLastRestartedTime,
|
|
||||||
caaTransformed,
|
|
||||||
caaUntransformed,
|
|
||||||
caaTransformedObjectRequests,
|
|
||||||
caaTransformedObjectIMSRequests,
|
|
||||||
caaStaticObjectHits,
|
|
||||||
caaStaticObjectHitSize,
|
|
||||||
caaStaticObjectMisses,
|
|
||||||
caaStaticObjectMissSize,
|
|
||||||
caaRefreshHits,
|
|
||||||
caaIMSHits,
|
|
||||||
caaIMSMisses,
|
|
||||||
caaDirectRequests,
|
|
||||||
caaRequestSize,
|
|
||||||
caaDeltaAbandons
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This collection of objects represent the
|
|
||||||
performance statistics for a condenser."
|
|
||||||
::= { caaMIBGroups 1 }
|
|
||||||
|
|
||||||
caaMIBNotificationsGroup NOTIFICATION-GROUP
|
|
||||||
NOTIFICATIONS { caaStateChange }
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This collection of objects represent the
|
|
||||||
notifications generated by the system to
|
|
||||||
provide information about the condensers."
|
|
||||||
::= { caaMIBGroups 2 }
|
|
||||||
|
|
||||||
caaMIBNotifObjectGroup OBJECT-GROUP
|
|
||||||
OBJECTS { caaStateChangeNotifEnabled }
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This collection of objects represent the
|
|
||||||
information carried by those condenser-related
|
|
||||||
notifications generated by the system."
|
|
||||||
::= { caaMIBGroups 3 }
|
|
||||||
|
|
||||||
END
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,467 +0,0 @@
|
|||||||
-- *****************************************************************
|
|
||||||
-- CISCO-ASPP-MIB.my: Asynchronous Security Poll Protocols.
|
|
||||||
--
|
|
||||||
-- May 1996, Andrew R. Rothwell.
|
|
||||||
-- October 2002, Michael Belscher
|
|
||||||
--
|
|
||||||
-- Copyright (c) 1996-1997, 2003 by cisco Systems, Inc.
|
|
||||||
-- All rights reserved.
|
|
||||||
--
|
|
||||||
-- *****************************************************************
|
|
||||||
CISCO-ASPP-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY, OBJECT-TYPE, Integer32
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
MODULE-COMPLIANCE, OBJECT-GROUP
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
ifIndex
|
|
||||||
FROM IF-MIB
|
|
||||||
TruthValue
|
|
||||||
FROM SNMPv2-TC
|
|
||||||
ciscoMgmt
|
|
||||||
FROM CISCO-SMI;
|
|
||||||
|
|
||||||
|
|
||||||
ciscoAsppMIB MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200302100000Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
"Cisco Systems
|
|
||||||
Customer Service
|
|
||||||
|
|
||||||
Postal: 170 W. Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
E-mail: cs-poll-async@cisco.com"
|
|
||||||
DESCRIPTION
|
|
||||||
|
|
||||||
"The ASPP MIB provides the configuration and operational
|
|
||||||
information on asynchronous polled protocols such as the
|
|
||||||
asynchronous security protocols that alarm monitoring
|
|
||||||
companies use. The protocols are handled in passthrough
|
|
||||||
mode. ASPP will handle the receiving and sending of the
|
|
||||||
asychronous blocks. It will not perform any error
|
|
||||||
checking. It is the responsibilty of the end-station to
|
|
||||||
perform any required error recovery. A generic protocol
|
|
||||||
has been created to support asychronous protocols. In
|
|
||||||
some situations this doesn't work for all types since
|
|
||||||
there is no alarm protocol standard. Specific vendor
|
|
||||||
support has been included for the following vendor's
|
|
||||||
alarm equipment and protocols:
|
|
||||||
* adplex
|
|
||||||
* adt
|
|
||||||
- PollSelect
|
|
||||||
- VariPoll
|
|
||||||
* diebold
|
|
||||||
* mdi
|
|
||||||
* mosec (mosler)
|
|
||||||
* gddb (Guang Dong Development Bank)
|
|
||||||
- This protocol is similar to Burroughs Poll/Select
|
|
||||||
|
|
||||||
The following example configuration shows how the
|
|
||||||
ASPP MIB returns ASPP information, from either CISCO A
|
|
||||||
or CISCO B.
|
|
||||||
|
|
||||||
Security == ASP == Cisco == IP == Cisco == ASP == Alarm
|
|
||||||
control A Network B Panel
|
|
||||||
station
|
|
||||||
|
|
||||||
The following entities are managed:
|
|
||||||
|
|
||||||
1) ASPP ports (serial interfaces)
|
|
||||||
|
|
||||||
The ASPP ports are identified by the interface index,
|
|
||||||
and additional information about this interface can be
|
|
||||||
obtained from the Cisco Serial Interface MIB."
|
|
||||||
|
|
||||||
REVISION "200302100000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added Asynchronous Point of Sale(POS) to IP conversion
|
|
||||||
support.
|
|
||||||
|
|
||||||
The APOS protocol utilizes asynchrounous communications
|
|
||||||
with 1 start, 1 stop and 7 data bits with even
|
|
||||||
parity. The connection to the POS terminal will always
|
|
||||||
be an asynchronous leased line. The protocol has many
|
|
||||||
characteristics of BSC except it is simplified to
|
|
||||||
minimize overhead on the point to point connection.
|
|
||||||
|
|
||||||
The added APOS traffic will be locally acknowledged
|
|
||||||
unlike the other polled asynchronous protocol which
|
|
||||||
function in passthrough mode.
|
|
||||||
|
|
||||||
The LRC/VRC will be verified and any necessary recovery
|
|
||||||
will be done by the router.
|
|
||||||
|
|
||||||
This is necessary since we are converting the protocol
|
|
||||||
so the data can be passed to an IP attached host."
|
|
||||||
|
|
||||||
REVISION "9508210000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Initial mib for async security polled protocols."
|
|
||||||
|
|
||||||
::= { ciscoMgmt 55 }
|
|
||||||
|
|
||||||
asppObjects OBJECT IDENTIFIER ::= { ciscoAsppMIB 1}
|
|
||||||
asppPorts OBJECT IDENTIFIER ::= { asppObjects 1}
|
|
||||||
|
|
||||||
-- *********************************************************************
|
|
||||||
-- * Aspp Port Table
|
|
||||||
-- *********************************************************************
|
|
||||||
|
|
||||||
asppPortTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF AsppPortEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A list of asynchronous interfaces which have been
|
|
||||||
configured to support an asynchronous security protocol
|
|
||||||
(ASP) BSTUN group."
|
|
||||||
::= { asppPorts 1 }
|
|
||||||
|
|
||||||
asppPortEntry OBJECT-TYPE
|
|
||||||
SYNTAX AsppPortEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Current ASP configuration settings for an asynchronous
|
|
||||||
port."
|
|
||||||
INDEX { ifIndex }
|
|
||||||
::= { asppPortTable 1 }
|
|
||||||
|
|
||||||
AsppPortEntry ::=
|
|
||||||
SEQUENCE {
|
|
||||||
asppPortProtocol INTEGER,
|
|
||||||
asppPortRole INTEGER,
|
|
||||||
asppPortReceiveInterFrameTimeout Integer32,
|
|
||||||
asppPortDeviceAddressOffset Integer32,
|
|
||||||
asppPortEOFCharacter Integer32,
|
|
||||||
asppPortSOFCharacter Integer32,
|
|
||||||
asppPortIgnoreSequenceNumber TruthValue,
|
|
||||||
asppPortRspTimer Integer32,
|
|
||||||
asppPortRxTimer Integer32,
|
|
||||||
asppPortHostTimer Integer32,
|
|
||||||
asppPortConnectTimer Integer32,
|
|
||||||
asppPortRetryCount Integer32,
|
|
||||||
asppPortDelayEnq Integer32,
|
|
||||||
asppPortDisableEnq TruthValue,
|
|
||||||
asppPortSendAck TruthValue,
|
|
||||||
asppPortDirect TruthValue,
|
|
||||||
asppPortDCDAlways TruthValue
|
|
||||||
}
|
|
||||||
|
|
||||||
asppPortProtocol OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
adplex(1),
|
|
||||||
adtPollSelect(2),
|
|
||||||
adtVariPoll(3),
|
|
||||||
diebold(4),
|
|
||||||
asyncGeneric(5),
|
|
||||||
mdi(6),
|
|
||||||
mosec(7),
|
|
||||||
gddb(8),
|
|
||||||
apos(9)
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Specifies type of asynchronous security protocol being
|
|
||||||
used. These protocols are implemented by individual
|
|
||||||
security alarm manufacturers. There is no standard
|
|
||||||
protocol for alarm communications over RS-232
|
|
||||||
interfaces.
|
|
||||||
|
|
||||||
asyncGeneric(5)- provides generic polled asynchronous
|
|
||||||
support
|
|
||||||
|
|
||||||
Specific vendor support has been included for the
|
|
||||||
following vendor's alarm equipment and protocols:
|
|
||||||
* adplex(1)
|
|
||||||
* ADT
|
|
||||||
- adtPollSelect(2)
|
|
||||||
- adtVariPoll(3)
|
|
||||||
* diebold(4)
|
|
||||||
* mdi(6)
|
|
||||||
* mosec(7)
|
|
||||||
- mosler equipment
|
|
||||||
* gddb(8)
|
|
||||||
- Guang Dong Development Bank
|
|
||||||
The protocol is similar to Burroughs
|
|
||||||
Poll/Select.
|
|
||||||
|
|
||||||
apos(9) - Protocol support for asynchronous POS
|
|
||||||
devices for provide credit and debit card
|
|
||||||
authorizations to an IP attached host."
|
|
||||||
::= { asppPortEntry 1 }
|
|
||||||
|
|
||||||
asppPortRole OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER { primary(1), secondary(2) }
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Specifies the router's protocol role.
|
|
||||||
primary(1) - Indicates we are attaching to the terminal
|
|
||||||
or alarm panel.
|
|
||||||
secondary(2) - Indicates we are attaching to the host
|
|
||||||
or alarm console.."
|
|
||||||
::= { asppPortEntry 2 }
|
|
||||||
|
|
||||||
asppPortReceiveInterFrameTimeout OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..1000)
|
|
||||||
UNITS "milliseconds"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Specifies the receive inter-frame-timeout period, used
|
|
||||||
to delimit frames. Since all the protocols are
|
|
||||||
implemented over RS-232 3-wire circuits (ie TX, RX and
|
|
||||||
GND), the only general method for start-end frame
|
|
||||||
detection is to monitor the time between received
|
|
||||||
characters. If this time period exceeds the inter-frame
|
|
||||||
timeout value, then frame end-start is detected."
|
|
||||||
::= { asppPortEntry 3 }
|
|
||||||
|
|
||||||
asppPortDeviceAddressOffset OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..255)
|
|
||||||
UNITS "bytes"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Specifies the byte offset within a frame, which
|
|
||||||
contains the device address. This is used when the
|
|
||||||
asynchronous interface is configured to use the async
|
|
||||||
generic protocol handler. Because no knowledge of the
|
|
||||||
protocol is built-in to the IOS, it must be told where
|
|
||||||
the address field lives within the frame. That way IOS
|
|
||||||
can correctly route the frames for this protocol."
|
|
||||||
REFERENCE
|
|
||||||
"CISCO-BSTUN-MIB"
|
|
||||||
::= { asppPortEntry 4 }
|
|
||||||
|
|
||||||
asppPortEOFCharacter OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..256)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Specifies the protocol character to use to delimit
|
|
||||||
the end of a frame. The valid character is 0-255 and
|
|
||||||
256 indicates the object is not configured."
|
|
||||||
::= { asppPortEntry 5 }
|
|
||||||
|
|
||||||
asppPortSOFCharacter OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (0..256)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Specifies the protocol character to use to delimit
|
|
||||||
the beginning of a frame. The valid character is 0-255
|
|
||||||
and 256 indicates the object is not configured."
|
|
||||||
::= { asppPortEntry 6 }
|
|
||||||
|
|
||||||
asppPortIgnoreSequenceNumber OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Specifies whether the asp sequence numbers used to
|
|
||||||
synchronize aspp traffic between head-end and tail-end
|
|
||||||
routers should be ignored. This is enabled if there
|
|
||||||
isn't a one to one correlation between commands and
|
|
||||||
responses between the two routers."
|
|
||||||
DEFVAL { false }
|
|
||||||
::= { asppPortEntry 7 }
|
|
||||||
|
|
||||||
asppPortRspTimer OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (1..30)
|
|
||||||
UNITS "seconds"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Specifies the amount of time the router will wait for a
|
|
||||||
response to a packet before retransmission."
|
|
||||||
::= { asppPortEntry 8 }
|
|
||||||
|
|
||||||
asppPortRxTimer OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (10..60)
|
|
||||||
UNITS "seconds"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Specifies the maximum amount of time the router will
|
|
||||||
wait for a complete packet to be received. It starts
|
|
||||||
when an STX character is received."
|
|
||||||
::= { asppPortEntry 9 }
|
|
||||||
|
|
||||||
asppPortHostTimer OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (10..120)
|
|
||||||
UNITS "seconds"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Specifies the maximum amount of time the router will
|
|
||||||
wait for a response to a terminal request from the
|
|
||||||
host. It starts when a terminal request is forwarded
|
|
||||||
to the host."
|
|
||||||
::= { asppPortEntry 10 }
|
|
||||||
|
|
||||||
asppPortConnectTimer OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (1..30)
|
|
||||||
UNITS "seconds"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Specifies the maximum amount of time the router will
|
|
||||||
wait for the activation of the tunnel connection to the
|
|
||||||
host to complete. It starts when a terminal requests a
|
|
||||||
session with host."
|
|
||||||
::= { asppPortEntry 11 }
|
|
||||||
|
|
||||||
asppPortRetryCount OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (1..10)
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Specifies the maximum number of timers a packet will be
|
|
||||||
retransmitted before the connection with the terminal
|
|
||||||
will be disconnected."
|
|
||||||
::= { asppPortEntry 12 }
|
|
||||||
|
|
||||||
asppPortDelayEnq OBJECT-TYPE
|
|
||||||
SYNTAX Integer32 (1..1000)
|
|
||||||
UNITS "milliseconds"
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Specifies the amount of time to wait after sending a
|
|
||||||
connect packet to the the terminal before sending the
|
|
||||||
ENQ to initiate a session"
|
|
||||||
::= { asppPortEntry 13 }
|
|
||||||
|
|
||||||
asppPortDisableEnq OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Specifies whether sending of ENQ to initiate a session
|
|
||||||
with the terminal is disabled."
|
|
||||||
DEFVAL { false }
|
|
||||||
::= { asppPortEntry 14 }
|
|
||||||
|
|
||||||
asppPortSendAck OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Specifies whether the router will send an ACK to
|
|
||||||
acknowledge packets."
|
|
||||||
DEFVAL { false }
|
|
||||||
::= { asppPortEntry 15 }
|
|
||||||
|
|
||||||
asppPortDirect OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Specifies whether the line mode is direct or dialed.
|
|
||||||
If in direct the router will immediately send ENQ
|
|
||||||
without waiting for AT commands"
|
|
||||||
DEFVAL { false }
|
|
||||||
::= { asppPortEntry 16 }
|
|
||||||
|
|
||||||
asppPortDCDAlways OBJECT-TYPE
|
|
||||||
SYNTAX TruthValue
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Specifies whether DCD should always be asserted or
|
|
||||||
asserted only when the connection is active."
|
|
||||||
DEFVAL { false }
|
|
||||||
::= { asppPortEntry 17 }
|
|
||||||
-- *************************************************************************
|
|
||||||
-- * Conformance Information
|
|
||||||
-- *************************************************************************
|
|
||||||
|
|
||||||
asppMibConformance OBJECT IDENTIFIER ::= { ciscoAsppMIB 3 }
|
|
||||||
asppMibCompliances OBJECT IDENTIFIER ::= { asppMibConformance 1 }
|
|
||||||
asppMibGroups OBJECT IDENTIFIER ::= { asppMibConformance 2 }
|
|
||||||
--
|
|
||||||
-- *************************************************************************
|
|
||||||
-- * Compliance Statements
|
|
||||||
-- *************************************************************************
|
|
||||||
asppMibCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS deprecated
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for ASP."
|
|
||||||
MODULE -- this module
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
asppPortsGroup
|
|
||||||
}
|
|
||||||
::= { asppMibCompliances 1 }
|
|
||||||
|
|
||||||
asppMibComplianceRev1 MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for ASP."
|
|
||||||
MODULE -- this module
|
|
||||||
MANDATORY-GROUPS {
|
|
||||||
asppPortsGroup
|
|
||||||
}
|
|
||||||
GROUP asppPortsGenericGroup
|
|
||||||
DESCRIPTION
|
|
||||||
"This group is mandatory when implementing
|
|
||||||
asyncGeneric protocol."
|
|
||||||
GROUP asppPortsAposGroup
|
|
||||||
DESCRIPTION
|
|
||||||
"This group is mandatory when implementing
|
|
||||||
the apos protocol."
|
|
||||||
|
|
||||||
::= { asppMibCompliances 2 }
|
|
||||||
|
|
||||||
asppPortsGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
asppPortProtocol,
|
|
||||||
asppPortRole,
|
|
||||||
asppPortReceiveInterFrameTimeout,
|
|
||||||
asppPortDeviceAddressOffset
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of objects providing information about
|
|
||||||
interfaces that run asynchronous security protocols."
|
|
||||||
::= { asppMibGroups 1}
|
|
||||||
|
|
||||||
asppPortsGenericGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
asppPortEOFCharacter,
|
|
||||||
asppPortSOFCharacter,
|
|
||||||
asppPortIgnoreSequenceNumber
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of objects providing information about
|
|
||||||
interfaces that run asynchronous generic protocols."
|
|
||||||
::= { asppMibGroups 2}
|
|
||||||
|
|
||||||
asppPortsAposGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
asppPortRspTimer,
|
|
||||||
asppPortRxTimer,
|
|
||||||
asppPortHostTimer,
|
|
||||||
asppPortConnectTimer,
|
|
||||||
asppPortRetryCount,
|
|
||||||
asppPortDelayEnq,
|
|
||||||
asppPortDisableEnq,
|
|
||||||
asppPortSendAck,
|
|
||||||
asppPortDirect,
|
|
||||||
asppPortDCDAlways
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A collection of objects providing information about
|
|
||||||
interfaces that run asynchronous protocol to communicate
|
|
||||||
to Point of Sale protocols."
|
|
||||||
::= { asppMibGroups 3}
|
|
||||||
END
|
|
@ -1,709 +0,0 @@
|
|||||||
-- *****************************************************************
|
|
||||||
-- ATM Access MIB file.
|
|
||||||
--
|
|
||||||
-- January 1997, Chandrasekaran, Ravikumar
|
|
||||||
--
|
|
||||||
-- Copyright (c) 1997 by cisco Systems, Inc.
|
|
||||||
-- All rights reserved.
|
|
||||||
-- *****************************************************************
|
|
||||||
--
|
|
||||||
|
|
||||||
CISCO-ATM-ACCESS-LIST-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY, OBJECT-TYPE FROM SNMPv2-SMI
|
|
||||||
TEXTUAL-CONVENTION, DisplayString, RowStatus FROM SNMPv2-TC
|
|
||||||
ifIndex FROM IF-MIB
|
|
||||||
ciscoMgmt FROM CISCO-SMI
|
|
||||||
MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF;
|
|
||||||
|
|
||||||
ciscoAtmAccessListMIB MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "9611100000Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
" Cisco Systems
|
|
||||||
Customer Service
|
|
||||||
|
|
||||||
Postal: 170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
|
|
||||||
E-mail: cs-atm@cisco.com"
|
|
||||||
DESCRIPTION
|
|
||||||
"A cisco ATM access list mib module."
|
|
||||||
REVISION "9611180000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Initial Version of this MIB module."
|
|
||||||
|
|
||||||
::= { ciscoMgmt 67 }
|
|
||||||
|
|
||||||
ciscoAtmAccessListMIBObjects OBJECT IDENTIFIER ::= { ciscoAtmAccessListMIB 1 }
|
|
||||||
|
|
||||||
ciscoAtmAddressTemplate OBJECT IDENTIFIER ::= { ciscoAtmAccessListMIBObjects 1 }
|
|
||||||
|
|
||||||
ciscoAtmAddressFilter OBJECT IDENTIFIER ::= { ciscoAtmAccessListMIBObjects 2 }
|
|
||||||
|
|
||||||
ciscoAtmAccessGroup OBJECT IDENTIFIER ::= { ciscoAtmAccessListMIBObjects 3 }
|
|
||||||
|
|
||||||
-- Textual Conventions:
|
|
||||||
|
|
||||||
CiscoAtmAddressTemplate ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A NSAP address or address template string. If it only contains
|
|
||||||
hexadecimal digits, 20-octet long, it represents a single
|
|
||||||
NSAP address.
|
|
||||||
For example,
|
|
||||||
47.0091.8100.0000.0060.3e5b.7201.4000.0c is an NSAP address
|
|
||||||
with no wild cards.
|
|
||||||
|
|
||||||
If it contains one or more wild-card characters, it then
|
|
||||||
represents multiple NSAP addresses as follows. An
|
|
||||||
ellipsis ... matches any number of leading or trailing
|
|
||||||
hexadecimal digits.
|
|
||||||
For example,
|
|
||||||
12.8344... will match any address that starts with 12.8344 and
|
|
||||||
...0201.01 will match any address that ends with 0201.01.
|
|
||||||
|
|
||||||
An asterisk * can be used to match any single 4-bit nibble
|
|
||||||
in an address string.
|
|
||||||
For example, in
|
|
||||||
47.8*9*1200000000603E5B7201.00603E5B7201.00 the 2nd nibble of
|
|
||||||
the 2nd most significant byte and 2nd nibble of 3rd most
|
|
||||||
significant byte will match any 4bit nibble value.
|
|
||||||
|
|
||||||
An asterisk (*) enclosed by a pair of parentheses, can also
|
|
||||||
be used to match any binary bit (0 or 1) in a 4-bit nibble.
|
|
||||||
For example, in
|
|
||||||
...92(1*0*)8.01 the asterisk within parentheses will match
|
|
||||||
either binary values 0 and 1."
|
|
||||||
SYNTAX DisplayString (SIZE(1..70))
|
|
||||||
|
|
||||||
-- This MIB defines the following four tables :
|
|
||||||
--
|
|
||||||
-- ciscoAtmAddressTemplateTable
|
|
||||||
--
|
|
||||||
--
|
|
||||||
-- This table is used to alias the address-templates. The aliases created
|
|
||||||
-- in this table may be refered to from ciscoAtmAddressFilterSetTable.
|
|
||||||
--
|
|
||||||
-- ciscoAtmAddressFilterSetTable
|
|
||||||
--
|
|
||||||
--
|
|
||||||
-- Each row in this table is either an addressFilter or a timeOfDayFilter.
|
|
||||||
-- An addressFilter specifies an address-template which can be an actual
|
|
||||||
-- address-template or an aliasname defined in the ciscoAtmAddressTemplateTable.
|
|
||||||
-- For example,
|
|
||||||
-- Consider the following row as existing already in the
|
|
||||||
-- ciscoAtmAddressTemplateTable.
|
|
||||||
-- atmAddressAliasName = "aaa" ,
|
|
||||||
-- atmAddressTemplate."aaa" = "47.8191..." and
|
|
||||||
-- atmAddressTemplateRowStatus."aaa" = active
|
|
||||||
--
|
|
||||||
-- For example, when an object atmAddressFilterSetTemplate."abc" in the
|
|
||||||
-- ciscoAtmAddressFilterSetTable is set to a value of "aaa", the value that
|
|
||||||
-- gets stored into the object is "47.8191..." which is obtained from the
|
|
||||||
-- alias mapping defined by the ciscoAtmAddressTemplateTable.
|
|
||||||
--
|
|
||||||
-- If no such alias exists in the ciscoAtmAddressTemplateTable whose row is
|
|
||||||
-- active, an attempt shall be made to interpret the value as an
|
|
||||||
-- address-template itself. In the above example, if the object
|
|
||||||
-- atmAddressTemplateRowStatus."aaa" is not 'active' then this set operation
|
|
||||||
-- will fail because 'aaa' is not a valid atm address-template.
|
|
||||||
--
|
|
||||||
-- After the creation of the above filter row, any change to the value of
|
|
||||||
-- atmAddressTemplate."aaa" will not affect the value of the object
|
|
||||||
-- atmAddressFilterSetTemplate."abc".
|
|
||||||
-- For example, if the value of atmAddressTemplate."aaa" is changed to
|
|
||||||
-- "...9002.01", the value of atmAddressFilterSetTemplate."abc" in the above
|
|
||||||
-- example will still remain "47.8191..."
|
|
||||||
--
|
|
||||||
-- Those rows(filters) which have the same atmAddressFilterSetName form a
|
|
||||||
-- FilterSet. These FilterSets can be combined to Form a Filter Expression.
|
|
||||||
-- These FilterSets can also be associated with an interface as an incoming
|
|
||||||
-- or an outgoing access-group.
|
|
||||||
--
|
|
||||||
-- During call filtering, those filters in the filter-set that specify a
|
|
||||||
-- complete 20-byte address with no wild cards are first considered for
|
|
||||||
-- matching against the address to be filtered.
|
|
||||||
-- Only if none of the filters with in a filter-set that specify complete
|
|
||||||
-- 20-byte address without wild cards match, other filters are matched
|
|
||||||
-- against the address to be filtered in the increasing order of their
|
|
||||||
-- atmAddressFilterSetIndex values.
|
|
||||||
--
|
|
||||||
-- For example, consider the following filter-set "abc"
|
|
||||||
--
|
|
||||||
-- atmAddressFilterSetType."abc".1 = addressFilter
|
|
||||||
-- atmAddressFilterSetTemplate."abc".1 = "47.8191..."
|
|
||||||
-- atmAddressFilterSetPermission."abc".1 = deny
|
|
||||||
--
|
|
||||||
-- the second filter is a complete 20-byte address with no wild cards :
|
|
||||||
--
|
|
||||||
-- atmAddressFilterSetType."abc".2 = addressFilter
|
|
||||||
-- atmAddressFilterSetTemplate."abc".2 =
|
|
||||||
-- "47.00918100000000603E5B7201.00603E5B7201.01"
|
|
||||||
-- atmAddressFilterSetPermission."abc".2 = deny
|
|
||||||
--
|
|
||||||
-- the third filter is
|
|
||||||
--
|
|
||||||
-- atmAddressFilterSetType."abc".5 = addressFilter
|
|
||||||
-- atmAddressFilterSetTemplate."abc".5 = "...9876.01"
|
|
||||||
-- atmAddressFilterSetPermission."abc".5 = deny
|
|
||||||
--
|
|
||||||
-- In the above example, the filter with index 2 will be matched first with the
|
|
||||||
-- address to be filtered. Only if this filter fails to match, the filters
|
|
||||||
-- with atmAddressFilterSetIndex values 1 and 5 will be considered in that
|
|
||||||
-- order respectively. If none of the filters match in a filter-set then
|
|
||||||
-- the default action would be to deny the call. If this is not desired for a
|
|
||||||
-- filter-set then a filter with a permission of "permit" and an
|
|
||||||
-- address-template value of "..." has to be added to that filter-set as the
|
|
||||||
-- last filter i.e., with the highest atmAddressFilterSetIndex value. So those
|
|
||||||
-- addresses that dont match any other filter will certainly match the last
|
|
||||||
-- default filter and will be permitted to go through.
|
|
||||||
--
|
|
||||||
-- In the case of the time-of-day filters, if the start-time and the end-time
|
|
||||||
-- are the same, it represents a 24-hour interval.
|
|
||||||
--
|
|
||||||
-- ciscoAtmAddressFilterExpressionTable
|
|
||||||
--
|
|
||||||
--
|
|
||||||
-- This Table is used to define filter expressions out of Filter Sets defined
|
|
||||||
-- in the ciscoAtmAddressFilterSetTable and already existing Filter expressions
|
|
||||||
-- defined in this table itself.
|
|
||||||
--
|
|
||||||
-- atmAddressFilterExpressionOperator object in this table supports AND, OR,
|
|
||||||
-- XOR, NOT operators. The objects atmAddressFilterExpressionTerm1 and
|
|
||||||
-- atmAddressFilterExpressionTerm2 represent the operands. The object
|
|
||||||
-- atmAddressFilterExpressionTerm2 should not be used for expressions with
|
|
||||||
-- unary operator or no operator(none(5) operator).
|
|
||||||
--
|
|
||||||
-- atmAddressFilterExpressionTerm1 and atmAddressFilterExpressionTerm2 can
|
|
||||||
-- only point to already active Filter Sets/Filter Expressions. Because of
|
|
||||||
-- this, atmAddressFilterSetName and atmAddressFilterExpressionName objects
|
|
||||||
-- shall have values that are unique across both ciscoAtmAddressFilterSetTable
|
|
||||||
-- and ciscoAtmAddressFilterExpressionTable.
|
|
||||||
--
|
|
||||||
-- Consider a FilterExpressionEntry for example,
|
|
||||||
--
|
|
||||||
-- atmAddressFilterExpressionOperator."xyz" = NOT
|
|
||||||
-- atmAddressFilterExpressionTerm1."xyz" = "abc"
|
|
||||||
--
|
|
||||||
-- and the filter-set "abc" has three filters defined in it as follows :
|
|
||||||
--
|
|
||||||
-- atmAddressFilterSetType."abc".1 = addressFilter
|
|
||||||
-- atmAddressFilterSetTemplate."abc".1 = "47.8191..."
|
|
||||||
-- atmAddressFilterSetPermission."abc".1 = deny
|
|
||||||
--
|
|
||||||
-- the second filter is a complete 20-byte address with no wild cards :
|
|
||||||
--
|
|
||||||
-- atmAddressFilterSetType."abc".2 = addressFilter
|
|
||||||
-- atmAddressFilterSetTemplate."abc".2 =
|
|
||||||
-- "47.00918100000000603E5B7201.00603E5B7201.01"
|
|
||||||
-- atmAddressFilterSetPermission."abc".2 = deny
|
|
||||||
--
|
|
||||||
-- the third filter is
|
|
||||||
--
|
|
||||||
-- atmAddressFilterSetType."abc".5 = addressFilter
|
|
||||||
-- atmAddressFilterSetTemplate."abc".5 = "...9876.01"
|
|
||||||
-- atmAddressFilterSetPermission."abc".5 = deny
|
|
||||||
--
|
|
||||||
-- If the value of atmAddressFilterSetTemplate."abc".5 is changed to "..."
|
|
||||||
-- after the filter-expression "xyz" was created, the change will affect
|
|
||||||
-- the filter-expression "xyz" too. The same would be true if the objects
|
|
||||||
-- atmAddressFilterExpressionTerm1 and atmAddressFilterExpressionTerm2 refer
|
|
||||||
-- to already active filter-expressions.
|
|
||||||
--
|
|
||||||
--
|
|
||||||
-- ciscoAtmAccessGroupTable
|
|
||||||
--
|
|
||||||
--
|
|
||||||
-- This table defines the out-going accessGroup and the incoming accessGroup
|
|
||||||
-- for an interface. An AccessGroup can be a Filter Set or a Filter Expression.
|
|
||||||
--
|
|
||||||
|
|
||||||
|
|
||||||
-- ciscoAtmAddressTemplateTable
|
|
||||||
--
|
|
||||||
-- This is the ATM address template alias table
|
|
||||||
|
|
||||||
ciscoAtmAddressTemplateTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF CiscoAtmAddressTemplateEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The ATM address template alias Table. Entries in this table can be
|
|
||||||
created and deleted by setting the atmAddressTemplateRowStatus object
|
|
||||||
to appropriate values. Existing rows can be modified when the row is
|
|
||||||
active. Entries in this table can be created/modified/ deleted through
|
|
||||||
the commands provided by CLI also."
|
|
||||||
::= { ciscoAtmAddressTemplate 1 }
|
|
||||||
|
|
||||||
ciscoAtmAddressTemplateEntry OBJECT-TYPE
|
|
||||||
SYNTAX CiscoAtmAddressTemplateEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
" An entry in the address template table."
|
|
||||||
INDEX { atmAddressAliasName }
|
|
||||||
::= { ciscoAtmAddressTemplateTable 1 }
|
|
||||||
|
|
||||||
CiscoAtmAddressTemplateEntry ::=
|
|
||||||
SEQUENCE {
|
|
||||||
atmAddressAliasName DisplayString,
|
|
||||||
atmAddressTemplate CiscoAtmAddressTemplate,
|
|
||||||
atmAddressTemplateRowStatus RowStatus
|
|
||||||
}
|
|
||||||
|
|
||||||
atmAddressAliasName OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString (SIZE(1..30))
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The alias name for an ATM address template."
|
|
||||||
::= { ciscoAtmAddressTemplateEntry 1}
|
|
||||||
|
|
||||||
atmAddressTemplate OBJECT-TYPE
|
|
||||||
SYNTAX CiscoAtmAddressTemplate
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The Address Template to be aliased."
|
|
||||||
::= { ciscoAtmAddressTemplateEntry 2}
|
|
||||||
|
|
||||||
atmAddressTemplateRowStatus OBJECT-TYPE
|
|
||||||
SYNTAX RowStatus
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"To create, delete, read and write a row. Entries in this table can be
|
|
||||||
modified on the fly. For example, value of atmAddressTemplateObject
|
|
||||||
can be changed even when the corresponding atmAddressTemplateRowStatus
|
|
||||||
object indicates that the row is active."
|
|
||||||
::= { ciscoAtmAddressTemplateEntry 3}
|
|
||||||
|
|
||||||
-- This group is the ATM address filter set table
|
|
||||||
|
|
||||||
ciscoAtmAddressFilterSetTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF CiscoAtmAddressFilterSetEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The ATM address filter set Table. Entries in this table can be
|
|
||||||
created/deleted by setting the atmAddressFilterSetRowStatus object
|
|
||||||
to appropriate values. Existing entries in this table can be modified
|
|
||||||
on the fly. Entries in this table can be created/modified/deleted
|
|
||||||
through the commands provided by the CLI also."
|
|
||||||
::= { ciscoAtmAddressFilter 1 }
|
|
||||||
|
|
||||||
ciscoAtmAddressFilterSetEntry OBJECT-TYPE
|
|
||||||
SYNTAX CiscoAtmAddressFilterSetEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
" An entry in the address filter set table."
|
|
||||||
INDEX { atmAddressFilterSetName,
|
|
||||||
atmAddressFilterSetIndex }
|
|
||||||
::= { ciscoAtmAddressFilterSetTable 1 }
|
|
||||||
|
|
||||||
CiscoAtmAddressFilterSetEntry ::=
|
|
||||||
SEQUENCE {
|
|
||||||
atmAddressFilterSetName DisplayString,
|
|
||||||
atmAddressFilterSetIndex INTEGER,
|
|
||||||
atmAddressFilterSetType INTEGER,
|
|
||||||
atmAddressFilterSetTemplate DisplayString,
|
|
||||||
atmAddressFilterSetStartHour INTEGER,
|
|
||||||
atmAddressFilterSetStartMinute INTEGER,
|
|
||||||
atmAddressFilterSetEndHour INTEGER,
|
|
||||||
atmAddressFilterSetEndMinute INTEGER,
|
|
||||||
atmAddressFilterSetPermission INTEGER,
|
|
||||||
atmAddressFilterSetRowStatus RowStatus
|
|
||||||
}
|
|
||||||
|
|
||||||
atmAddressFilterSetName OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString (SIZE(1..30))
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The name for an ATM address filter set."
|
|
||||||
::= { ciscoAtmAddressFilterSetEntry 1}
|
|
||||||
|
|
||||||
atmAddressFilterSetIndex OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (1..65535)
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The Index for a Filter in an ATM address filter set. The filters are
|
|
||||||
matched in the ascending order of atmAddressFilterSetIndex. A filter
|
|
||||||
with a lower atmAddressFilterSetIndex value is matched prior to a
|
|
||||||
filter with a higher atmAddressFilterSetIndex value. The only
|
|
||||||
exception to this rule are those address filters that specify all
|
|
||||||
20-bytes without using wildcards. These filters are matched before
|
|
||||||
any other wildcard filter in a filter-set irrespective of the
|
|
||||||
atmAddressFilterSetIndex value."
|
|
||||||
::= { ciscoAtmAddressFilterSetEntry 2}
|
|
||||||
|
|
||||||
atmAddressFilterSetType OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
addressFilter(1),
|
|
||||||
timeOfDayFilter(2)
|
|
||||||
}
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Indicates the type of a filter whether atm Address filter or a
|
|
||||||
Time-of-day filter. If the value of this object is addressFilter(1)
|
|
||||||
then the objects atmAddressFilterSetStartHour,
|
|
||||||
atmAddressFilterSetStartMinute, atmAddressFilterSetEndHour and
|
|
||||||
atmAddressFilterSetEndMinute shall contain only the default values and
|
|
||||||
cannot be set to any other value. If the value of this object is
|
|
||||||
timeOfDayFilter(2) then the object atmAddressFilterSetTemplate shall
|
|
||||||
contain only the default value and cannot be set to any other value.
|
|
||||||
If the value of this object is modified to timeOfDayFilter(2),
|
|
||||||
for an existing addressFilter row, the corresponding
|
|
||||||
atmAddressFilterSetTemplate object will be set to its default value
|
|
||||||
automatically. If the value of this object is modified to
|
|
||||||
addressFilter(1) for an existing timeOfDayFilter row, the corresponding
|
|
||||||
objects atmAddressFilterSetStartHour, atmAddressFilterSetStartMinute,
|
|
||||||
atmAddressFilterSetEndHour and atmAddressFilterSetEndMinute
|
|
||||||
will be set to their default values automatically."
|
|
||||||
DEFVAL { addressFilter }
|
|
||||||
::= { ciscoAtmAddressFilterSetEntry 3}
|
|
||||||
|
|
||||||
atmAddressFilterSetTemplate OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString (SIZE(1..70))
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This is either an existing atmAddressAliasName, or an ATM address
|
|
||||||
template, as described in the CiscoAtmAddressTemplate. If the value
|
|
||||||
of this object matches an atmAddressAliasName in the
|
|
||||||
ciscoAtmAddressTemplateTable, then the value of the corresponding
|
|
||||||
atmAddressTemplate object will be used. And subsequent attempts to
|
|
||||||
read this object will return the address-template instead of the alias
|
|
||||||
name. Only if a such a match is not found in ciscoAtmAddressTemplateTable,
|
|
||||||
an attempt can be made to interpret this object as a
|
|
||||||
CiscoAtmAddressTemplate. The value of this object shall be '...' and
|
|
||||||
cannot be set to any other value if a filter is of the type
|
|
||||||
timeOfDayFilter"
|
|
||||||
DEFVAL { "..." }
|
|
||||||
::= { ciscoAtmAddressFilterSetEntry 4}
|
|
||||||
|
|
||||||
atmAddressFilterSetStartHour OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (0..23)
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Indicates the Hours portion of the Start time of a Time-of-day
|
|
||||||
filter. If the value of atmAddressFilterSetType object is
|
|
||||||
addressFilter, then this object cannot be set and shall only
|
|
||||||
contain the default value"
|
|
||||||
DEFVAL { 0 }
|
|
||||||
::= { ciscoAtmAddressFilterSetEntry 5}
|
|
||||||
|
|
||||||
atmAddressFilterSetStartMinute OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (0..59)
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Indicates the Minutes portion of the Start time of a Time-of-day
|
|
||||||
filter. If the value of atmAddressFilterSetType object is
|
|
||||||
addressFilter, then this object cannot be set and shall only
|
|
||||||
contain the default value"
|
|
||||||
DEFVAL { 0 }
|
|
||||||
::= { ciscoAtmAddressFilterSetEntry 6}
|
|
||||||
|
|
||||||
atmAddressFilterSetEndHour OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (0..23)
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Indicates the Hours portion of the End time of a Time-of-day
|
|
||||||
filter. If the value of atmAddressFilterSetType object is
|
|
||||||
addressFilter, then this object cannot be set and shall only
|
|
||||||
contain the default value"
|
|
||||||
DEFVAL { 0 }
|
|
||||||
::= { ciscoAtmAddressFilterSetEntry 7}
|
|
||||||
|
|
||||||
atmAddressFilterSetEndMinute OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER (0..59)
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Indicates the Minutes portion of the End time of a Time-of-day
|
|
||||||
filter. If the value of atmAddressFilterSetType object is
|
|
||||||
addressFilter, then this object cannot be set and shall only
|
|
||||||
contain the default value"
|
|
||||||
DEFVAL { 0 }
|
|
||||||
::= { ciscoAtmAddressFilterSetEntry 8}
|
|
||||||
|
|
||||||
atmAddressFilterSetPermission OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER { permit(1), deny(2) }
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Indicates the action of a filter set (either permit or deny), when
|
|
||||||
a specific ATM address matches with the atmAddressFilterSetTemplate
|
|
||||||
defined in this address filter set in case of an addressFilter or
|
|
||||||
when the current time falls in the interval specified by the
|
|
||||||
atmAddressFilterSetStartHour, atmAddressFiltersetStartMinute,
|
|
||||||
atmAddressFilterSetEndHour and atmAddressFiltersetEndMinute objects
|
|
||||||
in case of a timeOfDayFilter."
|
|
||||||
DEFVAL { permit }
|
|
||||||
::= { ciscoAtmAddressFilterSetEntry 9}
|
|
||||||
|
|
||||||
atmAddressFilterSetRowStatus OBJECT-TYPE
|
|
||||||
SYNTAX RowStatus
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"To create, delete, read and write a row. Entries in this table can be
|
|
||||||
modified on the fly. For exmaple, atmAddressFilterSetTemplate object
|
|
||||||
of an existing addressFilter can be modified even if the value of the
|
|
||||||
corresponding atmAddressFilterSetRowStatus object indicates that the
|
|
||||||
row is active."
|
|
||||||
::= { ciscoAtmAddressFilterSetEntry 10}
|
|
||||||
|
|
||||||
-- This group is the ATM address filter expression table
|
|
||||||
|
|
||||||
ciscoAtmAddressFilterExpressionTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF CiscoAtmAddressFilterExpressionEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The ATM address filter expression table. Entries in this table can be
|
|
||||||
created/deleted by setting the atmAddressFilterExpressionRowStatus
|
|
||||||
object to appropriate values. Existing entries in this table cannot be
|
|
||||||
modified on the fly. Before an existing active entry can be modified,
|
|
||||||
it has to be brought to notInService by setting the corresponding
|
|
||||||
atmAddressFilterExpressionRowStatus object to notInService. Entries
|
|
||||||
in this table can also be created/modified/deleted through the commands
|
|
||||||
provided by the CLI."
|
|
||||||
::= { ciscoAtmAddressFilter 2 }
|
|
||||||
|
|
||||||
ciscoAtmAddressFilterExpressionEntry OBJECT-TYPE
|
|
||||||
SYNTAX CiscoAtmAddressFilterExpressionEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
" An entry in the address filter expression table."
|
|
||||||
INDEX { atmAddressFilterExpressionName }
|
|
||||||
::= { ciscoAtmAddressFilterExpressionTable 1 }
|
|
||||||
|
|
||||||
CiscoAtmAddressFilterExpressionEntry ::=
|
|
||||||
SEQUENCE {
|
|
||||||
atmAddressFilterExpressionName DisplayString,
|
|
||||||
atmAddressFilterExpressionQualifier1 INTEGER,
|
|
||||||
atmAddressFilterExpressionTerm1 DisplayString,
|
|
||||||
atmAddressFilterExpressionQualifier2 INTEGER,
|
|
||||||
atmAddressFilterExpressionTerm2 DisplayString,
|
|
||||||
atmAddressFilterExpressionOperator INTEGER,
|
|
||||||
atmAddressFilterExpressionRowStatus RowStatus
|
|
||||||
}
|
|
||||||
|
|
||||||
atmAddressFilterExpressionName OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString (SIZE(1..30))
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The name for an ATM address filter expression."
|
|
||||||
::= { ciscoAtmAddressFilterExpressionEntry 1}
|
|
||||||
|
|
||||||
atmAddressFilterExpressionQualifier1 OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER { source(1), destination(2), none(3) }
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object indicates the ATM filter set specified by the
|
|
||||||
atmAddressFilterExpressionTerm1 should be applied to either the
|
|
||||||
source (calling party) or destination (called party) ATM address.
|
|
||||||
atmAddressFilterExpressionQualifier1 shall be none(3) if
|
|
||||||
atmAddressFilterExpressionTerm1 is a Filter Expression or a
|
|
||||||
timeOfDayFilter. The value of this object can be modified for
|
|
||||||
an existing row only after placing that row notInService by setting
|
|
||||||
the corresponding atmAddressFilterExpressionRowStatus object to
|
|
||||||
notInService(2)."
|
|
||||||
DEFVAL { destination }
|
|
||||||
::= { ciscoAtmAddressFilterExpressionEntry 2}
|
|
||||||
|
|
||||||
atmAddressFilterExpressionTerm1 OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString (SIZE(1..30))
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object is the name of the first ATM address filter set or ATM
|
|
||||||
address filter expression used in the logical expression. The
|
|
||||||
value of this object can only be either an already existing
|
|
||||||
atmAddressFilterSetName whose row is already active in the
|
|
||||||
ciscoAtmAddressFilterSetTable or an atmAddressFilterExpressionName
|
|
||||||
whose row is already active in the ciscoAtmAddressFilterExpressionTable.
|
|
||||||
When the reference that this object is pointing to gets deleted out from
|
|
||||||
under it, this object may have a value that does not exist in both
|
|
||||||
ciscoAtmAddressFilterSetTable and ciscoAtmAddressFilterExpressionTable
|
|
||||||
and the expression will be evaluated as if the deleted filter resulted
|
|
||||||
in a match with a permission of 'permit'. The value of this object can
|
|
||||||
be modified for an existing row only after placing that row notInService
|
|
||||||
by setting the corresponding atmAddressFilterExpressionRowStatus object
|
|
||||||
to notInService."
|
|
||||||
::= { ciscoAtmAddressFilterExpressionEntry 3}
|
|
||||||
|
|
||||||
atmAddressFilterExpressionQualifier2 OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER { source(1), destination(2), none(3) }
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Indicates the ATM filter set or filter expression specified by the
|
|
||||||
atmAddressFilterExpressionTerm2 should be applied to either the
|
|
||||||
source (calling party) or destination (called party) ATM address.
|
|
||||||
It is not used if the logical operator is NOT.
|
|
||||||
atmAddressFilterExpressionQualifier2 shall be none(3) if
|
|
||||||
atmAddressFilterExpressionTerm2 is a Filter Expression or
|
|
||||||
timeOfDayFilter. The value of this object can be modified for an
|
|
||||||
existing row only after placing the row notInService by setting
|
|
||||||
the corresponding atmAddressFilterExpressionRowStatus object to
|
|
||||||
notInService(2)."
|
|
||||||
DEFVAL { destination }
|
|
||||||
::= { ciscoAtmAddressFilterExpressionEntry 4}
|
|
||||||
|
|
||||||
atmAddressFilterExpressionTerm2 OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString (SIZE(0..30))
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The name of the second ATM address filter set or ATM address filter
|
|
||||||
expression used in the logical expression. The value of this object
|
|
||||||
can only be either an existing atmAddressFilterSetName whose row is
|
|
||||||
already active in the ciscoAtmAddressFilterSetTable or an existing
|
|
||||||
atmAddressFilterExpressionName whose row is already active in the
|
|
||||||
ciscoAtmAddressFilterExpressionTable. The value of this object shall
|
|
||||||
be null if the value of corresponding atmAddressFilterExpressionOperator
|
|
||||||
object is not(4) or none(5). When the reference that this object is
|
|
||||||
pointing to gets deleted out from under it, this object may have a value
|
|
||||||
that does not exist in both ciscoAtmAddressFilterExpressionTable and
|
|
||||||
ciscoAtmAddressFilterSetTable and the expression will be evaluated
|
|
||||||
as if the deleted filter resulted in a match with a permission of
|
|
||||||
'permit'. The value of this object can be modified for an existing
|
|
||||||
row only after placing that row notInService by setting the respective
|
|
||||||
atmAddressFilterExpressionRowStatus object to the value notInService."
|
|
||||||
::= { ciscoAtmAddressFilterExpressionEntry 5}
|
|
||||||
|
|
||||||
atmAddressFilterExpressionOperator OBJECT-TYPE
|
|
||||||
SYNTAX INTEGER { and(1), or(2), xor(3), not(4), none(5) }
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The logical operator to be applied to the associated ATM address
|
|
||||||
filter logical expression. The value of this object can be modified
|
|
||||||
for an existing row only after placing that row notInService by setting
|
|
||||||
the corresponding atmAddressFilterExpressionRowStatus object to the
|
|
||||||
value notInService."
|
|
||||||
::= { ciscoAtmAddressFilterExpressionEntry 6}
|
|
||||||
|
|
||||||
atmAddressFilterExpressionRowStatus OBJECT-TYPE
|
|
||||||
SYNTAX RowStatus
|
|
||||||
MAX-ACCESS read-create
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"To create, delete, read and write a row. Existing entries in this table
|
|
||||||
that are active cannot be modified on the fly. Before an existing entry
|
|
||||||
in this table that is active can be modified, the corresponding
|
|
||||||
atmAddressFilterExpressionRowStatus object has to be set to notInService."
|
|
||||||
::= { ciscoAtmAddressFilterExpressionEntry 7}
|
|
||||||
|
|
||||||
-- This group is the ATM access group table
|
|
||||||
|
|
||||||
ciscoAtmAccessGroupTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF CiscoAtmAccessGroupEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The ATM access group Table. This table shall only include interfaces
|
|
||||||
whose ifType is atm(37) or logicalAtm(80). Entries in this table can
|
|
||||||
be modified through the commands provided by the CLI also."
|
|
||||||
::= { ciscoAtmAccessGroup 1 }
|
|
||||||
|
|
||||||
ciscoAtmAccessGroupEntry OBJECT-TYPE
|
|
||||||
SYNTAX CiscoAtmAccessGroupEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry in the ATM access group table. This table shall only
|
|
||||||
include interfaces whose ifType is atm(37) or logicalAtm(80)"
|
|
||||||
INDEX { ifIndex }
|
|
||||||
::= { ciscoAtmAccessGroupTable 1 }
|
|
||||||
|
|
||||||
CiscoAtmAccessGroupEntry ::=
|
|
||||||
SEQUENCE {
|
|
||||||
atmInboundAccessGroupName DisplayString,
|
|
||||||
atmOutboundAccessGroupName DisplayString
|
|
||||||
}
|
|
||||||
|
|
||||||
atmInboundAccessGroupName OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString (SIZE(0..30))
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The name of an ATM address filter set or expression used for access
|
|
||||||
control for inbound call on the associated interface."
|
|
||||||
::= { ciscoAtmAccessGroupEntry 1}
|
|
||||||
|
|
||||||
atmOutboundAccessGroupName OBJECT-TYPE
|
|
||||||
SYNTAX DisplayString (SIZE(0..30))
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The name of an ATM address filter set or expression used for access
|
|
||||||
control for outbound call on the associated interface."
|
|
||||||
::= { ciscoAtmAccessGroupEntry 2}
|
|
||||||
|
|
||||||
|
|
||||||
-- conformance information
|
|
||||||
|
|
||||||
ciscoAtmAccessListMIBConformance
|
|
||||||
OBJECT IDENTIFIER ::= { ciscoAtmAccessListMIB 3 }
|
|
||||||
ciscoAtmAccessListMIBCompliances
|
|
||||||
OBJECT IDENTIFIER ::= { ciscoAtmAccessListMIBConformance 1 }
|
|
||||||
ciscoAtmAccessListMIBGroups
|
|
||||||
OBJECT IDENTIFIER ::= { ciscoAtmAccessListMIBConformance 2 }
|
|
||||||
|
|
||||||
|
|
||||||
-- compliance statements
|
|
||||||
|
|
||||||
ciscoAtmAccessListMIBCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for the Cisco ATM access list group."
|
|
||||||
MODULE -- this module
|
|
||||||
MANDATORY-GROUPS { ciscoAtmAccessListMIBGroup }
|
|
||||||
|
|
||||||
::= { ciscoAtmAccessListMIBCompliances 1 }
|
|
||||||
|
|
||||||
-- units of conformance
|
|
||||||
|
|
||||||
ciscoAtmAccessListMIBGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
atmAddressTemplate,
|
|
||||||
atmAddressTemplateRowStatus,
|
|
||||||
atmAddressFilterSetType,
|
|
||||||
atmAddressFilterSetTemplate,
|
|
||||||
atmAddressFilterSetStartHour,
|
|
||||||
atmAddressFilterSetStartMinute,
|
|
||||||
atmAddressFilterSetEndHour,
|
|
||||||
atmAddressFilterSetEndMinute,
|
|
||||||
atmAddressFilterSetPermission,
|
|
||||||
atmAddressFilterSetRowStatus,
|
|
||||||
atmAddressFilterExpressionQualifier1,
|
|
||||||
atmAddressFilterExpressionTerm1,
|
|
||||||
atmAddressFilterExpressionQualifier2,
|
|
||||||
atmAddressFilterExpressionTerm2,
|
|
||||||
atmAddressFilterExpressionOperator,
|
|
||||||
atmAddressFilterExpressionRowStatus,
|
|
||||||
atmInboundAccessGroupName,
|
|
||||||
atmOutboundAccessGroupName
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
""
|
|
||||||
::= { ciscoAtmAccessListMIBGroups 1 }
|
|
||||||
END
|
|
@ -1,157 +0,0 @@
|
|||||||
--------------------------------------------------------------------
|
|
||||||
-- Cisco version of the supplemental AtoM MIB for switch reg. Addresses
|
|
||||||
--
|
|
||||||
-- January 1996, Kartik Chandrasekhar
|
|
||||||
--
|
|
||||||
-- Copyright (c) 1996 by cisco Systems, Inc.
|
|
||||||
-- All rights reserved.
|
|
||||||
--------------------------------------------------------------------
|
|
||||||
--
|
|
||||||
|
|
||||||
|
|
||||||
CISCO-ATM-ADDR-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY,
|
|
||||||
OBJECT-TYPE FROM SNMPv2-SMI
|
|
||||||
TEXTUAL-CONVENTION,
|
|
||||||
RowStatus FROM SNMPv2-TC
|
|
||||||
MODULE-COMPLIANCE,
|
|
||||||
OBJECT-GROUP FROM SNMPv2-CONF
|
|
||||||
ifIndex FROM IF-MIB
|
|
||||||
ciscoExperiment FROM CISCO-SMI;
|
|
||||||
|
|
||||||
|
|
||||||
ciscoAtmAddrMIB MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "9605060000Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
" Cisco Systems
|
|
||||||
Customer Service
|
|
||||||
|
|
||||||
Postal: 170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
|
|
||||||
E-mail: cs-atm@cisco.com"
|
|
||||||
DESCRIPTION
|
|
||||||
"ATM address MIB"
|
|
||||||
REVISION "9605060000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Initial version of this MIB module."
|
|
||||||
|
|
||||||
::= { ciscoExperiment 12 } -- assigned by cana@cisco.com
|
|
||||||
|
|
||||||
|
|
||||||
-- AtmAddr defined here for completeness. Over time it should be
|
|
||||||
-- imported from the ATMTC-MIB under development by the IETF
|
|
||||||
AtmAddr ::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The ATM address used by the network entity. The
|
|
||||||
address types are: no address (0 octets), E.164 (8
|
|
||||||
octets), network prefix (13 octets), and NSAP (20
|
|
||||||
octets). Note: The E.164 address is encoded in
|
|
||||||
BCD format."
|
|
||||||
SYNTAX OCTET STRING (SIZE(0|8|13|20))
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
ciscoAtmAddrMIBObjects OBJECT IDENTIFIER ::= { ciscoAtmAddrMIB 1 }
|
|
||||||
|
|
||||||
-- ATM Interface Administrative Address Table
|
|
||||||
-- This table contains a list of the valid calling party
|
|
||||||
-- addresses for a UNI in the case of both PVCs and SVCs.
|
|
||||||
-- For PVCs, if addresses are not used then an entry in
|
|
||||||
-- this table is not necessary.
|
|
||||||
|
|
||||||
ciscoAtmIfAdminAddrTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF CiscoAtmIfAdminAddrEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This table contains an address list on a per interface
|
|
||||||
basis. This table only applies to switches or networks
|
|
||||||
and only for interfaces that have more than one address
|
|
||||||
assigned."
|
|
||||||
::= { ciscoAtmAddrMIBObjects 1 }
|
|
||||||
|
|
||||||
ciscoAtmIfAdminAddrEntry OBJECT-TYPE
|
|
||||||
SYNTAX CiscoAtmIfAdminAddrEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry in the CiscoAtmIfAdminAddrTable."
|
|
||||||
INDEX { ifIndex, ciscoAtmIfAdminAddrAddress }
|
|
||||||
::= { ciscoAtmIfAdminAddrTable 1 }
|
|
||||||
|
|
||||||
CiscoAtmIfAdminAddrEntry ::=
|
|
||||||
SEQUENCE {
|
|
||||||
ciscoAtmIfAdminAddrAddress AtmAddr,
|
|
||||||
ciscoAtmIfAdminAddrRowStatus RowStatus
|
|
||||||
}
|
|
||||||
|
|
||||||
ciscoAtmIfAdminAddrAddress OBJECT-TYPE
|
|
||||||
SYNTAX AtmAddr
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"A valid address for a given switch or network
|
|
||||||
interface."
|
|
||||||
::= { ciscoAtmIfAdminAddrEntry 1}
|
|
||||||
|
|
||||||
ciscoAtmIfAdminAddrRowStatus OBJECT-TYPE
|
|
||||||
SYNTAX RowStatus
|
|
||||||
MAX-ACCESS read-write
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object is used to create and delete rows in the
|
|
||||||
atmIfAdminAddrTable."
|
|
||||||
::= { ciscoAtmIfAdminAddrEntry 2}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
-- Conformance Information
|
|
||||||
|
|
||||||
ciscoAtmIfAdminAddrMIBConformance
|
|
||||||
OBJECT IDENTIFIER ::= { ciscoAtmAddrMIB 3 }
|
|
||||||
ciscoAtmIfAdminAddrMIBCompliances
|
|
||||||
OBJECT IDENTIFIER ::= { ciscoAtmIfAdminAddrMIBConformance 1 }
|
|
||||||
ciscoAtmIfAdminAddrMIBGroups
|
|
||||||
OBJECT IDENTIFIER ::= { ciscoAtmIfAdminAddrMIBConformance 2 }
|
|
||||||
|
|
||||||
|
|
||||||
-- Compliance Statements
|
|
||||||
|
|
||||||
ciscoAtmIfAdminAddrMIBCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The compliance statement for the Cisco ATM address
|
|
||||||
group."
|
|
||||||
MODULE -- this module
|
|
||||||
MANDATORY-GROUPS { ciscoAtmIfAdminAddrMIBGroup }
|
|
||||||
|
|
||||||
::= { ciscoAtmIfAdminAddrMIBCompliances 1 }
|
|
||||||
|
|
||||||
|
|
||||||
-- Units of Conformance
|
|
||||||
|
|
||||||
|
|
||||||
ciscoAtmIfAdminAddrMIBGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
ciscoAtmIfAdminAddrRowStatus
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object is used to create and delete rows in the
|
|
||||||
atmIfAdminAddrTable."
|
|
||||||
::= { ciscoAtmIfAdminAddrMIBGroups 1 }
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
||||||
|
|
@ -1,108 +0,0 @@
|
|||||||
-- *****************************************************************
|
|
||||||
-- ciscoAtmCapabilities MIB
|
|
||||||
--
|
|
||||||
-- AGENT-CAPABILITIES mib for ATM-MIB
|
|
||||||
--
|
|
||||||
-- June 2002, Subra Hegde
|
|
||||||
--
|
|
||||||
-- Copyright(c) 2002 by Cisco Systems, Inc.
|
|
||||||
--
|
|
||||||
-- *****************************************************************
|
|
||||||
|
|
||||||
CISCO-ATM-CAPABILITY DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
AGENT-CAPABILITIES
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
ciscoAgentCapability
|
|
||||||
FROM CISCO-SMI;
|
|
||||||
|
|
||||||
ciscoAtmCapability MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200206120000Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
" Cisco Systems
|
|
||||||
Customer Service
|
|
||||||
|
|
||||||
Postal: 170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
|
|
||||||
E-mail: cs-wanatm@cisco.com"
|
|
||||||
DESCRIPTION
|
|
||||||
"The Agent Capabilities for ATM-MIB."
|
|
||||||
REVISION "200206120000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Initial Version of the MIB module."
|
|
||||||
::= { ciscoAgentCapability 9999 }
|
|
||||||
|
|
||||||
ciscoAtmCapabilityV2R00 AGENT-CAPABILITIES
|
|
||||||
|
|
||||||
PRODUCT-RELEASE "MGX8850 Release 2.00,
|
|
||||||
BPX SES Release 1.00."
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION "ATM MIB Capabilities"
|
|
||||||
|
|
||||||
SUPPORTS ATM-MIB
|
|
||||||
INCLUDES { atmInterfaceConfGroup2 }
|
|
||||||
|
|
||||||
VARIATION atmInterfaceMaxVpcs
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION atmInterfaceMaxVccs
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION atmInterfaceConfVpcs
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION atmInterfaceConfVccs
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION atmInterfaceMaxActiveVpiBits
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION atmInterfaceMaxActiveVciBits
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION atmInterfaceIlmiVpi
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION atmInterfaceIlmiVci
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION atmInterfaceMyNeighborIpAddress
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION "Write access is not supported."
|
|
||||||
|
|
||||||
VARIATION atmInterfaceMyNeighborIfName
|
|
||||||
ACCESS read-only
|
|
||||||
DESCRIPTION "Write access is not supported."
|
|
||||||
|
|
||||||
VARIATION atmInterfaceCurrentMaxVpiBits
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION atmInterfaceCurrentMaxVciBits
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION atmInterfaceSubscrAddress
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
::= { ciscoAtmCapability 1 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
@ -1,862 +0,0 @@
|
|||||||
-- *****************************************************************
|
|
||||||
-- ciscoAtmCellLayerCapabilities MIB
|
|
||||||
--
|
|
||||||
-- AGENT-CAPABILITIES for CISCO-ATM-CELL-LAYER-MIB
|
|
||||||
--
|
|
||||||
-- Jan 2003, Prasanna Mucharikar
|
|
||||||
--
|
|
||||||
-- Copyright(c) 2003 by Cisco Systems,Inc.
|
|
||||||
--
|
|
||||||
-- *****************************************************************
|
|
||||||
|
|
||||||
CISCO-ATM-CELL-LAYER-CAPABILITY DEFINITIONS ::= BEGIN
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
AGENT-CAPABILITIES
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
ciscoAgentCapability
|
|
||||||
FROM CISCO-SMI;
|
|
||||||
|
|
||||||
ciscoAtmCellLayerCapability MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200301300000Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
" Cisco Systems
|
|
||||||
Customer Service
|
|
||||||
|
|
||||||
Postal: 170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
|
|
||||||
E-mail: cs-wanatm@cisco.com"
|
|
||||||
DESCRIPTION
|
|
||||||
"The Agent Capabilities for
|
|
||||||
CISCO-ATM-CELL-LAYER-MIB.
|
|
||||||
|
|
||||||
- cacLayerCapabilityAxsmV2R00 is for
|
|
||||||
ATM Switch Service Module(AXSM).
|
|
||||||
|
|
||||||
- cacLayerCapabilityAxsmeV2R0160 is for
|
|
||||||
Enhanced AXSM(AXSM-E).
|
|
||||||
|
|
||||||
- cacLayerCapabilityAxsmxgV4R00 is for
|
|
||||||
10 Gig. AXSM(AXSM-XG)."
|
|
||||||
|
|
||||||
REVISION "200301300000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added cacLayerCapabilityAxsmxgV4R00."
|
|
||||||
|
|
||||||
REVISION "200205140000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Initial version of this MIB module."
|
|
||||||
::= { ciscoAgentCapability 275 }
|
|
||||||
|
|
||||||
cacLayerCapabilityAxsmV2R00 AGENT-CAPABILITIES
|
|
||||||
|
|
||||||
PRODUCT-RELEASE "MGX8850 Release 2.0.00"
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION "CISCO-ATM-CELL-LAYER-MIB Capabilities for
|
|
||||||
AXSM Service Module."
|
|
||||||
|
|
||||||
SUPPORTS CISCO-ATM-CELL-LAYER-MIB
|
|
||||||
INCLUDES { caclMIBGroup,
|
|
||||||
caclATMSwitchStatsMIBGroup,
|
|
||||||
caclATMEndSyatemStatsMIBGroup
|
|
||||||
}
|
|
||||||
::= { ciscoAtmCellLayerCapability 1 }
|
|
||||||
|
|
||||||
cacLayerCapabilityAxsmeV2R0160 AGENT-CAPABILITIES
|
|
||||||
|
|
||||||
PRODUCT-RELEASE "MGX8850 Release 2.1.60"
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION "CISCO-ATM-CELL-LAYER-MIB Capabilities for
|
|
||||||
Enhanced AXSM(AXSM-E) Service Module."
|
|
||||||
|
|
||||||
SUPPORTS CISCO-ATM-CELL-LAYER-MIB
|
|
||||||
INCLUDES { caclMIBGroup,
|
|
||||||
caclATMSwitchStatsMIBGroup,
|
|
||||||
caclATMEndSyatemStatsMIBGroup,
|
|
||||||
caclIntervalStatsMIBGroup
|
|
||||||
}
|
|
||||||
|
|
||||||
VARIATION caclInXmtCLP0Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclInXmtCLP1Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclInUpcCLP0DiscCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclInUpcTotalDiscCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclInUpcTotalNonCompCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclOutXmtCLP0Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclOutXmtCLP1Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
VARIATION caclOutRcvIdleCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclOutVpiVciErrCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalInXmtCLP0Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalInXmtCLP1Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalInUpcCLP0DiscCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalInUpcTotalDiscCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalInUpcTotNonCmpCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalOutXmtCLP0Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalOutXmtCLP1Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalOutRcvIdleCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalOutVpiVciErrCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
::= { ciscoAtmCellLayerCapability 2 }
|
|
||||||
|
|
||||||
cacLayerCapabilityAxsmxgV4R00 AGENT-CAPABILITIES
|
|
||||||
|
|
||||||
PRODUCT-RELEASE "MGX8950 Release 4.0.00"
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION "CISCO-ATM-CELL-LAYER-MIB Capabilities for
|
|
||||||
10 Gig. AXSM Service Module (AXSM-XG)."
|
|
||||||
|
|
||||||
SUPPORTS CISCO-ATM-CELL-LAYER-MIB
|
|
||||||
INCLUDES { caclMIBGroup,
|
|
||||||
caclATMStatsMIBGroup,
|
|
||||||
caclATMSwitchStatsMIBGroup1,
|
|
||||||
caclIntervalStatsMIBGroup1
|
|
||||||
}
|
|
||||||
|
|
||||||
VARIATION caclInXmtCLP0Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclInXmtCLP1Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclInUpcCLP0DiscCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclInUpcTotalDiscCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclInUpcTotalNonCompCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclOutXmtCLP0Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclOutXmtCLP1Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclOutRcvIdleCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclOutVpiVciErrCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclHighInXmtCLP0Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclHighInXmtCLP1Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclHighOutXmtCLP0Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclHighOutXmtCLP1Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclHighOutValidOAMCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalInXmtCLP0Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalInXmtCLP1Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalInUpcCLP0DiscCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalInUpcTotalDiscCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalInUpcTotNonCmpCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalOutXmtCLP0Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalOutXmtCLP1Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalOutRcvIdleCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalOutVpiVciErrCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclHighIntervalInXmtCLP0Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclHighIntervalInXmtCLP1Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclHighIntervalOutXmtCLP0Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclHighIntervalOutXmtCLP1Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclHighIntervalOutVpiVciErrCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
::= { ciscoAtmCellLayerCapability 3 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
||||||
-- *****************************************************************
|
|
||||||
-- ciscoAtmCellLayerCapabilities MIB
|
|
||||||
--
|
|
||||||
-- AGENT-CAPABILITIES for CISCO-ATM-CELL-LAYER-MIB
|
|
||||||
--
|
|
||||||
-- Jan 2003, Prasanna Mucharikar
|
|
||||||
--
|
|
||||||
-- Copyright(c) 2003 by Cisco Systems,Inc.
|
|
||||||
--
|
|
||||||
-- *****************************************************************
|
|
||||||
|
|
||||||
CISCO-ATM-CELL-LAYER-CAPABILITY DEFINITIONS ::= BEGIN
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
AGENT-CAPABILITIES
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
ciscoAgentCapability
|
|
||||||
FROM CISCO-SMI;
|
|
||||||
|
|
||||||
ciscoAtmCellLayerCapability MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200301300000Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
" Cisco Systems
|
|
||||||
Customer Service
|
|
||||||
|
|
||||||
Postal: 170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
|
|
||||||
E-mail: cs-wanatm@cisco.com"
|
|
||||||
DESCRIPTION
|
|
||||||
"The Agent Capabilities for
|
|
||||||
CISCO-ATM-CELL-LAYER-MIB.
|
|
||||||
|
|
||||||
- cacLayerCapabilityAxsmV2R00 is for
|
|
||||||
ATM Switch Service Module(AXSM).
|
|
||||||
|
|
||||||
- cacLayerCapabilityAxsmeV2R0160 is for
|
|
||||||
Enhanced AXSM(AXSM-E).
|
|
||||||
|
|
||||||
- cacLayerCapabilityAxsmxgV4R00 is for
|
|
||||||
10 Gig. AXSM(AXSM-XG)."
|
|
||||||
|
|
||||||
REVISION "200301300000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added cacLayerCapabilityAxsmxgV4R00."
|
|
||||||
|
|
||||||
REVISION "200205140000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Initial version of this MIB module."
|
|
||||||
::= { ciscoAgentCapability 275 }
|
|
||||||
|
|
||||||
cacLayerCapabilityAxsmV2R00 AGENT-CAPABILITIES
|
|
||||||
|
|
||||||
PRODUCT-RELEASE "MGX8850 Release 2.0.00"
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION "CISCO-ATM-CELL-LAYER-MIB Capabilities for
|
|
||||||
AXSM Service Module."
|
|
||||||
|
|
||||||
SUPPORTS CISCO-ATM-CELL-LAYER-MIB
|
|
||||||
INCLUDES { caclMIBGroup,
|
|
||||||
caclATMSwitchStatsMIBGroup,
|
|
||||||
caclATMEndSyatemStatsMIBGroup
|
|
||||||
}
|
|
||||||
::= { ciscoAtmCellLayerCapability 1 }
|
|
||||||
|
|
||||||
cacLayerCapabilityAxsmeV2R0160 AGENT-CAPABILITIES
|
|
||||||
|
|
||||||
PRODUCT-RELEASE "MGX8850 Release 2.1.60"
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION "CISCO-ATM-CELL-LAYER-MIB Capabilities for
|
|
||||||
Enhanced AXSM(AXSM-E) Service Module."
|
|
||||||
|
|
||||||
SUPPORTS CISCO-ATM-CELL-LAYER-MIB
|
|
||||||
INCLUDES { caclMIBGroup,
|
|
||||||
caclATMSwitchStatsMIBGroup,
|
|
||||||
caclATMEndSyatemStatsMIBGroup,
|
|
||||||
caclIntervalStatsMIBGroup
|
|
||||||
}
|
|
||||||
|
|
||||||
VARIATION caclInXmtCLP0Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclInXmtCLP1Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclInUpcCLP0DiscCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclInUpcTotalDiscCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclInUpcTotalNonCompCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclOutXmtCLP0Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclOutXmtCLP1Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
VARIATION caclOutRcvIdleCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclOutVpiVciErrCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalInXmtCLP0Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalInXmtCLP1Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalInUpcCLP0DiscCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalInUpcTotalDiscCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalInUpcTotNonCmpCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalOutXmtCLP0Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalOutXmtCLP1Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalOutRcvIdleCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalOutVpiVciErrCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
::= { ciscoAtmCellLayerCapability 2 }
|
|
||||||
|
|
||||||
cacLayerCapabilityAxsmxgV4R00 AGENT-CAPABILITIES
|
|
||||||
|
|
||||||
PRODUCT-RELEASE "MGX8950 Release 4.0.00"
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION "CISCO-ATM-CELL-LAYER-MIB Capabilities for
|
|
||||||
10 Gig. AXSM Service Module (AXSM-XG)."
|
|
||||||
|
|
||||||
SUPPORTS CISCO-ATM-CELL-LAYER-MIB
|
|
||||||
INCLUDES { caclMIBGroup,
|
|
||||||
caclATMStatsMIBGroup,
|
|
||||||
caclATMSwitchStatsMIBGroup1,
|
|
||||||
caclIntervalStatsMIBGroup1
|
|
||||||
}
|
|
||||||
|
|
||||||
VARIATION caclInXmtCLP0Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclInXmtCLP1Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclInUpcCLP0DiscCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclInUpcTotalDiscCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclInUpcTotalNonCompCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclOutXmtCLP0Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclOutXmtCLP1Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclOutRcvIdleCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclOutVpiVciErrCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclHighInXmtCLP0Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclHighInXmtCLP1Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclHighOutXmtCLP0Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclHighOutXmtCLP1Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclHighOutValidOAMCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalInXmtCLP0Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalInXmtCLP1Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalInUpcCLP0DiscCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalInUpcTotalDiscCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalInUpcTotNonCmpCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalOutXmtCLP0Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalOutXmtCLP1Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalOutRcvIdleCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalOutVpiVciErrCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclHighIntervalInXmtCLP0Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclHighIntervalInXmtCLP1Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclHighIntervalOutXmtCLP0Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclHighIntervalOutXmtCLP1Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclHighIntervalOutVpiVciErrCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
::= { ciscoAtmCellLayerCapability 3 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
||||||
-- *****************************************************************
|
|
||||||
-- ciscoAtmCellLayerCapabilities MIB
|
|
||||||
--
|
|
||||||
-- AGENT-CAPABILITIES for CISCO-ATM-CELL-LAYER-MIB
|
|
||||||
--
|
|
||||||
-- Jan 2003, Prasanna Mucharikar
|
|
||||||
--
|
|
||||||
-- Copyright(c) 2003 by Cisco Systems,Inc.
|
|
||||||
--
|
|
||||||
-- *****************************************************************
|
|
||||||
|
|
||||||
CISCO-ATM-CELL-LAYER-CAPABILITY DEFINITIONS ::= BEGIN
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY
|
|
||||||
FROM SNMPv2-SMI
|
|
||||||
AGENT-CAPABILITIES
|
|
||||||
FROM SNMPv2-CONF
|
|
||||||
ciscoAgentCapability
|
|
||||||
FROM CISCO-SMI;
|
|
||||||
|
|
||||||
ciscoAtmCellLayerCapability MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200301300000Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
" Cisco Systems
|
|
||||||
Customer Service
|
|
||||||
|
|
||||||
Postal: 170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
|
|
||||||
E-mail: cs-wanatm@cisco.com"
|
|
||||||
DESCRIPTION
|
|
||||||
"The Agent Capabilities for
|
|
||||||
CISCO-ATM-CELL-LAYER-MIB.
|
|
||||||
|
|
||||||
- cacLayerCapabilityAxsmV2R00 is for
|
|
||||||
ATM Switch Service Module(AXSM).
|
|
||||||
|
|
||||||
- cacLayerCapabilityAxsmeV2R0160 is for
|
|
||||||
Enhanced AXSM(AXSM-E).
|
|
||||||
|
|
||||||
- cacLayerCapabilityAxsmxgV4R00 is for
|
|
||||||
10 Gig. AXSM(AXSM-XG)."
|
|
||||||
|
|
||||||
REVISION "200301300000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Added cacLayerCapabilityAxsmxgV4R00."
|
|
||||||
|
|
||||||
REVISION "200205140000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Initial version of this MIB module."
|
|
||||||
::= { ciscoAgentCapability 275 }
|
|
||||||
|
|
||||||
cacLayerCapabilityAxsmV2R00 AGENT-CAPABILITIES
|
|
||||||
|
|
||||||
PRODUCT-RELEASE "MGX8850 Release 2.0.00"
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION "CISCO-ATM-CELL-LAYER-MIB Capabilities for
|
|
||||||
AXSM Service Module."
|
|
||||||
|
|
||||||
SUPPORTS CISCO-ATM-CELL-LAYER-MIB
|
|
||||||
INCLUDES { caclMIBGroup,
|
|
||||||
caclATMSwitchStatsMIBGroup,
|
|
||||||
caclATMEndSyatemStatsMIBGroup
|
|
||||||
}
|
|
||||||
::= { ciscoAtmCellLayerCapability 1 }
|
|
||||||
|
|
||||||
cacLayerCapabilityAxsmeV2R0160 AGENT-CAPABILITIES
|
|
||||||
|
|
||||||
PRODUCT-RELEASE "MGX8850 Release 2.1.60"
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION "CISCO-ATM-CELL-LAYER-MIB Capabilities for
|
|
||||||
Enhanced AXSM(AXSM-E) Service Module."
|
|
||||||
|
|
||||||
SUPPORTS CISCO-ATM-CELL-LAYER-MIB
|
|
||||||
INCLUDES { caclMIBGroup,
|
|
||||||
caclATMSwitchStatsMIBGroup,
|
|
||||||
caclATMEndSyatemStatsMIBGroup,
|
|
||||||
caclIntervalStatsMIBGroup
|
|
||||||
}
|
|
||||||
|
|
||||||
VARIATION caclInXmtCLP0Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclInXmtCLP1Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclInUpcCLP0DiscCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclInUpcTotalDiscCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclInUpcTotalNonCompCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclOutXmtCLP0Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclOutXmtCLP1Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
VARIATION caclOutRcvIdleCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclOutVpiVciErrCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalInXmtCLP0Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalInXmtCLP1Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalInUpcCLP0DiscCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalInUpcTotalDiscCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalInUpcTotNonCmpCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalOutXmtCLP0Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalOutXmtCLP1Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalOutRcvIdleCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalOutVpiVciErrCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
::= { ciscoAtmCellLayerCapability 2 }
|
|
||||||
|
|
||||||
cacLayerCapabilityAxsmxgV4R00 AGENT-CAPABILITIES
|
|
||||||
|
|
||||||
PRODUCT-RELEASE "MGX8950 Release 4.0.00"
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION "CISCO-ATM-CELL-LAYER-MIB Capabilities for
|
|
||||||
10 Gig. AXSM Service Module (AXSM-XG)."
|
|
||||||
|
|
||||||
SUPPORTS CISCO-ATM-CELL-LAYER-MIB
|
|
||||||
INCLUDES { caclMIBGroup,
|
|
||||||
caclATMStatsMIBGroup,
|
|
||||||
caclATMSwitchStatsMIBGroup1,
|
|
||||||
caclIntervalStatsMIBGroup1
|
|
||||||
}
|
|
||||||
|
|
||||||
VARIATION caclInXmtCLP0Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclInXmtCLP1Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclInUpcCLP0DiscCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclInUpcTotalDiscCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclInUpcTotalNonCompCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclOutXmtCLP0Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclOutXmtCLP1Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclOutRcvIdleCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclOutVpiVciErrCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclHighInXmtCLP0Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclHighInXmtCLP1Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclHighOutXmtCLP0Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclHighOutXmtCLP1Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclHighOutValidOAMCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalInXmtCLP0Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalInXmtCLP1Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalInUpcCLP0DiscCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalInUpcTotalDiscCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalInUpcTotNonCmpCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalOutXmtCLP0Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalOutXmtCLP1Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalOutRcvIdleCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclIntervalOutVpiVciErrCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclHighIntervalInXmtCLP0Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclHighIntervalInXmtCLP1Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclHighIntervalOutXmtCLP0Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclHighIntervalOutXmtCLP1Cells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
VARIATION caclHighIntervalOutVpiVciErrCells
|
|
||||||
ACCESS not-implemented
|
|
||||||
DESCRIPTION "Not supported."
|
|
||||||
|
|
||||||
::= { ciscoAtmCellLayerCapability 3 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
@ -1,679 +0,0 @@
|
|||||||
-- *****************************************************************
|
|
||||||
-- CISCO-ATM-CONN-INFO-MIB
|
|
||||||
--
|
|
||||||
-- April 2003, Rashmi Purandare
|
|
||||||
--
|
|
||||||
-- Copyright (c) 2003 by cisco Systems, Inc.
|
|
||||||
-- All rights reserved.
|
|
||||||
-- *****************************************************************
|
|
||||||
|
|
||||||
CISCO-ATM-CONN-INFO-MIB DEFINITIONS ::= BEGIN
|
|
||||||
|
|
||||||
IMPORTS
|
|
||||||
MODULE-IDENTITY,
|
|
||||||
OBJECT-TYPE,
|
|
||||||
Gauge32,
|
|
||||||
Unsigned32 FROM SNMPv2-SMI
|
|
||||||
MODULE-COMPLIANCE,
|
|
||||||
OBJECT-GROUP FROM SNMPv2-CONF
|
|
||||||
ifIndex FROM IF-MIB
|
|
||||||
ciscoMgmt FROM CISCO-SMI
|
|
||||||
TEXTUAL-CONVENTION FROM SNMPv2-TC;
|
|
||||||
|
|
||||||
ciscoAtmConnInfoMIB MODULE-IDENTITY
|
|
||||||
LAST-UPDATED "200306160000Z"
|
|
||||||
ORGANIZATION "Cisco Systems, Inc."
|
|
||||||
CONTACT-INFO
|
|
||||||
" Cisco Systems
|
|
||||||
Customer Service
|
|
||||||
|
|
||||||
Postal: 170 W Tasman Drive
|
|
||||||
San Jose, CA 95134
|
|
||||||
USA
|
|
||||||
|
|
||||||
Tel: +1 800 553-NETS
|
|
||||||
|
|
||||||
E-mail: cs-wanatm@cisco.com"
|
|
||||||
DESCRIPTION
|
|
||||||
"The MIB module for providing the parameters
|
|
||||||
configured on an ATM interface.
|
|
||||||
Terminologies used:
|
|
||||||
SVC : Switched Virtual Channel
|
|
||||||
SPVC : Soft Permanent Virtual Circuit
|
|
||||||
SPVP : Soft Permanent Virtual Path
|
|
||||||
SVPC : Switched Virtual Path Connection
|
|
||||||
DAX : Connection with endpoints on the same
|
|
||||||
ATM switch
|
|
||||||
P2p : Point-to-point connection
|
|
||||||
P2mp : Point-to-multi-point connection
|
|
||||||
Root : The root of point-to-multipoint connection,
|
|
||||||
which is associated with a VPI/VCI
|
|
||||||
Leaf : Usually one point-to-multipoint connection
|
|
||||||
consists of one root and one or more leaves.
|
|
||||||
Leaf is the branch point for point
|
|
||||||
to multipoint connection that is
|
|
||||||
associated with a VPI/VCI
|
|
||||||
Party: One or more party is associated with each
|
|
||||||
leaf, all parties are associated with
|
|
||||||
the same VPI/VCI that its leaf belongs to
|
|
||||||
|
|
||||||
Source Via Node Destination
|
|
||||||
------- ------- -------
|
|
||||||
A| |B C| |D E| |F
|
|
||||||
--+-----+----------+-----+------------+-----+--
|
|
||||||
| | | | | |
|
|
||||||
------- ------- -------
|
|
||||||
Each active connection has two terminating
|
|
||||||
endpoints.
|
|
||||||
In the above diagram, Endpoints A and F are
|
|
||||||
terminating.
|
|
||||||
Of these the master endpoint of the connection
|
|
||||||
initiates the routing of the call and is
|
|
||||||
considered the calling party. The slave endpoint
|
|
||||||
is the called party which receives calls and is
|
|
||||||
the destination of a call.
|
|
||||||
Any endpoints that are created either on Via nodes
|
|
||||||
or on the node with the terminating endpoint in
|
|
||||||
order to have a complete connections between
|
|
||||||
endpoints A and F are said to be intermediate
|
|
||||||
endpoints. In the above diagram, endpoints B, C,
|
|
||||||
D and E are intermediate endpoints.
|
|
||||||
"
|
|
||||||
REVISION "200306160000Z"
|
|
||||||
DESCRIPTION
|
|
||||||
"Initial version of the MIB."
|
|
||||||
::= { ciscoMgmt 9999 }
|
|
||||||
|
|
||||||
caciMIBNotifications OBJECT IDENTIFIER ::= { ciscoAtmConnInfoMIB 0 }
|
|
||||||
caciMIBObjects OBJECT IDENTIFIER ::= { ciscoAtmConnInfoMIB 1 }
|
|
||||||
|
|
||||||
-- conn statistics
|
|
||||||
caciAtmConnInfo OBJECT IDENTIFIER ::= { caciMIBObjects 1 }
|
|
||||||
caciIfInfo OBJECT IDENTIFIER ::= { caciAtmConnInfo 1 }
|
|
||||||
caciP2pConns OBJECT IDENTIFIER ::= { caciAtmConnInfo 2 }
|
|
||||||
caciP2pEndpoints OBJECT IDENTIFIER ::= { caciAtmConnInfo 3 }
|
|
||||||
caciP2pIntEndpoints OBJECT IDENTIFIER ::= { caciAtmConnInfo 4 }
|
|
||||||
caciP2mpConns OBJECT IDENTIFIER ::= { caciAtmConnInfo 5 }
|
|
||||||
caciGeneric OBJECT IDENTIFIER ::= { caciAtmConnInfo 6 }
|
|
||||||
|
|
||||||
-- Textual conventions
|
|
||||||
|
|
||||||
CaciGeneralConnEPCategory::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"General category for connection or endpoint types
|
|
||||||
supported on the switch.
|
|
||||||
caciP2p : Point to point connection
|
|
||||||
caciP2mpR : Point to multi point root connection
|
|
||||||
caciP2mpL : Point to multi point leaf connection
|
|
||||||
caciP2mpPty: Point to multi point party connection"
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
caciP2p(1),
|
|
||||||
caciP2mpR(2),
|
|
||||||
caciP2mpL(3),
|
|
||||||
caciP2mpPty(4)
|
|
||||||
}
|
|
||||||
|
|
||||||
CaciP2pConnCategory::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The connection category.
|
|
||||||
caciP2pSvcc : Point to point Svc connection
|
|
||||||
caciP2pSvpc : Point to point Svpc connection
|
|
||||||
caciP2pSpvcD: Point to point Spvc DAX connection
|
|
||||||
caciP2pSpvpD: Point to point Spvp DAX connection
|
|
||||||
caciP2pSpvcR: Point to point SPVC Routed connection
|
|
||||||
caciP2pSpvpR: Point to point Spvp Routed connection"
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
caciP2pSvcc(1),
|
|
||||||
caciP2pSvpc(2),
|
|
||||||
caciP2pSpvcD(3),
|
|
||||||
caciP2pSpvpD(4),
|
|
||||||
caciP2pSpvcR(5),
|
|
||||||
caciP2pSpvpR(6)
|
|
||||||
}
|
|
||||||
|
|
||||||
CaciP2pEndpointCategory::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The terminating endpoint category.
|
|
||||||
caciP2pSpvcRPEP : Point to point Spvc
|
|
||||||
Routed Persistent endpoint
|
|
||||||
caciP2pSpvcRNPEP: Point to point Spvc
|
|
||||||
Routed Non-persistent endpoint
|
|
||||||
caciP2pSpvpRPEP : Point to point Spvp
|
|
||||||
Routed Persistent endpoint
|
|
||||||
caciP2pSpvpRNPEP: Point to point Spvp
|
|
||||||
Routed Non-persistent endpoint
|
|
||||||
caciP2pSpvcDEP : Point to point Spvc
|
|
||||||
DAX endpoint
|
|
||||||
caciP2pSpvpDEP : Point to point Spvp
|
|
||||||
DAX endpoint"
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
caciP2pSpvcRPEP(1),
|
|
||||||
caciP2pSpvcRNPEP(2),
|
|
||||||
caciP2pSpvpRPEP(3),
|
|
||||||
caciP2pSpvpRNPEP(4),
|
|
||||||
caciP2pSpvcDEP(5),
|
|
||||||
caciP2pSpvpDEP(6)
|
|
||||||
}
|
|
||||||
|
|
||||||
CaciP2pIntEndpointCategory::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The intermediate endpoint category.
|
|
||||||
caciP2pSvccIntEP : Point to point Svc
|
|
||||||
intermediate endpoint
|
|
||||||
caciP2pSvpcIntEP : Point to point Svpc
|
|
||||||
intermediate endpoint
|
|
||||||
caciP2pSpvcRIntEP: Point to point Spvc Routed
|
|
||||||
intermediate endpoint
|
|
||||||
caciP2pSpvpRIntEP: Point to point Spvp Routed
|
|
||||||
intermediate endpoint"
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
caciP2pSvccIntEP(1),
|
|
||||||
caciP2pSvpcIntEP(2),
|
|
||||||
caciP2pSpvcRIntEP(3),
|
|
||||||
caciP2pSpvpRIntEP(4)
|
|
||||||
}
|
|
||||||
|
|
||||||
CaciP2mpConnCategory::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The point to multipoint connection category.
|
|
||||||
caciP2mpSvcRoot : Point to multipoint Svc
|
|
||||||
root connection
|
|
||||||
caciP2mpSvcLeaf : Point to multipoint Svc
|
|
||||||
leaf connection
|
|
||||||
caciP2mpSvcParty : Point to multipoint Svc
|
|
||||||
party connection
|
|
||||||
caciP2mpSvpcRoot : Point to multipoint Svpc
|
|
||||||
root connection
|
|
||||||
caciP2mpSvpcLeaf : Point to multipoint Svpc
|
|
||||||
leaf connection
|
|
||||||
caciP2mpSvpcParty: Point to multipoint Svpc
|
|
||||||
party connection
|
|
||||||
caciP2mpSpvcP : Point to multipoint Spvc
|
|
||||||
persistent connection
|
|
||||||
caciP2mpSpvcNP : Point to multipoint Spvc
|
|
||||||
non-persistent connection
|
|
||||||
caciP2mpSpvcAct : Point to multipoint Spvc
|
|
||||||
Active connection
|
|
||||||
caciP2mpSpvpP : Point to multipoint Spvp
|
|
||||||
persistent connection
|
|
||||||
caciP2mpSpvpNP : Point to multipoint Spvp
|
|
||||||
non-persistent connection
|
|
||||||
caciP2mpSpvpAct : Point to multipoint Spvp
|
|
||||||
active connection
|
|
||||||
caciP2mpSpvcPaP : Point to multipoint Spvc
|
|
||||||
party persistent connection
|
|
||||||
caciP2mpSpvcPaAct: Point to multipoint Spvc
|
|
||||||
party active connection
|
|
||||||
caciP2mpSpvpPaP : Point to multipoint Spvp
|
|
||||||
party persistent connection
|
|
||||||
caciP2mpSpvpPaAct: Point to multipoint Spvp
|
|
||||||
party active connection"
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
caciP2mpSvcRoot(1),
|
|
||||||
caciP2mpSvcLeaf(2),
|
|
||||||
caciP2mpSvcParty(3),
|
|
||||||
caciP2mpSvpcRoot(4),
|
|
||||||
caciP2mpSvpcLeaf(5),
|
|
||||||
caciP2mpSvpcParty(6),
|
|
||||||
caciP2mpSpvcP(7),
|
|
||||||
caciP2mpSpvcNP(8),
|
|
||||||
caciP2mpSpvcAct(9),
|
|
||||||
caciP2mpSpvpP(10),
|
|
||||||
caciP2mpSpvpNP(11),
|
|
||||||
caciP2mpSpvpAct(12),
|
|
||||||
caciP2mpSpvcPaP(13),
|
|
||||||
caciP2mpSpvcPaAct(14),
|
|
||||||
caciP2mpSpvpPaP(15),
|
|
||||||
caciP2mpSpvpPaAct(16)
|
|
||||||
}
|
|
||||||
|
|
||||||
CaciATMEndpointCategory::= TEXTUAL-CONVENTION
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The connection category.
|
|
||||||
caciTotalSpvc : Total SPVC endpoints configured
|
|
||||||
on the ATM switch
|
|
||||||
caciP2pTotalInt : Total intermediate endpoints
|
|
||||||
configured on the ATM switch
|
|
||||||
caciTotalMaster : Total master endpoints configured
|
|
||||||
on the ATM switch
|
|
||||||
caciTotalSlave : Total slave endpoints configured
|
|
||||||
on the ATM switch"
|
|
||||||
SYNTAX INTEGER {
|
|
||||||
caciTotalSpvc(1),
|
|
||||||
caciP2pTotalInt(2),
|
|
||||||
caciTotalMaster(3),
|
|
||||||
caciTotalSlave(4)
|
|
||||||
}
|
|
||||||
|
|
||||||
-- Node related scalars
|
|
||||||
|
|
||||||
-- Total connections
|
|
||||||
|
|
||||||
caciP2pTotalConfConns OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object specifies the total point to point
|
|
||||||
connections that are configured on this ATM switch."
|
|
||||||
::= { caciGeneric 1 }
|
|
||||||
|
|
||||||
caciP2pMaxPossibleConns OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object specifies the upper limit of the
|
|
||||||
point to point and point to multipoint
|
|
||||||
connections that are allowed to be configured
|
|
||||||
on this ATM switch."
|
|
||||||
::= { caciGeneric 2 }
|
|
||||||
|
|
||||||
--Total endpoints
|
|
||||||
|
|
||||||
caciMaxPossibleEndpoints OBJECT-TYPE
|
|
||||||
SYNTAX Unsigned32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object specifies the upper limit of all the
|
|
||||||
possible endpoints that are allowed to be
|
|
||||||
configured on this ATM switch."
|
|
||||||
::= { caciGeneric 3 }
|
|
||||||
|
|
||||||
-- Summary of switch endpoints
|
|
||||||
|
|
||||||
caciGenericEndpointTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF CaciGenericEndpointEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The table contains number of connection per
|
|
||||||
CaciATMEndpointCategory."
|
|
||||||
::= { caciGeneric 4 }
|
|
||||||
|
|
||||||
caciGenericEndpointEntry OBJECT-TYPE
|
|
||||||
SYNTAX CaciGenericEndpointEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry in the table specifying the number
|
|
||||||
of connections for the corresponding
|
|
||||||
CaciATMEndpointCategory."
|
|
||||||
INDEX { caciATMEndpointCategory }
|
|
||||||
::= { caciGenericEndpointTable 1 }
|
|
||||||
|
|
||||||
CaciGenericEndpointEntry ::=
|
|
||||||
SEQUENCE {
|
|
||||||
caciATMEndpointCategory CaciATMEndpointCategory,
|
|
||||||
caciTotalEndpoints Gauge32
|
|
||||||
}
|
|
||||||
|
|
||||||
caciATMEndpointCategory OBJECT-TYPE
|
|
||||||
SYNTAX CaciATMEndpointCategory
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Endpoint category corresponding to
|
|
||||||
CaciATMEndpointCategory."
|
|
||||||
::= { caciGenericEndpointEntry 1 }
|
|
||||||
|
|
||||||
caciTotalEndpoints OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of endpoints of
|
|
||||||
caciATMEndpointCategory configured
|
|
||||||
on this ATM switch."
|
|
||||||
::= { caciGenericEndpointEntry 2 }
|
|
||||||
|
|
||||||
-- Interface Connections Statistics table
|
|
||||||
|
|
||||||
caciConnInfoTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF CaciConnInfoEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The Connection Statistics table.
|
|
||||||
This table has the number of connections per interface."
|
|
||||||
::= { caciIfInfo 1 }
|
|
||||||
|
|
||||||
caciConnInfoEntry OBJECT-TYPE
|
|
||||||
SYNTAX CaciConnInfoEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry in the caciConnInfoTable.
|
|
||||||
Each entry in ifTable with ifType
|
|
||||||
values: atm(37), atmLogical(80) or atmVirtual(149)
|
|
||||||
has an associated entry in this table."
|
|
||||||
INDEX { ifIndex, caciGeneralConnEPCategory }
|
|
||||||
::= { caciConnInfoTable 1 }
|
|
||||||
|
|
||||||
CaciConnInfoEntry ::=
|
|
||||||
SEQUENCE {
|
|
||||||
caciGeneralConnEPCategory CaciGeneralConnEPCategory,
|
|
||||||
caciNumUsedConns Gauge32
|
|
||||||
}
|
|
||||||
|
|
||||||
caciGeneralConnEPCategory OBJECT-TYPE
|
|
||||||
SYNTAX CaciGeneralConnEPCategory
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The general connection or endpoint category
|
|
||||||
on this ATM switch."
|
|
||||||
::= { caciConnInfoEntry 1 }
|
|
||||||
|
|
||||||
caciNumUsedConns OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"This object specifies the total number of used
|
|
||||||
connections of type caciGeneralConnEPCategory
|
|
||||||
on this interface."
|
|
||||||
::= { caciConnInfoEntry 2 }
|
|
||||||
|
|
||||||
|
|
||||||
-- Summary of total P2p connections
|
|
||||||
caciP2pConnTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF CaciP2pConnEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The table contains number of connection per
|
|
||||||
CaciP2pConnCategory."
|
|
||||||
::= { caciP2pConns 1}
|
|
||||||
|
|
||||||
caciP2pConnEntry OBJECT-TYPE
|
|
||||||
SYNTAX CaciP2pConnEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry in the table specifying the number
|
|
||||||
of connections for the corresponding CaciP2pConnCategory."
|
|
||||||
INDEX { caciP2pConnectionCategory }
|
|
||||||
::= { caciP2pConnTable 1 }
|
|
||||||
|
|
||||||
CaciP2pConnEntry ::=
|
|
||||||
SEQUENCE {
|
|
||||||
caciP2pConnectionCategory CaciP2pConnCategory,
|
|
||||||
caciP2pTotalConns Gauge32
|
|
||||||
}
|
|
||||||
|
|
||||||
caciP2pConnectionCategory OBJECT-TYPE
|
|
||||||
SYNTAX CaciP2pConnCategory
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The connection category."
|
|
||||||
::= { caciP2pConnEntry 1 }
|
|
||||||
|
|
||||||
caciP2pTotalConns OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of P2p connections of type
|
|
||||||
CaciP2pConnCategory configured on this ATM switch."
|
|
||||||
::= { caciP2pConnEntry 2 }
|
|
||||||
|
|
||||||
-- Summary of total P2p Endpoints
|
|
||||||
|
|
||||||
caciP2pEndpointTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF CaciP2pEndpointEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The table contains number of endpoints per
|
|
||||||
CaciP2pEndpointCategory."
|
|
||||||
::= { caciP2pEndpoints 1}
|
|
||||||
|
|
||||||
caciP2pEndpointEntry OBJECT-TYPE
|
|
||||||
SYNTAX CaciP2pEndpointEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry in the table specifying the number
|
|
||||||
of endpoints for the corresponding
|
|
||||||
CaciP2pEndpointCategory."
|
|
||||||
INDEX { caciP2pEndptCategory }
|
|
||||||
::= { caciP2pEndpointTable 1 }
|
|
||||||
|
|
||||||
CaciP2pEndpointEntry ::=
|
|
||||||
SEQUENCE {
|
|
||||||
caciP2pEndptCategory CaciP2pEndpointCategory,
|
|
||||||
caciP2pTotalConfEndpoints Gauge32
|
|
||||||
}
|
|
||||||
|
|
||||||
caciP2pEndptCategory OBJECT-TYPE
|
|
||||||
SYNTAX CaciP2pEndpointCategory
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The point to point endpoint category."
|
|
||||||
::= { caciP2pEndpointEntry 1 }
|
|
||||||
|
|
||||||
caciP2pTotalConfEndpoints OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The number of total P2p enpoints of type
|
|
||||||
CaciP2pEndpointCategory configured on this ATM switch."
|
|
||||||
::= { caciP2pEndpointEntry 2 }
|
|
||||||
|
|
||||||
-- Summary of Total Active SVC/SPVC P2p intermediate endpoints
|
|
||||||
|
|
||||||
caciP2pIntEndpointTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF CaciP2pIntEndpointEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The table contains number of endpoints per
|
|
||||||
CaciP2pIntEndpointCategory."
|
|
||||||
::= { caciP2pIntEndpoints 1}
|
|
||||||
|
|
||||||
caciP2pIntEndpointEntry OBJECT-TYPE
|
|
||||||
SYNTAX CaciP2pIntEndpointEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry in the table specifying the number
|
|
||||||
of endpoints for the corresponding
|
|
||||||
CaciP2pIntEndpointCategory."
|
|
||||||
INDEX { caciP2pIntEndptCategory }
|
|
||||||
::= { caciP2pIntEndpointTable 1 }
|
|
||||||
|
|
||||||
CaciP2pIntEndpointEntry ::=
|
|
||||||
SEQUENCE {
|
|
||||||
caciP2pIntEndptCategory CaciP2pIntEndpointCategory,
|
|
||||||
caciP2pTotalIntEndpoints Gauge32
|
|
||||||
}
|
|
||||||
|
|
||||||
caciP2pIntEndptCategory OBJECT-TYPE
|
|
||||||
SYNTAX CaciP2pIntEndpointCategory
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The point to point intermediate endpoint category."
|
|
||||||
::= { caciP2pIntEndpointEntry 1 }
|
|
||||||
|
|
||||||
caciP2pTotalIntEndpoints OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of P2p intermediate enpoints of type
|
|
||||||
CaciP2pIntEndpointCategory present on this ATM switch."
|
|
||||||
::= { caciP2pIntEndpointEntry 2 }
|
|
||||||
|
|
||||||
-- Summary of point to multipoint connections
|
|
||||||
|
|
||||||
caciP2mpConnTable OBJECT-TYPE
|
|
||||||
SYNTAX SEQUENCE OF CaciP2mpConnEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The table contains number of connection per
|
|
||||||
CaciP2mpConnCategory."
|
|
||||||
::= { caciP2mpConns 1 }
|
|
||||||
|
|
||||||
caciP2mpConnEntry OBJECT-TYPE
|
|
||||||
SYNTAX CaciP2mpConnEntry
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"An entry in the table specifying the number
|
|
||||||
of connections for the corresponding
|
|
||||||
CaciP2mpConnCategory."
|
|
||||||
INDEX { caciP2mpConnectionCategory }
|
|
||||||
::= { caciP2mpConnTable 1 }
|
|
||||||
|
|
||||||
CaciP2mpConnEntry ::=
|
|
||||||
SEQUENCE {
|
|
||||||
caciP2mpConnectionCategory CaciP2mpConnCategory,
|
|
||||||
caciP2mpTotalConfConns Gauge32
|
|
||||||
}
|
|
||||||
|
|
||||||
caciP2mpConnectionCategory OBJECT-TYPE
|
|
||||||
SYNTAX CaciP2mpConnCategory
|
|
||||||
MAX-ACCESS not-accessible
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The point to multi point connection category."
|
|
||||||
::= { caciP2mpConnEntry 1 }
|
|
||||||
|
|
||||||
caciP2mpTotalConfConns OBJECT-TYPE
|
|
||||||
SYNTAX Gauge32
|
|
||||||
MAX-ACCESS read-only
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The total number of P2mp connections of type
|
|
||||||
CaciP2mpConnCategory configured on this ATM switch."
|
|
||||||
::= { caciP2mpConnEntry 2 }
|
|
||||||
|
|
||||||
|
|
||||||
-- Notifications
|
|
||||||
-- There are no notifications for this module
|
|
||||||
|
|
||||||
-- conformance information
|
|
||||||
|
|
||||||
ciscoAtmConnInfoMIBConformance OBJECT IDENTIFIER ::=
|
|
||||||
{ ciscoAtmConnInfoMIB 2 }
|
|
||||||
ciscoAtmConnInfoMIBCompliances OBJECT IDENTIFIER ::=
|
|
||||||
{ ciscoAtmConnInfoMIBConformance 1 }
|
|
||||||
ciscoAtmConnInfoMIBGroups OBJECT IDENTIFIER ::=
|
|
||||||
{ ciscoAtmConnInfoMIBConformance 2 }
|
|
||||||
|
|
||||||
ciscoAtmConnInfoMIBCompliance MODULE-COMPLIANCE
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"The Compliance statement for ciscoAtm management group."
|
|
||||||
MODULE -- this module
|
|
||||||
MANDATORY-GROUPS { ciscoConnInfoConfMIBGroup,
|
|
||||||
ciscoTotalConnsMIBGroup,
|
|
||||||
ciscoTotalEndpointsMIBGroup
|
|
||||||
}
|
|
||||||
GROUP ciscoP2pConnsMIBGroup
|
|
||||||
DESCRIPTION
|
|
||||||
"Required if P2p connections are supported"
|
|
||||||
|
|
||||||
GROUP ciscoP2pEndpointsMIBGroup
|
|
||||||
DESCRIPTION
|
|
||||||
"Required if P2p connections are supported"
|
|
||||||
|
|
||||||
GROUP ciscoP2pIntEndpointsMIBGroup
|
|
||||||
DESCRIPTION
|
|
||||||
"Required if P2p connections are supported"
|
|
||||||
|
|
||||||
GROUP ciscoP2mpConnsMIBGroup
|
|
||||||
DESCRIPTION
|
|
||||||
"Required if P2mp connections are supported"
|
|
||||||
|
|
||||||
::= { ciscoAtmConnInfoMIBCompliances 1 }
|
|
||||||
|
|
||||||
-- units of conformance
|
|
||||||
ciscoConnInfoConfMIBGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
caciNumUsedConns
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Objects used for representing connection
|
|
||||||
statistical details about an interface."
|
|
||||||
::= { ciscoAtmConnInfoMIBGroups 1 }
|
|
||||||
|
|
||||||
ciscoP2pConnsMIBGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
caciP2pTotalConns
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Objects used for representing the point to point
|
|
||||||
connections of a particular CaP2pConnCategory."
|
|
||||||
::= { ciscoAtmConnInfoMIBGroups 2 }
|
|
||||||
|
|
||||||
ciscoP2pEndpointsMIBGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
caciP2pTotalConfEndpoints
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Objects used for representing the point to point
|
|
||||||
endpoints of a particular CaP2pEndpointCategory."
|
|
||||||
::= { ciscoAtmConnInfoMIBGroups 3 }
|
|
||||||
|
|
||||||
ciscoP2pIntEndpointsMIBGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
caciP2pTotalIntEndpoints
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Objects used for representing the point to point
|
|
||||||
intermediate endpoints of a particular
|
|
||||||
CaP2pIntEndpointCategory."
|
|
||||||
::= { ciscoAtmConnInfoMIBGroups 4 }
|
|
||||||
|
|
||||||
ciscoP2mpConnsMIBGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
caciP2mpTotalConfConns
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Objects used for representing the point to multi point
|
|
||||||
connections of a particular CaP2mpConnCategory."
|
|
||||||
::= { ciscoAtmConnInfoMIBGroups 5 }
|
|
||||||
|
|
||||||
ciscoTotalConnsMIBGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
caciP2pTotalConfConns,
|
|
||||||
caciP2pMaxPossibleConns
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Objects used for representing the total connections
|
|
||||||
on the ATM switch."
|
|
||||||
::= { ciscoAtmConnInfoMIBGroups 6 }
|
|
||||||
|
|
||||||
ciscoTotalEndpointsMIBGroup OBJECT-GROUP
|
|
||||||
OBJECTS {
|
|
||||||
caciMaxPossibleEndpoints,
|
|
||||||
caciTotalEndpoints
|
|
||||||
}
|
|
||||||
STATUS current
|
|
||||||
DESCRIPTION
|
|
||||||
"Objects used for representing the total endpoints
|
|
||||||
on the ATM switch."
|
|
||||||
::= { ciscoAtmConnInfoMIBGroups 7 }
|
|
||||||
|
|
||||||
END
|
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user