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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
|
CORERO-CMS-DEVICES-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
TimeTicks, Counter32, Unsigned32, Counter64, enterprises, IpAddress
FROM SNMPv2-SMI
DisplayString, TestAndIncr, TimeStamp, RowStatus, TruthValue, TEXTUAL-CONVENTION
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
coreroCMSMIBObjects, coreroCMSMIBCompliances, coreroCMSMIBGroups
FROM CORERO-CMS-MIB;
devices MODULE-IDENTITY
LAST-UPDATED "202009300000Z"
ORGANIZATION "Corero Network Security"
CONTACT-INFO
"info@corero.com"
DESCRIPTION
"Corero Management Server MIB."
REVISION "201712050000Z"
DESCRIPTION
"Initial revision"
REVISION "201712070000Z"
DESCRIPTION
"Rename of deviceDeploymentAction's 'not-in-progress to 'none'"
REVISION "201712190000Z"
DESCRIPTION
"Updated to support revised operating-modes configuration"
REVISION "201801090000Z"
DESCRIPTION
"Add invalid-modules-detected deploy-state"
REVISION "201802050000Z"
DESCRIPTION
"Rename of deviceHealth object to deviceStatus"
REVISION "201809250000Z"
DESCRIPTION
"Change deviceAdminState to use enabled/disabled"
REVISION "201810020000Z"
DESCRIPTION
"Add redeploy-pending deploy-state"
REVISION "201810080000Z"
DESCRIPTION
"Added unknown device type value"
REVISION "202009030000Z"
DESCRIPTION
"Added deviceHardwareVersion object to deviceStatus"
::= { coreroCMSMIBObjects 2 }
-- devices
deviceTable OBJECT-TYPE
SYNTAX SEQUENCE OF DeviceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of devices"
::= { devices 1 }
deviceEntry OBJECT-TYPE
SYNTAX DeviceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry within the device table which represents a single device"
INDEX { deviceIndex }
::= { deviceTable 1 }
DeviceEntry ::= SEQUENCE {
deviceIndex INTEGER (1..2147483647),
deviceName OCTET STRING,
deviceAddress OCTET STRING,
deviceDescription OCTET STRING,
deviceDefenseMode INTEGER,
deviceAdminState INTEGER,
deviceModel INTEGER,
deviceSerialNumber OCTET STRING,
deviceConnectionState INTEGER,
deviceDeploymentState INTEGER,
deviceDeploymentAction INTEGER,
deviceSXOSVersion OCTET STRING,
deviceSoftwareVersion OCTET STRING,
deviceUptime OCTET STRING,
deviceStatus OCTET STRING,
deviceType INTEGER,
deviceBypassMode INTEGER,
deviceHardwareVersion OCTET STRING
}
deviceIndex OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The SNMP index of the device"
::= { deviceEntry 1 }
deviceName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the device"
::= { deviceEntry 2 }
deviceAddress OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address which the CMS uses to look for the device"
::= { deviceEntry 3 }
deviceDescription OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The device description. If no description is entered, this is blank."
::= { deviceEntry 4 }
deviceDefenseMode OBJECT-TYPE
SYNTAX INTEGER {
monitor(0),
mitigate(1),
pass-through(2),
not-applicable(10)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The configured Defense Mode for the device"
::= { deviceEntry 5 }
deviceAdminState OBJECT-TYPE
SYNTAX INTEGER {
disabled(1),
enabled(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current admin-state of the device"
::= { deviceEntry 6 }
deviceModel OBJECT-TYPE
SYNTAX INTEGER {
ntd-virtual-edition(0),
ntd1100(1),
ntd120(2),
nba(3),
unknown(4),
ntd280(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of device"
::= { deviceEntry 7 }
deviceSerialNumber OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The serial number of the device"
::= { deviceEntry 8 }
deviceConnectionState OBJECT-TYPE
SYNTAX INTEGER {
connected(0),
authentication-failed(1),
connection-timed-out(2),
connection-refused(3),
unknown-connection-error(4),
no-connection(5),
locked-by-user(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current state of the connection between the CMS and the device"
::= { deviceEntry 9 }
deviceDeploymentState OBJECT-TYPE
SYNTAX INTEGER {
in-sync(0),
sync-required(1),
force-sync-required(2),
unknown(3),
not-in-cluster(4),
initial-sync-pending(5),
not-licensed(6),
unsupported-version(7),
deploy-pending(8),
unexpected-device-type(9),
invalid-modules-detected(10),
redeploy-pending(11)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The device's current deployment state"
::= { deviceEntry 10 }
deviceDeploymentAction OBJECT-TYPE
SYNTAX INTEGER {
none(0),
deploy-in-progress(1),
sync-to-in-progress(2),
force-sync-in-progress(3),
commit-in-progress(4),
upgrade-in-progress(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The deployment action the device is currently performing"
::= { deviceEntry 11 }
deviceSXOSVersion OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The version number of the device's operating system (SXOS)"
::= { deviceEntry 12 }
deviceSoftwareVersion OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The device's current software version in '{MAJOR}.{MINOR}.{PATCH}.{BUILD}' format"
::= { deviceEntry 13 }
deviceUptime OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The amount of time since the device was last rebooted in '{DAYS}d {HOURS}h {MINUTES}m {SECONDS}s' format"
::= { deviceEntry 14 }
deviceStatus OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The device status indicates whether traffic is running to the device (normal), or if there is an issue which may affect traffic or its connection to the CMS"
::= { deviceEntry 15 }
deviceType OBJECT-TYPE
SYNTAX INTEGER {
defense(0),
bypass(1),
unknown(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The device type indicates whether this is a Defense (0) or Bypass (1) device"
::= { deviceEntry 16 }
deviceBypassMode OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
automatic(1),
physical-bypass(2),
switched-bypass(3),
monitor-tap(4),
not-applicable(10)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The configured Bypass Mode for this device."
::= { deviceEntry 17 }
deviceHardwareVersion OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The device's hardware revision in '{MAJOR}.{MINOR}' format or n/a if not applicable"
::= { deviceEntry 18 }
-- compliance statements
coreroCMSMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for SNMPv2 entities which
implement the SNMPv2 MIB."
MODULE -- this module
-- MANDATORY-GROUPS { snmpGroup, snmpSetGroup, systemGroup,
-- snmpBasicNotificationsGroup }
GROUP coreroDeviceGroup
DESCRIPTION
"This group is mandatory for SNMPv2 entities which
support community-based authentication."
::= { coreroCMSMIBCompliances 2 }
-- units of conformance
coreroDeviceGroup OBJECT-GROUP
OBJECTS {
deviceIndex,
deviceName,
deviceAddress,
deviceDescription,
deviceDefenseMode,
deviceAdminState,
deviceModel,
deviceSerialNumber,
deviceConnectionState,
deviceDeploymentState,
deviceDeploymentAction,
deviceSXOSVersion,
deviceSoftwareVersion,
deviceUptime,
deviceStatus,
deviceType,
deviceBypassMode,
deviceHardwareVersion
}
STATUS current
DESCRIPTION
"A collection of objects providing status and statistics for the site."
::= { coreroCMSMIBGroups 2 }
END
|