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
|
NSCRTV-EPON-SNI-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
sniObjects
FROM NSCRTV-EPONEOC-EPON-MIB;
--------------------------------------------------------------------------------
-- sniObjects [OLT上联端口属性管理项](1.3.6.1.4.1.17409.2.3.2)
--------------------------------------------------------------------------------
sniAttributeTable OBJECT-TYPE
SYNTAX SEQUENCE OF SniAttributeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of sniAttributeTable entries. "
::= {sniObjects 1 }
sniAttributeEntry OBJECT-TYPE
SYNTAX SniAttributeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The sniAttributeEntry Information"
INDEX { sniAttributeDeviceIndex, sniAttributeCardIndex,sniAttributePortIndex }
::={sniAttributeTable 1 }
SniAttributeEntry ::= SEQUENCE {
sniAttributeDeviceIndex INTEGER,
sniAttributeCardIndex EponCardIndex,
sniAttributePortIndex EponPortIndex,
sniPortName DisplayString,
sniAdminStatus INTEGER,
sniOperationStatus INTEGER,
sniMediaType INTEGER,
sniAutoNegotiationStatus INTEGER,
sniAutoNegotiationMode INTEGER,
sniPerfStats15minuteEnable TruthValue,
sniPerfStats24hourEnable TruthValue,
sniLastStatusChangeTime TimeTicks,
sniMacAddrLearnMaxNum INTEGER,
sniIsolationEnable TruthValue
}
sniAttributeDeviceIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Device Index"
::= {sniAttributeEntry 1 }
sniAttributeCardIndex OBJECT-TYPE
SYNTAX EponCardIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Card Index"
::= {sniAttributeEntry 2 }
sniAttributePortIndex OBJECT-TYPE
SYNTAX EponPortIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Port Index"
::= {sniAttributeEntry 3 }
sniPortName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Port Name"
::= {sniAttributeEntry 4 }
sniAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2),
testing(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Admin Status"
::= {sniAttributeEntry 5 }
sniOperationStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2),
testing(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Operation Status"
::= {sniAttributeEntry 6 }
sniMediaType OBJECT-TYPE
SYNTAX INTEGER {
twistedPair(1),
fiber(2),
other(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Media Type"
::= {sniAttributeEntry 7 }
sniAutoNegotiationStatus OBJECT-TYPE
SYNTAX INTEGER {
auto-negotiate(1),
half-10(2),
full-10(3),
half-100(4),
full-100(5),
full-1000(6),
full-10000(7),
unknown(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Auto Negotiation Status"
::= {sniAttributeEntry 8 }
sniAutoNegotiationMode OBJECT-TYPE
SYNTAX INTEGER {
auto-negotiate(1),
half-10(2),
full-10(3),
half-100(4),
full-100(5),
full-1000(6),
full-10000(7)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Auto Negotiation Mode"
::= {sniAttributeEntry 9 }
sniPerfStats15minuteEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"true(1) false(2)"
::= {sniAttributeEntry 10 }
sniPerfStats24hourEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"true(1) false(2)"
::= {sniAttributeEntry 11 }
sniLastStatusChangeTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Last Change Time"
::= {sniAttributeEntry 12 }
sniMacAddrLearnMaxNum OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Number of MAC address limited on the SNI port.
value 0 means no limit"
::= {sniAttributeEntry 13 }
sniIsolationEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Whether or not isolate the SNI port to other ports"
::= {sniAttributeEntry 14 }
sniTrunkManagement OBJECT-IDENTITY
STATUS current
DESCRIPTION
""
::= { sniObjects 2 }
sniTrunkGroupConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF SniTrunkGroupConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of sniTrunkGroupConfigTable entries."
::= {sniTrunkManagement 1 }
sniTrunkGroupConfigEntry OBJECT-TYPE
SYNTAX SniTrunkGroupConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The sniTrunk Group Config Entry Information"
INDEX { sniTrunkGroupConfigIndex }
::={sniTrunkGroupConfigTable 1 }
SniTrunkGroupConfigEntry ::= SEQUENCE {
sniTrunkGroupConfigIndex INTEGER,
sniTrunkGroupConfigName DisplayString,
sniTrunkGroupConfigMember OCTET STRING,
sniTrunkGroupConfigPolicy INTEGER,
sniTrunkGroupConfigRowstatus RowStatus
}
sniTrunkGroupConfigIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Trunk Group Config Index"
::= {sniTrunkGroupConfigEntry 1 }
sniTrunkGroupConfigName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Trunk Group Config Name"
::= {sniTrunkGroupConfigEntry 2 }
sniTrunkGroupConfigMember OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Trunk Group Config Member.
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 trunk group.
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 of the
trunk, then sniTrunkGroupConfigMember is presented as:
01 01 02 00 01 02 03 00
"
::= {sniTrunkGroupConfigEntry 3 }
sniTrunkGroupConfigPolicy OBJECT-TYPE
SYNTAX INTEGER
{
srcMac(1),
destMac(2),
srcMacNDestMac(3),
srcIp(4),
destIp(5),
srcIpNDestIp(6)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Trunk Group Config Policy"
::= {sniTrunkGroupConfigEntry 4 }
sniTrunkGroupConfigRowstatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Trunk Group Config Rowstatus"
::= {sniTrunkGroupConfigEntry 5 }
sniTrunkGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF SniTrunkGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"a list of sniTrunkGroupConfigTable entries. "
::= {sniTrunkManagement 2 }
sniTrunkGroupEntry OBJECT-TYPE
SYNTAX SniTrunkGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Trunk Group Entry"
INDEX { sniTrunkGroupIndex }
::={sniTrunkGroupTable 1 }
SniTrunkGroupEntry ::= SEQUENCE {
sniTrunkGroupIndex INTEGER,
sniTrunkGroupOperationStatus INTEGER,
sniTrunkGroupActualSpeed INTEGER,
sniTrunkGroupAdminStatus INTEGER
}
sniTrunkGroupIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Trunk Group Index "
::= {sniTrunkGroupEntry 1 }
sniTrunkGroupOperationStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2),
testing(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Trunk Group Operation Status"
::= {sniTrunkGroupEntry 2 }
sniTrunkGroupActualSpeed OBJECT-TYPE
SYNTAX INTEGER
UNITS "Mbps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Trunk Group Actual Speed.
The speed is the aggregated rates of all operational UP member
ports of the trunk.
For example, 4 member ports of the trunk, two are UP, each is 1000M
then the SUN is 2000M. As a result, the return of the MIB shall be
2000Mbps"
::= {sniTrunkGroupEntry 3 }
sniTrunkGroupAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2),
testing(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Trunk Group AdminStatus"
::= {sniTrunkGroupEntry 4 }
sniMirrorTable OBJECT-TYPE
SYNTAX SEQUENCE OF SniMirrorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"a list of sniMirrorTable entries."
::= {sniObjects 3 }
sniMirrorEntry OBJECT-TYPE
SYNTAX SniMirrorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Mirror Information."
INDEX { sniMirrorGroupIndex }
::={sniMirrorTable 1 }
SniMirrorEntry ::= SEQUENCE {
sniMirrorGroupIndex INTEGER,
sniMirrorGroupName DisplayString,
sniMirrorGroupDstPortList OCTET STRING,
sniMirrorGroupSrcInPortList OCTET STRING,
sniMirrorGroupSrcOutPortList OCTET STRING,
sniMirrorGroupRowstatus RowStatus
}
sniMirrorGroupIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Mirror Group Index"
::= {sniMirrorEntry 1 }
sniMirrorGroupName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Mirror Group Name"
::= {sniMirrorEntry 2 }
sniMirrorGroupDstPortList OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Mirror Group Dst Port List.
It is presented by destination port list. Each port is identified
by 4-byte format, same as TC of EponDeviceIndex. The actual length of
this string depends of the number of destination ports in this mirror
instance.
The relationship is:
Length of the string = 4 * (NUM of ports)
For example, if device 1, port 2/3 is the destination port of the
mirror instance, then object will be presented as:
01 02 03 00
"
::= {sniMirrorEntry 3 }
sniMirrorGroupSrcInPortList OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Mirror Group Src In Port List.
It will includes the PON ports.
It is presented by source ingress port list. Each port is identified
by 4-byte format, same as TC of EponDeviceIndex. The actual length of
this string depends of the number of source ingress ports in this mirror
instance.
The relationship is:
Length of the string = 4 * (NUM of ports)
For example, if device 1, port 2/3, device 6, port 7/8 is the source
ingress port of the mirror instance, then object will be presented as:
01 02 03 00 06 07 08 00
"
::= {sniMirrorEntry 4 }
sniMirrorGroupSrcOutPortList OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Mirror Group Src Out Port List.
It will includes the PON ports.
It is presented by source egress port list. Each port is identified
by 4-byte format, same as TC of EponDeviceIndex. The actual length of
this string depends of the number of source egress ports in this mirror
instance.
The relationship is:
Length of the string = 4 * (NUM of ports)
For example, if device 1, port 2/3, device 6, port 7/8 is the source
egress port of the mirror instance, then object will be presented as:
01 02 03 00 06 07 08 00
"
::= {sniMirrorEntry 5 }
sniMirrorGroupRowstatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Mirror Group Rowstatus"
::= {sniMirrorEntry 6 }
sniMacAddressManagement OBJECT-IDENTITY
STATUS current
DESCRIPTION
""
::= { sniObjects 4 }
sniMacAddressManagementTable OBJECT-TYPE
SYNTAX SEQUENCE OF SniMacAddressManagementEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" A list of MacAddressManagement entries. "
::= { sniMacAddressManagement 1 }
sniMacAddressManagementEntry OBJECT-TYPE
SYNTAX SniMacAddressManagementEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Mac Address Management Information"
INDEX { sniMacAddressManagementDeviceIndex }
::= { sniMacAddressManagementTable 1 }
SniMacAddressManagementEntry ::= SEQUENCE {
sniMacAddressManagementDeviceIndex INTEGER,
sniMacAddrTableAgingTime INTEGER,
sniMacAddrTableClear INTEGER
}
sniMacAddressManagementDeviceIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"device Index"
::= { sniMacAddressManagementEntry 1 }
sniMacAddrTableAgingTime OBJECT-TYPE
SYNTAX INTEGER
UNITS "Seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Mac Address Table Aging Time"
::= { sniMacAddressManagementEntry 2 }
sniMacAddrTableClear OBJECT-TYPE
SYNTAX INTEGER { allDynamic(1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Mac Address Table Clear"
::= { sniMacAddressManagementEntry 3 }
sniMacAddressTable OBJECT-TYPE
SYNTAX SEQUENCE OF SniMacAddressEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of MacAddress entries."
::= { sniMacAddressManagement 2 }
sniMacAddressEntry OBJECT-TYPE
SYNTAX SniMacAddressEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Mac Address Information"
INDEX { sniMacAddrIndex, sniMacAddrVlanIdIndex }
::= { sniMacAddressTable 1 }
SniMacAddressEntry ::= SEQUENCE {
sniMacAddrIndex MacAddress,
sniMacAddrVlanIdIndex INTEGER,
sniMacAddrType INTEGER,
sniMacAddrPortId EponDeviceIndex,
sniMacAddrRowStatus RowStatus
}
sniMacAddrIndex OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Mac Address Index"
::= { sniMacAddressEntry 1 }
sniMacAddrVlanIdIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Mac Address Vlan Id Index"
::= { sniMacAddressEntry 2 }
sniMacAddrType OBJECT-TYPE
SYNTAX INTEGER {
static(1),
dynamic(2),
other(3)}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Mac Address Type"
::= { sniMacAddressEntry 3}
sniMacAddrPortId OBJECT-TYPE
SYNTAX EponDeviceIndex
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Mac Address Port Id"
::= { sniMacAddressEntry 4 }
sniMacAddrRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"delete,create,Update"
::= { sniMacAddressEntry 5 }
sniBroadcastStormSuppressionTable OBJECT-TYPE
SYNTAX SEQUENCE OF SniBroadcastStormSuppressionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of BroadcastStormSuppression entries."
::= { sniObjects 5 }
sniBroadcastStormSuppressionEntry OBJECT-TYPE
SYNTAX SniBroadcastStormSuppressionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Broadcast Storm Suppression Information"
INDEX { sniBroadcastStormSuppressionDeviceIndex, sniBroadcastStormSuppressionCardIndex, sniBroadcastStormSuppressionPortIndex }
::= { sniBroadcastStormSuppressionTable 1 }
SniBroadcastStormSuppressionEntry ::=
SEQUENCE {
sniBroadcastStormSuppressionDeviceIndex INTEGER,
sniBroadcastStormSuppressionCardIndex EponCardIndex,
sniBroadcastStormSuppressionPortIndex EponPortIndex,
sniUnicastStormEnable TruthValue,
sniUnicastStormInPacketRate INTEGER,
sniUnicastStormOutPacketRate INTEGER,
sniMulticastStormEnable TruthValue,
sniMulticastStormInPacketRate INTEGER,
sniMulticastStormOutPacketRate INTEGER,
sniBroadcastStormEnable TruthValue,
sniBroadcastStormInPacketRate INTEGER,
sniBroadcastStormOutPacketRate INTEGER
}
sniBroadcastStormSuppressionDeviceIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"device Index"
::= { sniBroadcastStormSuppressionEntry 1 }
sniBroadcastStormSuppressionCardIndex OBJECT-TYPE
SYNTAX EponCardIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"card Index"
::= { sniBroadcastStormSuppressionEntry 2 }
sniBroadcastStormSuppressionPortIndex OBJECT-TYPE
SYNTAX EponPortIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"port Index"
::= { sniBroadcastStormSuppressionEntry 3 }
sniUnicastStormEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Cast Storm Enable"
::= { sniBroadcastStormSuppressionEntry 4 }
sniUnicastStormInPacketRate OBJECT-TYPE
SYNTAX INTEGER
UNITS "pps"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Cast Storm In Packet Rate"
::= { sniBroadcastStormSuppressionEntry 5 }
sniUnicastStormOutPacketRate OBJECT-TYPE
SYNTAX INTEGER
UNITS "pps"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Cast Storm Out Packet Rate"
::= { sniBroadcastStormSuppressionEntry 6 }
sniMulticastStormEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"true(1) false(2)"
::= { sniBroadcastStormSuppressionEntry 7 }
sniMulticastStormInPacketRate OBJECT-TYPE
SYNTAX INTEGER
UNITS "pps"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Multicast Storm In Packet Rate"
::= { sniBroadcastStormSuppressionEntry 8 }
sniMulticastStormOutPacketRate OBJECT-TYPE
SYNTAX INTEGER
UNITS "pps"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Multicast Storm Out Packet Rate"
::= { sniBroadcastStormSuppressionEntry 9 }
sniBroadcastStormEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"true(1) false(2)"
::= { sniBroadcastStormSuppressionEntry 10 }
sniBroadcastStormInPacketRate OBJECT-TYPE
SYNTAX INTEGER
UNITS "pps"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Broadcast Storm In Packet Rate"
::= { sniBroadcastStormSuppressionEntry 11 }
sniBroadcastStormOutPacketRate OBJECT-TYPE
SYNTAX INTEGER
UNITS "pps"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Broadcast Storm Out Packet Rate"
::= { sniBroadcastStormSuppressionEntry 12 }
--
-- END of NSCRTV-EPON-SNI-MIB
--
END
|