1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
|
-- ===========================================================
-- Copyright (C) 2007 New H3C Tech. Co., Ltd. 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
-- =================================================================
HH3C-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
hh3cCommon
FROM HH3C-OID-MIB;
hh3cUps MODULE-IDENTITY
LAST-UPDATED "200709041452Z"
ORGANIZATION
"New H3C Technologies Co., Ltd."
CONTACT-INFO
"Platform Team New 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."
::= { hh3cCommon 82 }
hh3cUpsMibObjects OBJECT IDENTIFIER ::= { hh3cUps 1 }
Hh3cActionType ::= 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.
hh3cUpsConfigEnable OBJECT-TYPE
SYNTAX Hh3cActionType
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."
::={ hh3cUpsMibObjects 1 }
hh3cUpsConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cUpsConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains an entry for user to get some information
about the UPS device."
::= { hh3cUpsMibObjects 2 }
hh3cUpsConfigEntry OBJECT-TYPE
SYNTAX Hh3cUpsConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing management information applicable
to a particular UPS."
INDEX
{
hh3cUpsIndex
}
::= { hh3cUpsConfigTable 1 }
Hh3cUpsConfigEntry ::= SEQUENCE
{
hh3cUpsIndex Integer32,
hh3cUpsType INTEGER,
hh3cUpsIpAddress InetAddress,
hh3cUpsIpAddressType InetAddressType
}
hh3cUpsIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object identifies the index of hh3cUpsConfigTable. The object
identified by this index is the same object as identified by the
same value of entPhysicalIndex."
::= { hh3cUpsConfigEntry 1 }
hh3cUpsType 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."
::= { hh3cUpsConfigEntry 2 }
hh3cUpsIpAddress 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."
::= { hh3cUpsConfigEntry 3 }
hh3cUpsIpAddressType 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."
::= { hh3cUpsConfigEntry 4 }
END
|