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
|
-- *****************************************************************
-- DLINKSW-SAFEGUARD-ENGINE-MIB.mib : Safeguard Engine Configuration MIB
--
-- Copyright (c) 2012 D-Link Corporation, all rights reserved.
--
-- *****************************************************************
DLINKSW-SAFEGUARD-ENGINE-MIB DEFINITIONS ::= BEGIN
IMPORTS
OBJECT-GROUP, MODULE-COMPLIANCE
FROM SNMPv2-CONF
Integer32, Counter32, OBJECT-TYPE, MODULE-IDENTITY
FROM SNMPv2-SMI
TruthValue,
RowStatus,
TEXTUAL-CONVENTION
FROM SNMPv2-TC
dCpuProtectMIBObjects
FROM DLINKSW-CPU-PROTECT-MIB;
dlinkSwSafeguardEngineMIB MODULE-IDENTITY
LAST-UPDATED "201206270000Z"
ORGANIZATION "D-Link Corp."
CONTACT-INFO
" D-Link Corporation
Postal: No. 289, Sinhu 3rd Rd., Neihu District,
Taipei City 114, Taiwan, R.O.C
Tel: +886-2-66000123
E-mail: tsd@dlink.com.tw
"
DESCRIPTION
"The MIB module for managing Safeguard engine."
REVISION "201206270000Z"
DESCRIPTION
"Initial version of this MIB module."
::= { dCpuProtectMIBObjects 1 }
--
-- Node definitions
--
dSafeguardEngineMIBNotif OBJECT IDENTIFIER ::= { dlinkSwSafeguardEngineMIB 0 }
dSafeguardEngineMIBObjects OBJECT IDENTIFIER ::= { dlinkSwSafeguardEngineMIB 1 }
dSafeguardEngineMIBConformance OBJECT IDENTIFIER ::= { dlinkSwSafeguardEngineMIB 2 }
-- ***************************************************************************
-- Safeguard-Engine
-- ***************************************************************************
dSafeguardEngineState OBJECT-TYPE
SYNTAX INTEGER
{ enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to configure and show the state of Safeguard Engine."
DEFVAL { disable }
::= { dSafeguardEngineMIBObjects 1 }
dSafeguardEngineRiseThresh OBJECT-TYPE
SYNTAX INTEGER (20..100)
UNITS "%"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to configure and show the rising threshold
of Safeguard Engine."
DEFVAL { 50 }
::= { dSafeguardEngineMIBObjects 2 }
dSafeguardEngineFallThresh OBJECT-TYPE
SYNTAX INTEGER (20..100)
UNITS "%"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to configure and show the falling
threshold of Safeguard Engine."
DEFVAL { 20 }
::= { dSafeguardEngineMIBObjects 3 }
dSafeguardEngineCurrentMode OBJECT-TYPE
SYNTAX INTEGER
{ normal(1),
exhausted(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object show the current mode of Safeguard Engine."
::= { dSafeguardEngineMIBObjects 4 }
dSafeguardEngineNotifEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies whether the system sends notifications to the NMS."
DEFVAL { false }
::= { dSafeguardEngineMIBObjects 5 }
-- ***************************************************************************
-- Notification
-- ***************************************************************************
dSafeguardChgToExhausted NOTIFICATION-TYPE
OBJECTS { dSafeguardEngineCurrentMode }
STATUS current
DESCRIPTION
"This trap indicates System change operation mode from normal to exhausted."
::= { dSafeguardEngineMIBNotif 1 }
dSafeguardChgToNormal NOTIFICATION-TYPE
OBJECTS { dSafeguardEngineCurrentMode }
STATUS current
DESCRIPTION
"This trap indicates System change operation mode from exhausted to normal."
::= { dSafeguardEngineMIBNotif 2 }
-- ***************************************************************************
-- Conformance
-- ***************************************************************************
dSafeguardEngineCompliances OBJECT IDENTIFIER ::= { dSafeguardEngineMIBConformance 1 }
dSafeguardEngineCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for entities which implement the
DLINKSW-SAFEGUARD-ENGINE-MIB."
MODULE -- this module
MANDATORY-GROUPS
{ dSafeguardEngineGroup,
dSafeguardEngNotifEnableGroup,
dSafeguardEngineNotifGroup
}
::= { dSafeguardEngineCompliances 1 }
dSafeguardEngineGroups OBJECT IDENTIFIER ::= { dSafeguardEngineMIBConformance 2 }
dSafeguardEngineGroup OBJECT-GROUP
OBJECTS
{ dSafeguardEngineState,
dSafeguardEngineRiseThresh,
dSafeguardEngineFallThresh,
dSafeguardEngineCurrentMode
}
STATUS current
DESCRIPTION
"A collection of objects providing the configuration or inforamtion about Safeguard Engine."
::= { dSafeguardEngineGroups 1 }
dSafeguardEngNotifEnableGroup OBJECT-GROUP
OBJECTS { dSafeguardEngineNotifEnable }
STATUS current
DESCRIPTION
"A collection of object(s) that provides control over
Safeguard Engine related notification(s)."
::= { dSafeguardEngineGroups 2 }
dSafeguardEngineNotifGroup NOTIFICATION-GROUP
NOTIFICATIONS
{ dSafeguardChgToExhausted,
dSafeguardChgToNormal
}
STATUS current
DESCRIPTION
"A collection of notifications providing information
about the System mode change of Safeguard Engine."
::= { dSafeguardEngineGroups 3}
END
|