summaryrefslogtreecommitdiff
path: root/MIBS/dlink/DLINKSW-FS-MIB
blob: b4ea29b93a23a08d8cdf11638ecb967b0a05b980 (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
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
--  *****************************************************************
--  DLINKSW-FS-MIB.mib : File System MIB
--
--  Copyright (c) 2013 D-Link Corporation, all rights reserved.
--
-- -----------------------------------------------------------------------------
-- MODIFICTION HISTORY:
-- -----------------------------------------------------------------------------
-- Version 2.01, 2013/06/14, Eric Liu
-- Description:
--  [Modification]
--  1. Change the DisplayString SIZE of dFsDriveInfoLabel
--     from 32 to 11.
--  *****************************************************************
DLINKSW-FS-MIB DEFINITIONS ::= BEGIN


    IMPORTS
        MODULE-IDENTITY,
        OBJECT-TYPE,        
        Unsigned32
                FROM SNMPv2-SMI
        RowStatus, TruthValue, DisplayString, DateAndTime
                FROM SNMPv2-TC
        OBJECT-GROUP, MODULE-COMPLIANCE
            FROM SNMPv2-CONF              
        dlinkIndustrialCommon
                FROM DLINK-ID-REC-MIB;
       

    dlinkSwFsMIB MODULE-IDENTITY
        LAST-UPDATED "201306140000Z"
        ORGANIZATION "D-Link Corp."
        CONTACT-INFO
            "        D-Link Corporation

             Postal: No. 289, Sinhu 3rd Rd., Neihu District,
                     Taipei City 114, Taiwan, R.O.C
             Tel:     +886-2-66000123
             E-mail: tsd@dlink.com.tw
            "
        DESCRIPTION
            "This MIB module defines objects for File System (FS)."
        REVISION "201304170000Z"
        DESCRIPTION
            "This is the first version of the MIB file."
    ::= { dlinkIndustrialCommon 18 }

-- -----------------------------------------------------------------------------
    dFsNotifications    OBJECT IDENTIFIER ::= { dlinkSwFsMIB 0 }
    dFsObjects          OBJECT IDENTIFIER ::= { dlinkSwFsMIB 1 }
    dFsConformance      OBJECT IDENTIFIER ::= { dlinkSwFsMIB 2 }
    
-- -----------------------------------------------------------------------------
    dFsBasicInfoCtrlStatus OBJECT-TYPE
		SYNTAX	        DisplayString
		MAX-ACCESS      read-only
		STATUS          current
		DESCRIPTION
			"This object indicates the result for file operation, e.g. deleting
            files, making directories, deleting directories and renaming files. 
            "
        ::= { dFsObjects 1 }

-- -----------------------------------------------------------------------------
    dFsBasicOperation          OBJECT IDENTIFIER ::= { dFsObjects 2 }

    dFsCurrentDirUrl        OBJECT-TYPE
        SYNTAX          OCTET STRING (SIZE (0..799))
        MAX-ACCESS      read-write
        STATUS          current
        DESCRIPTION
            "This object indicates the URL of current directory.           
            "
        ::= { dFsBasicOperation 1 }    

    dFsCurrentDirectoryTable OBJECT-TYPE
        SYNTAX          SEQUENCE OF DFsCurrentDirectoryEntry
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "This table consists of a list of directories or files in 
            the current directory. 
            This table takes the advantage of RowStatus textual convention to
            delete a file or add/delete a directory (mkdir/rmdir)."
        ::= { dFsBasicOperation 2 }

    dFsCurrentDirectoryEntry OBJECT-TYPE
        SYNTAX          DFsCurrentDirectoryEntry
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "An entry indicates the information for a file or directory
            at current directory."
        INDEX    { 
            dFsCurrentDirItemName
            }
        ::= { dFsCurrentDirectoryTable 1 }

    DFsCurrentDirectoryEntry ::=         SEQUENCE {                    
       dFsCurrentDirItemName             DisplayString,           
       dFsCurrentDirItemMode             BITS,
       dFsCurrentDirItemSize             Unsigned32,
       dFsCurrentDirItemTime             DateAndTime,
       dFsCurrentDirItemRawStatus        RowStatus
    }
        
    dFsCurrentDirItemName        OBJECT-TYPE
        SYNTAX          DisplayString
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "The name of file or directory."
        ::= { dFsCurrentDirectoryEntry 1 }
    
    dFsCurrentDirItemMode  OBJECT-TYPE
        SYNTAX          BITS { 
            directory(0),
            readable(1),
            writeable(2)
        } 
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
        "This object indicates the mode of the entry.       
        " 
    ::= { dFsCurrentDirectoryEntry 2 }
                
    dFsCurrentDirItemSize        OBJECT-TYPE
        SYNTAX          Unsigned32
        UNITS           "bytes"
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
            "This object indicates the file size (in bytes).
            If the entry is a directory, the value is 0.
            "
        ::= { dFsCurrentDirectoryEntry 3 }
        
    dFsCurrentDirItemTime        OBJECT-TYPE
        SYNTAX          DateAndTime
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
            "This object indicates the time of creation or modification of
            this file or directory."
        ::= { dFsCurrentDirectoryEntry 4 }
        
    dFsCurrentDirItemRawStatus        OBJECT-TYPE
        SYNTAX          RowStatus
        MAX-ACCESS      read-create
        STATUS          current
        DESCRIPTION
            "The status of this conceptual row."
        ::= { dFsCurrentDirectoryEntry 5 }
        
-- -----------------------------------------------------------------------------
    dFsFileRenameCtrl	OBJECT IDENTIFIER ::= { dFsBasicOperation 3 }

	dFsFileRenameSourceUrl	OBJECT-TYPE
		SYNTAX          OCTET STRING (SIZE (0..799))
		MAX-ACCESS      read-write
		STATUS          current
		DESCRIPTION	
          "This object indicates the URL for the file to be renamed."
		::= { dFsFileRenameCtrl 1 }

	dFsFileRenameTargetUrl	OBJECT-TYPE
		SYNTAX          OCTET STRING (SIZE (0..799))
		MAX-ACCESS      read-write
		STATUS          current
		DESCRIPTION	
            "This object indicates the URL after file renaming."
		::= { dFsFileRenameCtrl 2 }

	dFsFileRenameActivity	OBJECT-TYPE
		SYNTAX INTEGER  {
			rename(1),
			noOp(2)
        }
		MAX-ACCESS      read-write
		STATUS          current
		DESCRIPTION			
            "This object renames the file indicated by dFsFileRenameSourceUrl, 
            when set to 'rename'. 
            The object dFsBasicInfoCtrlStatus indicates the processing result.            
            No action is taken if this object is set to 'noOp'.
            When read, the value 'noOp' is returned."
		::= { dFsFileRenameCtrl 3 }

-- -----------------------------------------------------------------------------        
    dFsDriveCtrl          OBJECT IDENTIFIER ::= { dFsObjects 3 }
    
    dFsDriveInfoTable OBJECT-TYPE
        SYNTAX          SEQUENCE OF DFsDriveInfoEntry
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "This table consists of a list the information of the storage media
            available on the system."
        ::= { dFsDriveCtrl 1 }

    dFsDriveInfoEntry OBJECT-TYPE
        SYNTAX          DFsDriveInfoEntry
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "The entry indicates the information for a drive."
        INDEX    { 
            dFsDriveInfoUnitID, 
            dFsDriveInfoDriveID
        }
        ::= { dFsDriveInfoTable 1 }

    DFsDriveInfoEntry ::=         SEQUENCE {
        dFsDriveInfoUnitID           Unsigned32,
        dFsDriveInfoDriveID          INTEGER,
        dFsDriveInfoMediaType        DisplayString,
        dFsDriveInfoSize             Unsigned32,
        dFsDriveInfoFsType           INTEGER,
        dFsDriveInfoLabel            DisplayString,
        dFsDriveInfoFormatDrive      INTEGER
    }          
     
    dFsDriveInfoUnitID      OBJECT-TYPE
        SYNTAX          Unsigned32 (1..65535)
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "This object indicates the unit (stacking device) or slot (chassis
            device) ID.
            "
        ::= { dFsDriveInfoEntry 1 }
        
    dFsDriveInfoDriveID      OBJECT-TYPE
        SYNTAX  INTEGER {
            a(1),
            b(2),
            c(3),
            d(4),
            e(5),
            f(6),
            g(7),
            h(8),
            i(9),
            j(10),
            k(11),
            l(12),
            m(13),
            n(14),
            o(15),
            p(16),
            q(17),
            r(18),
            s(19),
            t(20),
            u(21),
            v(22),
            w(23),
            x(24),
            y(25),
            z(26)
        }
        MAX-ACCESS      not-accessible
        STATUS          current
        DESCRIPTION
            "This object indicates the drive ID of the entry."
        ::= { dFsDriveInfoEntry 2 }
        
    dFsDriveInfoMediaType        OBJECT-TYPE
        SYNTAX          DisplayString 
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
            "Indicates the media type of drive."
        ::= { dFsDriveInfoEntry 3 }
        
    dFsDriveInfoSize        OBJECT-TYPE
        SYNTAX          Unsigned32
        UNITS           "Mbytes"
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
            "Indicates the total size (in MBytes) of the drive."
        ::= { dFsDriveInfoEntry 4 }

    dFsDriveInfoFsType        OBJECT-TYPE
        SYNTAX      INTEGER {
            other(0),
            ffs(1),
            fat16(2),
            fat32(3)
        }
        MAX-ACCESS      read-only
        STATUS          current
        DESCRIPTION
            "Indicates the FS type on the drive.
            The special value of 'other' indicates this drive has not be formated.
            "
        ::= { dFsDriveInfoEntry 5 }
        
    dFsDriveInfoLabel        OBJECT-TYPE
        SYNTAX          DisplayString (SIZE (0..11))
        MAX-ACCESS      read-write
        STATUS          current
        DESCRIPTION
            "Indicates the label of drive.
            This object cannot be modified after a drive is formated.
            "
        ::= { dFsDriveInfoEntry 6 }
        
    dFsDriveInfoFormatDrive        OBJECT-TYPE
        SYNTAX      INTEGER {
            format(1),
            noOp(2)
        }
        MAX-ACCESS      read-write
        STATUS          current
        DESCRIPTION
           "This object formats the drive of the entry. 
           The object dFsBasicInfoCtrlStatus indicates the processing result.                     
           No action is taken if this object is set to 'noOp'.
           When read, the value 'noOp' is returned.                         
           "
        ::= { dFsDriveInfoEntry 7 }
        
    
-- -----------------------------------------------------------------------------
-- Conformance
-- -----------------------------------------------------------------------------   
    dFsCompliances      OBJECT IDENTIFIER ::= { dFsConformance 1 }

    dFsGroups       OBJECT IDENTIFIER ::= { dFsConformance 2 }        
       
       
   dFsMIBCompliance MODULE-COMPLIANCE
        STATUS   current
        DESCRIPTION
                "The compliance statement for entities which
                 implement the DLINKSW-FS-MIB."
        MODULE MANDATORY-GROUPS { 
                 dFsBasicGroup,
                 dFsDriveGroup
        }
        
        ::= { dFsCompliances 1 }

    dFsBasicGroup OBJECT-GROUP
        OBJECTS 
        {   dFsBasicInfoCtrlStatus,
            dFsCurrentDirUrl,
            dFsCurrentDirItemMode,      
            dFsCurrentDirItemSize,      
            dFsCurrentDirItemTime,      
            dFsCurrentDirItemRawStatus,
            dFsFileRenameSourceUrl,
            dFsFileRenameTargetUrl,
            dFsFileRenameActivity
        }
        STATUS current
        DESCRIPTION 
            "A collection of objects executes basic operation of FS."
        ::= { dFsGroups 1 }
    
    dFsDriveGroup OBJECT-GROUP
        OBJECTS         {   
            dFsDriveInfoMediaType,  
            dFsDriveInfoSize,
            dFsDriveInfoFsType,
            dFsDriveInfoLabel,
            dFsDriveInfoFormatDrive
        }
        STATUS current
        DESCRIPTION 
            "A collection of objects executes drive operation of FS."
        ::= { dFsGroups 2 }
                 
END