summaryrefslogtreecommitdiff
path: root/MIBS/hp/NETSWITCH-DMA-MIB
blob: a475cdee4e45390b712d208b1f6e9d490017da12 (plain)
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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
-- HP Enterprise NETSWITCH DMA MIB 


          NETSWITCH-DMA-MIB DEFINITIONS ::= BEGIN

          IMPORTS
                       enterprises, Counter
                           FROM RFC1155-SMI
                       OBJECT-TYPE
			   FROM RFC-1212;

          hp		OBJECT IDENTIFIER ::= { enterprises 11 }
          nm		OBJECT IDENTIFIER ::= { hp 2 }
	  icf		OBJECT IDENTIFIER ::= { nm 14 }


          -- Icf Devices 

          hpicfObjects  OBJECT IDENTIFIER ::= { icf 11 }
          hpicfSwitch   OBJECT IDENTIFIER ::= { hpicfObjects 5 }
          hpSwitch      OBJECT IDENTIFIER ::= { hpicfSwitch  1 }

          -- Icf Switch Specific 
          hpOpSystem    OBJECT IDENTIFIER ::= { hpSwitch 1 }
          hpHwSystem    OBJECT IDENTIFIER ::= { hpSwitch 2 }

          -- ###########################################################
          -- the hpDMAStats Group

          -- ###########################################################

          hpDMAStats    OBJECT IDENTIFIER ::= { hpHwSystem 2 }

          hpDMAReset OBJECT-TYPE 
              SYNTAX     INTEGER {
		         reset(1)
		      }
              ACCESS     read-write
              STATUS     mandatory
              DESCRIPTION
                      "Reset all DMA counters to 0 by providing 1"
              ::= { hpDMAStats 1 }

          hpDMAFrameRcvcnt OBJECT-TYPE
              SYNTAX     Counter
              ACCESS     read-only
              STATUS     mandatory
              DESCRIPTION
                      "This object is a count of frames that have been 
		              received by the switch. Only good CRC frames are included."
              ::= { hpDMAStats 2 }

          hpDMAOctetsRcvcnt OBJECT-TYPE
              SYNTAX     Counter
              ACCESS     read-only
              STATUS     mandatory
              DESCRIPTION
                      "This object is a count of the number of octets
         		      that have been received by the switch. This counter is
                      incremented by the size of each frame received
		              by the switch."
              ::= { hpDMAStats 3 }

          hpDMAPrevRcvFrames OBJECT-TYPE
              SYNTAX     Counter
              ACCESS     read-only
              STATUS     mandatory
              DESCRIPTION
                      "This object is a copy of hpDMARcvFrames sampled 
					  every second."
              ::= { hpDMAStats 4 }

          hpDMAFrameRcvPerSec OBJECT-TYPE
              SYNTAX     Counter
              ACCESS     read-only
              STATUS     mandatory
              DESCRIPTION
                      "This object is a count of the number of frame
		              that were received by the switch in one second. It 
                      is updated every second."
              ::= { hpDMAStats 5 }

          hpDMAPeakRcvFrames  OBJECT-TYPE
              SYNTAX     Counter
              ACCESS     read-only
              STATUS     mandatory
              DESCRIPTION
                      "This object is a count of the highest 
					  hpDMAFrameRcvPerSec that has been seen by the switch." 
              ::= { hpDMAStats 6 }

          hpDMAPrevRcvOctets OBJECT-TYPE
              SYNTAX     Counter
              ACCESS     read-only
              STATUS     mandatory
              DESCRIPTION
                      "This object is a copy of hpDMAPrevRcvFrames sampled 
					  every second."
              ::= { hpDMAStats 7 }

          hpDMAOctetsRcvPerSec OBJECT-TYPE
              SYNTAX     Counter
              ACCESS     read-only
              STATUS     mandatory
              DESCRIPTION
                      "This object is a count of the number of octets
		              that were received by the switch in one second. It 
                      is updated every second."
              ::= { hpDMAStats 8 }

          hpDMAPeakRcvOctets OBJECT-TYPE
              SYNTAX     Counter
              ACCESS     read-only
              STATUS     mandatory
              DESCRIPTION
                      "This object is a count of the highest 
					  hpDMARcvOctets that has been seen by the switch." 
              ::= { hpDMAStats 9 }

          hpDMAFrameXmtcnt OBJECT-TYPE
              SYNTAX     Counter
              ACCESS     read-only
              STATUS     mandatory
              DESCRIPTION
                      "This counter is incremented by one for each frame
        		      successfully transmitted from the switch."
              ::= { hpDMAStats 10 }

          hpDMAOctetsXmtcnt OBJECT-TYPE
              SYNTAX     Counter
              ACCESS     read-only
              STATUS     mandatory
              DESCRIPTION
                      "This object is a count of the number of octets that
					  have benn transmitted by the switch."
              ::= { hpDMAStats 11 }

          hpDMAPrevXmtFrames OBJECT-TYPE
              SYNTAX     Counter
              ACCESS     read-only
              STATUS     mandatory
              DESCRIPTION
                      "This object is a copy of hpDMAXmtFrames sampled 
					  every second."
              ::= { hpDMAStats 12 }

          hpDMAFrameXmtPerSec OBJECT-TYPE
              SYNTAX     Counter
              ACCESS     read-only
              STATUS     mandatory
              DESCRIPTION
                      "This object is a count of the number of frame
		              that were transmitted by the switch in one second. It 
                      is updated every second."
              ::= { hpDMAStats 13 }

          hpDMAPeakXmtFrames  OBJECT-TYPE
              SYNTAX     Counter
              ACCESS     read-only
              STATUS     mandatory
              DESCRIPTION
                      "This object is a count of the highest 
					  hpDMAFrameXmtPerSec that has been seen by the switch." 
              ::= { hpDMAStats 14 }

          hpDMAPrevXmtOctets OBJECT-TYPE
              SYNTAX     Counter
              ACCESS     read-only
              STATUS     mandatory
              DESCRIPTION
                      "This object is a copy of hpDMAPrevXmtFrames sampled 
					  every second."
              ::= { hpDMAStats 15 }

          hpDMAOctetsXmtPerSec OBJECT-TYPE
              SYNTAX     Counter
              ACCESS     read-only
              STATUS     mandatory
              DESCRIPTION
                      "This object is a count of the number of octets
		              that were transmitted by the switch in one second. It 
                      is updated every second."
              ::= { hpDMAStats 16 }

          hpDMAPeakXmtOctets OBJECT-TYPE
              SYNTAX     Counter
              ACCESS     read-only
              STATUS     mandatory
              DESCRIPTION
                      "This object is a count of the highest 
					  hpDMAXmtOctets that has been seen by the switch." 
              ::= { hpDMAStats 17 }

          hpDMAFrameClippedcnt OBJECT-TYPE
              SYNTAX     Counter
              ACCESS     read-only
              STATUS     mandatory
              DESCRIPTION
                      "This object is a count of number of outbound frames 
		      dropped by the switch due to transmit ring overflow."
              ::= { hpDMAStats 18 }

          hpDMAFrameClippedOccurance OBJECT-TYPE
              SYNTAX     Counter
              ACCESS     read-only
              STATUS     mandatory
              DESCRIPTION
                      "This object is a count of number of times that
					  transmit ring overflowed."
              ::= { hpDMAStats 19 }

          hpDMAMissBufCnt OBJECT-TYPE
              SYNTAX     Counter
              ACCESS     read-only
              STATUS     mandatory
              DESCRIPTION
                      "This counter is incremented when buffer allocation
					  failed."
              ::= { hpDMAStats 20 }


          END