summaryrefslogtreecommitdiff
path: root/MIBS/siae/SIAE-QUEUE-DEPTH-MIB
blob: 404c161443fe4ce1e91f28e51309f2f5534ff711 (plain)
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-QUEUE-DEPTH-MIB
        DEFINITIONS ::= BEGIN

        IMPORTS
             MODULE-IDENTITY, OBJECT-TYPE,
             Integer32
        FROM SNMPv2-SMI
             TEXTUAL-CONVENTION,
             DisplayString
        FROM SNMPv2-TC
             siaeMib
        FROM SIAE-TREE-MIB
             AlarmStatus, AlarmSeverityCode
        FROM SIAE-ALARM-MIB;

    queueDepth MODULE-IDENTITY
        LAST-UPDATED "201405200000Z" 
        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
            "Queue depth management for SIAE equipments.
            "
        REVISION "201405200000Z"
        DESCRIPTION 
            "Initial version 01.00.00.
            "
    ::= { siaeMib 84 }

----------------------------------------------------------------------------
--  Textual Conventions
----------------------------------------------------------------------------

DisplayString1024 ::= TEXTUAL-CONVENTION
    DISPLAY-HINT "1024a"
    STATUS       current
    DESCRIPTION
            "Represents textual information taken from the NVT ASCII
            character set, as defined in pages 4, 10-11 of RFC 854.

            To summarize RFC 854, the NVT ASCII repertoire specifies:

              - the use of character codes 0-127 (decimal)

              - the graphics characters (32-126) are interpreted as
                US ASCII

              - NUL, LF, CR, BEL, BS, HT, VT and FF have the special
                meanings specified in RFC 854

              - the other 25 codes have no standard interpretation

              - the sequence 'CR LF' means newline

              - the sequence 'CR NUL' means carriage-return

              - an 'LF' not preceded by a 'CR' means moving to the
                same column on the next line.

              - the sequence 'CR x' for any x other than LF or NUL is
                illegal.  (Note that this also means that a string may
                end with either 'CR LF' or 'CR NUL', but not with CR.)

            Any object defined using this syntax may not exceed 255
            characters in length."
    SYNTAX       OCTET STRING (SIZE (0..1024))

----------------------------------------------------------------------------
--  MIB objects
----------------------------------------------------------------------------

------ Beginning -------------------------------------------------------------

    queueDepthMibVersion 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."
    ::= {queueDepth 1}
    
-------  Begin of qdProfileTable
--
    qdProfileTable OBJECT-TYPE
        SYNTAX      SEQUENCE OF QueueDepthProfileEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "A list of queue depth profile entries. This table is useful 
             to show to the manager available profiles and its feature."
    ::= {queueDepth 2}

    qdProfileEntry OBJECT-TYPE
        SYNTAX      QueueDepthProfileEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "An entry containing information about each queue depth settings
             realized by a profile."
        INDEX       {qdProfileIndex}
    ::= {qdProfileTable 1}

    QueueDepthProfileEntry  ::=
        SEQUENCE  {
            qdProfileIndex        Integer32,
            qdProfileName         DisplayString,
            qdProfileDescription  DisplayString1024
         }
    
    qdProfileIndex OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "A unique value, greater than zero, for each queue depth profile.
             It is recommended that values are assigned contiguously 
             starting from 1."
    ::= {qdProfileEntry 1}
   
    qdProfileName OBJECT-TYPE
        SYNTAX      DisplayString   (SIZE(0..64))
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "A brief description of the settings realized by this profile."
    ::= {qdProfileEntry 2}
    
    qdProfileDescription OBJECT-TYPE
        SYNTAX      DisplayString1024
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "A detailed description of the settings realized by this profile."
    ::= {qdProfileEntry 3}
        
--
-------  End of qdProfileTable

    qdProfileSelect OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "This object selects a queue depth profile from qdProfileTable
             to be applied after a cold restart."
    DEFVAL { 1 }
    ::= {queueDepth 3}

    qdActualProfile OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object shows the actual queue profile in use.
             The object content is set upon restart equal to qdProfileSelect
             and is never changed, since a new profile will be applied after
             a next cold restart. The value 0 means the actual profile is
             unknown."
    ::= {queueDepth 4}

    qdProfileMismatchAlarm  OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This alarm is raise when the actual profile is not equal to the
             selected profile."
    ::= {queueDepth 5}

    qdProfileMismatchAlarmSeverityCode  OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Defines the severity associated to the qdProfileMismatchAlarm
             and enables/disables the trap generation on status change event."
        DEFVAL {warningTrapEnable}
    ::= {queueDepth 6}

------ End group -------------------------------------------------------------

END