252N/A-------------------------------------------------------
252N/A-- Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights reserved.
252N/A--
252N/A-- U.S. Government Rights - Commercial software. Government users are
252N/A-- subject
252N/A-- to the Sun Microsystems, Inc. standard license agreement and applicable
252N/A-- provisions of the FAR and its supplements.
252N/A--
252N/A--
252N/A-- This distribution may include materials developed by third parties. Sun,
252N/A-- Sun Microsystems, the Sun logo and Solaris are trademarks or registered
252N/A-- trademarks of Sun Microsystems, Inc. in the U.S. and other countries.
252N/A--
252N/A----------------------------------------------------------
252N/A-- Systems Management Agent (SMA) SDK module example-5 MIB
252N/A----------------------------------------------------------
252N/A
252N/ASDK-DEMO5-MIB DEFINITIONS ::= BEGIN
252N/A
252N/A IMPORTS
252N/A enterprises, MODULE-IDENTITY, OBJECT-TYPE, Counter64, Integer32, Unsigned32
252N/A FROM SNMPv2-SMI
252N/A OBJECT-GROUP
252N/A FROM SNMPv2-CONF
252N/A DisplayString
252N/A FROM SNMPv2-TC;
252N/A
252N/AsdkDemo5MIB MODULE-IDENTITY
252N/A LAST-UPDATED "0009181435Z"
252N/A ORGANIZATION "Sun Microsystems Inc."
252N/A CONTACT-INFO
252N/A " Sun Microsystems Inc
252N/A 4150 Network Circle
252N/A Santa Clara, CA 95054
252N/A e-mail: service@sun.com"
252N/A DESCRIPTION
252N/A " SMA SDK MIB example-5. This MIB will be used to demonstrate the
252N/A implementation of modules and various module features in SMA agent."
252N/A ::= { demo 5 }
252N/A
252N/Asun OBJECT IDENTIFIER ::= { enterprises 42 }
252N/Aproducts OBJECT IDENTIFIER ::= { sun 2 }
252N/Amanagement OBJECT IDENTIFIER ::= { products 2 }
252N/Asma OBJECT IDENTIFIER ::= { management 4 }
252N/Ademo OBJECT IDENTIFIER ::= { sma 4 }
252N/A
252N/A--
252N/A-- There are currently 1 Groups in the example.
252N/A-- The "File" group contains information about some files on the system
252N/A--
252N/A
252N/Ame5FileGroup OBJECT-GROUP
252N/A OBJECTS { me5FileIndex, me5FileName, me5FileSize, me5FilePerm
252N/A }
252N/A STATUS current
252N/A DESCRIPTION
252N/A "File related statistics."
252N/A ::= { sdkDemo5MIB 2 }
252N/A
252N/A--
252N/A-- Objects in the "File" group
252N/A--
252N/A
252N/Ame5FileTable OBJECT-TYPE
252N/A SYNTAX SEQUENCE OF Me1FileEntry
252N/A MAX-ACCESS not-accessible
252N/A STATUS current
252N/A DESCRIPTION
252N/A "Table containing information of some files on the system."
252N/A ::= { me5FileGroup 1 }
252N/A
252N/Ame5FileEntry OBJECT-TYPE
252N/A SYNTAX Me1FileEntry
252N/A MAX-ACCESS not-accessible
252N/A STATUS current
252N/A DESCRIPTION
252N/A "Information about one file on the system."
252N/A INDEX { me5FileIndex }
252N/A ::= { me5FileTable 1 }
252N/A
252N/AMe1FileEntry ::=
252N/A SEQUENCE {
252N/A me5FileIndex
252N/A Unsigned32,
252N/A me5FileName
252N/A DisplayString,
252N/A me5FileSize
252N/A Unsigned32,
252N/A me5FilePerm
252N/A DisplayString
252N/A }
252N/A
252N/Ame5FileIndex OBJECT-TYPE
252N/A SYNTAX Unsigned32
252N/A MAX-ACCESS read-only
252N/A STATUS current
252N/A DESCRIPTION
252N/A "Index of the file."
252N/A ::= { me5FileEntry 1 }
252N/A
252N/Ame5FileName OBJECT-TYPE
252N/A SYNTAX DisplayString
252N/A MAX-ACCESS read-create
252N/A STATUS current
252N/A DESCRIPTION
252N/A "Name of the file"
252N/A ::= { me5FileEntry 2 }
252N/A
252N/Ame5FileSize OBJECT-TYPE
252N/A SYNTAX Unsigned32
252N/A MAX-ACCESS read-only
252N/A STATUS current
252N/A DESCRIPTION
252N/A "Size of the file in kb"
252N/A ::= { me5FileEntry 3 }
252N/A
252N/Ame5FilePerm OBJECT-TYPE
252N/A SYNTAX DisplayString
252N/A MAX-ACCESS read-only
252N/A STATUS current
252N/A DESCRIPTION
252N/A "Permissions on this file. example, 0755 "
252N/A ::= { me5FileEntry 4 }
252N/A
252N/AEND
252N/A