-- extracted from draft-stewart-ftp-client-mib-00.txt -- at Mon Nov 15 17:11:08 1999 CISCO-FTP-CLIENT-MIB DEFINITIONS ::= BEGIN IMPORTS MODULE-IDENTITY, OBJECT-TYPE, Gauge32, Counter32 FROM SNMPv2-SMI Unsigned32 FROM CISCO-TC TimeStamp, RowStatus, DisplayString FROM SNMPv2-TC MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF ciscoMgmt FROM CISCO-SMI; ciscoFtpClientMIB MODULE-IDENTITY LAST-UPDATED "9810291700Z" 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: cs-snmp@cisco.com" DESCRIPTION "The MIB module for invoking Internet File Transfer Protocol (FTP) operations for network management purposes." ::= { 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. An entry may be modified only when its cfcRequestOperationState is 'stopped'. The value of cfcRequestEntryStatus may be set to 'destroy' at any time. Doing so will abort a running request." 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 -- -- Copyright (C) The Internet Society (1998). All Rights Reserved. -- -- This document and translations of it may be copied and furnished to -- others, and derivative works that comment on or otherwise explain it or -- assist in its implementation may be prepared, copied, published and -- distributed, in whole or in part, without restriction of any kind, -- provided that the above copyright notice and this paragraph are included -- on all such copies and derivative works. However, this document itself -- may not be modified in any way, such as by removing the copyright notice -- or references to the Internet Society or other Internet organizations, -- except as needed for the purpose of developing Internet standards in -- which case the procedures for copyrights defined in the Internet -- Standards process must be followed, or as required to translate it into -- languages other than English. -- -- The limited permissions granted above are perpetual and will not be -- revoked by the Internet Society or its successors or assigns. -- -- This document and the information contained herein is provided on an "AS -- IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING TASK -- FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT -- LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT -- INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR -- FITNESS FOR A PARTICULAR PURPOSE.