snmp_mib_archive/cisco-image.mib
Heston Snodgrass 89bf4b016e initial commit
2016-12-15 15:03:18 -07:00

158 lines
4.0 KiB
Plaintext
Executable File

-- $Id: CISCO-IMAGE.MIB 1.1 2005/03/14 16:30:47Z aminchew Exp $
-- $Source: v:/mksroot/rcs/CISCO-IMAGE.MIB $
-- *****************************************************************
-- CISCO-IMAGE-MIB.my: Router Image MIB file
--
-- Jan 1995, Yunsen Wang
--
-- Copyright (c) 1995 by cisco Systems, Inc.
-- All rights reserved.
--
-- *****************************************************************
-- $Log: CISCO-IMAGE.MIB $
-- Revision 1.1 2005/03/14 16:30:47Z aminchew
-- Initial revision
-- Revision 1.1.2.1 2005/02/08 01:45:10 bruceg
-- CGESM_12_2_25
--
-- Revision 3.2 1995/11/17 08:34:12 hampton
-- Remove old entries from the RCS header logs.
--
-- Revision 3.1 1995/11/09 10:49:57 shaker
-- Bump version numbers from 2.x to 3.x.
--
-- Revision 2.2 1995/08/21 20:32:59 thille
-- CSCdi37883: Mib changes needed to facilitate automatic publication
-- Do a lot of MIB fixups. Fix problems with negative indexes, fix
-- problems where a SEQUENCE clause specifies one syntax and a SYNTAX
-- statement specifies another for the same mib variable. Fix other
-- random bogosity.
--
-- Revision 2.1 1995/06/07 20:00:27 hampton
-- Bump version numbers from 1.x to 2.x.
--
-- *****************************************************************
-- $Endlog$
CISCO-IMAGE-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
Integer32
FROM SNMPv2-SMI
DisplayString
FROM SNMPv2-TC
MODULE-COMPLIANCE,
OBJECT-GROUP
FROM SNMPv2-CONF
ciscoMgmt
FROM CISCO-SMI;
ciscoImageMIB MODULE-IDENTITY
LAST-UPDATED "9508150000Z"
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
"Router image MIB which identify the capabilities
and characteristics of the image"
REVISION "9508150000Z"
DESCRIPTION
"Specify a correct (non-negative) range for an index
object."
REVISION "9501160000Z"
DESCRIPTION
"Initial version of this MIB module."
::= { ciscoMgmt 25 }
-- This group is present in all IOS based products.
ciscoImageMIBObjects OBJECT IDENTIFIER ::= { ciscoImageMIB 1 }
ciscoImageTable OBJECT-TYPE
SYNTAX SEQUENCE OF CiscoImageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table provides content information describing the
executing IOS image."
::= { ciscoImageMIBObjects 1 }
ciscoImageEntry OBJECT-TYPE
SYNTAX CiscoImageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A image characteristic string entry."
INDEX { ciscoImageIndex }
::= { ciscoImageTable 1 }
CiscoImageEntry ::=
SEQUENCE {
ciscoImageIndex Integer32 (0..2147483647),
ciscoImageString DisplayString
}
ciscoImageIndex OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A sequence number for each string stored
in the IOS image."
::= { ciscoImageEntry 1 }
ciscoImageString OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The string of this entry."
::= { ciscoImageEntry 2 }
-- conformance information
ciscoImageMIBConformance OBJECT IDENTIFIER ::= { ciscoImageMIB 2 }
ciscoImageMIBCompliances OBJECT IDENTIFIER ::= { ciscoImageMIBConformance 1 }
ciscoImageMIBGroups OBJECT IDENTIFIER ::= { ciscoImageMIBConformance 2 }
-- compliance statements
ciscoImageMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for entities which implement
the Cisco Image MIB"
MODULE -- this module
MANDATORY-GROUPS { ciscoImageMIBGroup }
::= { ciscoImageMIBCompliances 1 }
-- units of conformance
ciscoImageMIBGroup OBJECT-GROUP
OBJECTS {
ciscoImageString
}
STATUS current
DESCRIPTION
"A collection of objects providing IOS image characteristics"
::= { ciscoImageMIBGroups 1 }
END