forked from taishin/vendor_mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CISCO-FTP-CLIENT-MIB.my
323 lines (274 loc) · 9.54 KB
/
CISCO-FTP-CLIENT-MIB.my
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
-- *****************************************************************
-- CISCO-FTP-CLIENT-MIB.my: FTP Client MIB
--
-- July 1997, Bob Stewart
--
-- Copyright (c) 1997, 1998, 1999, 2006 by cisco Systems, Inc.
-- All rights reserved.
--
-- *****************************************************************
CISCO-FTP-CLIENT-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
Gauge32, Counter32,
Unsigned32 FROM SNMPv2-SMI
TimeStamp, RowStatus,
DisplayString FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF
ciscoMgmt FROM CISCO-SMI;
ciscoFtpClientMIB MODULE-IDENTITY
LAST-UPDATED "200603310000Z"
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
"The MIB module for invoking Internet File Transfer Protocol
(FTP) operations for network management purposes."
REVISION "200603310000Z"
DESCRIPTION
"Updated the imports such that Unsigned32 is imported from
SNMPv2-SMI instead of CISCO-TC."
REVISION "199710091700Z"
DESCRIPTION
"Initial version."
::= { ciscoMgmt 80 }
ciscoFtpClientMIBObjects OBJECT IDENTIFIER ::= { ciscoFtpClientMIB 1 }
cfcRequest OBJECT IDENTIFIER ::= { ciscoFtpClientMIBObjects 1 }
--
-- Client Request Control
--
cfcRequestMaximum OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximum number of requests this system can hold in
cfcRequestTable. A value of 0 indicates no configured limit.
This object may be read-only on some systems.
When an attempt is made to create a new entry but the table
is full, the oldest completed entry is bumped out and
cfcRequestsBumped is incremented.
Changing this number does not disturb existing requests that
are not completed and bumps completed requests as necessary."
::= { cfcRequest 1 }
cfcRequests OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current number of requests in cfcRequestTable."
::= { cfcRequest 2 }
cfcRequestsHigh OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The highest number of requests in cfcRequestTable since this
system was last initialized."
::= { cfcRequest 3 }
cfcRequestsBumped OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of requests in cfcRequestTable that were bumped
out to make room for a new request."
::= { cfcRequest 4 }
--
-- Client Request Control Table
--
cfcRequestTable OBJECT-TYPE
SYNTAX SEQUENCE OF CfcRequestEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of FTP client requests."
::= { cfcRequest 5 }
cfcRequestEntry OBJECT-TYPE
SYNTAX CfcRequestEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about an FTP client request. Management applications
use cfcRequestEntryStatus to control entry modification, creation,
and deletion.
Setting cfcRequestEntryStatus to 'active' from any state including
'active' causes the operation to be started.
The entry may be modified only when cfcRequestOperationState is
'stopped'.
The value of cfcRequestEntryStatus may be set to 'destroy' at any
time. Doing so will abort a running request.
Entries may not be created without explicitly setting
cfcRequestEntryStatus to either 'createAndGo' or 'createAndWait'."
INDEX { cfcRequestIndex }
::= { cfcRequestTable 1 }
CfcRequestEntry ::= SEQUENCE {
cfcRequestIndex Unsigned32,
cfcRequestOperation INTEGER,
cfcRequestLocalFile DisplayString,
cfcRequestRemoteFile DisplayString,
cfcRequestServer DisplayString,
cfcRequestUser DisplayString,
cfcRequestPassword DisplayString,
cfcRequestResult INTEGER,
cfcRequestCompletionTime TimeStamp,
cfcRequestStop INTEGER,
cfcRequestOperationState INTEGER,
cfcRequestEntryStatus RowStatus
}
cfcRequestIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An arbitrary integer to uniquely identify this entry. To
create an entry a management application should pick a
random number."
::= { cfcRequestEntry 1 }
cfcRequestOperation OBJECT-TYPE
SYNTAX INTEGER { putBinary(1), putASCII(2) }
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The FTP operation to be performed."
DEFVAL { putBinary }
::= { cfcRequestEntry 2 }
cfcRequestLocalFile OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..255))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The local file on which the operation is to be performed."
::= { cfcRequestEntry 3 }
cfcRequestRemoteFile OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..255))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The remote file on which the operation is to be performed."
::= { cfcRequestEntry 4 }
cfcRequestServer OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..64))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The domain name or IP address of the FTP server to use."
::= { cfcRequestEntry 5 }
cfcRequestUser OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The user name to use at the FTP server."
::= { cfcRequestEntry 6 }
cfcRequestPassword OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..16))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The password to use at the FTP server.
When read this object always returns a zero-length string."
DEFVAL { ''H }
::= { cfcRequestEntry 7 }
cfcRequestResult OBJECT-TYPE
SYNTAX INTEGER {
pending(1),
success(2),
aborted(3),
fileOpenFailLocal(4),
fileOpenFailRemote(5),
badDomainName(6),
unreachableIpAddress(7),
linkFailed(8),
fileReadFailed(9),
fileWriteFailed(10)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The result of the FTP operation."
::= { cfcRequestEntry 8 }
cfcRequestCompletionTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when the operation completed. For
an incomplete operation this value is zero."
::= { cfcRequestEntry 9 }
cfcRequestStop OBJECT-TYPE
SYNTAX INTEGER { ready(1), stop(2) }
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The action control to stop a running request. Setting this to
'stop' will begin the process of stopping the request. Setting
it to 'ready' or setting it to 'stop' more than once have no
effect. When read this object always returns ready."
::= { cfcRequestEntry 10 }
cfcRequestOperationState OBJECT-TYPE
SYNTAX INTEGER { running(1), stopping(2), stopped(3) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operational state of the file transfer. To short-terminate
the transfer set cfcRequestStop to 'stop'."
::= { cfcRequestEntry 11 }
cfcRequestEntryStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The control that allows modification, creation, and deletion
of entries. For detailed rules see the DESCRIPTION for
cfcRequestEntry."
::= { cfcRequestEntry 12 }
--
-- Conformance
--
ciscoFtpClientMIBConformance OBJECT IDENTIFIER ::= { ciscoFtpClientMIB 3 }
ciscoFtpClientMIBCompliances OBJECT IDENTIFIER ::=
{ ciscoFtpClientMIBConformance 1 }
ciscoFtpClientMIBGroups OBJECT IDENTIFIER ::=
{ ciscoFtpClientMIBConformance 2 }
-- Compliance
ciscoFtpClientMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for entities which implement
the Cisco FTP Client MIB. Implementation of this MIB
is based on individual product needs."
MODULE -- this module
MANDATORY-GROUPS {
ciscoFtpClientRequestGroup
}
::= { ciscoFtpClientMIBCompliances 1 }
-- Units of Conformance
ciscoFtpClientRequestGroup OBJECT-GROUP
OBJECTS {
cfcRequestMaximum,
cfcRequests,
cfcRequestsHigh,
cfcRequestsBumped,
cfcRequestOperation,
cfcRequestLocalFile,
cfcRequestRemoteFile,
cfcRequestServer,
cfcRequestUser,
cfcRequestPassword,
cfcRequestResult,
cfcRequestCompletionTime,
cfcRequestStop,
cfcRequestOperationState,
cfcRequestEntryStatus
}
STATUS current
DESCRIPTION
"FTP client request management."
::= { ciscoFtpClientMIBGroups 1 }
END