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
|
-- *****************************************************************
-- NMS-POWER-MIB: NMS POWER MIB
--
-- AUG 2010
-- Edit by LIUQIANG
-- Copyright (c) 2010 by NMS, Inc.
-- All rights reserved.
-- *****************************************************************
NMS-POWER-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,INTEGER,
Integer32, Unsigned32 FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP,
NOTIFICATION-GROUP FROM SNMPv2-CONF
nmsEPONGroup,nmsMgmt FROM NMS-SMI;
power OBJECT IDENTIFIER ::= { nmsMgmt 189 }
-- Notifications
powerStatus OBJECT-TYPE
SYNTAX INTEGER {
power-A-normal(1),
power-B-normal(2),
power-A-B-normal(3),
other(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Power status, power-A-normal(1), power-B-normal(2), power-A-B-normal(3), other(4)."
::= { power 1 }
powerOldStatus OBJECT-TYPE
SYNTAX INTEGER {
power-A-normal(1),
power-B-normal(2),
power-A-B-normal(3),
other(4)
}
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Power status before change, power-A-normal(1), power-B-normal(2), power-A-B-normal(3), other(4)."
::= { power 2 }
powerNewStatus OBJECT-TYPE
SYNTAX INTEGER {
power-A-normal(1),
power-B-normal(2),
power-A-B-normal(3),
other(4)
}
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Power status after change, power-A-normal(1), power-B-normal(2), power-A-B-normal(3), other(4)."
::= { power 3 }
powerNotifications OBJECT IDENTIFIER
::= { power 4 }
powerNotification NOTIFICATION-TYPE
OBJECTS {
powerOldStatus,
powerNewStatus
}
STATUS current
DESCRIPTION
"The agent generates this notification when power status changes."
::= { powerNotifications 1 }
END
|