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
|
-- ************************************************************
-- SILVERPEAK-TC.txt: Silver Peak Systems, Inc.
-- MIB Textual Conventions
--
-- Copyright (c) 2011 Silver Peak Systems, Inc.
-- All rights reserved.
--
-- ************************************************************
--
SILVERPEAK-TC DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY
FROM SNMPv2-SMI
TEXTUAL-CONVENTION,
DisplayString
FROM SNMPv2-TC
silverpeakModules
FROM SILVERPEAK-SMI;
silverpeakTextualConventions MODULE-IDENTITY
LAST-UPDATED "201101240000Z"
ORGANIZATION "Silver Peak Systems, Inc."
CONTACT-INFO
" URL: http://www.silver-peak.com/contact
E-mail: support@silver-peak.com "
DESCRIPTION
"This module defines the textual conventions used throughout
Silverpeak Systems enterprise mibs."
::= { silverpeakModules 1 }
--
-- General TCs for all Sub-systems
--
SilverpeakDescription ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Represents a string description used for any MIB object.
"
SYNTAX DisplayString (SIZE(0..255))
SilverpeakYesNo ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Textual convention for yes/no enum.
"
SYNTAX INTEGER
{
no(0),
yes(1)
}
--
-- TCs for Alarm Sub-system
--
SilverpeakSeqNum ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Represents the unique sequence number associated with each
generated trap.
"
SYNTAX INTEGER (1..2147483647)
SilverpeakAlarmSeverity ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Represents the perceived alarm condition associated with a
service affecting condition and/or event.
indeterminate(8) -
Indicates that the severity level cannot be
determined.
unacknowledged(7) -
Indicates that the severity level cannot be
determined.
acknowledged(6) -
Indicates that the severity level cannot be
determined.
cleared(5) -
Indicates a previous alarm condition has been
cleared. It is not required (unless specifically
stated elsewhere on a case by case basis) that an
alarm condition that has been cleared will produce
a notification or other event containing an
alarm severity with this value.
critical(4) -
Indicates that a service or safety affecting
condition has occurred and an immediate
corrective action is required.
major(3) -
Indicates that a service affecting condition has
occurred and an urgent corrective action is
required.
minor(2) -
Indicates the existence of a non-service affecting
condition and that corrective action should be
taken in order to prevent a more serious (for
example, service or safety affecting) condition.
warning(1) -
Indicates the detection of a potential or impending
service or safety affecting condition, before any
significant effects have been felt.
info(0) -
Indicates an alarm condition that does not
meet any other severity definition. This can
include important, but non-urgent, notices or
informational events.
"
REFERENCE
"ITU-X.733"
SYNTAX INTEGER
{
info(0),
warning(1),
minor(2),
major(3),
critical(4),
cleared(5),
acknowledged(6),
unacknowledged(7),
indeterminate(8)
}
END
|