-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathCISCO-FTP-CLIENT-MIB-V1SMI.my
318 lines (281 loc) · 9.13 KB
/
CISCO-FTP-CLIENT-MIB-V1SMI.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
-- MIB file created 12-May-2006 08:27:36, by
-- SMICng version 2.2.11-beta(PRO)(Solaris), January 20, 2001. Enterprise key cisco.com
CISCO-FTP-CLIENT-MIB DEFINITIONS ::= BEGIN
-- From file: "CISCO-FTP-CLIENT-MIB.my"
-- Compile options "4 7 F H N O W 03 06 0B 0G 0N 0T"
IMPORTS
TimeStamp, RowStatus, DisplayString
FROM SNMPv2-TC-v1
ciscoMgmt
FROM CISCO-SMI
Counter, Gauge
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212;
ciscoFtpClientMIB OBJECT IDENTIFIER ::= { ciscoMgmt 80 }
-- MODULE-IDENTITY
-- LastUpdated
-- 200603310000Z
-- OrgName
-- Cisco Systems, Inc.
-- ContactInfo
-- Cisco Systems
-- Customer Service
--
-- Postal: 170 W Tasman Drive
-- San Jose, CA 95134
-- USA
--
-- Tel: +1 800 553-NETS
--
-- E-mail: [email protected]
-- Descr
-- The MIB module for invoking Internet File Transfer Protocol
-- (FTP) operations for network management purposes.
-- RevDate
-- 200603310000Z
-- RevDescr
-- Updated the imports such that Unsigned32 is imported from
-- SNMPv2-SMI instead of CISCO-TC.
-- RevDate
-- 199710091700Z
-- RevDescr
-- Initial version.
ciscoFtpClientMIBObjects OBJECT IDENTIFIER ::= { ciscoFtpClientMIB 1 }
cfcRequest OBJECT IDENTIFIER ::= { ciscoFtpClientMIBObjects 1 }
ciscoFtpClientMIBConformance OBJECT IDENTIFIER ::= { ciscoFtpClientMIB 3 }
ciscoFtpClientMIBCompliances OBJECT IDENTIFIER ::= { ciscoFtpClientMIBConformance 1 }
ciscoFtpClientMIBGroups OBJECT IDENTIFIER ::= { ciscoFtpClientMIBConformance 2 }
cfcRequestMaximum OBJECT-TYPE
SYNTAX Gauge(0..4294967295)
ACCESS read-write
STATUS mandatory
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 Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The current number of requests in cfcRequestTable."
::= { cfcRequest 2 }
cfcRequestsHigh OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The highest number of requests in cfcRequestTable since this
system was last initialized."
::= { cfcRequest 3 }
cfcRequestsBumped OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of requests in cfcRequestTable that were bumped
out to make room for a new request."
::= { cfcRequest 4 }
cfcRequestTable OBJECT-TYPE
SYNTAX SEQUENCE OF CfcRequestEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table of FTP client requests."
::= { cfcRequest 5 }
cfcRequestEntry OBJECT-TYPE
SYNTAX CfcRequestEntry
ACCESS not-accessible
STATUS mandatory
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 Gauge,
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 Gauge(1..4294967295)
ACCESS not-accessible
STATUS mandatory
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)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The FTP operation to be performed."
DEFVAL { putBinary }
::= { cfcRequestEntry 2 }
cfcRequestLocalFile OBJECT-TYPE
SYNTAX DisplayString(SIZE(1..255))
-- Rsyntax OCTET STRING(SIZE(1..255))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The local file on which the operation is to be performed."
::= { cfcRequestEntry 3 }
cfcRequestRemoteFile OBJECT-TYPE
SYNTAX DisplayString(SIZE(1..255))
-- Rsyntax OCTET STRING(SIZE(1..255))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The remote file on which the operation is to be performed."
::= { cfcRequestEntry 4 }
cfcRequestServer OBJECT-TYPE
SYNTAX DisplayString(SIZE(1..64))
-- Rsyntax OCTET STRING(SIZE(1..64))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The domain name or IP address of the FTP server to use."
::= { cfcRequestEntry 5 }
cfcRequestUser OBJECT-TYPE
SYNTAX DisplayString(SIZE(1..32))
-- Rsyntax OCTET STRING(SIZE(1..32))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The user name to use at the FTP server."
::= { cfcRequestEntry 6 }
cfcRequestPassword OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..16))
-- Rsyntax OCTET STRING(SIZE(0..16))
ACCESS read-write
STATUS mandatory
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)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The result of the FTP operation."
::= { cfcRequestEntry 8 }
cfcRequestCompletionTime OBJECT-TYPE
SYNTAX TimeStamp
-- Rsyntax TimeTicks
ACCESS read-only
STATUS mandatory
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)
}
ACCESS read-write
STATUS mandatory
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)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The operational state of the file transfer. To short-terminate
the transfer set cfcRequestStop to 'stop'."
::= { cfcRequestEntry 11 }
cfcRequestEntryStatus OBJECT-TYPE
SYNTAX RowStatus
-- Rsyntax INTEGER {
-- active(1),
-- notInService(2),
-- notReady(3),
-- createAndGo(4),
-- createAndWait(5),
-- destroy(6)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The control that allows modification, creation, and deletion
of entries. For detailed rules see the DESCRIPTION for
cfcRequestEntry."
::= { cfcRequestEntry 12 }
ciscoFtpClientRequestGroup OBJECT IDENTIFIER ::= { ciscoFtpClientMIBGroups 1 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- FTP client request management.
-- objects
-- cfcRequestMaximum, cfcRequests, cfcRequestsHigh,
-- cfcRequestsBumped, cfcRequestOperation, cfcRequestLocalFile,
-- cfcRequestRemoteFile, cfcRequestServer, cfcRequestUser,
-- cfcRequestPassword, cfcRequestResult,
-- cfcRequestCompletionTime, cfcRequestStop,
-- cfcRequestOperationState, cfcRequestEntryStatus
ciscoFtpClientMIBCompliance OBJECT IDENTIFIER ::= { ciscoFtpClientMIBCompliances 1 }
-- MODULE-COMPLIANCE
-- Status
-- mandatory
-- Descr
-- The compliance statement for entities which implement
-- the Cisco FTP Client MIB. Implementation of this MIB
-- is based on individual product needs.
-- Module
-- >>current<<
-- MandGroup
-- ciscoFtpClientRequestGroup
END