summaryrefslogtreecommitdiff
path: root/MIBS/ciena/CIENA-CES-MAC-MIB
blob: 4435b37c993ebe96870298c60e6acbc70a3e2f8f (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
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
-- This file was included in Ciena MIB release MIBS-CIENA-CES-08-07-00-024

 --
 -- CIENA-CES-MAC-MIB.my
 --

 CIENA-CES-MAC-MIB DEFINITIONS ::= BEGIN

 IMPORTS       
   Integer32, Unsigned32, OBJECT-TYPE, MODULE-IDENTITY
       FROM SNMPv2-SMI        
   DisplayString, MacAddress     
       FROM SNMPv2-TC   
   OBJECT-GROUP
         FROM SNMPv2-CONF              
   cienaCesConfig,cienaCesStatistics, cienaCesNotifications         
        FROM CIENA-SMI;

   
 cienaCesMacMIB MODULE-IDENTITY
       LAST-UPDATED "201706070000Z"
       ORGANIZATION "Ciena Corp."
       CONTACT-INFO
       "   Mib Meister
           7035 Ridge Road
           Hanover, Maryland 21076
           USA
           Phone:  +1 800 921 1144
           Email:  support@ciena.com"
       DESCRIPTION
          "The MIB module defines the managed objects for the MAC tables 
          available on the Ciena specific products."
       REVISION    "201706070000Z"
       DESCRIPTION 
          "Updated contact info."
       REVISION    "201507030000Z"
       DESCRIPTION
          "Added cienaCesMacScanPortChannelId to support channelized interfaces"
       REVISION    "201205150000Z"
       DESCRIPTION
          "Initial creation."
       ::= { cienaCesConfig 26 }
                  
 --
 -- Node definitions
 --   
 cienaCesMacMIBObjects OBJECT IDENTIFIER ::= { cienaCesMacMIB 1 }
 cienaCesMacScan       OBJECT IDENTIFIER ::= { cienaCesMacMIBObjects 1 }
 cienaCesMacScanAttr   OBJECT IDENTIFIER ::= { cienaCesMacScan 1}

 --
 -- Notifications 
 --
 cienaCesMacMIBNotificationPrefix   OBJECT IDENTIFIER ::= { cienaCesMacMIB 2 } 
 cienaCesMacMIBNotifications        OBJECT IDENTIFIER ::=  
                                             {cienaCesMacMIBNotificationPrefix 0 }

 --
 -- Conformance information 
 --
 cienaCesMacMIBConformance  OBJECT IDENTIFIER ::= { cienaCesMacMIB 3 } 
 cienaCesMacMIBCompliances  OBJECT IDENTIFIER ::= { cienaCesMacMIBConformance 1 }                
 cienaCesMacMIBGroups       OBJECT IDENTIFIER ::= { cienaCesMacMIBConformance 2 }
 
 --
 -- The dynamic MAC table attributes
 --
 cienaCesMacScanAttrVs  OBJECT-TYPE
     SYNTAX          Integer32 (-1 | 0..65535)
     MAX-ACCESS      read-write
     STATUS          current
     DESCRIPTION
           "The virtual switch (VS) attribute allows the user to 
            display MAC scan table entries that are associated with the 
            specified VS. Setting to -1 will enable all VSs to be included in the
            MAC scan table."
     DEFVAL { -1 }
     ::= { cienaCesMacScanAttr 1 } 
  
 cienaCesMacScanAttrRlan  OBJECT-TYPE
     SYNTAX          Integer32 (-1 | 0..65535)
     MAX-ACCESS      read-write
     STATUS          current
     DESCRIPTION
            "The RLAN attribute allows the user to display MAC scan table entries 
             that are associated with the specified RLAN. If the RLAN attribute 
             is set to -1, then all RLANs will be shown (default value)."
     DEFVAL { -1 }
     ::= { cienaCesMacScanAttr 2 }
 
 cienaCesMacScanAttrMac  OBJECT-TYPE
     SYNTAX          MacAddress
     MAX-ACCESS      read-write
     STATUS          current
     DESCRIPTION
           "The MAC and mask attributes allow the user to construct MAC scan 
            table entries that match all or part of the specified MAC and mask attributes.
            The MAC scan table will only contain entries that have bits set, 
            matching the specified MAC address and mask.  This will allow the user 
            to specify that certain bits in the MAC address must be 1's or 0's.

            A mask of ff:ff:ff:ff:ff:ff will be implied only when the specified 
            MAC address will be included in the MAC table.

            A MAC attribute of 00:00:00:00:00:00 allowing all MACs to be included 
            in the table (provided the other attributes match allowing the table 
            entry to be returned)."
     DEFVAL {'000000000000'H}
     ::= { cienaCesMacScanAttr 3 }
 
 cienaCesMacScanAttrMask  OBJECT-TYPE
     SYNTAX          MacAddress
     MAX-ACCESS      read-write
     STATUS          current
     DESCRIPTION
           "Refer to cienaCesMacScanAttrMac description."
     DEFVAL {'000000000000'H}
     ::= { cienaCesMacScanAttr 4 }
 
 --
 -- The MAC table
 --
 cienaCesMacScanTable OBJECT-TYPE
     SYNTAX     SEQUENCE OF CienaCesMacScanEntry
     MAX-ACCESS not-accessible
     STATUS     current
     DESCRIPTION
            "The (conceptual) table contains current MAC table per the 
            cienaCesMacScanAttr objects." 
    ::= { cienaCesMacScan 2 }

 cienaCesMacScanEntry OBJECT-TYPE
    SYNTAX     CienaCesMacScanEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION
            "An entry (conceptual row) in the cienaCesMacScanTable."
    INDEX      { cienaCesMacScanVsIndex, 
                 cienaCesMacScanRlanIndex, 
                 cienaCesMacScanMacIndex }
    ::= { cienaCesMacScanTable 1 }
 
 CienaCesMacScanEntry ::= SEQUENCE {                  
    cienaCesMacScanVsIndex           Unsigned32,
    cienaCesMacScanRlanIndex         Unsigned32,
    cienaCesMacScanMacIndex          MacAddress,
    cienaCesMacScanVsId              Unsigned32,
    cienaCesMacScanRlanId            Unsigned32,
    cienaCesMacScanMacAddr           DisplayString,
    cienaCesMacScanLiType            INTEGER,
    cienaCesMacScanLiIndex           Unsigned32,
    cienaCesMacScanPortBayIndex      Unsigned32,
    cienaCesMacScanPortShelfIndex    Unsigned32,
    cienaCesMacScanPortSlotIndex     Unsigned32,
    cienaCesMacScanPortPortId        Unsigned32,
    cienaCesMacScanMacType           INTEGER,
    cienaCesMacScanPortChannelId     Unsigned32
 }                                 
 
 cienaCesMacScanVsIndex   OBJECT-TYPE
     SYNTAX          Unsigned32
     MAX-ACCESS      not-accessible
     STATUS          current
     DESCRIPTION
           "The object indicates the VS value associated with the MAC entry."               
     ::= { cienaCesMacScanEntry 1 }
     
 cienaCesMacScanRlanIndex  OBJECT-TYPE
     SYNTAX          Unsigned32
     MAX-ACCESS      not-accessible
     STATUS          current
     DESCRIPTION
           "The object indicates the RLAN value associated with the MAC entry."               
     ::= { cienaCesMacScanEntry 2 }

 cienaCesMacScanMacIndex  OBJECT-TYPE
     SYNTAX          MacAddress
     MAX-ACCESS      not-accessible
     STATUS          current
     DESCRIPTION
           "The object indicates the MAC address of the MAC entry."               
     ::= { cienaCesMacScanEntry 3 }

 cienaCesMacScanVsId   OBJECT-TYPE
     SYNTAX          Unsigned32
     MAX-ACCESS      read-only
     STATUS          current
     DESCRIPTION
           "The object has the same definition as the cienaCesMacScanVsIndex."               
     ::= { cienaCesMacScanEntry 4 }
     
 cienaCesMacScanRlanId  OBJECT-TYPE
     SYNTAX          Unsigned32
     MAX-ACCESS      not-accessible
     STATUS          current
     DESCRIPTION
           "The object has the same definition as the cienaCesMacScanRlanIndex."
     ::= { cienaCesMacScanEntry 5 }

 cienaCesMacScanMacAddr  OBJECT-TYPE
     SYNTAX          DisplayString
     MAX-ACCESS      read-only
     STATUS          current
     DESCRIPTION
           "The object has the same definition as the cienaCesMacScanMacIndex.
            The format is ASCII '00:00:00:00:00:00'."
     ::= { cienaCesMacScanEntry 6 }


 cienaCesMacScanLiType   OBJECT-TYPE
     SYNTAX          INTEGER {
                        unknown(1),
                        port(2),
                        tunnelEncapPbt(3),
                        tunnelDecapPbt(4),
                        tunnelGroupPbt(5),
                        transitPbt(6),
                        tunnelEncapMpls(7),
                        tunnelDecapMpls(8),
                        transitMpls(9),
                        subPort(10),
                        qosFlow(11),
                        accessFlow(12),
                        servicePbt(13),
                        servicePbb(14),
                        serviceMplsMesh(15),
                        cpuInterface(16),
                        cpuSubInterface(17),
                        tunnelGroupMpls(18),
                        vcMpls(19),
                        lspEncapMpls(20),
                        lspDecapMpls(21),
                        l3Interface(22)
                     }
     MAX-ACCESS      read-only
     STATUS          current
     DESCRIPTION
           "The object indicates the logical interface type associated with the MAC
            table entry. This is an enumerated integer which contains a listing of 
            possible liType values."
     ::= { cienaCesMacScanEntry 7 }

 cienaCesMacScanLiIndex   OBJECT-TYPE
     SYNTAX          Unsigned32
     MAX-ACCESS      read-only
     STATUS          current
     DESCRIPTION
           "The object indicates logical interface index number associated with 
            the MAC table entry."
     ::= { cienaCesMacScanEntry 8 }

 cienaCesMacScanPortBayIndex   OBJECT-TYPE
     SYNTAX          Unsigned32
     MAX-ACCESS      read-only
     STATUS          current
     DESCRIPTION
           "The object indicates the bay index of the port in the associated with the MAC entry."
     ::= { cienaCesMacScanEntry 9 }

 cienaCesMacScanPortShelfIndex   OBJECT-TYPE
     SYNTAX          Unsigned32
     MAX-ACCESS      read-only
     STATUS          current
     DESCRIPTION
           "The object indicates the shelf index of the port associated with the MAC entry."
     ::= { cienaCesMacScanEntry 10 }

 cienaCesMacScanPortSlotIndex   OBJECT-TYPE
     SYNTAX          Unsigned32
     MAX-ACCESS      read-only
     STATUS          current
     DESCRIPTION
           "The object indicates the slot index of the port associated with the MAC entry."
     ::= { cienaCesMacScanEntry 11 }

 cienaCesMacScanPortPortId   OBJECT-TYPE
     SYNTAX          Unsigned32
     MAX-ACCESS      read-only
     STATUS          current
     DESCRIPTION
           "The object indicates the port ID of the port associated with the MAC entry."
     ::= { cienaCesMacScanEntry 12 }

 cienaCesMacScanMacType   OBJECT-TYPE
     SYNTAX          INTEGER {
                        dynamic(1),
                        static(2)
                     }
     MAX-ACCESS      read-only
     STATUS          current
     DESCRIPTION
           "The object indicates the MAC entry type."
     ::= { cienaCesMacScanEntry 13 }

 cienaCesMacScanPortChannelId   OBJECT-TYPE
     SYNTAX          Unsigned32
     MAX-ACCESS      read-only
     STATUS          current
     DESCRIPTION
           "For rows with a corresponding cienaCesMacScanLiType value of port(2), the object
            indicates the channel number of the port associated with the MAC entry.
            The value 0 is used if the cienaCesMacScanLiType is not port(2), or if the
            cienaCesMacScanLiType is port(2) and the port, as identified by the value of
            cieanCesMacScanLiIndex, is not channelized."
     ::= { cienaCesMacScanEntry 14 }

 --
 -- Notifications
 --           

 --
 -- Groups definition
 --
 cienaCesMacScanGroup    OBJECT-GROUP
       OBJECTS { cienaCesMacScanAttrVs,
                 cienaCesMacScanAttrRlan,
                 cienaCesMacScanAttrMac,
                 cienaCesMacScanAttrMask,
                 cienaCesMacScanVsId,
                 cienaCesMacScanMacAddr,
                 cienaCesMacScanLiType,
                 cienaCesMacScanLiIndex,
                 cienaCesMacScanPortBayIndex,
                 cienaCesMacScanPortShelfIndex,
                 cienaCesMacScanPortSlotIndex,
                 cienaCesMacScanPortPortId,
                 cienaCesMacScanMacType,
                 cienaCesMacScanPortChannelId }
       STATUS  current
       DESCRIPTION
               "A collection of objects providing information about MAC scan table."
       ::= { cienaCesMacMIBGroups 1 }


 
 END