1-- *------------------------------------------------------------------
2-- * ALTIGA-BMGT-STATS-MIB.my:  Altiga Bandwidth Limiting/Guarantee and Policy Statistics MIB.
3-- *
4-- * Altiga Networks was acquired by Cisco Systems on March 29, 2000
5-- *
6-- * Copyright (c) 2002 by Cisco Systems, Inc.
7-- * All rights reserved.
8-- *
9-- *------------------------------------------------------------------
10
11ALTIGA-BMGT-STATS-MIB DEFINITIONS ::= BEGIN
12
13   IMPORTS
14      MODULE-IDENTITY, OBJECT-TYPE, Counter32, Unsigned32
15         FROM SNMPv2-SMI
16      RowStatus
17         FROM SNMPv2-TC
18      OBJECT-GROUP, MODULE-COMPLIANCE
19         FROM SNMPv2-CONF
20      alBwMgmtGroup, alStatsBwMgmt
21         FROM ALTIGA-MIB
22      alBwMgmtMibModule
23         FROM ALTIGA-GLOBAL-REG;
24
25   altigaBwMgmMibModule MODULE-IDENTITY
26      LAST-UPDATED   "200209051300Z"
27      ORGANIZATION   "Cisco Systems, Inc."
28      CONTACT-INFO
29         "Cisco Systems
30          170 W Tasman Drive
31          San Jose, CA  95134
32          USA
33
34          Tel: +1 800 553-NETS
35          E-mail: cs-cvpn3000@cisco.com"
36
37      DESCRIPTION
38         "The Altiga Bandwidth Limiting/Guarantee and Policy Statistics MIB
39          models counters and objects that are of management interest for bandwidth
40          management.
41
42          Acronyms
43          The following acronyms are used in this document:
44
45            BW:         Bandwidth
46
47            MIB:        Management Information Base
48
49         "
50
51        REVISION "200209051300Z"
52        DESCRIPTION
53                "Added module compliance."
54
55        REVISION "200207100000Z"
56        DESCRIPTION
57                "Updated with new header"
58
59      ::= { alBwMgmtMibModule 2 }
60
61-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
62-- MIB Objects
63-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
64
65alBwMgmtStatsGlobal OBJECT IDENTIFIER ::= { alStatsBwMgmt 1 }
66
67-- Any global stuff here...
68
69alBwMgmtStatTable OBJECT-TYPE
70   SYNTAX     SEQUENCE OF AlBwMgmtStatEntry
71   MAX-ACCESS not-accessible
72   STATUS     current
73   DESCRIPTION
74      "A table of BW Management status entries."
75   ::= { alStatsBwMgmt 2 }
76
77alBwMgmtStatEntry OBJECT-TYPE
78   SYNTAX     AlBwMgmtStatEntry
79   MAX-ACCESS not-accessible
80   STATUS     current
81   DESCRIPTION
82      "A collection of bandwidth mgmt status objects on this
83       interface."
84   INDEX      { alBwMgmtStatIntfId }
85   ::= { alBwMgmtStatTable 1 }
86
87AlBwMgmtStatEntry ::=
88SEQUENCE {
89   alBwMgmtStatRowStatus               RowStatus,
90   alBwMgmtStatIntfId                  INTEGER,
91   alBwMgmtStatGrpId                   INTEGER,
92   alBwMgmtStatInConformedRate         Unsigned32,
93   alBwMgmtStatInDroppedRate           Unsigned32,
94   alBwMgmtStatInConformedBytes        Counter32,
95   alBwMgmtStatInDroppedBytes          Counter32,
96   alBwMgmtStatOutConformedRate        Unsigned32,
97   alBwMgmtStatOutDroppedRate          Unsigned32,
98   alBwMgmtStatOutConformedBytes       Counter32,
99   alBwMgmtStatOutDroppedBytes         Counter32
100}
101
102alBwMgmtStatRowStatus OBJECT-TYPE
103   SYNTAX     RowStatus
104   MAX-ACCESS read-only
105   STATUS     current
106   DESCRIPTION
107      "The status of this row."
108   ::= { alBwMgmtStatEntry 1 }
109
110alBwMgmtStatIntfId OBJECT-TYPE
111   SYNTAX     INTEGER (1..3)
112   MAX-ACCESS read-only
113   STATUS     current
114   DESCRIPTION
115      "BwPolicy identifier used as the index of this row."
116   ::= { alBwMgmtStatEntry 2 }
117
118alBwMgmtStatGrpId OBJECT-TYPE
119   SYNTAX     INTEGER (0..100000)
120   MAX-ACCESS read-only
121   STATUS     current
122   DESCRIPTION
123      "BwPolicy identifier used as the index of this row."
124   ::= { alBwMgmtStatEntry 3 }
125
126alBwMgmtStatInConformedRate OBJECT-TYPE
127   SYNTAX     Unsigned32
128   UNITS      "kbytes"
129   MAX-ACCESS read-only
130   STATUS     current
131   DESCRIPTION
132      "The counter of packets permitted by this rate limit."
133   ::= { alBwMgmtStatEntry 4 }
134
135alBwMgmtStatInDroppedRate OBJECT-TYPE
136   SYNTAX     Unsigned32
137   UNITS      "kbytes"
138   MAX-ACCESS read-only
139   STATUS     current
140   DESCRIPTION
141      "The counter of packets which exceeded this rate limit."
142   ::= { alBwMgmtStatEntry 5 }
143
144alBwMgmtStatInConformedBytes OBJECT-TYPE
145   SYNTAX     Counter32
146   UNITS      "bytes"
147   MAX-ACCESS read-only
148   STATUS     current
149   DESCRIPTION
150      "The counter of bytes which exceeded this rate limit."
151   ::= { alBwMgmtStatEntry 6 }
152
153alBwMgmtStatInDroppedBytes OBJECT-TYPE
154   SYNTAX     Counter32
155   UNITS      "bytes"
156   MAX-ACCESS read-only
157   STATUS     current
158   DESCRIPTION
159      "The counter of bytes which exceeded this rate limit."
160   ::= { alBwMgmtStatEntry 7 }
161
162
163alBwMgmtStatOutConformedRate OBJECT-TYPE
164   SYNTAX     Unsigned32
165   UNITS      "kbytes"
166   MAX-ACCESS read-only
167   STATUS     current
168   DESCRIPTION
169      "The counter of packets permitted by this rate limit."
170   ::= { alBwMgmtStatEntry 8 }
171
172alBwMgmtStatOutDroppedRate OBJECT-TYPE
173   SYNTAX     Unsigned32
174   UNITS      "kbytes"
175   MAX-ACCESS read-only
176   STATUS     current
177   DESCRIPTION
178      "The counter of packets which exceeded this rate limit."
179   ::= { alBwMgmtStatEntry 9 }
180
181alBwMgmtStatOutConformedBytes OBJECT-TYPE
182   SYNTAX     Counter32
183   UNITS      "bytes"
184   MAX-ACCESS read-only
185   STATUS     current
186   DESCRIPTION
187      "The counter of bytes which exceeded this rate limit."
188   ::= { alBwMgmtStatEntry 10 }
189
190alBwMgmtStatOutDroppedBytes OBJECT-TYPE
191   SYNTAX     Counter32
192   UNITS      "bytes"
193   MAX-ACCESS read-only
194   STATUS     current
195   DESCRIPTION
196      "The counter of bytes which exceeded this rate limit."
197   ::= { alBwMgmtStatEntry 11 }
198
199altigaBwMgmMibConformance OBJECT IDENTIFIER ::= { altigaBwMgmMibModule 1 }
200altigaBwMgmMibCompliances OBJECT IDENTIFIER ::= { altigaBwMgmMibConformance 1 }
201
202altigaBwMgmMibCompliance MODULE-COMPLIANCE
203   STATUS         current
204   DESCRIPTION
205      "The compliance statement for agents which
206       implement the Bandwidth Limiting/Guarantee and Policy Statistics MIB."
207   MODULE
208   MANDATORY-GROUPS {
209      alBwMgmtStatsGroup
210   }
211   ::= { altigaBwMgmMibCompliances 1 }
212
213alBwMgmtStatsGroup OBJECT-GROUP
214   OBJECTS {
215      alBwMgmtStatRowStatus,
216      alBwMgmtStatIntfId,
217      alBwMgmtStatGrpId,
218      alBwMgmtStatInConformedRate,
219      alBwMgmtStatInDroppedRate,
220      alBwMgmtStatInConformedBytes,
221      alBwMgmtStatInDroppedBytes,
222      alBwMgmtStatOutConformedRate,
223      alBwMgmtStatOutDroppedRate,
224      alBwMgmtStatOutConformedBytes,
225      alBwMgmtStatOutDroppedBytes
226   }
227   STATUS     current
228   DESCRIPTION
229      "A collection of objects providing BW Management monitoring."
230   ::= { alBwMgmtGroup 2 }
231
232END
233
234
235
236
237
238