forked from simonjj/SnmpMibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CISCO-AAL5-EXT-MIB.mib
207 lines (179 loc) · 6.58 KB
/
CISCO-AAL5-EXT-MIB.mib
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
--*****************************************************************
-- 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