-
Notifications
You must be signed in to change notification settings - Fork 57
/
CISCO-BGP-POLICY-ACCOUNTING-MIB.mib
203 lines (176 loc) · 6.85 KB
/
CISCO-BGP-POLICY-ACCOUNTING-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
-- *****************************************************************
-- CISCO-BGP-POLICY-ACCOUNTING-MIB.my: Cisco BGP-Policy Accounting MIB
--
-- November 1999, Vinod B C
--
-- Copyright (c) 2000, 2002 by cisco Systems, Inc.
-- All rights reserved.
--
-- *****************************************************************
CISCO-BGP-POLICY-ACCOUNTING-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Integer32,
Counter64
FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
ciscoMgmt
FROM CISCO-SMI
ifIndex
FROM IF-MIB;
ciscoBgpPolAcctMIB MODULE-IDENTITY
LAST-UPDATED "200207260000Z"
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: [email protected]"
DESCRIPTION
"BGP policy based accounting information"
REVISION "200207260000Z"
DESCRIPTION
"Added egress, packet and octet, counters for the BGP
policy accounting feature."
REVISION "9912170000Z"
DESCRIPTION
"Initial version of this MIB module."
::= { ciscoMgmt 148 }
ciscoBgpPolAcctMIBObjects OBJECT IDENTIFIER ::= { ciscoBgpPolAcctMIB 1 }
cbpAcctTable OBJECT-TYPE
SYNTAX SEQUENCE OF CbpAcctEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The cbpAcctTable provides statistics about ingress and egress
traffic on an interface. This data could be used for purposes
like billing."
::= { ciscoBgpPolAcctMIBObjects 1 }
cbpAcctEntry OBJECT-TYPE
SYNTAX CbpAcctEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each cbpAcctEntry provides statistics for traffic of interest
on an ingress and/or egress interfaces. The traffic of interest
may be used for purposes like billing, and is referred to from
here on in the MIB by the term 'traffic-type', which corresponds
to cbpAcctTrafficIndex. Traffic-types are configured by the user
on a per interface basis.
The statistics include ingress packet counts, ingress octet
counts, egress packet counts and egress octet counts. Entries
are created when traffic-type is configured on an interface.
Entries are deleted automatically when the user
removes the corresponding traffic-type configuration from an
interface."
INDEX {ifIndex, cbpAcctTrafficIndex}
::= { cbpAcctTable 1 }
CbpAcctEntry ::= SEQUENCE {
cbpAcctTrafficIndex Integer32,
cbpAcctInPacketCount Counter64,
cbpAcctInOctetCount Counter64,
cbpAcctOutPacketCount Counter64,
cbpAcctOutOctetCount Counter64
}
cbpAcctTrafficIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An integer value greater than 0, that uniquely identifies
a traffic-type. The traffic-type has no intrinsic meaning.
It just means the traffic coming into an interface can be
differentiated into different types. It is up to the user to
give meaning to and configure the various traffic-types on an
interface."
::= { cbpAcctEntry 1}
cbpAcctInPacketCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received for a particular
traffic-type on an interface."
::= { cbpAcctEntry 2}
cbpAcctInOctetCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets received for a particular
traffic-type on an interface."
::= { cbpAcctEntry 3}
cbpAcctOutPacketCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets transmitted for a particular
traffic-type on an interface."
::= { cbpAcctEntry 4}
cbpAcctOutOctetCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets transmitted for a particular
traffic-type on an interface."
::= { cbpAcctEntry 5}
-- Conformance Information
ciscoBgpPolAcctMIBConformance OBJECT IDENTIFIER ::=
{ ciscoBgpPolAcctMIB 3 }
ciscoBgpPolAcctMIBCompliances OBJECT IDENTIFIER ::=
{ ciscoBgpPolAcctMIBConformance 1 }
ciscoBgpPolAcctMIBGroups OBJECT IDENTIFIER ::=
{ ciscoBgpPolAcctMIBConformance 2 }
-- Compliance Statement
ciscoBgpPolAcctMIBCompliance MODULE-COMPLIANCE
STATUS deprecated -- superceeded by
-- ciscoBgpPolAcctMIBComplianceRev1
DESCRIPTION
"The compliance statement for entities which implement
this Cisco BGP-Policy Traffic Accounting MIB."
MODULE -- this module
MANDATORY-GROUPS {
cbpAcctTableGroup
}
::= { ciscoBgpPolAcctMIBCompliances 1 }
ciscoBgpPolAcctMIBComplianceRev1 MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for entities which implement
this Cisco BGP-Policy Traffic Accounting MIB."
MODULE -- this module
MANDATORY-GROUPS {
cbpAcctTableGroupRev1
}
::= { ciscoBgpPolAcctMIBCompliances 2 }
-- units of conformance:
cbpAcctTableGroup OBJECT-GROUP
OBJECTS {
cbpAcctTrafficIndex,
cbpAcctInPacketCount,
cbpAcctInOctetCount
}
STATUS deprecated -- superceeded by cbpAcctTableGroupRev1
DESCRIPTION
"A collection of objects providing customer traffic
related parameters."
::= { ciscoBgpPolAcctMIBGroups 1 }
cbpAcctTableGroupRev1 OBJECT-GROUP
OBJECTS {
cbpAcctTrafficIndex,
cbpAcctInPacketCount,
cbpAcctInOctetCount,
cbpAcctOutPacketCount,
cbpAcctOutOctetCount
}
STATUS current
DESCRIPTION
"A collection of objects providing customer traffic
related parameters."
::= { ciscoBgpPolAcctMIBGroups 2 }
END