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 subject to
252N/A-- 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, Sun
252N/A-- 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
252N/A------------------------------------------------------------------------
252N/A-- Systems Management Agent (SMA) SDK module DEMO-6 MIB
252N/A------------------------------------------------------------------------
252N/ASDK-DEMO6-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/AsdkDemo6MIB 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 DEMO-6. This MIB will be used to demonstrate the
252N/A implementation of modules and various module features in SMA agent."
252N/A ::= { demo 6 }
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-- The "File" group contains information about some files on the system
252N/A-- The "Multi-instance" group contains information about filesize for
252N/A-- using SNMPv3 context strings.
252N/A--
252N/A
252N/Ame1MultiGroup OBJECT-GROUP
252N/A OBJECTS { me1FileSize, me1createContext, me1removeContext }
252N/A STATUS current
252N/A DESCRIPTION
252N/A "Multi-instance file related statistics."
252N/A ::= { sdkDemo6MIB 1 }
252N/A
252N/A--
252N/A-- Properties in the "Multi" group
252N/A--
252N/A
252N/Ame1FileSize OBJECT-TYPE
252N/A SYNTAX Integer32
252N/A MAX-ACCESS read-only
252N/A STATUS current
252N/A DESCRIPTION
252N/A "Size of file in Kb."
252N/A ::= { me1MultiGroup 1 }
252N/A
252N/Ame1createContext OBJECT-TYPE
252N/A SYNTAX OCTET STRING (SIZE(0..1024))
252N/A MAX-ACCESS read-write
252N/A STATUS current
252N/A DESCRIPTION
252N/A "String which when set, registers a context."
252N/A ::= { me1MultiGroup 2 }
252N/A
252N/Ame1removeContext OBJECT-TYPE
252N/A SYNTAX OCTET STRING (SIZE(0..1024))
252N/A MAX-ACCESS read-write
252N/A STATUS current
252N/A DESCRIPTION
252N/A "String which when set, unregisters a context."
252N/A ::= { me1MultiGroup 3 }
252N/A
252N/AEND