summaryrefslogtreecommitdiff
path: root/MIBS/ciena/CIENA-CES-RMON-MIB
blob: 8b94757895dd2a736b271fc99ff3a0050cd98413 (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
-- This file was included in WWP MIB release 04-16-00-0047
 --
 -- CIENA-CES-RMON-MIB.my
 --

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

 IMPORTS                
   OBJECT-TYPE, MODULE-IDENTITY                  
            FROM SNMPv2-SMI
   DisplayString, TruthValue
        FROM SNMPv2-TC                                                     
   cienaCommon, cienaCesConfig
        FROM CIENA-SMI;

 cienaCesRmonMIB MODULE-IDENTITY
            LAST-UPDATED "201411110000Z"
            ORGANIZATION "Ciena, Inc"
            CONTACT-INFO
                    "   Mib Meister
                                        115 North Sullivan Road
                                        Spokane Valley, WA 99037
                                USA                             
                                Phone:  +1 509 242 9000
                                        Email:  support@ciena.com"
	    DESCRIPTION
	            "The MIB module for proprietary Ciena RMON configuration."
            
            REVISION    "201411110000Z"        
            DESCRIPTION
                    "Initial creation."
            
            ::= { cienaCesConfig 34 }
                                                
 --
 -- Node definitions
 --
        
 cienaCesRmonMIBObjects OBJECT IDENTIFIER ::= { cienaCesRmonMIB 1 }
 

 -- Ciena Rmon Config
 --
 cienaCesRmon OBJECT IDENTIFIER ::= { cienaCesRmonMIBObjects 1 }

 cienaCesRmonTransfer OBJECT IDENTIFIER ::= { cienaCesRmon 1 }
 cienaCesRmonAutoConfigure OBJECT IDENTIFIER ::= { cienaCesRmon 2 }
  
 -- Notifications 
  
 cienaCesRmonMIBNotificationPrefix OBJECT IDENTIFIER ::= { cienaCesRmonMIB 2 }
 cienaCesRmonMIBNotifications       OBJECT IDENTIFIER ::=  
                       { cienaCesRmonMIBNotificationPrefix 0 }
 -- Conformance information 
 
 cienaCesRmonMIBConformance OBJECT IDENTIFIER ::= { cienaCesRmonMIB 3 } 
 cienaCesRmonsMIBCompliances OBJECT IDENTIFIER ::= { cienaCesRmonMIBConformance 1 }              
 cienaCesRmonMIBGroups      OBJECT IDENTIFIER ::= { cienaCesRmonMIBConformance 2 }

--
-- Ciena RMON configuration
--
 cienaCesRmonTransferServerTable OBJECT-TYPE
     SYNTAX       SEQUENCE OF CienaCesRmonTransferServerEntry
     MAX-ACCESS   not-accessible
     STATUS       current
     DESCRIPTION
             "The table specifying RMON file configuration."
     ::= { cienaCesRmonTransfer 1 }  
 
 cienaCesRmonTransferServerEntry OBJECT-TYPE
     SYNTAX       CienaCesRmonTransferServerEntry
     MAX-ACCESS   not-accessible
     STATUS       current
     DESCRIPTION
             "An entry in the port stats table."
     INDEX{cienaCesRmonTransferServerIndex}
     ::= { cienaCesRmonTransferServerTable 1 }       
   
     CienaCesRmonTransferServerEntry ::= SEQUENCE {
     cienaCesRmonTransferServerIndex                             INTEGER,
     cienaCesRmonTransferServerServer                            DisplayString,
     cienaCesRmonTransferServerLastRemoteName                    DisplayString,
     cienaCesRmonTransferServerLastPushTime                      DisplayString,
     cienaCesRmonTransferServerLastPushStatus                    DisplayString,
     cienaCesRmonTransferServerXftpTransferMode                  INTEGER,
     cienaCesRmonTransferServerXftpLoginId                       DisplayString,
     cienaCesRmonTransferServerXftpPassword                      DisplayString,
     cienaCesRmonTransferServerXftpSecret                        OCTET STRING
 }


  cienaCesRmonTransferServerIndex OBJECT-TYPE
    SYNTAX        INTEGER (0..10)
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
            "Placeholder for index."
    ::= { cienaCesRmonTransferServerEntry 1 }

 cienaCesRmonTransferServerServer OBJECT-TYPE
    SYNTAX       DisplayString (SIZE(0..64))
    MAX-ACCESS   read-write
    STATUS       current
    DESCRIPTION
            "The name of the file server."
    ::= { cienaCesRmonTransferServerEntry 2 }

  
 cienaCesRmonTransferServerLastRemoteName OBJECT-TYPE
    SYNTAX       DisplayString (SIZE(0..127))
    MAX-ACCESS   read-only
    STATUS       current
    DESCRIPTION
            "The name and location on the remote server of the last file."
    ::= { cienaCesRmonTransferServerEntry 3 }

 cienaCesRmonTransferServerLastPushTime OBJECT-TYPE
    SYNTAX        DisplayString (SIZE(0..32))
    MAX-ACCESS   read-only
    STATUS       current
    DESCRIPTION
            "The time of the last file push."
    ::= { cienaCesRmonTransferServerEntry 4 }

 cienaCesRmonTransferServerLastPushStatus OBJECT-TYPE
    SYNTAX       DisplayString (SIZE(0..127))
    MAX-ACCESS   read-only
    STATUS       current
    DESCRIPTION
            "The status of the last RMON file push."
    ::= { cienaCesRmonTransferServerEntry 5 }


  cienaCesRmonTransferServerXftpTransferMode  OBJECT-TYPE
     SYNTAX               INTEGER {
			     tftp(1),                            
                             ftp(2),
                             sftp(3),
                             defaultTftp(4),
                             defaultFtp(5),
                             defaultSftp(6),
                             default(7)      
                          }
     MAX-ACCESS           read-write
     STATUS               current
     DESCRIPTION
    	     "The type of server to use."               
       ::= { cienaCesRmonTransferServerEntry 6  }      


  cienaCesRmonTransferServerXftpLoginId OBJECT-TYPE
     SYNTAX      DisplayString(SIZE(0..32))
     MAX-ACCESS  read-write
     STATUS      current
     DESCRIPTION
	     "The username to use for xftp downloads."
     DEFVAL { "" }        
     ::= { cienaCesRmonTransferServerEntry 7 }

  cienaCesRmonTransferServerXftpPassword OBJECT-TYPE
     SYNTAX      DisplayString(SIZE(0..128))
     MAX-ACCESS  read-write
     STATUS      current
     DESCRIPTION
	     "The password to use for xftp downloads."
     DEFVAL { "" }        
     ::= { cienaCesRmonTransferServerEntry 8  }

  cienaCesRmonTransferServerXftpSecret OBJECT-TYPE
     SYNTAX      OCTET STRING(SIZE(0..259))
     MAX-ACCESS  read-write
     STATUS      current
     DESCRIPTION
	     "The secret to use for xftp downloads."
     DEFVAL { "" }        
     ::= { cienaCesRmonTransferServerEntry 9 }


 cienaCesRmonTransferName OBJECT-TYPE
    SYNTAX       DisplayString (SIZE(0..16))
    MAX-ACCESS   read-write
    STATUS       current
    DESCRIPTION
            "The RMON file names."
    ::= { cienaCesRmonTransfer 2 }

 cienaCesRmonTransferRemoteDir OBJECT-TYPE
    SYNTAX       DisplayString (SIZE(0..127))
    MAX-ACCESS   read-write
    STATUS       current
    DESCRIPTION
            "The location on the remote server to place the files."
    ::= { cienaCesRmonTransfer 3 }

  cienaCesRmonTransferInterval OBJECT-TYPE
    SYNTAX        INTEGER (3600..31536000)
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION
            "The automatic RMON file push interval."
    ::= { cienaCesRmonTransfer 4 }

 cienaCesRmonTransferUserFilesKept OBJECT-TYPE
    SYNTAX        INTEGER (1..4)
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION
            "Must be less than or equal to cienaCesRmonTransferMaxFiles."
    ::= { cienaCesRmonTransfer 5 }

 cienaCesRmonTransferMaxFiles OBJECT-TYPE
    SYNTAX        INTEGER (1..4)
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
            "Only 1 file is supported on LEOS 4.x devices and the 3902, 3911 and 3920."
    ::= { cienaCesRmonTransfer 6 }

  cienaCesRmonTransferPushRecentFiles OBJECT-TYPE
    SYNTAX        TruthValue

    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION
            "Retransmit all stored rmon files to the server."
    ::= { cienaCesRmonTransfer 7 }

  cienaCesRmonTransferState OBJECT-TYPE
    SYNTAX        INTEGER {   disable(1),
                              enable(2)}
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION
            "The current operational state of the file push."
    ::= { cienaCesRmonTransfer 8 }

  cienaCesRmonHistAutoConfigState OBJECT-TYPE
    SYNTAX        INTEGER {   enable(1),
                              disable(2)}
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION
            "Automatically create RMON history entries when ports go operationally enabled."
    ::= { cienaCesRmonAutoConfigure 1 }

 cienaCesRmonHistAutoConfigFileLogging OBJECT-TYPE
    SYNTAX        INTEGER {   on(1),
                              off(2)}
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION
            "File logging setting to use when creating the next autogenerated etherHistory entry."
    ::= { cienaCesRmonAutoConfigure 2 }

 cienaCesRmonHistAutoConfigInterval OBJECT-TYPE
    SYNTAX        INTEGER (1..65535)
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION
            "Interval to use when creating the next autogenerated etherHistory entry."
    ::= { cienaCesRmonAutoConfigure 3 }

 cienaCesRmonHistAutoConfigNumBuckets OBJECT-TYPE
    SYNTAX        INTEGER (1..65535)
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION
            "Number of buckets to request when creating the next autogenerated etherHistory entry."
    ::= { cienaCesRmonAutoConfigure 4 }

 cienaCesRmonHistAutoConfigOwner OBJECT-TYPE
    SYNTAX        DisplayString (SIZE(0..127))
    MAX-ACCESS   read-write
    STATUS       current
    DESCRIPTION
            "The owner to use when creating the next autogenerated etherHistory entry."
    ::= { cienaCesRmonAutoConfigure 5 }

  cienaCesRmonHistAutoConfigStatistics OBJECT-TYPE
    SYNTAX        INTEGER  {none (0),
                           basicTx(1),
                           basicRx(2),
                           basicRxBasicTx(3),
                           basicError(4),
                           basicTxBasicError(5),
                           basicRxBasicError(6),
                           basicAll(7),
                           txAll(9),
                           txAllBasicRx(10),
                           txAllBasicError(13),
                           rxAllBasicRx(18),
                           rxAllBasicError(22),
                           errorAll(36),
                           basicTxErrorAll(37),
                           basicRxErrorAll(38),
                           basicRxBasicTxErroAll(39),
                           txAllErrorAll(45),
                           txAllRxBasicErrorAll(47),
                           rxTxAll(51),
                           rxAllErrorAll(54),
                           rxAllTxBasicErrorAll(55),
                           allStatsNoStandard(63),
                           standardRmon(71),
                           standardRxAll(87),
                           standardTxAll(79),
                           standardRxAllTxAll(95),
                           standardErrorAll(103),
                           standardTxAllErrorAll(111),
                           standardRxAllErrorAll(119),
                           allStatsWithStandard(127)}
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION
            "The statistics to gather when using the etherHistory."
    ::= { cienaCesRmonAutoConfigure 6 }
   
END