summaryrefslogtreecommitdiff
path: root/MIBS/fiberhome/WRI-MEMORY-MIB
blob: 7ff8eed9e82f004eedc556bd3ec2879f140a9b26 (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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
WRI-MEMORY-MIB DEFINITIONS ::= BEGIN
	IMPORTS
			MODULE-IDENTITY, OBJECT-TYPE, Counter32, Gauge32,
			Integer32, TimeTicks, Counter64,enterprises,
			NOTIFICATION-TYPE,Unsigned32                        
							FROM SNMPv2-SMI       
			TEXTUAL-CONVENTION,RowStatus
							FROM SNMPv2-TC
			wri,wriProducts			
							FROM WRI-SMI;	

	-- MEMORY monitor       
	msppMemory			MODULE-IDENTITY
        LAST-UPDATED    "201001110000Z"
        ORGANIZATION    "Wuhan FiberHome Networks Co.,Ltd."
        CONTACT-INFO
                "  FHN Customer Service
                   Tel: 027-87693784"
        DESCRIPTION
                "The MIB module to describe the monitor for memory."
        REVISION        "201001110000Z" 
        DESCRIPTION
                "Add some attributes for memory table."
        REVISION        "200901110000Z" 
        DESCRIPTION
                "Init version for memory monitor."
        ::=   {msppChassis 5}

	mspp         	OBJECT IDENTIFIER ::= { wriProducts 8012 }
	msppChassis		OBJECT IDENTIFIER ::=   {mspp 1}
	
--	msppMemory			OBJECT IDENTIFIER ::=   {msppChassis 5}
		
		memoryTable OBJECT-TYPE
			SYNTAX  SEQUENCE OF MemoryEntry
			MAX-ACCESS   not-accessible
			STATUS  current
			DESCRIPTION
			         "NULL."
			::= { msppMemory 1 }

		memoryEntry OBJECT-TYPE
			SYNTAX MemoryEntry
			MAX-ACCESS   not-accessible
			STATUS  current
			DESCRIPTION
		         	"NULL."
			INDEX {memoryIndex }
			::= { memoryTable 1 }
		
		MemoryEntry ::=
		    SEQUENCE {
		    memoryIndex          		INTEGER,
		    memorySdramSize        		Counter32,
		    memorySdramUsed	       		Counter32,
		    memoryFlashSize        		Counter32,
		    memoryFlashUsed	       		Counter32,
		    memorySdramHThreshold		Counter32
			}
		-- The following section describes the components of the
		-- table.

			memoryIndex OBJECT-TYPE
				SYNTAX  INTEGER
				MAX-ACCESS  read-only
				STATUS  current
				DESCRIPTION
						"Memory index."
				::= { memoryEntry 1 }


			memorySdramSize OBJECT-TYPE
				SYNTAX  Counter32
				MAX-ACCESS  read-only
				STATUS  current
				DESCRIPTION
						"Memory Sdram size."
				::= { memoryEntry 2 }
				
			memorySdramUsed OBJECT-TYPE
				SYNTAX  Counter32
				MAX-ACCESS  read-only
				STATUS  current
				DESCRIPTION
						"Sdram used."
				::= { memoryEntry 3 }
				
			memoryFlashSize OBJECT-TYPE
				SYNTAX  Counter32
				MAX-ACCESS  read-only
				STATUS  current
				DESCRIPTION
						"Flash size"
				::= { memoryEntry 4 }
				
			memoryFlashUsed OBJECT-TYPE
				SYNTAX  Counter32
				MAX-ACCESS  read-only
				STATUS  current
				DESCRIPTION
						"Flash used."
				::= { memoryEntry 5 }
				
			memorySdramHThreshold OBJECT-TYPE
				SYNTAX  Counter32
				MAX-ACCESS  read-write
				STATUS  current
				DESCRIPTION
						"Sdram high threshold."
				::= { memoryEntry 6 }
			
		memoryGeneral			OBJECT IDENTIFIER ::=   {msppMemory 2}
					
		memoryTrapEnable OBJECT-TYPE
				SYNTAX  INTEGER
				MAX-ACCESS  read-write
				STATUS  current
				DESCRIPTION
						"Enable memory trap or not."
				::= { memoryGeneral 1 }    
		
		memoryMonitorEnable OBJECT-TYPE
				SYNTAX  INTEGER
				MAX-ACCESS  read-write
				STATUS  current
				DESCRIPTION
						"Enable memory monitor or not."
				::= { memoryGeneral 2 }
								
		memoryTrap			OBJECT IDENTIFIER ::=   {msppMemory 3}		
		
		memoryOverThreshold NOTIFICATION-TYPE
       		OBJECTS {memoryPoolCurrUsage,memoryPoolHighThreshold,memoryPoolLowThreshold}
       		STATUS  current
       		DESCRIPTION
               	"memory over Threshold trap."
			::= { memoryTrap 1}     
		
		memoryUnderThreshold NOTIFICATION-TYPE
       		OBJECTS {memoryPoolCurrUsage,memoryPoolHighThreshold,memoryPoolLowThreshold}
       		STATUS  current
       		DESCRIPTION
               	"memory under Threshold."
			::= { memoryTrap 2}     
		
		memoryRecoverThreshold NOTIFICATION-TYPE
       		OBJECTS {memoryPoolCurrUsage,memoryPoolHighThreshold,memoryPoolLowThreshold}
       		STATUS  current
       		DESCRIPTION
               	"memory recover Threshold trap."
			::= { memoryTrap 3}   

		memoryPoolTable OBJECT-TYPE
			SYNTAX  SEQUENCE OF MemoryPoolEntry
			MAX-ACCESS   not-accessible
			STATUS  current
			DESCRIPTION
			         "Memory pool information table."
			::= { msppMemory 4 }

		memoryPoolEntry OBJECT-TYPE
			SYNTAX MemoryPoolEntry
			MAX-ACCESS   not-accessible
			STATUS  current
			DESCRIPTION
		         	"An entry in the memory pool table."
			INDEX {memoryPoolIndex }
			::= { memoryPoolTable 1 }
		
		MemoryPoolEntry ::=
		    SEQUENCE {
		    memoryPoolIndex         	Unsigned32,      
		    memoryPoolDescr				OCTET STRING,
		    memoryPoolFreeBytesNum		Counter32, 
		    memoryPoolFreeBlocksNum		Counter32,
		    memoryPoolFreeMaxBlockSize	Counter32,
		    memoryPoolMinBlockWords		Counter32,
		    memoryPoolAllocBytesNum		Counter32, 
		    memoryPoolAllocBlocksNum	Counter32,
		    memoryPoolAllocBytesCumulate	Counter32, 
		    memoryPoolAllocBlocksCumulate	Counter32,
		    memoryPoolTotalBytes		Counter32,		    
		    memoryPoolHighThreshold		INTEGER,
		    memoryPoolTrapEnable		INTEGER,
		    memoryPoolStatus			INTEGER,  
		    memoryPoolAllSetting		OCTET STRING,
		    memoryPoolAllocMaxBytesNum	INTEGER,
			memoryPoolLowThreshold      INTEGER,
			memoryPoolCurrUsage         Counter32,
			-- xf add 2014-7-2
			memoryPoolIndexDescr		OCTET STRING
			
		    }
		-- The following section describes the components of the table.

			memoryPoolIndex OBJECT-TYPE
				SYNTAX  Unsigned32
				MAX-ACCESS  read-only
				STATUS  current
				DESCRIPTION
						"Memory pool index."
				::= { memoryPoolEntry 1 }    
			
			memoryPoolDescr OBJECT-TYPE
				SYNTAX  OCTET STRING
				MAX-ACCESS  read-only
				STATUS  current
				DESCRIPTION
						"Memory pool description."
				::= { memoryPoolEntry 2 } 				
							
			memoryPoolFreeBytesNum OBJECT-TYPE
				SYNTAX  Counter32
				MAX-ACCESS  read-only				
				STATUS  current
				DESCRIPTION
						"Free bytes number of the memory pool."
				::= { memoryPoolEntry 3 }
				
			memoryPoolFreeBlocksNum OBJECT-TYPE
				SYNTAX  Counter32
				MAX-ACCESS  read-only				
				STATUS  current
				DESCRIPTION
						"Free blocks number of the memory pool."
				::= { memoryPoolEntry 4 }
				
			memoryPoolFreeMaxBlockSize OBJECT-TYPE
				SYNTAX  Counter32
				MAX-ACCESS  read-only				
				STATUS  current
				DESCRIPTION
						"Free max block size of the memory pool."
				::= { memoryPoolEntry 5 }
				
			memoryPoolMinBlockWords OBJECT-TYPE
				SYNTAX  Counter32
				MAX-ACCESS  read-only				
				STATUS  current
				DESCRIPTION
						"Min block words number of the memory pool."
				::= { memoryPoolEntry 6 }
				
			memoryPoolAllocBytesNum OBJECT-TYPE
				SYNTAX  Counter32
				MAX-ACCESS  read-only				
				STATUS  current
				DESCRIPTION
						"Allocated bytes number of the memory pool."
				::= { memoryPoolEntry 7 }
				
			memoryPoolAllocBlocksNum OBJECT-TYPE
				SYNTAX  Counter32
				MAX-ACCESS  read-only				
				STATUS  current
				DESCRIPTION
						"Allocated blocks number of the memory pool."
				::= { memoryPoolEntry 8 }
				
			memoryPoolAllocBytesCumulate OBJECT-TYPE
				SYNTAX  Counter32
				MAX-ACCESS  read-only				
				STATUS  current
				DESCRIPTION
						"Cumulate allocated bytes of the memory pool."
				::= { memoryPoolEntry 9 }
				
			memoryPoolAllocBlocksCumulate OBJECT-TYPE
				SYNTAX  Counter32
				MAX-ACCESS  read-only				
				STATUS  current
				DESCRIPTION
						"Cumulate allocated blocks of the memory pool."
				::= { memoryPoolEntry 10 }
				
			memoryPoolTotalBytes OBJECT-TYPE
				SYNTAX  Counter32
				MAX-ACCESS  read-only				
				STATUS  current
				DESCRIPTION
						"Total bytes of the memory pool."
				::= { memoryPoolEntry 11 }			
				
			memoryPoolHighThreshold OBJECT-TYPE
				SYNTAX  INTEGER
				MAX-ACCESS  read-write				
				STATUS  current
				DESCRIPTION
						"High threshold of the memory pool."
				::= { memoryPoolEntry 12 }
				
			memoryPoolTrapEnable OBJECT-TYPE
				SYNTAX  INTEGER{
					enable(1),
					disable(2)
				}
				MAX-ACCESS  read-write				
				STATUS  current
				DESCRIPTION
						"Trap enable or not of the memory pool."
				::= { memoryPoolEntry 13 }
				
			memoryPoolStatus OBJECT-TYPE
				SYNTAX  INTEGER{
					normal(0),
					highoverflow(1)
				}
				MAX-ACCESS  read-only				
				STATUS  current
				DESCRIPTION
						"Status of the memory pool."
				::= { memoryPoolEntry 14 }	
				
			memoryPoolAllSetting OBJECT-TYPE
				SYNTAX OCTET STRING
				MAX-ACCESS read-write
				STATUS		current
				DESCRIPTION
						"All operation of memeory pool."
				::= { memoryPoolEntry 15}			
				
			memoryPoolAllocMaxBytesNum OBJECT-TYPE
				SYNTAX  INTEGER
				MAX-ACCESS  read-only				
				STATUS  current
				DESCRIPTION
						"Max bytes number the memory pool."
				::= { memoryPoolEntry 16 }
			
			memoryPoolLowThreshold OBJECT-TYPE
				SYNTAX  INTEGER
				MAX-ACCESS  read-write				
				STATUS  current
				DESCRIPTION
						"Low threshold of the memory pool."
				::= { memoryPoolEntry 17 }
				
			memoryPoolCurrUsage OBJECT-TYPE
				SYNTAX  Counter32
				MAX-ACCESS  read-only				
				STATUS  current
				DESCRIPTION
						"The current used memory pool."
				::= { memoryPoolEntry 18 }
				
			-- xf add 2014-7-2
			memoryPoolIndexDescr OBJECT-TYPE
				SYNTAX OCTET STRING
				MAX-ACCESS read-only
				STATUS		current
				DESCRIPTION
						"Memeory pool index descrption."
				::= { memoryPoolEntry 19}		
  
END