-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathDOCS-L2VPN-MIB-V1SMI.my
1120 lines (1012 loc) · 37.5 KB
/
DOCS-L2VPN-MIB-V1SMI.my
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
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- MIB file created 15-Apr-2009 11:40:20, by
-- SMICng version 2.2.11-beta(PRO)(Solaris), January 20, 2001. Enterprise key cisco.com
DOCS-L2VPN-MIB DEFINITIONS ::= BEGIN
-- From file: "DOCS-L2VPN-MIB.my"
-- Compile options "4 7 F H N O W 03 06 0B 0G 0N 0T"
IMPORTS
TruthValue, MacAddress
FROM SNMPv2-TC-v1
ifIndex
FROM IF-MIB
dot1dBasePort
FROM BRIDGE-MIB
dot1qFdbId, dot1qTpFdbAddress, dot1qVlanIndex,
dot1qTpGroupAddress
FROM Q-BRIDGE-MIB
docsIfCmtsCmStatusIndex
FROM DOCS-IF-MIB
docsQosServiceFlowId, docsQosPktClassId
FROM DOCS-QOS-MIB
clabProjDocsis
FROM CLAB-DEF-MIB
Counter, Gauge
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212;
docsL2vpnMIB OBJECT IDENTIFIER ::= { clabProjDocsis 8 }
-- MODULE-IDENTITY
-- LastUpdated
-- 200603280000Z
-- OrgName
-- CableLabs
-- ContactInfo
-- Postal: Cable Television Laboratories, Inc.
-- 858 Coal Creek Circle
-- Louisville, Colorado 80027-9750
-- U.S.A.
-- Phone: +1 303-661-9100
-- Fax: +1 303-661-9199
-- E-mail: [email protected]
-- Descr
-- This is the management MIB for devices complying to the
-- DOCSIS L2VPN Feature.
-- RevDate
-- 200603280000Z
-- RevDescr
-- Initial version.
docsL2vpnMIBNotifications OBJECT IDENTIFIER ::= { docsL2vpnMIB 0 }
docsL2vpnMIBObjects OBJECT IDENTIFIER ::= { docsL2vpnMIB 1 }
docsL2vpnConformance OBJECT IDENTIFIER ::= { docsL2vpnMIB 2 }
docsL2vpnCompliances OBJECT IDENTIFIER ::= { docsL2vpnConformance 1 }
docsL2vpnGroups OBJECT IDENTIFIER ::= { docsL2vpnConformance 2 }
DocsL2vpnIdentifier ::= OCTET STRING(SIZE(1..16))
-- TEXTUAL-CONVENTION
-- DspHint
-- 255a
-- Status
-- mandatory
-- Descr
-- An externally administered octet string identifying an
-- L2VPN. An implementation MUST support a length of at least
-- 16 octets. The octet string is used as an index. As such,
-- the CMTS enforces that objects of type DocsL2vpnIdentifier
-- are unique per CMTS. An MSO is encouraged to define
-- DocsL2vpnIdentifier values as globally unique.
DocsL2vpnIndex ::= Gauge(0..4294967295)
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- An integer value locally generated by the agent for each
-- known DocsL2vpnIdentifier administrative identifier. It is
-- intended to be used as a short index for tables in this MIB
-- module in lieu of an object of the type
-- DocsL2vpnIdentifier.
DocsNsiEncapSubtype ::= INTEGER {
other(1),
ieee8021q(2),
ieee8021ad(3),
mpls(4),
l2tpv3(5)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- An enumerated integer that defines the default
-- encapsulation on NSI ports of an L2VPN-forwarded packet.
-- A CMTS implementation MUST support ieee802.1q(2).
-- A CMTS MAY omit support for all NSI encapsulations
-- other than ieee802.1q(2).
DocsNsiEncapValue ::= OCTET STRING
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The encapsulation value for L2VPN forwarded packets on NSI
-- ports. The value of an object of this type depends on the
-- value of an associated object of type DocsEncapSubtype:
--
-- other(1): vendor specific,
-- ieee8021q(2): 802.1Q tag with VLAN ID in lower 12 bits,
-- ieee8021ad(3): pair of 16-bit values with service provider
-- in lower 12 bits of the first 16-bit value and customer
-- VLAN ID in the lower 12 bits of the second 16-bit value,
-- mpls(4): must be zero length string,
-- l2tpv3(5): must be zero length string.
DocsL2vpnIfList ::= OCTET STRING(SIZE(1..2))
-- BITS are:
-- eCm(0)
-- cmci(1)
-- docsCableMacLayer(2)
-- docsCableDownstream(3)
-- docsCableUpstream(4)
-- eMta(5)
-- eStbIp(6)
-- eStbDsg(7)
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- A object of this type indicates a set of CM
-- MAC bridge interfaces, encoded as a BITS syntax with a ?1?
-- Bit for each interface included in the set.
--
-- Bit position eCM(0) represents a conceptual interface to
-- the internal 'self' host MAC of the eCM itself. All other
-- bit positions K correspond to CM MAC bridge port interface
-- index with ifIndex value K.
--
-- A BITS object is encoded as an OCTET STRING, which may have
-- length zero. Bit position 0 is encoded in the most
-- significant bit of the first octet, proceeding to
-- bit position 7 in the least significant bit. Bit position 8
-- is encoded in the most significant bit of the second octet,
-- and so on.
--
-- In a CM, ifIndex value 1 corresponds to the primary CPE
-- interface. In CableHome devices, this interface is assigned
-- to the embedded Portal Services (ePS) host interface, which
-- provides a portal to the primary physical CPE interface.
-- In many contexts of a DocsL2VpnIfList, a '1' in bit
-- position 1 corresponds to 'any' or 'all' CPE interfaces
-- when the CM contains more than one CPE interface.
--
-- ifIndex value 2 corresponds to the docsCableMacLayer
-- RF MAC interface.
--
-- ifIndex values 3 and 4 correspond to the
-- docsCableDownstream and docsCableUpstream interfaces,
-- respectively, which are not separate MAC bridge port
-- interfaces. Bit positions 3 and 4 are unused in this type;
-- they must be saved and reported as configured, but
-- otherwise ignored.
--
-- ifIndex values 5 through 15 are reserved for individual
-- CPE interfaces for devices that implement more than one
-- CPE interface. In such devices, DocsL2vpnIfList bit
-- position 1 corresponds to the set of all CPE interfaces.
-- A CM with more than one CPE interface MAY assign a
-- DocsL2vpnIfList bit position within the range of 5..15 to
-- refer to the single primary CPE interface.
--
-- ifIndex value 16 is assigned to any embedded Multimedia
-- Terminal Adapter (eMTA) as defined by PacketCable.
--
-- ifIndex value 17 is assigned to the IP management host
-- interface of an embedded Set Top Box (eSTB). ifIndex value
-- 18 is reserved for the DOCSIS Set-top Gateway (DSG) traffic
-- delivered to an eSTB.
--
-- ifIndex values 19 through 31 are
-- reserved for future defined embedded Service Application.
docsL2vpnIdToIndexTable OBJECT-TYPE
SYNTAX SEQUENCE OF DocsL2vpnIdToIndexEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Table indexed by the octet string DocsL2vpnIdentifier that
provides the local agent's internally assigned docsL2vpnIdx
value for that DocsL2vpnIdentifier value. The mapping of
DocsL2vpnIdentifier to docsL2vpnIdx is 1-1. The agent
must instantiate a row in both docsL2vpnIndexToIdTable and
docsL2vpnIdToIndexTable for each known L2VPN Identifier."
::= { docsL2vpnMIBObjects 1 }
docsL2vpnIdToIndexEntry OBJECT-TYPE
SYNTAX DocsL2vpnIdToIndexEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Maps a DocsL2vpnIdentifier octet string into the local
agent's locally assigned docsL2vpnIdx value."
INDEX { docsL2vpnId }
::= { docsL2vpnIdToIndexTable 1 }
DocsL2vpnIdToIndexEntry ::= SEQUENCE {
docsL2vpnId DocsL2vpnIdentifier,
docsL2vpnIdToIndexIdx DocsL2vpnIndex
}
docsL2vpnId OBJECT-TYPE
SYNTAX DocsL2vpnIdentifier
-- Rsyntax OCTET STRING(SIZE(1..16))
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An externally configured octet string that identifies an
L2VPN."
::= { docsL2vpnIdToIndexEntry 1 }
docsL2vpnIdToIndexIdx OBJECT-TYPE
SYNTAX DocsL2vpnIndex
-- Rsyntax Gauge(0..4294967295)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An internally assigned index value for a known L2VPN."
::= { docsL2vpnIdToIndexEntry 2 }
docsL2vpnIndexToIdTable OBJECT-TYPE
SYNTAX SEQUENCE OF DocsL2vpnIndexToIdEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Table indexed by agent's local docsL2vpnIdx that provides
the global L2VPN Identifier. The mapping of docsL2vpnIdx to
DocsL2vpnIdentifier is 1-1. The agent must instantiate a
row in both docsL2vpnIndexToIdTable and
docsL2vpnIdToIndexTable for each known L2VPN."
::= { docsL2vpnMIBObjects 2 }
docsL2vpnIndexToIdEntry OBJECT-TYPE
SYNTAX DocsL2vpnIndexToIdEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Provides the L2VPN Identifier for each locally-assigned
L2vpn Index."
INDEX { docsL2vpnIdx }
::= { docsL2vpnIndexToIdTable 1 }
DocsL2vpnIndexToIdEntry ::= SEQUENCE {
docsL2vpnIdx DocsL2vpnIndex,
docsL2vpnIndexToIdId DocsL2vpnIdentifier
}
docsL2vpnIdx OBJECT-TYPE
SYNTAX DocsL2vpnIndex
-- Rsyntax Gauge(0..4294967295)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An internally assigned index value for a known L2VPN."
::= { docsL2vpnIndexToIdEntry 1 }
docsL2vpnIndexToIdId OBJECT-TYPE
SYNTAX DocsL2vpnIdentifier
-- Rsyntax OCTET STRING(SIZE(1..16))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An administered octet string that externally identifies an
L2VPN."
::= { docsL2vpnIndexToIdEntry 2 }
docsL2vpnCmTable OBJECT-TYPE
SYNTAX SEQUENCE OF DocsL2vpnCmEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table describes L2VPN per-CM information that
is in common with all L2VPNs for the CM, regardless
of forwarding mode."
::= { docsL2vpnMIBObjects 3 }
docsL2vpnCmEntry OBJECT-TYPE
SYNTAX DocsL2vpnCmEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry is indexed by Cable Modem Index that
describes L2VPN information for a single CM that is in
common with all L2VPNs implemented by the CM,
regardless of the L2VPN forwarding mode.
An entry in this table is created for every CM that
registers with a forwarding L2VPN encoding."
INDEX { docsIfCmtsCmStatusIndex }
::= { docsL2vpnCmTable 1 }
DocsL2vpnCmEntry ::= SEQUENCE {
docsL2vpnCmCompliantCapability TruthValue,
docsL2vpnCmDutFilteringCapability TruthValue,
docsL2vpnCmDutCMIM DocsL2vpnIfList,
docsL2vpnCmDhcpSnooping DocsL2vpnIfList
}
docsL2vpnCmCompliantCapability OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object reports whether an L2VPN forwarding CM is
compliant with the DOCSIS L2VPN specification, as reported
in the L2VPN Capability encoding in the CM's registration
request message.
If the capability encoding was omitted, this object must
report the value false(2)."
::= { docsL2vpnCmEntry 1 }
docsL2vpnCmDutFilteringCapability OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object reports whether an L2VPN forwarding CM is
capable of Downstream Unencrypted Traffic (DUT) Filtering,
as reported in the CM's registration request message.
If the capability encoding was omitted, this object must
report the value false(2)."
::= { docsL2vpnCmEntry 2 }
docsL2vpnCmDutCMIM OBJECT-TYPE
SYNTAX DocsL2vpnIfList
-- Rsyntax OCTET STRING(SIZE(1..2))
-- BITS are:
-- eCm(0)
-- cmci(1)
-- docsCableMacLayer(2)
-- docsCableDownstream(3)
-- docsCableUpstream(4)
-- eMta(5)
-- eStbIp(6)
-- eStbDsg(7)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object reports the value configured in a per-CM
L2VPN Encoding for Downstream Unencrypted Traffic (DUT)
Cable Modem Interface Mask (CMIM).
The DUT CMIM is a bit string with a '1' for each bit
position K for an internal or external CM interface with
ifIndex K to which the CM permits DUT to be forwarded. A CM
capable of DUT filtering MUST discard DUT to interfaces
with a '0' in the DUT CMIM.
If a CM's top-level registration request L2VPN Encoding
contained no DUT CMIM subtype, this object is reported
with its default value of a '1' in bit position 0
(corresponding to the eCM's own 'self' host) and a '1' in
each bit position K for which an eSAFE interface exists at
ifIndex K. In other words, the default DUT CMIM includes
the eCM and all eSAFE interfaces.
This value is reported independently of whether the CM is
actually capable of performing DUT filtering."
::= { docsL2vpnCmEntry 3 }
docsL2vpnCmDhcpSnooping OBJECT-TYPE
SYNTAX DocsL2vpnIfList
-- Rsyntax OCTET STRING(SIZE(1..2))
-- BITS are:
-- eCm(0)
-- cmci(1)
-- docsCableMacLayer(2)
-- docsCableDownstream(3)
-- docsCableUpstream(4)
-- eMta(5)
-- eStbIp(6)
-- eStbDsg(7)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object reports the value of the Enable DHCP Snooping
subtype of a top-level L2VPN Encoding.
It has the syntax of a CM Interface List bitmask and
represents a set of CM MAC bridge interfaces
corresponding to eSAFE hosts for which the CMTS is enabled
to snoop DHCP traffic in order to learn the eSAFE host MAC
address on that interface.
Only bits corresponding to eSAFE host MAC addresses may be
validly set in this object, including cpe(1) for ePS
and the eSAFE interfaces in bits positions 16 through 31."
::= { docsL2vpnCmEntry 4 }
docsL2vpnVpnCmTable OBJECT-TYPE
SYNTAX SEQUENCE OF DocsL2vpnVpnCmEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table describes the operation of L2VPN forwarding
on each CM."
::= { docsL2vpnMIBObjects 4 }
docsL2vpnVpnCmEntry OBJECT-TYPE
SYNTAX DocsL2vpnVpnCmEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry is indexed by VPN ID and Cable Modem Index that
describes the operation of L2VPN forwarding for a single
L2VPN on a single CM."
INDEX { docsL2vpnIdx, docsIfCmtsCmStatusIndex }
::= { docsL2vpnVpnCmTable 1 }
DocsL2vpnVpnCmEntry ::= SEQUENCE {
docsL2vpnVpnCmCMIM DocsL2vpnIfList,
docsL2vpnVpnCmIndividualSAId INTEGER,
docsL2vpnVpnCmVendorSpecific OCTET STRING
}
docsL2vpnVpnCmCMIM OBJECT-TYPE
SYNTAX DocsL2vpnIfList
-- Rsyntax OCTET STRING(SIZE(1..2))
-- BITS are:
-- eCm(0)
-- cmci(1)
-- docsCableMacLayer(2)
-- docsCableDownstream(3)
-- docsCableUpstream(4)
-- eMta(5)
-- eStbIp(6)
-- eStbDsg(7)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A Cable Modem Interface Mask represents a set of
MAC bridge interfaces within the CM. This object
represents the CMIM within a forwarding per-SF L2VPN
encoding, which specifies a set of CM MAC bridge
interfaces to which L2VPN forwarding is restricted.
If the CMIM Subtype is omitted from a forwarding
per-SF encoding, its default value includes only
cpePrimary(1) and cableMac(2), which can be encoded
with a single octet with the value 0x60."
::= { docsL2vpnVpnCmEntry 1 }
docsL2vpnVpnCmIndividualSAId OBJECT-TYPE
SYNTAX INTEGER(0..16383)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The BPI+ Security Association ID in which traffic intended
for point-to-point forwarding through an individual CM is
forwarded.
If the CMTS does not allocate an individual SAID for
multipoint forwarding (as is recommended),it MUST
report this object as zero."
::= { docsL2vpnVpnCmEntry 2 }
docsL2vpnVpnCmVendorSpecific OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object encodes the concatenation of all Vendor
Specific Subtype encodings that appeared in any
registration per-CM L2VPN Encoding associated with this
entry."
::= { docsL2vpnVpnCmEntry 3 }
docsL2vpnVpnCmStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF DocsL2vpnVpnCmStatsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains statistics for forwarding of
packets to and from a CM on each VPN."
::= { docsL2vpnMIBObjects 5 }
docsL2vpnVpnCmStatsEntry OBJECT-TYPE
SYNTAX DocsL2vpnVpnCmStatsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry is indexed by VPN ID and Cable Modem Index."
INDEX { docsL2vpnIdx, docsIfCmtsCmStatusIndex }
::= { docsL2vpnVpnCmStatsTable 1 }
DocsL2vpnVpnCmStatsEntry ::= SEQUENCE {
docsL2vpnVpnCmStatsUpstreamPkts Counter,
docsL2vpnVpnCmStatsUpstreamBytes Counter,
docsL2vpnVpnCmStatsUpstreamDiscards Counter,
docsL2vpnVpnCmStatsDownstreamPkts Counter,
docsL2vpnVpnCmStatsDownstreamBytes Counter,
docsL2vpnVpnCmStatsDownstreamDiscards Counter
}
docsL2vpnVpnCmStatsUpstreamPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of L2vpn-forwarded packets received
from this instance's Cable Modem on
this instance's L2VPN."
::= { docsL2vpnVpnCmStatsEntry 1 }
docsL2vpnVpnCmStatsUpstreamBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of L2vpn-forwarded bytes received
from this instance's Cable Modem on
this instance's L2VPN."
::= { docsL2vpnVpnCmStatsEntry 2 }
docsL2vpnVpnCmStatsUpstreamDiscards OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of L2-forwarded packets
discarded from this instance's
Cable Modem on this instance's VPN."
::= { docsL2vpnVpnCmStatsEntry 3 }
docsL2vpnVpnCmStatsDownstreamPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of L2-forwarded packets
transmitted to this instance's
Cable Modem on this instance's VPN."
::= { docsL2vpnVpnCmStatsEntry 4 }
docsL2vpnVpnCmStatsDownstreamBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of L2-forwarded bytes
transmitted to this instance's
Cable Modem on this instance's VPN."
::= { docsL2vpnVpnCmStatsEntry 5 }
docsL2vpnVpnCmStatsDownstreamDiscards OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of L2-forwarded packets that were discarded
before they could be transmitted to this instance's
Cable Modem on this instance's VPN."
::= { docsL2vpnVpnCmStatsEntry 6 }
docsL2vpnPortStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF DocsL2vpnPortStatusEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table displays summary information for the
run-time state of each VPN that is currently operating
on each bridge port."
::= { docsL2vpnMIBObjects 6 }
docsL2vpnPortStatusEntry OBJECT-TYPE
SYNTAX DocsL2vpnPortStatusEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Information specific to the operation of L2VPN forwarding
on a particular CMTS 'bridge port'. A CMTS 'bridge port'
may be defined by the CMTS vendor, but is advantageously a
single DOCSIS MAC Domain."
INDEX { dot1dBasePort, docsL2vpnIdx }
::= { docsL2vpnPortStatusTable 1 }
DocsL2vpnPortStatusEntry ::= SEQUENCE {
docsL2vpnPortStatusGroupSAId INTEGER
}
docsL2vpnPortStatusGroupSAId OBJECT-TYPE
SYNTAX INTEGER(0..16383)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Group SAID associated with this VPN on a
particular CMTS MAC domain. This SAID is used to encrypt
all downstream flooded bridge traffic sent to CMs on
this VPN and CMTS MAC domain bridge port.
A value of '0' means there is no associated Group SAID for
this VPN and bridge port, e.g., if the L2VPN uses
point-to-point individual SAIDs only for forwarding.
A bridge port that is not a CMTS MAC
domain will report a value of '0'."
::= { docsL2vpnPortStatusEntry 1 }
docsL2vpnSfStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF DocsL2vpnSfStatusEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table displays SF-specific L2VPN forwarding status
for each upstream service flow configured with a per-SF
L2VPN Encoding.
Objects which were signaled in a per-SF L2VPN Encoding but
apply for the entire CM are shown in the
docsL2vpnVpnCmTable."
::= { docsL2vpnMIBObjects 7 }
docsL2vpnSfStatusEntry OBJECT-TYPE
SYNTAX DocsL2vpnSfStatusEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"SF-specific L2VPN forwarding status information for each
upstream service flow configured with a per-SF L2VPN
Encoding. The ifIndex is of type docsCableMacLayer(127)."
INDEX { ifIndex, docsQosServiceFlowId }
::= { docsL2vpnSfStatusTable 1 }
DocsL2vpnSfStatusEntry ::= SEQUENCE {
docsL2vpnSfStatusL2vpnId OCTET STRING,
docsL2vpnSfStatusIngressUserPriority Gauge,
docsL2vpnSfStatusVendorSpecific OCTET STRING
}
docsL2vpnSfStatusL2vpnId OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object represents the value of the L2VPN Identifier
subtype of a per-SF L2VPN Encoding."
::= { docsL2vpnSfStatusEntry 1 }
docsL2vpnSfStatusIngressUserPriority OBJECT-TYPE
SYNTAX Gauge(0..7)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object provides the configured Ingress User Priority
subtype of a per-SF L2VPN Encoding for this CM. If the
subtype was omitted, this object's value is zero."
::= { docsL2vpnSfStatusEntry 2 }
docsL2vpnSfStatusVendorSpecific OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object provides the set of configured Vendor Specific
subtypes within a per-SF L2VPN Encoding for a CM. If no
Vendor Specific subtype was specified, this object is a
zero length octet string. If one or more Vendor Specific
subtype parameters was specified, this object represents
the concatenation of all such subtypes."
::= { docsL2vpnSfStatusEntry 3 }
docsL2vpnPktClassTable OBJECT-TYPE
SYNTAX SEQUENCE OF DocsL2vpnPktClassEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table provides the L2VPN-specific objects for
packet classifiers that apply to only L2VPN traffic.
The indices of this table are a subset of the
indices of classifiers in docsQosPktClassTable."
::= { docsL2vpnMIBObjects 8 }
docsL2vpnPktClassEntry OBJECT-TYPE
SYNTAX DocsL2vpnPktClassEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in this table extends a single row
of docsQosPktClassTable for a rule that applies only to
downstream L2VPN forwarded packets.
The index ifIndex is an ifType of docsCableMaclayer(127)."
INDEX { ifIndex, docsQosServiceFlowId, docsQosPktClassId }
::= { docsL2vpnPktClassTable 1 }
DocsL2vpnPktClassEntry ::= SEQUENCE {
docsL2vpnPktClassL2vpnId DocsL2vpnIdentifier,
docsL2vpnPktClassUserPriRangeLow Gauge,
docsL2vpnPktClassUserPriRangeHigh Gauge,
docsL2vpnPktClassCMIM DocsL2vpnIfList,
docsL2vpnPktClassVendorSpecific OCTET STRING
}
docsL2vpnPktClassL2vpnId OBJECT-TYPE
SYNTAX DocsL2vpnIdentifier
-- Rsyntax OCTET STRING(SIZE(1..16))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The locally assigned L2VPN index corresponding to the VPN
Identifier subtype of a Downstream Classifier L2VPN
Encoding."
::= { docsL2vpnPktClassEntry 1 }
docsL2vpnPktClassUserPriRangeLow OBJECT-TYPE
SYNTAX Gauge(0..7)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The lower priority of the user Priority Range subtype
of a Downstream Classifier L2VPN Encoding. If the subtype
was omitted, this object has value 0."
::= { docsL2vpnPktClassEntry 2 }
docsL2vpnPktClassUserPriRangeHigh OBJECT-TYPE
SYNTAX Gauge(0..7)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The higher priority of the user Priority Range subtype
of a Downstream Classifier L2VPN Encoding. If the subtype
was omitted, this object has value 7."
::= { docsL2vpnPktClassEntry 3 }
docsL2vpnPktClassCMIM OBJECT-TYPE
SYNTAX DocsL2vpnIfList
-- Rsyntax OCTET STRING(SIZE(1..2))
-- BITS are:
-- eCm(0)
-- cmci(1)
-- docsCableMacLayer(2)
-- docsCableDownstream(3)
-- docsCableUpstream(4)
-- eMta(5)
-- eStbIp(6)
-- eStbDsg(7)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Cable Modem Interface Mask (CMIM) signaled in a
Packet Classifier Encoding. In a Downstream Packet
Classifier Encoding, a specified CMIM value restricts the
classifier to match packets with a Destination MAC address
corresponding to the interfaces indicated in the CMIM mask.
The eCM self and any eSAFE interface bits correspond to
the individual eCM and eSAFE host MAC addresses.
In an Upstream Packet Classifier encoding, a specified CMIM
value restricts the classifier to match packets with an
ingress bridge port interface matching the bits in the
CMIM value.
If the CMIM subtype was omitted, this object should be
reported as a zero length octet string."
::= { docsL2vpnPktClassEntry 4 }
docsL2vpnPktClassVendorSpecific OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object provides the set of configured
Vendor Specific subtypes within a Packet Classifier
Encoding for a CM. If no Vendor Specific subtype was
specified, this object is a zero length octet string.
If one or more Vendor Specific subtype parameters was
specified, this object represents the concatenation of all
such subtypes."
::= { docsL2vpnPktClassEntry 5 }
docsL2vpnCmNsiTable OBJECT-TYPE
SYNTAX SEQUENCE OF DocsL2vpnCmNsiEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table describes the NSI configuration for a single
CM when operating in point-to-point forwarding mode for an
L2VPN."
::= { docsL2vpnMIBObjects 9 }
docsL2vpnCmNsiEntry OBJECT-TYPE
SYNTAX DocsL2vpnCmNsiEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry indexed by VPN ID and Cable Modem Index that
describes the point-to-point forwarding between a single
NSI encapsulation and a single CM. This table is
implemented only for a CM forwarding an L2VPN on a
point-to-point basis. It is associated with a single
per-CM L2VPN encoding."
INDEX { docsL2vpnIdx, docsIfCmtsCmStatusIndex }
::= { docsL2vpnCmNsiTable 1 }
DocsL2vpnCmNsiEntry ::= SEQUENCE {
docsL2vpnCmNsiEncapSubtype DocsNsiEncapSubtype,
docsL2vpnCmNsiEncapValue DocsNsiEncapValue,
docsL2vpnCmNsiAGI OCTET STRING,
docsL2vpnCmNsiSAII OCTET STRING,
docsL2vpnCmNsiTAII OCTET STRING
}
docsL2vpnCmNsiEncapSubtype OBJECT-TYPE
SYNTAX DocsNsiEncapSubtype
-- Rsyntax INTEGER {
-- other(1),
-- ieee8021q(2),
-- ieee8021ad(3),
-- mpls(4),
-- l2tpv3(5)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The General Encapsulation Information (GEI) subtype of the
Network System Interface (NSI) encapsulation configured
for the CM."
::= { docsL2vpnCmNsiEntry 1 }
docsL2vpnCmNsiEncapValue OBJECT-TYPE
SYNTAX DocsNsiEncapValue
-- Rsyntax OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The encapsulation value for L2VPN forwarded packets on NSI
ports."
::= { docsL2vpnCmNsiEntry 2 }
docsL2vpnCmNsiAGI OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object is the configuration of any Attachment Group
Identifier subtype in the per-SF L2VPN Encoding
represented by this row. If the subtype was omitted, this
object's value is a zero length string."
::= { docsL2vpnCmNsiEntry 3 }
docsL2vpnCmNsiSAII OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object is the configuration of any Source
Attachment Individual ID subtype in the L2VPN Encoding
represented by this row. If the subtype was omitted, this
object's value is a zero length string."
::= { docsL2vpnCmNsiEntry 4 }
docsL2vpnCmNsiTAII OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object is the configuration of any Target
Attachment Individual ID subtype in the L2VPN Encoding
represented by this row. If the subtype was omitted, this
object's value is a zero length string."
::= { docsL2vpnCmNsiEntry 5 }
docsL2vpnCmVpnCpeTable OBJECT-TYPE
SYNTAX SEQUENCE OF DocsL2vpnCmVpnCpeEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table is a list of CPEs, indexed by the VPNs on a
Cable Modem."
::= { docsL2vpnMIBObjects 10 }
docsL2vpnCmVpnCpeEntry OBJECT-TYPE
SYNTAX DocsL2vpnCmVpnCpeEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table is a list of CPEs, indexed by the VPNs on a
Cable Modem."
INDEX { docsIfCmtsCmStatusIndex, docsL2vpnIdx, docsL2vpnCmVpnCpeMacAddress }
::= { docsL2vpnCmVpnCpeTable 1 }
DocsL2vpnCmVpnCpeEntry ::= SEQUENCE {
docsL2vpnCmVpnCpeMacAddress MacAddress
}
docsL2vpnCmVpnCpeMacAddress OBJECT-TYPE
SYNTAX MacAddress
-- Rsyntax OCTET STRING(SIZE(6))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Customer Premise Equipment (CPE) Mac Address
that is attached to this instances Cable Modem
and bridging on this instance's VPN Id."
::= { docsL2vpnCmVpnCpeEntry 1 }
docsL2vpnVpnCmCpeTable OBJECT-TYPE
SYNTAX SEQUENCE OF DocsL2vpnVpnCmCpeEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains a list of bridging CPEs, indexed by
L2VPN Index and the corresponding CMs on that VPN."
::= { docsL2vpnMIBObjects 11 }
docsL2vpnVpnCmCpeEntry OBJECT-TYPE
SYNTAX DocsL2vpnVpnCmCpeEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains a list of bridging CPEs, indexed by
VPN and the corresponding CMs on that VPN."
INDEX { docsL2vpnIdx, docsIfCmtsCmStatusIndex, docsL2vpnVpnCmCpeMacAddress }
::= { docsL2vpnVpnCmCpeTable 1 }
DocsL2vpnVpnCmCpeEntry ::= SEQUENCE {
docsL2vpnVpnCmCpeMacAddress MacAddress
}
docsL2vpnVpnCmCpeMacAddress OBJECT-TYPE
SYNTAX MacAddress
-- Rsyntax OCTET STRING(SIZE(6))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Customer Premise Equipment (CPE) Mac Address
that is attached to this instances Cable Modem
and bridging on this instance's L2vpn Index."
::= { docsL2vpnVpnCmCpeEntry 1 }
docsL2vpnDot1qTpFdbExtTable OBJECT-TYPE
SYNTAX SEQUENCE OF DocsL2vpnDot1qTpFdbExtEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains packet counters for
Unicast MAC Addresses within a VPN."
::= { docsL2vpnMIBObjects 12 }
docsL2vpnDot1qTpFdbExtEntry OBJECT-TYPE
SYNTAX DocsL2vpnDot1qTpFdbExtEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table extends the dot1qTpFdbTable only for RF network
bridge port entries. It is implemented by an agent only
if the agent implements dot1qTpFdbTable for RF network
bridge ports."
INDEX { dot1qFdbId, dot1qTpFdbAddress }
::= { docsL2vpnDot1qTpFdbExtTable 1 }
DocsL2vpnDot1qTpFdbExtEntry ::= SEQUENCE {
docsL2vpnDot1qTpFdbExtTransmitPkts Counter,
docsL2vpnDot1qTpFdbExtReceivePkts Counter
}
docsL2vpnDot1qTpFdbExtTransmitPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of packets where the Destination
MAC Address matched this instance
dot1qTpFdbAddress and packet was bridged on
a VPN, where the VPN ID matched this
instance's dot1qFdbId."
::= { docsL2vpnDot1qTpFdbExtEntry 1 }
docsL2vpnDot1qTpFdbExtReceivePkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of packets where the Source MAC
Address matched this instance dot1qTpFdbAddress
and the packet was bridged on a VPN,
where the docsL2vpnIdx matched this instance's
dot1qFdbId."
::= { docsL2vpnDot1qTpFdbExtEntry 2 }
docsL2vpnDot1qTpGroupExtTable OBJECT-TYPE