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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
|
--************************************************************************\
--* *
--* Copyright (c) 1998-2004 Intel Corporation. All Rights Reserved. *
--* *
--* Redistribution and use in source and binary forms, with or without *
--* modification, are permitted provided that the following conditions *
--* are met: *
--* *
--* a.. Redistributions of source code must retain the above copyright *
--* notice, this list of conditions and the following disclaimer. *
--* b.. Redistributions in binary form must reproduce the above *
--* copyright notice, this list of conditions and the following *
--* disclaimer in the documentation and/or other materials provided *
--* with the distribution. *
--* c.. Neither the name of Intel Corporation nor the names of its *
--* contributors may be used to endorse or promote products derived *
--* from this software without specific prior written permission. *
--* *
--* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS *
--* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT *
--* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR *
--* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT *
--* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, *
--* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT *
--* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, *
--* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON *
--* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR *
--* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF *
--* THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH *
--* DAMAGE. *
--* *
--\***********************************************************************/
--/**************************************************************************
--*
--* NAME:
--* aolnprxy.mib
--*
--* DESCRIPTION:
--* Alert on LAN MIB
--*
--*
--* $WorkFile: $
--* $Revision: 6 $
--* $ModTime: $
--* $Author: Psaranga $
--*
--***************************************************************************
PET-MIB
DEFINITIONS ::= BEGIN
-- Title : Alert on LAN pET MIB version 1.0.
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
Integer32, IpAddress
FROM SNMPv2-SMI
enterprises
FROM RFC1155-SMI
DisplayString
FROM RFC1213-MIB
TRAP-TYPE
FROM RFC-1215
;
wired_for_management OBJECT IDENTIFIER ::= { enterprises 3183 }
pET OBJECT IDENTIFIER ::= { wired_for_management 1 }
pET_version_1 OBJECT IDENTIFIER ::= { pET 1 }
-- MODULE IDENTIFICATION
--
-- Alert_on_LAN MODULE-IDENTITY
-- LAST-UPDATED "9807210000Z"
-- ORGANIZATION "Intel Corporation"
-- CONTACT-INFO
-- " Alert On LAN* Software
-- Intel Corporation, JF3-4
-- Hillsboro, OR. "
-- DESCRIPTION
-- " This is the pET MIB. Version 1.0 "
-- We should be able to plug this branch into any tree from this point forward
-- ****************************************
-- SYSTEM INFORMATION BRANCH STARTS HERE.
-- ****************************************
pETTrap OBJECT-TYPE
SYNTAX OCTET STRING ( SIZE(110) )
ACCESS read-only
STATUS current
DESCRIPTION
"Trap information"
::= { pET_version_1 1 }
pET_PresenceHeartbeat TRAP-TYPE
ENTERPRISE pET_version_1
DESCRIPTION
"Presence Heartbeat Expired"
::= 2584320
pET_CoverTamper TRAP-TYPE
ENTERPRISE pET_version_1
DESCRIPTION
"Cover Tamper"
::= 356096
pET_Voltage_Fan_Temperature TRAP-TYPE
ENTERPRISE pET_version_1
DESCRIPTION
"Voltage/Fan/Temperature Out of Specification"
::= 552706
pET_LANLeash TRAP-TYPE
ENTERPRISE pET_version_1
DESCRIPTION
"LAN Leash Tamper"
::= 356100
pET_Temperature TRAP-TYPE
ENTERPRISE pET_version_1
DESCRIPTION
"Temperature Out of Specification"
::= 93952
pET_ProcessorMissing TRAP-TYPE
ENTERPRISE pET_version_1
DESCRIPTION
"Processor Missing"
::= 356099
pET_ProcessorTemperature TRAP-TYPE
ENTERPRISE pET_version_1
DESCRIPTION
"Processor Over Temperature"
::= 487169
pET_Watchdog TRAP-TYPE
ENTERPRISE pET_version_1
DESCRIPTION
"Watchdog Event"
::= 1142534
pET_P_O_S_T TRAP-TYPE
ENTERPRISE pET_version_1
DESCRIPTION
"P.O.S.T."
::= 1011456
pET_Voltage TRAP-TYPE
ENTERPRISE pET_version_1
DESCRIPTION
"Voltage Out of Specification"
::= 159488
pET_Fan TRAP-TYPE
ENTERPRISE pET_version_1
DESCRIPTION
"Fan Out of Specification"
::= 290560
pET_Fan_Temperature TRAP-TYPE
ENTERPRISE pET_version_1
DESCRIPTION
"Fan/Temperature Out of Specification"
::= 683778
pET_Undock TRAP-TYPE
ENTERPRISE pET_version_1
DESCRIPTION
"Surprised Undock event"
::= 356101
pET_EventClear TRAP-TYPE
ENTERPRISE pET_version_1
DESCRIPTION
"Event clear"
::= 1076994
pET_AlertOnLAN_2 TRAP-TYPE
ENTERPRISE pET_version_1
DESCRIPTION
"Alert on LAN 2 Event has occurred"
::= 2277391
pET_AlertOnLAN_Boot TRAP-TYPE
ENTERPRISE pET_version_1
DESCRIPTION
"System Boot Event occurred"
::= 1208065
pET_AlertOnLAN_Fan TRAP-TYPE
ENTERPRISE pET_version_1
DESCRIPTION
"Fan Event occurred"
::= 262400
pET_AlertOnLAN_Fan2 TRAP-TYPE
ENTERPRISE pET_version_1
DESCRIPTION
"Fan Event occurred"
::= 262402
END
|