1-- 2-- CDDL HEADER START 3-- 4-- The contents of this file are subject to the terms of the 5-- Common Development and Distribution License, Version 1.0 only 6-- (the "License"). You may not use this file except in compliance 7-- with the License. 8-- 9-- You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10-- or http://www.opensolaris.org/os/licensing. 11-- See the License for the specific language governing permissions 12-- and limitations under the License. 13-- 14-- When distributing Covered Code, include this CDDL HEADER in each 15-- file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16-- If applicable, add the following below this CDDL HEADER, with the 17-- fields enclosed by brackets "[]" replaced with your own identifying 18-- information: Portions Copyright [yyyy] [name of copyright owner] 19-- 20-- CDDL HEADER END 21-- 22-- Copyright 1996 Sun Microsystems, Inc. All rights reserved. 23-- Use is subject to license terms. 24-- 25-- #ident "%Z%%M% %I% %E% SMI" 26-- 27 28 ALARM-MIB DEFINITIONS ::= BEGIN 29 30 IMPORTS 31 ; 32 33-- alarm MODULE-IDENTITY 34-- LAST-UPDATED "9508170000Z" 35-- ORGANIZATION "SunSoft" 36-- CONTACT-INFO 37-- " Olivier Reisacher 38-- 39-- Postal: ICNC SunSoft, Inc. 40-- 32 chemin du vieux chene 41-- 38240 MEYLAN 42-- France 43-- 44-- Tel: (33) 76 41 42 46 45-- Fax: (33) 76 41 42 41 46-- 47-- E-Mail: oreisach@france.sun.com" 48-- DESCRIPTION 49-- "The MIB module describing variables used in SNMP traps" 50-- ::= { private-mibs 3 } 51 52internet OBJECT IDENTIFIER ::= { iso org(3) dod(6) 1 } 53directory OBJECT IDENTIFIER ::= { internet 1 } 54mgmt OBJECT IDENTIFIER ::= { internet 2 } 55experimental OBJECT IDENTIFIER ::= { internet 3 } 56private OBJECT IDENTIFIER ::= { internet 4 } 57enterprises OBJECT IDENTIFIER ::= { private 1 } 58mib-2 OBJECT IDENTIFIER ::= { mgmt 1 } 59sun OBJECT IDENTIFIER ::= { enterprises 42 } 60messaging OBJECT IDENTIFIER ::= { sun 2 8 } 61private-mibs OBJECT IDENTIFIER ::= { messaging 2 } 62alarm OBJECT IDENTIFIER ::= { private-mibs 3 } 63 64 65 alarmId OBJECT-TYPE 66 SYNTAX INTEGER 67 MAX-ACCESS not-accessible 68 STATUS current 69 DESCRIPTION 70 "The integer that identifies an alarm." 71 ::= {alarm 1} 72 73 alarmSeverity OBJECT-TYPE 74 SYNTAX INTEGER { 75 low(1), 76 medium(2), 77 high(3) 78 } 79 MAX-ACCESS not-accessible 80 STATUS current 81 DESCRIPTION 82 "The severity of an alarm." 83 ::= {alarm 2} 84 85 alarmDescr OBJECT-TYPE 86 SYNTAX DisplayString 87 MAX-ACCESS not-accessible 88 STATUS current 89 DESCRIPTION 90 "A description of the alarm." 91 ::= {alarm 3} 92 93 94 END 95 96