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
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
|
-- *****************************************************************
-- Transition Networks MVR MIB
--
-- Copyright (C) 2012 Transition Networks, Inc. All Rights Reserved.
-- *****************************************************************
TN-MVR-MIB DEFINITIONS ::= BEGIN
IMPORTS
DisplayString, RowStatus, TruthValue
FROM SNMPv2-TC
InetAddressType, InetAddress
FROM INET-ADDRESS-MIB
MODULE-IDENTITY,
OBJECT-IDENTITY,
enterprises, Unsigned32 FROM SNMPv2-SMI
entPhysicalIndex FROM ENTITY-MIB
PortList, VlanIndex FROM Q-BRIDGE-MIB
ifIndex, InterfaceIndex FROM IF-MIB
tnProducts FROM TRANSITION-SMI;
tnMVRMIB MODULE-IDENTITY
LAST-UPDATED "201211090000Z"
ORGANIZATION "Transition Networks, Inc."
CONTACT-INFO
"Transition Networks
Technical Support
10900 Red Circle Drive
Minnetonka, MN 55343 USA
Tel: +1-800-526-9267
E-mail: techsupport@transition.com"
DESCRIPTION
"The mib module is designed for Multicast VLAN Registration."
::= { tnProducts 50 }
tnMVRMIBNotifications OBJECT IDENTIFIER ::= { tnMVRMIB 1 }
tnMVRMIBObjects OBJECT IDENTIFIER ::= { tnMVRMIB 2 }
tnMVRMIBConformance OBJECT IDENTIFIER ::= { tnMVRMIB 3 }
--
-- MIB variables
--
tnMVRMIBMgmt OBJECT IDENTIFIER ::= { tnMVRMIBObjects 1 }
--
-- tnMVRModeTable
--
tnMVRModeTable OBJECT-TYPE
SYNTAX SEQUENCE OF TNMVRModeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table contains MVR mode configuration."
::= { tnMVRMIBMgmt 1 }
tnMVRModeEntry OBJECT-TYPE
SYNTAX TNMVRModeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Each entry represents the MVR configuration on a device."
INDEX { entPhysicalIndex }
::= { tnMVRModeTable 1 }
TNMVRModeEntry ::= SEQUENCE {
tnMVRMode TruthValue,
tnMVRStatisticsClear TruthValue
}
tnMVRMode OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "To enable or disable the MVR on a device."
::= { tnMVRModeEntry 1 }
tnMVRStatisticsClear OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "True for clearing statistics of MVR on a device."
::= { tnMVRModeEntry 2 }
--
-- tnMVRInterfaceTable
--
tnMVRInterfaceTable OBJECT-TYPE
SYNTAX SEQUENCE OF TNMVRInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table contains MVR VLAN interface settings."
::= { tnMVRMIBMgmt 2 }
tnMVRInterfaceEntry OBJECT-TYPE
SYNTAX TNMVRInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Each entry represents a MVR interface on a device."
INDEX { tnMVRVID }
::= { tnMVRInterfaceTable 1 }
TNMVRInterfaceEntry ::= SEQUENCE {
tnMVRVID VlanIndex,
tnMVRName DisplayString,
tnMVRInterfaceMode INTEGER,
tnMVRInterfaceTagging INTEGER,
tnMVRInterfacePriority INTEGER,
tnMVRInterfaceLLQI INTEGER,
tnMVRInactivePortList PortList,
tnMVRSourcePortList PortList,
tnMVRReceiverPortList PortList,
tnMVRInterfaceRowStatus RowStatus
}
tnMVRVID OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The multicast vlan id of a MVR interface."
::= { tnMVRInterfaceEntry 1 }
tnMVRName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The name of a MVR interface."
::= { tnMVRInterfaceEntry 2 }
tnMVRInterfaceMode OBJECT-TYPE
SYNTAX INTEGER { dynamic (1), compatible (2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The mode of a MVR interface, either dynamic or compatible."
::= { tnMVRInterfaceEntry 3 }
tnMVRInterfaceTagging OBJECT-TYPE
SYNTAX INTEGER { untagged (1), tagged (2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Specify whether the traversed IGMP/MLD control frames will be sent as Untagged or Tagged with MVR VID. The default is Tagged. "
::= { tnMVRInterfaceEntry 4 }
tnMVRInterfacePriority OBJECT-TYPE
SYNTAX INTEGER (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Specify how the traversed IGMP/MLD control frames will be sent in prioritized manner. The default Priority is 0."
::= { tnMVRInterfaceEntry 5 }
tnMVRInterfaceLLQI OBJECT-TYPE
SYNTAX INTEGER (0..31744)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Define the maximum time to wait for IGMP/MLD report memberships on a receiver port before removing the port from multicast group membership. The value is in units of tenths of a seconds. The range is from 0 to 31744. The default LLQI is 5 tenths or one-half second."
::= { tnMVRInterfaceEntry 6 }
tnMVRInactivePortList OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-write
STATUS current
DESCRIPTION "To indicate the ports as inactive when the relative bits are set to 1."
::= { tnMVRInterfaceEntry 7 }
tnMVRSourcePortList OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-write
STATUS current
DESCRIPTION "To indicate the ports as source when the relative bits are set to 1."
::= { tnMVRInterfaceEntry 8 }
tnMVRReceiverPortList OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-write
STATUS current
DESCRIPTION "To indicate the ports as receiver when the relative bits are set to 1."
::= { tnMVRInterfaceEntry 9 }
tnMVRInterfaceRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The row status of MVR interface table."
::= { tnMVRInterfaceEntry 10 }
--
-- tnMVRImmediateLeaveTable
--
tnMVRImmediateLeaveTable OBJECT-TYPE
SYNTAX SEQUENCE OF TNMVRImmediateLeaveEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the immediate leave setting of MVR."
::= { tnMVRMIBMgmt 3 }
tnMVRImmediateLeaveEntry OBJECT-TYPE
SYNTAX TNMVRImmediateLeaveEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry represents MVR immediate leave on an interface."
INDEX { ifIndex }
::= { tnMVRImmediateLeaveTable 1 }
TNMVRImmediateLeaveEntry ::= SEQUENCE {
tnMVRImmediateLeaveEnabled TruthValue
}
tnMVRImmediateLeaveEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable immediate leave on each interface."
::= { tnMVRImmediateLeaveEntry 1 }
--
-- tnMVRChannelConfigTable
--
tnMVRChannelConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF TNMVRChannelConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains MVR channel configuration."
::= { tnMVRMIBMgmt 4 }
tnMVRChannelConfigEntry OBJECT-TYPE
SYNTAX TNMVRChannelConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry represents a MVR channel configuration."
INDEX { tnMVRChannelVID,
tnMVRChannelStartEndAddrType,
tnMVRChannelStartAddr }
::= { tnMVRChannelConfigTable 1 }
TNMVRChannelConfigEntry ::= SEQUENCE {
tnMVRChannelVID VlanIndex,
tnMVRChannelStartEndAddrType InetAddressType,
tnMVRChannelStartAddr InetAddress,
tnMVRChannelEndAddr InetAddress,
tnMVRChannelName DisplayString,
tnMVRChannelRowStatus RowStatus
}
tnMVRChannelVID OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The multicast vlan id of a mvr channel. This id should exist in tnMVRInterfaceTable."
::= { tnMVRChannelConfigEntry 1 }
tnMVRChannelStartEndAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The address type of MVR channel starting and ending address."
::= { tnMVRChannelConfigEntry 2 }
tnMVRChannelStartAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The starting ipv4/ipv6 multicast address of a MVR channel."
::= { tnMVRChannelConfigEntry 3 }
tnMVRChannelEndAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The ending ipv4/ipv6 multicast address of a MVR channel."
::= { tnMVRChannelConfigEntry 4 }
tnMVRChannelName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Indicate the name of the Channel of the specific Multicast VLAN. Maximum length of the Channel Name string is 32. Channel Name can only contain alphabets or numbers. Channel name should contain at least one alphabet. Channel name can be edited for the existing Channel entries or it can be added to the new entries."
::= { tnMVRChannelConfigEntry 5 }
tnMVRChannelRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The row status of MVR channel configuration table."
::= { tnMVRChannelConfigEntry 6 }
--
-- tnMVRStatisticsTable
--
tnMVRStatisticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF TNMVRStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table contains the statistics of MVR."
::= { tnMVRMIBMgmt 5 }
tnMVRStatisticsEntry OBJECT-TYPE
SYNTAX TNMVRStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Each entry represents the MVR statistics of a specific vlan id."
INDEX { tnMVRStatisticsVID }
::= { tnMVRStatisticsTable 1 }
TNMVRStatisticsEntry ::= SEQUENCE {
tnMVRStatisticsVID INTEGER,
tnMVRIGMPQueriesRx Unsigned32,
tnMVRMLDQueriesRx Unsigned32,
tnMVRIGMPQueriesTx Unsigned32,
tnMVRMLDQueriesTx Unsigned32,
tnMVRIGMPv1JoinsRx Unsigned32,
tnMVRIGMPv2ReportsRx Unsigned32,
tnMVRMLDv1ReportsRx Unsigned32,
tnMVRIGMPv3ReportsRx Unsigned32,
tnMVRMLDv2ReportsRx Unsigned32,
tnMVRIGMPv2LeavesRx Unsigned32,
tnMVRMLDv1LeavesRx Unsigned32
}
tnMVRStatisticsVID OBJECT-TYPE
SYNTAX INTEGER (1..4094)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The multicast vlan id."
::= { tnMVRStatisticsEntry 1 }
tnMVRIGMPQueriesRx OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of Received Queries for IGMP."
::= { tnMVRStatisticsEntry 2 }
tnMVRMLDQueriesRx OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of Received Queries for MLD."
::= { tnMVRStatisticsEntry 3 }
tnMVRIGMPQueriesTx OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of Transmitted Queries for IGMP."
::= { tnMVRStatisticsEntry 4 }
tnMVRMLDQueriesTx OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of Transmitted Queries for MLD."
::= { tnMVRStatisticsEntry 5 }
tnMVRIGMPv1JoinsRx OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of Received IGMPv1 Joins."
::= { tnMVRStatisticsEntry 6 }
tnMVRIGMPv2ReportsRx OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of Received IGMPv2 Reports."
::= { tnMVRStatisticsEntry 7 }
tnMVRMLDv1ReportsRx OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of Received MLDv1 Reports."
::= { tnMVRStatisticsEntry 8 }
tnMVRIGMPv3ReportsRx OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of Received IGMPv3 Reports."
::= { tnMVRStatisticsEntry 9 }
tnMVRMLDv2ReportsRx OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of Received MLDv2 Reports."
::= { tnMVRStatisticsEntry 10 }
tnMVRIGMPv2LeavesRx OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of Received IGMPv2 Leaves."
::= { tnMVRStatisticsEntry 11 }
tnMVRMLDv1LeavesRx OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of Received MLDv1 Leaves."
::= { tnMVRStatisticsEntry 12 }
--
-- tnMVRGroupInfoTable
--
tnMVRGroupInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF TNMVRGroupInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table contains MVR groups (channels) information."
::= { tnMVRMIBMgmt 6 }
tnMVRGroupInfoEntry OBJECT-TYPE
SYNTAX TNMVRGroupInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Each entry represents the group information for a specific vlan id."
INDEX { tnMVRGroupVID,
tnMVRGroupAddrType,
tnMVRGroupAddr }
::= { tnMVRGroupInfoTable 1 }
TNMVRGroupInfoEntry ::= SEQUENCE {
tnMVRGroupVID INTEGER,
tnMVRGroupAddrType InetAddressType,
tnMVRGroupAddr InetAddress,
tnMVRGroupPortMembers PortList
}
tnMVRGroupVID OBJECT-TYPE
SYNTAX INTEGER (1..4094)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The vlan id of a MVR group."
::= { tnMVRGroupInfoEntry 1 }
tnMVRGroupAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The MVR group ip address type."
::= { tnMVRGroupInfoEntry 2 }
tnMVRGroupAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The ipv4/ipv6 address of a MVR group."
::= { tnMVRGroupInfoEntry 3 }
tnMVRGroupPortMembers OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-only
STATUS current
DESCRIPTION "To indicate which port is under the current group."
::= { tnMVRGroupInfoEntry 4 }
--
-- tnMVRSFMTable
--
tnMVRSFMTable OBJECT-TYPE
SYNTAX SEQUENCE OF TNMVRSFMEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table contains the SFM(Source-Filtered Multicast) information of MVR."
::= { tnMVRMIBMgmt 7 }
tnMVRSFMEntry OBJECT-TYPE
SYNTAX TNMVRSFMEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Each entry represents the SFM information for a specific vlan id."
INDEX { tnMVRSFMVID,
tnMVRSFMGroupAddrType,
tnMVRSFMGroupAddr,
tnMVRSFMIfIndex,
tnMVRSFMMode,
tnMVRSFMSourceAddrType,
tnMVRSFMSourceAddr }
::= { tnMVRSFMTable 1 }
TNMVRSFMEntry ::= SEQUENCE {
tnMVRSFMVID INTEGER,
tnMVRSFMGroupAddrType InetAddressType,
tnMVRSFMGroupAddr InetAddress,
tnMVRSFMIfIndex InterfaceIndex,
tnMVRSFMMode INTEGER,
tnMVRSFMSourceAddrType InetAddressType,
tnMVRSFMSourceAddr InetAddress,
tnMVRSFMType INTEGER,
tnMVRSFMHardwareFilter TruthValue
}
tnMVRSFMVID OBJECT-TYPE
SYNTAX INTEGER (1..4094)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The vlan id of a mvr group."
::= { tnMVRSFMEntry 1 }
tnMVRSFMGroupAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The ip address type of the mvr group."
::= { tnMVRSFMEntry 2 }
tnMVRSFMGroupAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The ipv4/ipv6 group address."
::= { tnMVRSFMEntry 3 }
tnMVRSFMIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The port number under the vlan and group."
::= { tnMVRSFMEntry 4 }
tnMVRSFMMode OBJECT-TYPE
SYNTAX INTEGER { include (1), exclude (2) }
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Indicates the filtering mode maintained per (VLAN ID, port number, Group Address) basis. It can be either Include or Exclude."
::= { tnMVRSFMEntry 5 }
tnMVRSFMSourceAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The address type of the source."
::= { tnMVRSFMEntry 6 }
tnMVRSFMSourceAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "IP Address of the source. Currently, system limits the total number of IP source addresses for filtering to be 128. When there is no source filtering address, the text None is shown in the Source Address field."
::= { tnMVRSFMEntry 7 }
tnMVRSFMType OBJECT-TYPE
SYNTAX INTEGER { allow (1), deny (2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION "To indicate the type of the SFM, either allow or deny."
::= { tnMVRSFMEntry 8 }
tnMVRSFMHardwareFilter OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates whether data plane destined to the specific group address from the source IPv4/IPv6 address could be handled by chip or not."
::= { tnMVRSFMEntry 9 }
END
|