144 lines
4.2 KiB
Plaintext
144 lines
4.2 KiB
Plaintext
-- ===========================================================
|
|
-- Copyright (C) 2007 by H3C TECHNOLOGIES. All rights reserved.
|
|
-- Description: The MIB is designed to manage the UPS.
|
|
-- Reference:
|
|
-- Version: V1.0
|
|
-- History:
|
|
-- V1.0 2007-09-04 created by lizhicheng
|
|
-- =================================================================
|
|
H3C-UPS-MIB DEFINITIONS ::= BEGIN
|
|
IMPORTS
|
|
Counter32, Integer32,
|
|
OBJECT-TYPE, MODULE-IDENTITY, NOTIFICATION-TYPE
|
|
FROM SNMPv2-SMI
|
|
TEXTUAL-CONVENTION
|
|
FROM SNMPv2-TC
|
|
InetAddressType, InetAddress
|
|
FROM INET-ADDRESS-MIB
|
|
entPhysicalIndex
|
|
FROM ENTITY-MIB
|
|
h3cCommon
|
|
FROM HUAWEI-3COM-OID-MIB;
|
|
|
|
h3cUps MODULE-IDENTITY
|
|
LAST-UPDATED "200709041452Z"
|
|
ORGANIZATION
|
|
"H3C Technologies Co., Ltd."
|
|
CONTACT-INFO
|
|
"Platform Team H3C Technologies Co., Ltd.
|
|
Hai-Dian District Beijing P.R. China
|
|
Http://www.h3c.com
|
|
Zip:100085"
|
|
DESCRIPTION
|
|
"This MIB describes the general information of UPS(Uninterrupted
|
|
Power Supply) device."
|
|
::= { h3cCommon 82 }
|
|
|
|
h3cUpsMibObjects OBJECT IDENTIFIER ::= { h3cUps 1 }
|
|
|
|
H3cActionType ::= TEXTUAL-CONVENTION
|
|
STATUS current
|
|
DESCRIPTION
|
|
"A control variable used to trigger an operator events,
|
|
when read, always returns a value of invalid."
|
|
SYNTAX INTEGER
|
|
{
|
|
action(1),
|
|
invalid(2)
|
|
}
|
|
|
|
-- UPS Entity Extend Table
|
|
-- This table described some information about the UPS.
|
|
|
|
h3cUpsConfigEnable OBJECT-TYPE
|
|
SYNTAX H3cActionType
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"This object identifies the operation which will make the UPS(Uninterrupted
|
|
Power Supply)'s new configure become effective."
|
|
::={ h3cUpsMibObjects 1 }
|
|
|
|
h3cUpsConfigTable OBJECT-TYPE
|
|
SYNTAX SEQUENCE OF H3cUpsConfigEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"This table contains an entry for user to get some information
|
|
about the UPS device."
|
|
::= { h3cUpsMibObjects 2 }
|
|
|
|
|
|
|
|
h3cUpsConfigEntry OBJECT-TYPE
|
|
SYNTAX H3cUpsConfigEntry
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"An entry containing management information applicable
|
|
to a particular UPS."
|
|
INDEX
|
|
{
|
|
h3cUpsIndex
|
|
}
|
|
|
|
::= { h3cUpsConfigTable 1 }
|
|
|
|
H3cUpsConfigEntry ::= SEQUENCE
|
|
{
|
|
h3cUpsIndex Integer32,
|
|
h3cUpsType INTEGER,
|
|
h3cUpsIpAddress InetAddress,
|
|
h3cUpsIpAddressType InetAddressType
|
|
}
|
|
|
|
h3cUpsIndex OBJECT-TYPE
|
|
SYNTAX Integer32
|
|
MAX-ACCESS not-accessible
|
|
STATUS current
|
|
DESCRIPTION
|
|
"This object identifies the index of h3cUpsConfigTable. The object
|
|
identified by this index is the same object as identified by the
|
|
same value of entPhysicalIndex."
|
|
::= { h3cUpsConfigEntry 1 }
|
|
|
|
h3cUpsType OBJECT-TYPE
|
|
SYNTAX INTEGER
|
|
{
|
|
emersonUart(1),
|
|
mge(2),
|
|
common(3),
|
|
emersonEth(4),
|
|
liebert(5)
|
|
}
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"This object identifies the type of UPS.
|
|
The value 'emersonUart' means an EMERSON UPS support UART interface.
|
|
The value 'mge' means a MGE UPS support ethernet interface.
|
|
The value 'common' means a common UPS support standard UPSMIB.
|
|
The value 'emersonEth' means an EMERSON UPS support ethernet interface.
|
|
The value 'liebert' means a Liebert UPS support ethernet interface."
|
|
::= { h3cUpsConfigEntry 2 }
|
|
|
|
h3cUpsIpAddress OBJECT-TYPE
|
|
SYNTAX InetAddress
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"This object describes the address of UPS. The value of this object
|
|
is invalid if the UPS do not support ethernet interface."
|
|
::= { h3cUpsConfigEntry 3 }
|
|
|
|
h3cUpsIpAddressType OBJECT-TYPE
|
|
SYNTAX InetAddressType
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"This object describes the address type of UPS. The value of this object
|
|
is invalid if the UPS do not support ethernet interface."
|
|
::= { h3cUpsConfigEntry 4 }
|
|
|
|
END
|