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
|
CORERO-CMS-SYSTEM-STATUS-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE FROM SNMPv2-SMI
coreroCMSMIBObjects FROM CORERO-CMS-MIB;
systemStatus MODULE-IDENTITY
LAST-UPDATED "202001230000Z"
ORGANIZATION "Corero Network Security"
CONTACT-INFO
"info@corero.com"
DESCRIPTION
"Represents current CMS status"
REVISION "202001230000Z"
DESCRIPTION
"Initial revision"
::= { coreroCMSMIBObjects 6 }
protection OBJECT-TYPE
SYNTAX INTEGER {
normal(0),
warning(1),
error(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current protection status"
::= { systemStatus 1 }
device OBJECT-TYPE
SYNTAX INTEGER {
normal(0),
warning(1),
error(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current device status"
::= { systemStatus 2 }
network OBJECT-TYPE
SYNTAX INTEGER {
normal(0),
warning(1),
error(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current network status"
::= { systemStatus 3 }
issueTable OBJECT-TYPE
SYNTAX SEQUENCE OF IssueEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of issues"
::= { systemStatus 4 }
analytics OBJECT-TYPE
SYNTAX INTEGER {
normal(0),
warning(1),
error(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current analytics status"
::= { systemStatus 5 }
issueEntry OBJECT-TYPE
SYNTAX IssueEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry within the issue table which represents a single issue"
INDEX { issueIndex }
::= { issueTable 1 }
IssueEntry ::= SEQUENCE {
issueIndex INTEGER (1..2147483647),
issueType INTEGER,
issueDevice OCTET STRING,
issueSegment OCTET STRING,
issueDescription OCTET STRING,
issueSeverity INTEGER
}
issueIndex OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The issue index"
::= { issueEntry 1 }
issueType OBJECT-TYPE
SYNTAX INTEGER {
protection(0),
devices(1),
network(2),
analytics(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The issue type"
::= { issueEntry 2 }
issueDevice OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The device for which issue was created"
::= { issueEntry 3 }
issueSegment OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The segment for which issue was created"
::= { issueEntry 4 }
issueDescription OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The issue description"
::= { issueEntry 5 }
issueSeverity OBJECT-TYPE
SYNTAX INTEGER {
normal(0),
warning(1),
error(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The issue severity"
::= { issueEntry 6 }
END
|