summaryrefslogtreecommitdiff
path: root/MIBS/adva/F3-ESM-MIB
blob: 5000afa6809caea3b4159b257b7de9508d6bbc05 (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
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
F3-ESM-MIB DEFINITIONS ::= BEGIN

IMPORTS
    MODULE-COMPLIANCE, OBJECT-GROUP 
             FROM SNMPv2-CONF
    MODULE-IDENTITY, OBJECT-TYPE, Integer32, Unsigned32
             FROM SNMPv2-SMI
    RowStatus, StorageType, DisplayString,
    VariablePointer, TEXTUAL-CONVENTION
             FROM SNMPv2-TC
    fsp150cm
             FROM  ADVA-MIB; 

f3ESMMIB MODULE-IDENTITY
    LAST-UPDATED        "201209300000Z"
    ORGANIZATION    "ADVA Optical Networking"
    CONTACT-INFO
            "        Jakub Zalewski
                     ADVA Optical Networking, Inc.
                Tel: +48 58 7716 411
             E-mail: jzalewski@advaoptical.com
             Postal: ul. Slaska 35/37
                     81-310 Gdynia, Poland"
    DESCRIPTION
            "This module defines the Ethernet Service Manager MIB defitinions
             used by the F3 (FSP150CM/CC) product lines.  
             Copyright (C) ADVA Optical Networking."
    REVISION        "201210030000Z"
    DESCRIPTION
        "
         Notes from release 201210030000Z,
         (1)MIB version ready for release FSP150CC 5.6CC." 

    ::= {fsp150cm 23}

-- 
-- OID definitions
-- 
f3EsmConfigObjects      OBJECT IDENTIFIER ::= {f3ESMMIB 1}
f3EsmConformance        OBJECT IDENTIFIER ::= {f3ESMMIB 2}

--
-- ESM Config Table
--
esmConfigTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF EsmConfigEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "This table has list of entries with which FSPNM can associate some
         information in the form of name-value pairs.
         NOTE: This table is for FSPNM use only."

   ::= { f3EsmConfigObjects 1 }

esmConfigEntry OBJECT-TYPE
    SYNTAX      EsmConfigEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The conceptual row in esmConfigTable."
    INDEX   { esmConfigIndex }

   ::= { esmConfigTable 1 }

EsmConfigEntry ::= SEQUENCE {
    esmConfigIndex                Unsigned32,
    esmConfigAssociatedEntity     VariablePointer,
    esmConfigStorageType          StorageType,
    esmConfigRowStatus            RowStatus
}

esmConfigIndex OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "This is the unique index for ESM Config."
   ::= { esmConfigEntry 1 }

esmConfigAssociatedEntity OBJECT-TYPE
    SYNTAX      VariablePointer
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "This is the entity with which name-value pairs shall be associated."
   ::= { esmConfigEntry 2 }

esmConfigStorageType OBJECT-TYPE
    SYNTAX      StorageType
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The storage type for this conceptual row."
   ::= { esmConfigEntry 3 }

esmConfigRowStatus OBJECT-TYPE
    SYNTAX      RowStatus
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
            "The status of this row.  An entry MUST NOT exist in the 
            active state unless all objects in the entry have an 
            appropriate value, as described
            in the description clause for each writable object.

            The values of esmConfigRowStatus supported are
            createAndGo(4) and destroy(6).  All mandatory attributes
            must be specified in a single SNMP SET request with
            neRowStatus value as createAndGo(4).
            Upon successful row creation, this object has a
            value of active(1).

            The esmConfigRowStatus object may be modified if
            the associated instance of this object is equal to active(1)."
   ::= { esmConfigEntry 4 }

--
-- ESM Name-Value Pair Table
--
esmNameValuePairTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF EsmNameValuePairEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "This table has name-value pairs associated with entities.
         NOTE: This table is for FSPNM use only."
   ::= { f3EsmConfigObjects 2 }

esmNameValuePairEntry OBJECT-TYPE
    SYNTAX      EsmNameValuePairEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The conceptual row in esmNameValuePairTable."
    INDEX   { esmConfigIndex, esmNameValuePairName }
   ::= { esmNameValuePairTable 1}

EsmNameValuePairEntry ::= SEQUENCE {
    esmNameValuePairName         DisplayString,
    esmNameValuePairValue        DisplayString,
    esmNameValuePairStorageType  StorageType,
    esmNameValuePairRowStatus    RowStatus
}

esmNameValuePairName OBJECT-TYPE
    SYNTAX      DisplayString (SIZE(1..16))
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "This is the name in the name-value pair."
   ::= { esmNameValuePairEntry 1 }

esmNameValuePairValue OBJECT-TYPE
    SYNTAX      DisplayString (SIZE(1..256))
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
            "This is the value in the name-value pair."
   ::= { esmNameValuePairEntry 2 }

esmNameValuePairStorageType OBJECT-TYPE
    SYNTAX      StorageType
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
            "The storage type for this conceptual row."
    DEFVAL { nonVolatile }
   ::= { esmNameValuePairEntry 3 }

esmNameValuePairRowStatus OBJECT-TYPE
    SYNTAX      RowStatus
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
            "The status of this row.  An entry MUST NOT exist in the 
            active state unless all objects in the entry have an 
            appropriate value, as described
            in the description clause for each writable object.

            The values of esmNameValuePairRowStatus supported are
            createAndGo(4) and destroy(6).  All mandatory attributes
            must be specified in a single SNMP SET request with
            neRowStatus value as createAndGo(4).
            Upon successful row creation, this object has a
            value of active(1).

            The esmNameValuePairRowStatus object may be modified if
            the associated instance of this object is equal to active(1)."
   ::= { esmNameValuePairEntry 4 }

--
-- Conformance
--
f3EsmCompliances OBJECT IDENTIFIER ::= {f3EsmConformance 1}
f3EsmGroups      OBJECT IDENTIFIER ::= {f3EsmConformance 2}

f3EsmCompliance MODULE-COMPLIANCE
    STATUS  current
    DESCRIPTION
            "Describes the requirements for conformance to the F3-ESM-MIB compilance."
    MODULE  -- this module
        MANDATORY-GROUPS {
              esmConfigGroup, esmNameValuePairGroup
        }
    ::= { f3EsmCompliances 1 }

esmConfigGroup OBJECT-GROUP
   OBJECTS {
      esmConfigAssociatedEntity,
      esmConfigStorageType,
      esmConfigRowStatus
   }
   STATUS  current
   DESCRIPTION
             "A collection of objects used to manage the EMS Configuration objects."
    ::= { f3EsmGroups 1 }

esmNameValuePairGroup OBJECT-GROUP
   OBJECTS {
      esmNameValuePairValue,
      esmNameValuePairStorageType,
      esmNameValuePairRowStatus
   }
   STATUS  current
   DESCRIPTION
             "A collection of objects used to manage the EMS Name-Value Pair objects."
    ::= { f3EsmGroups 2 }

END