-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathCISCO-SWITCH-USAGE-MIB.mib
186 lines (156 loc) · 6.55 KB
/
CISCO-SWITCH-USAGE-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
--
-- *****************************************************************
-- Cisco Switch Resource Usage MIB
--
-- Mar, 2001 Ranbir Parmar
--
-- Copyright (c) 2001 by cisco Systems, Inc.
-- All rights reserved.
-- *****************************************************************
--
CISCO-SWITCH-USAGE-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, Counter32, Counter64,
OBJECT-TYPE FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP FROM SNMPv2-CONF
ifIndex
FROM IF-MIB
ciscoMgmt FROM CISCO-SMI;
ciscoSwitchUsageMIB MODULE-IDENTITY
LAST-UPDATED "200105020000Z"
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
"This MIB defines objects related to statistics
for the usage of switch fabric. The switch fabric
is used by the incoming packets from the line/network
to a interface. Such packets are called ingress packets.
Counters are maintained for number of ingress packets/
octets switched by the switch fabric for each
interface.
NOTE: These counters are not counting the total number
of incoming packets and octets for a particular
interface. Instead only the counts of packets and
octets that actually use the switch-fabric are being
accounted for by this MIB. Therefore, the counters in
this MIB are distinctly different from packet and octet
counters found in the IF-MIB."
REVISION "200105020000Z"
DESCRIPTION
"Initial version of this MIB module."
::= { ciscoMgmt 201 }
ciscoSwitchUsageMIBObjects OBJECT IDENTIFIER
::= { ciscoSwitchUsageMIB 1 }
ciscoSwitchUsageStats OBJECT IDENTIFIER
::= { ciscoSwitchUsageMIBObjects 1 }
-- the switch usage statistics group
cswitchUsageStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF CswitchUsageStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of switch resouce usage statistics
entries. The statistics will give information
on the switch usage by each interface."
::= { ciscoSwitchUsageStats 1 }
cswitchUsageStatEntry OBJECT-TYPE
SYNTAX CswitchUsageStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry contains information of a particular
interface in terms of how much switch resource
it has used.
An entry in this table exists for each ifEntry
with an ifType of fastEther(62) for FastEthernet
interface and gigabitEthernet (117) for Gigabit
interface."
INDEX { ifIndex }
::= { cswitchUsageStatTable 1 }
CswitchUsageStatEntry ::=
SEQUENCE {
cswitchUsageByIngrsIntfPkts Counter32,
cswitchUsageByIngrsIntfHCPkts Counter64,
cswitchUsageByIngrsIntfOctets Counter32,
cswitchUsageByIngrsIntfHCOctets Counter64
}
cswitchUsageByIngrsIntfPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of ingress packets of a interface
which use the switch resource."
::= { cswitchUsageStatEntry 1 }
cswitchUsageByIngrsIntfHCPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of ingress packets of a interface
which use the switch resource.
This is a 64 bit (High Capacity) version of
the cswitchUsageByIngrsIntfPkts counter for
use with SNMP v2c or v3 Managers."
::= { cswitchUsageStatEntry 2 }
cswitchUsageByIngrsIntfOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of ingress octets of a interface
which use the switch resource."
::= { cswitchUsageStatEntry 3 }
cswitchUsageByIngrsIntfHCOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of ingress octets of a interface
which use the switch resource.
This is a 64 bit (High Capacity) version of
the cswitchUsageByIngrsIntfOctets counter for
use with SNMP v2c or v3 Managers."
::= { cswitchUsageStatEntry 4 }
-- notifications
ciscoSwitchUsageMIBNotifyPrefix OBJECT IDENTIFIER
::= { ciscoSwitchUsageMIB 2 }
ciscoSwitchUsageMIBNotifications OBJECT IDENTIFIER
::= { ciscoSwitchUsageMIBNotifyPrefix 0 }
-- conformance information
ciscoSwitchUsageMIBConformance OBJECT IDENTIFIER
::= { ciscoSwitchUsageMIB 3 }
ciscoSwitchUsageMIBCompliances OBJECT IDENTIFIER
::= { ciscoSwitchUsageMIBConformance 1 }
ciscoSwitchUsageMIBGroups OBJECT IDENTIFIER
::= { ciscoSwitchUsageMIBConformance 2 }
-- compliance statement
ciscoSwitchUsageMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for the switch usage
statistics group."
MODULE -- this module
MANDATORY-GROUPS { ciscoSwitchUsageMIBGroup }
::= { ciscoSwitchUsageMIBCompliances 1 }
-- units of conformance
ciscoSwitchUsageMIBGroup OBJECT-GROUP
OBJECTS {
cswitchUsageByIngrsIntfPkts,
cswitchUsageByIngrsIntfHCPkts,
cswitchUsageByIngrsIntfOctets,
cswitchUsageByIngrsIntfHCOctets
}
STATUS current
DESCRIPTION
"The Object Group for switch usage statistics"
::= { ciscoSwitchUsageMIBGroups 1 }
END