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
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
|
NSCRTV-EPON-IGMP-MGM-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Counter32, Unsigned32, TimeTicks
FROM SNMPv2-SMI
DateAndTime, MacAddress, TimeStamp, RowStatus, TruthValue, DisplayString, TEXTUAL-CONVENTION
FROM SNMPv2-TC
EponDeviceIndex, EponCardIndex, EponPortIndex, EponAlarmCode, EponAlarmInstance, EponSeverityType,
AutoNegotiationTechAbility, TAddress, EponStats15MinRecordType, EponStats24HourRecordType, EponStatsThresholdType
FROM NSCRTV-EPONEOC-EPON-MIB
igmpManagementObjects
FROM NSCRTV-EPONEOC-EPON-MIB;
--------------------------------------------------------------------------------
-- igmpManagementObjects[IGMP管理项](1.3.6.1.4.1.17409.2.3.6)
--------------------------------------------------------------------------------
igmpEntityTable OBJECT-TYPE
SYNTAX SEQUENCE OF IgmpEntityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
IGMP实体表"
::= { igmpManagementObjects 1 }
igmpEntityEntry OBJECT-TYPE
SYNTAX IgmpEntityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
INDEX { igmpDeviceIndex }
::= { igmpEntityTable 1 }
IgmpEntityEntry ::=
SEQUENCE {
igmpDeviceIndex
INTEGER,
igmpMode
INTEGER,
maxQueryResponseTime
INTEGER,
robustVariable
INTEGER,
queryInterval
INTEGER,
lastMemberQueryInterval
INTEGER,
lastMemberQueryCount
INTEGER,
igmpVersion
INTEGER
}
igmpDeviceIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
设备索引号。
For OLT, set to corresponding device
For ONU, set to 0"
::= { igmpEntityEntry 1 }
igmpMode OBJECT-TYPE
SYNTAX INTEGER
{
centralized(1),
distributedwithcm(2),
disabled(3),
distributedwocm(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
IGMP工作模式
centralized(1) - All the multicast control is done by OLT
distributedwithcm(2) - Both OLT and ONU perform IGMP proxy and
controlled multicast will be enabled. At
this case, if igmp joins shall follow the
definition in multicastPackageList, for the
port
disabled(3) - Disable IGMP proxy on OLT and ONU
distributedwocm(4) - Both OLT and ONU perform IGMP proxy and
controlled multicast will be disabled. At
this case, if igmp joins shall be accept even
violate the definition in multicastPackageList,
for the port.
"
DEFVAL { disabled }
::= { igmpEntityEntry 2 }
maxQueryResponseTime OBJECT-TYPE
SYNTAX INTEGER
UNITS "tenth second"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
最大响应查询时间
单位:1/10秒
This is used for sending general query"
::= { igmpEntityEntry 3 }
robustVariable OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
健壮性变量
This is used for sending general query
No less than 1"
::= { igmpEntityEntry 4 }
queryInterval OBJECT-TYPE
SYNTAX INTEGER
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
发送查询报文的时间间隔
单位:秒
This is used for sending general query
"
::= { igmpEntityEntry 5 }
lastMemberQueryInterval OBJECT-TYPE
SYNTAX INTEGER
UNITS "tenth second"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Max Response Time inserted into Group-Specific Queries sent in response
to Leave Group messages, and is also the amount of time between
Group-Specific Query messages
"
::= { igmpEntityEntry 6 }
lastMemberQueryCount OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Number of Group-Specific Queries sent before the router assumes there
are no local members
"
::= { igmpEntityEntry 7 }
igmpVersion OBJECT-TYPE
SYNTAX INTEGER
{
v1(1),
v2(2),
v3(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
IGMP版本"
DEFVAL { v2 }
::= { igmpEntityEntry 8 }
igmpProxyParaTable OBJECT-TYPE
SYNTAX SEQUENCE OF IgmpProxyParaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
IGMP proxy参数表 - 频道列表"
::= { igmpManagementObjects 2 }
igmpProxyParaEntry OBJECT-TYPE
SYNTAX IgmpProxyParaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
INDEX { proxyIndex }
::= { igmpProxyParaTable 1 }
IgmpProxyParaEntry ::=
SEQUENCE {
proxyIndex
INTEGER,
proxyName
OCTET STRING,
proxySrcIPAddress
IpAddress,
proxyMulticastVID
INTEGER,
proxyMulticastIPAddress
IpAddress,
multicastAssuredBW
Unsigned32,
multicastMaxBW
Unsigned32,
proxyRowStatus
RowStatus
}
proxyIndex OBJECT-TYPE
SYNTAX INTEGER (1..2000)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
IGMP Proxy索引号 - 频道号"
::= { igmpProxyParaEntry 1 }
proxyName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..256))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
IGMP Proxy别名(如央视、文广传媒等)"
::= { igmpProxyParaEntry 2 }
proxySrcIPAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
proxy源IP地址"
::= { igmpProxyParaEntry 3 }
proxyMulticastVID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
IGMP Proxy对应组播VID
注:只有在可控组播模式下组播VID才有意义"
::= { igmpProxyParaEntry 4 }
proxyMulticastIPAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
组播IP地址"
::= { igmpProxyParaEntry 5 }
multicastAssuredBW OBJECT-TYPE
SYNTAX Unsigned32
UNITS "kbps"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
组播保证带宽
单位:kbps"
::= { igmpProxyParaEntry 6 }
multicastMaxBW OBJECT-TYPE
SYNTAX Unsigned32
UNITS "kbps"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
组播最大带宽
单位:kbps"
::= { igmpProxyParaEntry 7 }
proxyRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
行状态"
::= { igmpProxyParaEntry 8 }
igmpForwardingTable OBJECT-TYPE
SYNTAX SEQUENCE OF IgmpForwardingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Multicast forwarding table
"
::= { igmpManagementObjects 3 }
igmpForwardingEntry OBJECT-TYPE
SYNTAX IgmpForwardingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
INDEX { groupDeviceIndex, groupVlanIndex, groupMacAddress }
::= { igmpForwardingTable 1 }
IgmpForwardingEntry ::=
SEQUENCE {
groupDeviceIndex
INTEGER,
groupVlanIndex
INTEGER,
groupMacAddress
MacAddress,
groupPortList
OCTET STRING
}
groupDeviceIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
设备索引号。
For OLT, set to corresponding OLT device
For ONU, set to 0
"
::= { igmpForwardingEntry 1 }
groupVlanIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Vlan索引号"
::= { igmpForwardingEntry 2 }
groupMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
组Mac地址索引号"
::= { igmpForwardingEntry 3 }
groupPortList OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Forwarding port list
1. OLT
-------------------------------------------------------------------
It is presented by member port list. Each member port is identified
by 4-byte format, same as TC of EponDeviceIndex. The actual length of
this string depends of the number of member ports in the port list.
The relationship is:
Length of the string = 4 * (NUM of member ports)
For example, if device 1, port 1/2 and 2/3 is the member ports,
then this object will be presented as:
01 01 02 00 01 02 03 00
2. ONU
-------------------------------------------------------------------
It is presented by member port list. Each member port is identified
by 2-byte format, One for slot ID, the last for port ID. The actual
length of this string depends of the number of member ports. If the
ONU is fixed (not modulized), set slot ID to 0, the NMS could ignore
the slot info.
Note that, slot here shall follow the last byte definition of
EponCardIndex to indicate the main-slot and sub-slot index.
The relationship is:
Length of the string = 2 * (NUM of member ports)
For example, if port 1/2 and 3/4 is the member ports of the group,
then the object is presented as:
01 02 03 04
"
::= { igmpForwardingEntry 4 }
controllededMulticastTable OBJECT-IDENTITY
STATUS current
DESCRIPTION
"
可控组播表"
::= { igmpManagementObjects 4 }
controlledMulticastUserAuthorityTable OBJECT-TYPE
SYNTAX SEQUENCE OF ControlledMulticastUserAuthorityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
可控组播用户权限表
"
::= { controllededMulticastTable 1 }
controlledMulticastUserAuthorityEntry OBJECT-TYPE
SYNTAX ControlledMulticastUserAuthorityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
INDEX { cmDeviceIndex, cmCardIndex, cmPortIndex }
::= { controlledMulticastUserAuthorityTable 1 }
ControlledMulticastUserAuthorityEntry ::=
SEQUENCE {
cmDeviceIndex
EponDeviceIndex,
cmCardIndex
EponCardIndex,
cmPortIndex
EponPortIndex,
multicastPackageList
OCTET STRING,
igmpGlobalBW
Unsigned32,
igmpGlobalBWUsed
Unsigned32,
cmUserAuthorityRowStatus
RowStatus
}
cmDeviceIndex OBJECT-TYPE
SYNTAX EponDeviceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
设备索引号
For OLT, set to corresponding device/slot/port/ONU
For ONU, set to 0"
::= { controlledMulticastUserAuthorityEntry 1 }
cmCardIndex OBJECT-TYPE
SYNTAX EponCardIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
板卡索引号
Set to corresponding UNI slot
"
::= { controlledMulticastUserAuthorityEntry 2 }
cmPortIndex OBJECT-TYPE
SYNTAX EponPortIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Port ID
Set to corresponding UNI port
"
::= { controlledMulticastUserAuthorityEntry 3 }
multicastPackageList OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..250))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
可控组播组列表.
用法类似于cmProxyList,每个bit对应于cmIndex"
::= { controlledMulticastUserAuthorityEntry 4 }
igmpGlobalBW OBJECT-TYPE
SYNTAX Unsigned32
UNITS "kbps"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
IGMP全局带宽池大小 - 该端口支持的最大组播带宽
单位:kbps"
::= { controlledMulticastUserAuthorityEntry 5 }
igmpGlobalBWUsed OBJECT-TYPE
SYNTAX Unsigned32
UNITS "kbps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
IGMP全局带宽池当前使用大小 - 该端口当前实际使用的组播带宽
单位:kbps"
::= { controlledMulticastUserAuthorityEntry 6 }
cmUserAuthorityRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
""
::= { controlledMulticastUserAuthorityEntry 7 }
controlledMulticastPackageTable OBJECT-TYPE
SYNTAX SEQUENCE OF ControlledMulticastPackageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
可控组播业务包表"
::= { controllededMulticastTable 2 }
controlledMulticastPackageEntry OBJECT-TYPE
SYNTAX ControlledMulticastPackageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
INDEX { cmIndex }
::= { controlledMulticastPackageTable 1 }
ControlledMulticastPackageEntry ::=
SEQUENCE {
cmIndex
INTEGER,
cmName
OCTET STRING,
cmProxyList
OCTET STRING,
multicastUserAuthority
INTEGER,
maxRequestChannelNum
INTEGER,
singlePreviewTime
INTEGER,
totalPreviewTime
INTEGER,
previewResetTime
INTEGER,
previewCount
INTEGER,
cmRowStatus
RowStatus
}
cmIndex OBJECT-TYPE
SYNTAX INTEGER (1..2000)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
::= { controlledMulticastPackageEntry 1 }
cmName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..256))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
该可控组播业务包名称"
::= { controlledMulticastPackageEntry 2 }
cmProxyList OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..250))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
该可控组播业务包支持的Proxy列表
采用类似INTERNET比特顺序,从左到右的OCTET分别为OCTET 0, OCTET 1, ...
每个OCTET的bit从左到右分别为bit0,bit1,...,bit7。
按照bit和OCTET由小到大的顺序,每个bit对应于igmpProxyParaTable中的
一个proxyIndex,如果bit置位,表示该proxyIndex支持,否则不支持。
举例来说,如果规划了80个频道,proxyIndex范围为1..80,用10个字节表示
proxy列表,假设该PON口只支持频道列表1,15,38,对应的cmProxyList可以
设置成0x80 02 00 00 04 00 00 00 00 00"
::= { controlledMulticastPackageEntry 3 }
multicastUserAuthority OBJECT-TYPE
SYNTAX INTEGER
{
permit(1),
preview(2),
deny(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
用户权限(permit、preview、deny)"
::= { controlledMulticastPackageEntry 4 }
maxRequestChannelNum OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
最大允许请求频道数"
::= { controlledMulticastPackageEntry 5 }
singlePreviewTime OBJECT-TYPE
SYNTAX INTEGER
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
单次预览时长,单位:秒"
::= { controlledMulticastPackageEntry 6 }
totalPreviewTime OBJECT-TYPE
SYNTAX INTEGER
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
预览总时长,单位:秒"
::= { controlledMulticastPackageEntry 7 }
previewResetTime OBJECT-TYPE
SYNTAX INTEGER
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
预览复位时间,单位:秒"
::= { controlledMulticastPackageEntry 8 }
previewCount OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
预览次数"
::= { controlledMulticastPackageEntry 9 }
cmRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
行状态"
::= { controlledMulticastPackageEntry 10 }
igmpOnuUniTable OBJECT-TYPE
SYNTAX SEQUENCE OF igmpOnuUniEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of igmpOnuUniTable entries. "
::= { igmpManagementObjects 5 }
igmpOnuUniEntry OBJECT-TYPE
SYNTAX igmpOnuUniEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The igmpOnuUniEntry Information"
INDEX { uniMvlanDeviceIndex,uniMvlanCardIndex,uniMvlanPortIndex}
::={ igmpOnuUniTable 1 }
igmpOnuUniEntry ::= SEQUENCE {
uniMvlanDeviceIndex EponDeviceIndex,
uniMvlanCardIndex EponCardIndex,
uniMvlanPortIndex EponPortIndex,
uniMvlanVid OCTET STRING,
uniMaxMultiNum INTEGER,
uniMvlanTag INTEGER,
uniMvlanRowstatus INTEGER
}
uniMvlanDeviceIndex OBJECT-TYPE
SYNTAX EponDeviceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"设备索引 "
::= { igmpOnuUniEntry 1 }
uniMvlanCardIndex OBJECT-TYPE
SYNTAX EponCardIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"板卡索引"
::= { igmpOnuUniEntry 2 }
uniMvlanPortIndex OBJECT-TYPE
SYNTAX EponPortIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"端口索引"
::= { igmpOnuUniEntry 3 }
uniMvlanVid OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..20))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"uni端口组播vlan 最大8个)"
::= { igmpOnuUniEntry 4 }
uniMaxMultiNum OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"最大组播数"
::= { igmpOnuUniEntry 5 }
uniMvlanTag OBJECT-TYPE
SYNTAX INTEGER(0..1)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"是否剥离,0:剥离 1:不剥离"
::= { igmpOnuUniEntry 6 }
uniMvlanRowstatus OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"行状态"
::= { igmpOnuUniEntry 7 }
--
-- END of NSCRTV-EPON-IGMP-MGM-MIB
--
END
|