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
|
-- ----------------------------------------------------------------------------
--
-- SIAE MICROELETTRONICA s.p.a.
--
-- Via Michelangelo Buonarroti, 21
-- 20093 - Cologno Monzese
-- Milano
-- ITALY
--
-- ----------------------------------------------------------------------------
-- ----------------------------------------------------------------------------
SIAE-MANOP-MIB
DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
Integer32, Unsigned32
FROM SNMPv2-SMI
siaeMib
FROM SIAE-TREE-MIB
AlarmStatus, AlarmSeverityCode
FROM SIAE-ALARM-MIB;
manualOperation MODULE-IDENTITY
LAST-UPDATED "201403170000Z"
ORGANIZATION "SIAE MICROELETTRONICA spa"
CONTACT-INFO
"SIAE MICROELETTONICA s.p.a.
Via Michelangelo Buonarroti, 21
20093 - Cologno Monzese
Milano - ITALY
Phone : +39-02-27325-1
E-mail: tbd@siaemic.com
"
DESCRIPTION
"Manual Operation management.
"
REVISION "201403170000Z"
DESCRIPTION
"Fixed DESCRIPTION of manualOpActiveSeverityCode
"
REVISION "201402030000Z"
DESCRIPTION
"Improved description of manualOpMibVersion
"
REVISION "201304160000Z"
DESCRIPTION
"Initial version 01.00.00
"
::= { siaeMib 71 }
----------------------------------------------------------------------------------
-- object identifier inside the module
----------------------------------------------------------------------------------
manualOpTrap OBJECT IDENTIFIER ::= { manualOperation 0 }
----------------------------------------------------------------------------------
-- SIAE manualOperation GROUP
----------------------------------------------------------------------------------
--
-- The following listed objects are general object common to all SIAE equipment.
--
----------------------------------------------------------------------------------
------ Beginning --------------------------------------------------------------
manualOpMibVersion OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Numerical version of this module.
The string version of this MIB have the following format:
XX.YY.ZZ
so, for example, the value 1 should be interpreted as 00.00.01
and the value 10001 should be interpreted as 01.00.01."
DEFVAL {1}
::= {manualOperation 1}
------- Begin of equipManOpTable
--
manualOpTable OBJECT-TYPE
SYNTAX SEQUENCE OF ManualOpRecord
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table with manual operation record."
::= {manualOperation 2}
manualOpRecord OBJECT-TYPE
SYNTAX ManualOpRecord
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Manual operation record."
INDEX {manualOpId}
::= {manualOpTable 1}
ManualOpRecord ::=
SEQUENCE {
manualOpId Integer32,
manualOpObjectId OBJECT IDENTIFIER,
manualOpEventTime Unsigned32,
manualOpValueType INTEGER,
manualOpIntegerVal Integer32,
manualOpOidVal OBJECT IDENTIFIER
}
manualOpId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Manual operation index."
::= {manualOpRecord 1}
manualOpObjectId OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Object identifier of the manual operation active element."
::= {manualOpRecord 2}
manualOpEventTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time (in seconds since 01-Gen-1970) when the event was
registered in the table."
::= {manualOpRecord 3}
manualOpValueType OBJECT-TYPE
SYNTAX INTEGER {
integer32 (1),
objectId (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of the value. One and only one of the value object
that follow is used for a given row in this table, based on
this type."
::= {manualOpRecord 4}
manualOpIntegerVal OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value when manualOpValueType is 'integer32'."
::= {manualOpRecord 5}
manualOpOidVal OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value when manualOpValueType is 'objectId'."
::= {manualOpRecord 6}
--
------- End of equipManOpTable
manualOpActive OBJECT-TYPE
SYNTAX AlarmStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Manual Operation active on the equipment."
::= {manualOperation 3}
manualOpActiveSeverityCode OBJECT-TYPE
SYNTAX AlarmSeverityCode
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Defines the severity associated to manualOpActive
and enables/disables the trap generation on status change event."
DEFVAL {warningTrapEnable}
::= {manualOperation 4}
manualOpTimeOut OBJECT-TYPE
SYNTAX INTEGER (0..172800)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object defines the time (in seconds) after wich the manual
operations are cleared. The maximum value is equivalent to 48 hours.
A zero means no Time-out."
DEFVAL {2}
::= {manualOperation 5}
------ End group -------------------------------------------------------------
END
|