summaryrefslogtreecommitdiff
path: root/MIBS/junose/Juniper-ETHERNET-MIB
blob: 12e56b9c5250d5ee2d564b433797f325f32a54cd (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
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087

-- *****************************************************************************
-- Juniper-ETHERNET-MIB
--
-- Juniper Networks Enterprise MIB
--   Ethernet MIB
--
-- Copyright (c) 2000, 2002 Unisphere Networks, Inc.
-- Copyright (c) 2002-2006 Juniper Networks, Inc.
--   All Rights Reserved.
-- *****************************************************************************

Juniper-ETHERNET-MIB  DEFINITIONS ::= BEGIN

IMPORTS
    MODULE-IDENTITY, OBJECT-TYPE, Integer32, Unsigned32
        FROM SNMPv2-SMI
    TEXTUAL-CONVENTION, RowStatus, TruthValue
        FROM SNMPv2-TC
    InterfaceIndex, InterfaceIndexOrZero
        FROM IF-MIB
    MODULE-COMPLIANCE, OBJECT-GROUP
        FROM SNMPv2-CONF
    juniMibs
        FROM Juniper-MIBs
    JuniNextIfIndex
        FROM Juniper-TC;

juniEthernetMIB  MODULE-IDENTITY
    LAST-UPDATED "200601112116Z"  -- 11-Jan-06 04:16 PM EST
    ORGANIZATION "Juniper Networks, Inc."
    CONTACT-INFO
        "       Juniper Networks, Inc.
        Postal: 10 Technology Park Drive
                Westford, MA  01886-3146
                USA
        Tel:    +1 978 589 5800
        Email:  mib@Juniper.net"
    DESCRIPTION
        "The Ethernet MIB for the Juniper Networks enterprise.  This MIB
        contains managed objects for the Ethernet interfaces that extend the
        IF-MIB.ifTable.  It also contains managed objects for creation of
        Ethernet subInterfaces."
    -- Revision History
    REVISION    "200601112116Z"  -- 11-Jan-06 04:16 PM EST  - JUNOSe 7.3
    DESCRIPTION
        "Added juniLagIfLayer."
    REVISION    "200509142008Z"  -- 14-Sep-05 03:08 PM EST  - JUNOSe 7.2
    DESCRIPTION
        "Added juniVlanSubIfVlanAdvisoryRx/TxSpeed."
    REVISION    "200412141514Z"  -- 14-Dec-04 10:14 AM EST  - JUNOSe 7.0
    DESCRIPTION
        "Added XFP mau types.
         Added speed10000Mbps enumeration value to juniEthernetIfSpeed."
    REVISION    "200405261940Z"  -- 26-May-04 03:40 PM EDT  - JUNOSe 6.0
    DESCRIPTION
        "Added mau type for 100 base FX."
    REVISION    "200307282133Z"  -- 28-Jul-03 05:33 PM EDT  - JUNOSe 5.2
    DESCRIPTION
        "Added support for Ethernet interface statistics."
    REVISION    "200302202151Z"  -- 20-Feb-03 04:51 PM EST  - JUNOSe 5.1
    DESCRIPTION
        "Added 0x8100 as value for juniVlanSubIfVlanStackEthertype.
         Added 5000 and 5001 as valid values for juniVlanSubIfVlanId.
         Added 5000 as a valid value for juniVlanSubIfVlanStackId.
         Defined default values for juniVlanSubIfVlanId,
            juniVlanSubIfVlanStackId and juniVlanSubIfVlanStackEthertype."
    REVISION    "200210021534Z"  -- 02-Oct-02 11:34 AM EDT  - JUNOSe 5.0
    DESCRIPTION
        "Replaced Unisphere names with Juniper names."
    REVISION    "200210011744Z"  -- 01-Oct-02 01:44 PM EDT  - JUNOSe 4.1
    DESCRIPTION
        "Added MAU type and length support."
    REVISION    "200204051947Z"  -- 05-Apr-02 02:47 PM EST  - JUNOSe 4.0
    DESCRIPTION
        "Added VLAN stack support."
    REVISION    "200101021655Z"  -- 02-Jan-01 11:55 AM EST  - JUNOSe 3.0
    DESCRIPTION
        "Added VLAN management support."
    REVISION    "200004180000Z"  -- 18-Apr-00               - JUNOSe 2.0
    DESCRIPTION
        "Added objects for Ethernet sub-interface creation.
         Added juniEthernetIfOperDuplexMode to report current duplex mode.
         Revised descriptions to note relationship to ifTable objects and to
            explain autonegotiation dependencies.
         Added speed1000Mbps enumeration value to juniEthernetIfSpeed.
         Changed lower bound of juniEthernetIfMtu from 18 to 64."
    REVISION    "200002030000Z"  --  3-Feb-00               - JUNOSe 1.3
    DESCRIPTION
        "Initial version of this MIB module."
    ::= { juniMibs 34 }


-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Textual conventions
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
JuniEthernetIfMauType  ::= TEXTUAL-CONVENTION
    STATUS      current
    DESCRIPTION
        "The type of Medium Attachment Unit (physical cable connection) on an
        Ethernet physical interface.  A MAU may be a fixed type, or it may be a
        removable type (SFP or XFP).  SFP's and XFP's provide a readable Module
        Definition interface containing fields for identifying module type and
        supported cable length, although not all SFP's and XFP's include this
        information.
            mauNotPresent          Hardware not present
            mauNotSupported        Secondary MAU not supported
            mau10BaseT             10 Mbps twisted pair copper
            mau100BaseTx           100 Mbps twisted pair copper
            mau1000BaseT           1 Gbps twisted pair copper
            mau1000BaseCx          1 Gbps shielded copper
            mau1000BaseSx          1 Gbps short-wavelength multimode fiber
            mau1000BaseLx          1 Gbps long-wavelength multi/single-mode fiber
            mau1000BaseZx          1 Gbps long-wavelength single-mode fiber,
                                   extended distance (non-standard)
            mauSfpUnknown          SFP present but not identified
            mauSfpNotPresent       SFP cage is empty
            mau100BaseFxSm         100 Mbps optical Single mode
            mau100BaseFxMm         100 Mbps optical Multi mode
            mauSfpNotJnprCompliant SFP present but not Juniper compliant
            mau10000BaseSr         10 Gbps short-wavelength multimode fiber
            mau10000BaseLr         10 Gbps long-wavelength multi/single-mode fiber
            mau10000BaseEr         10 Gbps long-wavelength single-mode fiber
            mauXfpUnknown          XFP present but not identified
            mauXfpNotPresent       XFP cage is empty
            mauXfpNotJnprCompliant XFP present but not Juniper compliant"

    SYNTAX      INTEGER {
                    mauNotPresent(0),
                    mauNotSupported(1),
                    mau10BaseT(2),
                    mau100BaseTx(3),
                    mau1000BaseT(4),
                    mau1000BaseCx(5),
                    mau1000BaseSx(6),
                    mau1000BaseLx(7),
                    mau1000BaseZx(8),
                    mauSfpUnknown(9),
                    mauSfpNotPresent(10),
                    mau100BaseFxSm(11),
                    mau100BaseFxMm(12),
                    mauSfpNotJnprCompliant(13),
                    mau10000BaseSr(14),
                    mau10000BaseLr(15),
                    mau10000BaseEr(16),
                    mauXfpUnknown(17),
                    mauXfpNotPresent(18),
                    mauXfpNotJnprCompliant(19) }


-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Managed objects
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniEthernetObjects     OBJECT IDENTIFIER ::= { juniEthernetMIB 1 }

juniEthernetIfLayer    OBJECT IDENTIFIER ::= { juniEthernetObjects 1 }
juniEthernetSubIfLayer OBJECT IDENTIFIER ::= { juniEthernetObjects 2 }
juniVlanMajorIfLayer   OBJECT IDENTIFIER ::= { juniEthernetObjects 3 }
juniVlanSubIfLayer     OBJECT IDENTIFIER ::= { juniEthernetObjects 4 }
juniEthernetIfStats    OBJECT IDENTIFIER ::= { juniEthernetObjects 5 }
juniLagIfLayer         OBJECT IDENTIFIER ::= { juniEthernetObjects 6 }

-- /////////////////////////////////////////////////////////////////////////////
--
-- Ethernet Interface Layer
--
-- This layer is managed with the following elements:
--  o Interface Table (configuration of Ethernet interface parameters)
--
-- /////////////////////////////////////////////////////////////////////////////
--
-- The Ethernet Interface Table
--
juniEthernetIfTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF JuniEthernetIfEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The parameters for the Ethernet interface."
    ::= { juniEthernetIfLayer 1 }

juniEthernetIfEntry OBJECT-TYPE
    SYNTAX      JuniEthernetIfEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The Parameters for a particular Ethernet interface.  Entries in this
        table correspond with entries in the ifTable/ifXTable/juniIfTable."
    INDEX     { juniEthernetIfIndex }
    ::= { juniEthernetIfTable 1 }

JuniEthernetIfEntry ::= SEQUENCE {
    juniEthernetIfIndex            InterfaceIndex,
    juniEthernetIfDuplexMode       INTEGER,
    juniEthernetIfSpeed            INTEGER,
    juniEthernetIfMtu              Integer32,
    juniEthernetIfOperDuplexMode   INTEGER,
    juniEthernetIfPrimaryMauType   JuniEthernetIfMauType,
    juniEthernetIfSecondaryMauType JuniEthernetIfMauType,
    juniEthernetIfPrimaryLength    Integer32,
    juniEthernetIfSecondaryLength  Integer32 }

juniEthernetIfIndex OBJECT-TYPE
    SYNTAX      InterfaceIndex
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The ifIndex value of the corresponding ethernet interface."
    ::= { juniEthernetIfEntry 1 }

juniEthernetIfDuplexMode OBJECT-TYPE
    SYNTAX      INTEGER {
                    autoDuplex(1),
                    halfDuplex(2),
                    fullDuplex(3) }
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "The configured duplex setting for this ethernet interface.  The
        operational value is reported in this table entry's corresponding
        juniEthernetIfOperDuplexMode object.

        NOTE, configuration dependency:

        Setting this object to values other than 'autoDuplex' takes effect only
        when the corresponding juniEthernetIfSpeed object is simultaneously set
        to other than 'autoNegotiate'.

        Otherwise (i.e. this object is set to 'autoDuplex', AND/OR corresponding
        juniEthernetIfSpeed object is set to 'autoNegotiate'), duplex mode is
        negotiated."
    DEFVAL    { autoDuplex }
    ::= { juniEthernetIfEntry 2 }

juniEthernetIfSpeed OBJECT-TYPE
    SYNTAX      INTEGER {
                    autoNegotiate(1),
                    speed10Mbps(2),
                    speed100Mbps(3),
                    speed1000Mbps(4),
                    speed10000Mbps(5) }
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "The configured speed setting for this ethernet interface.  The
        operational value is reported in the corresponding Interfaces MIB
        ifSpeed object.

        NOTE, configuration dependency:

        Setting this object to values other than 'autoNegotiate' takes effect
        only when the corresponding juniEthernetIfDuplexMode object is
        simultaneously set to other than 'autoDuplex'.

        Otherwise (i.e. this object is set to 'autoNegotiate', AND/OR the
        corresponding juniEthernetIfDuplexMode object is set to 'autoDuplex'),
        speed is negotiated."
    DEFVAL    { autoNegotiate }
    ::= { juniEthernetIfEntry 3 }

juniEthernetIfMtu OBJECT-TYPE
    SYNTAX      Integer32 (64..9188)
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "The configured maximum transfer unit (MTU) for this ethernet interface.
        The operational value is reported in the corresponding Interfaces MIB
        ifMtu object."
    DEFVAL    { 1518 }
    ::= { juniEthernetIfEntry 4 }

juniEthernetIfOperDuplexMode OBJECT-TYPE
    SYNTAX      INTEGER {
                    autoDuplex(1),
                    halfDuplex(2),
                    fullDuplex(3) }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The current operational duplex mode for this ethernet interface."
    ::= { juniEthernetIfEntry 5 }

juniEthernetIfPrimaryMauType OBJECT-TYPE
    SYNTAX      JuniEthernetIfMauType
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The primary MAU type."
    DEFVAL    { mauNotPresent }
    ::= { juniEthernetIfEntry 6 }

juniEthernetIfSecondaryMauType OBJECT-TYPE
    SYNTAX      JuniEthernetIfMauType
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The secondary MAU type for those ports that support a secondary."
    DEFVAL    { mauNotSupported }
   ::= { juniEthernetIfEntry 7 }

juniEthernetIfPrimaryLength OBJECT-TYPE
    SYNTAX      Integer32 (-1..2147483647)
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The rated cable length in meters for the primary MAU.  If the value is
        0, the length is unspecified."
    DEFVAL    { 0 }
    ::= { juniEthernetIfEntry 8 }

juniEthernetIfSecondaryLength OBJECT-TYPE
    SYNTAX      Integer32 (-1..2147483647)
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The rated cable length in meters for the secondary MAU for those ports
        that support a secondary.  If the value is 0, the length is
        unspecified."
    DEFVAL    { 0 }
    ::= { juniEthernetIfEntry 9 }


-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Sub Interface Creation Mib
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
--
-- IfIndex selection for creating new Ethernet Subinterfaces
--
juniEthernetSubIfNextIfIndex OBJECT-TYPE
    SYNTAX      JuniNextIfIndex
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Coordinate ifIndex value allocation for entries in
        juniEthernetSubIfTable.

        A GET of this object returns the next available ifIndex value to be used
        to create an entry in the associated interface table; or zero, if no
        valid ifIndex value is available.  This object also returns a value of
        zero when it is the lexicographic successor of a varbind presented in an
        SNMP GETNEXT or GETBULK request, for which circumstance it is assumed
        that ifIndex allocation is unintended.

        Successive GETs will typically return different values, thus avoiding
        collisions among cooperating management clients seeking to create table
        entries simultaneously."
    ::= { juniEthernetSubIfLayer 1 }

--
-- The Ethernet Subinterface Table
--
juniEthernetSubIfTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF JuniEthernetSubIfEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "This table contains entries for Ethernet Subinterfaces present in the
        system."
    ::= { juniEthernetSubIfLayer 2 }

juniEthernetSubIfEntry OBJECT-TYPE
    SYNTAX      JuniEthernetSubIfEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "Each entry describes the characteristics of an Ethernet Subinterface.
        Creating/deleting entries in this table causes corresponding entries for
        be created/deleted in ifTable/ifXTable/juniIfTable."
    INDEX     { juniEthernetSubIfIndex }
    ::= { juniEthernetSubIfTable 1 }

JuniEthernetSubIfEntry ::= SEQUENCE {
    juniEthernetSubIfIndex           InterfaceIndex,
    juniEthernetSubIfRowStatus       RowStatus,
    juniEthernetSubIfLowerIfIndex    InterfaceIndexOrZero,
    juniEthernetSubIfId              Integer32 }

juniEthernetSubIfIndex OBJECT-TYPE
    SYNTAX      InterfaceIndex
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The ifIndex of the Ethernet Subinterface.  When creating entries in
        this table, suitable values for this object are determined by reading
        juniEthernetSubNextIfIndex."
    ::= { juniEthernetSubIfEntry 1 }

juniEthernetSubIfRowStatus OBJECT-TYPE
    SYNTAX      RowStatus
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Controls creation/deletion of entries in this table according to the
        RowStatus textual convention, constrained to support the following
        values only:
            createAndGo
            destroy

        To create an entry in this table, the following entry objects MUST be
        explicitly configured:
            juniEthernetSubIfRowStatus
            juniEthernetSubIfLowerIfIndex

        In addition, when creating an entry the following conditions must hold:

            A value for juniEthernetSubIfIndex must have been determined
            previously, by reading juniEthernetSubIfNextIfIndex.

            The interface identified by juniEthernetSubIfLowerIfIndex must
            exist, and must be a Ethernet interface.

            A positive value configured for juniEthernetSubIfId must not already
            be assigned to another subinterface layered onto the same underlying
            Ethernet interface.

        A corresponding entry in ifTable/ifXTable/juniIfTable is
        created/destroyed as a result of creating/destroying an entry in this
        table."
    ::= { juniEthernetSubIfEntry 2 }

juniEthernetSubIfLowerIfIndex OBJECT-TYPE
    SYNTAX      InterfaceIndexOrZero
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The ifIndex of a Ethernet interface over which this Ethernet
        Subinterface is to be layered.  A value of zero indicates no layering.
        An implementation may choose to require that a nonzero value be
        configured at entry creation."
    ::= { juniEthernetSubIfEntry 3 }

juniEthernetSubIfId OBJECT-TYPE
    SYNTAX      Integer32 (-1..2147483647)
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "An integer identifier for the Ethernet subinterface, used in
        conjunction with the command-line interface.  It is provided here for
        cross-reference purposes only.

        The value must be unique among subinterfaces configured on the same
        underlying Ethernet interface.

        If this object is not configured, or is configured with a value of -1, a
        nonzero value will be allocated internally and can be retrieved from
        this object after table entry creation has succeeded.

        A value of zero for this object is reserved for future use."
    DEFVAL    { -1 }
    ::= { juniEthernetSubIfEntry 4 }


-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- VLAN Major Interface Creation
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
--
-- IfIndex selection for creating new Major VLAN Interfaces
--
juniVlanMajorNextIfIndex OBJECT-TYPE
    SYNTAX      JuniNextIfIndex
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Coordinate ifIndex value allocation for entries in
        juniVlanMajorIfTable.

        A GET of this object returns the next available ifIndex value to be used
        to create an entry in the associated interface table; or zero, if no
        valid ifIndex value is available.  This object also returns a value of
        zero when it is the lexicographic successor of a varbind presented in an
        SNMP GETNEXT or GETBULK request, for which circumstance it is assumed
        that ifIndex allocation is unintended.

        Successive GETs will typically return different values, thus avoiding
        collisions among cooperating management clients seeking to create table
        entries simultaneously.  "
    ::= { juniVlanMajorIfLayer 1 }


--
-- The VLAN Major Interface Table
--
juniVlanMajorIfTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF JuniVlanMajorIfEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "This table contains entries for major VLAN interfaces present in the
        system."
    ::= { juniVlanMajorIfLayer 2 }

juniVlanMajorIfEntry OBJECT-TYPE
    SYNTAX      JuniVlanMajorIfEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "Each entry describes the characteristics of a major VLAN interface.
        Creating/deleting entries in this table causes corresponding entries for
        be created/deleted in ifTable/ifXTable/juniIfTable."
    INDEX     { juniVlanMajorIfIndex }
    ::= { juniVlanMajorIfTable 1 }

JuniVlanMajorIfEntry ::= SEQUENCE {
    juniVlanMajorIfIndex         InterfaceIndex,
    juniVlanMajorIfLowerIfIndex  InterfaceIndexOrZero,
    juniVlanMajorIfRowStatus     RowStatus }

juniVlanMajorIfIndex OBJECT-TYPE
    SYNTAX      InterfaceIndex
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The ifIndex of the major VLAN interface.  When creating entries in this
        table, suitable values for this object are determined by reading
        juniVlanMajorNextIfIndex."
    ::= { juniVlanMajorIfEntry 1 }

juniVlanMajorIfLowerIfIndex OBJECT-TYPE
    SYNTAX      InterfaceIndexOrZero
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The ifIndex of the interface over which this major VLAN interface is to
        be layered.  A value of zero indicates no layering.  An implementation
        may choose to require that a nonzero value be configured at entry
        creation."
    ::= { juniVlanMajorIfEntry 2 }

juniVlanMajorIfRowStatus OBJECT-TYPE
    SYNTAX      RowStatus
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Controls creation/deletion of entries in this table according to the
        RowStatus textual convention, constrained to support the following
        values only:
            createAndGo
            destroy

        To create or delete an entry in this table, the following entry objects
        MUST be explicitly configured:
            juniVlanMajorIfRowStatus
            juniVlanMajorIfLowerIfIndex

        In addition, when creating an entry the following conditions must hold:

            A value for juniVlanMajorIfIndex must have been determined
            previously by reading juniVlanMajorIfNextIfIndex.

            The interface identified by juniVlanMajorIfLowerIfIndex must exist.

        A corresponding entry in ifTable/ifXTable/juniIfTable is
        created/destroyed as a result of creating/destroying an entry in this
        table."
    ::= { juniVlanMajorIfEntry 3 }


-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- VLAN SubInterface Creation
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniVlanSubNextIfIndex OBJECT-TYPE
    SYNTAX      JuniNextIfIndex
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Coordinate ifIndex value allocation for entries in juniVlanSubIfTable.

        A GET of this object returns the next available ifIndex value to be used
        to create an entry in the associated interface table; or zero, if no
        valid ifIndex value is available.  This object also returns a value of
        zero when it is the lexicographic successor of a varbind presented in an
        SNMP GETNEXT or GETBULK request, for which circumstance it is assumed
        that ifIndex allocation is unintended.

        Successive GETs will typically return different values, thus avoiding
        collisions among cooperating management clients seeking to create table
        entries simultaneously."
    ::= { juniVlanSubIfLayer 1 }

--
-- The VLAN Subinterface Table
--
juniVlanSubIfTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF JuniVlanSubIfEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "This table contains entries for VLAN Subinterfaces present in the
        system."
    ::= { juniVlanSubIfLayer 2 }

juniVlanSubIfEntry OBJECT-TYPE
    SYNTAX      JuniVlanSubIfEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "Each entry describes the characteristics of a VLAN Subinterface.
        Creating/deleting entries in this table causes corresponding entries for
        be created/deleted in ifTable/ifXTable/juniIfTable."
    INDEX     { juniVlanSubIfIndex }
    ::= { juniVlanSubIfTable 1 }

JuniVlanSubIfEntry ::= SEQUENCE {
    juniVlanSubIfIndex               InterfaceIndex,
    juniVlanSubIfVlanId              Integer32,
    juniVlanSubIfVlanUntagged        TruthValue,
    juniVlanSubIfLowerIfIndex        InterfaceIndexOrZero,
    juniVlanSubIfRowStatus           RowStatus,
    juniVlanSubIfVlanStackId         Integer32,
    juniVlanSubIfVlanStackEthertype  INTEGER,
    juniVlanSubIfVlanAdvisoryRxSpeed Integer32,
    juniVlanSubIfVlanAdvisoryTxSpeed Integer32 }

juniVlanSubIfIndex OBJECT-TYPE
    SYNTAX      InterfaceIndex
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The ifIndex of the VLAN Subinterface.  When creating entries in this
        table, suitable values for this object are determined by reading
        juniVlanSubNextIfIndex."
    ::= { juniVlanSubIfEntry 1 }

juniVlanSubIfVlanId OBJECT-TYPE
    SYNTAX      Integer32 (0..4095|5000|5001)
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "An integer identifier or tag ID for this VLAN A value of zero indicates
        the default VLAN.

        When VLANs are enabled, the value must be unique among subinterfaces
        configured on the same underlying major VLAN interface.

        If the VLAN ID is non-zero, then the juniVlanSubIfVlanUntagged field
        must be disabled.

        The VLAN ID default value of 5000 indicates that the VLAN Subinterface
        has been created but the VLAN ID has yet to be assigned.

        The VLAN ID value of 5001 indicates that this VLAN Subinterface is of
        type S-VLAN any.  The juniVlanSubIfVlanStackId object should be set to a
        non-default value (i.e. this VLAN Subinterface should be a S-VLAN)."
    DEFVAL    { 5000 }
    ::= { juniVlanSubIfEntry 2 }

juniVlanSubIfVlanUntagged OBJECT-TYPE
    SYNTAX      TruthValue
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "When VLANs are enabled, this allows tagged frames to be received, while
        transmitted frames remain untagged.  This can only be enabled when the
        juniVlanSubIfVlanId field is zero."
    ::= { juniVlanSubIfEntry 3 }

juniVlanSubIfLowerIfIndex OBJECT-TYPE
    SYNTAX      InterfaceIndexOrZero
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The ifIndex of VLAN major interface over which this VLAN Subinterface
        is to be layered.  A value of zero indicates no layering.  An
        implementation may choose to require that a nonzero value be configured
        at entry creation."
    ::= { juniVlanSubIfEntry 4 }

juniVlanSubIfRowStatus OBJECT-TYPE
    SYNTAX      RowStatus
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Controls creation/deletion of entries in this table according to the
        RowStatus textual convention, constrained to support the following
        values only:
            createAndGo
            destroy

        To create an entry in this table, the following entry objects MUST be
        explicitly configured:
            juniVlanSubIfRowStatus
            juniVlanSubIfLowerIfIndex
            juniVlanSubIfVlanId
            juniVlanSubIfVlanUntagged

        To delete an entry in this table, the following entry objects MUST be
        explicitly configured:
            juniVlanSubIfRowStatus
            juniVlanSubIfLowerIfIndex

        In addition, when creating an entry the following conditions must hold:

            A value for juniVlanSubIfIndex must have been determined previously
            by reading juniVlanSubIfNextIfIndex.

            The interface identified by juniVlanSubIfLowerIfIndex must exist,
            and must be a Ethernet interface.

        A corresponding entry in ifTable/ifXTable/juniIfTable is
        created/destroyed as a result of creating/destroying an entry in this
        table."
    ::= { juniVlanSubIfEntry 5 }

juniVlanSubIfVlanStackId OBJECT-TYPE
    SYNTAX      Integer32 (0..4095|5000)
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "An integer identifier or tag ID for this S-VLAN.

        When S-VLANs are enabled, the VLAN and S-VLAN ID valuse must be unique
        among subinterfaces configured on the same underlying major VLAN
        interface.

        If the S-VLANs are enabled, then the juniVlanSubIfVlanUntagged field
        must be disabled.

        The S-VLAN ID default value of 5000 indicates that this VLAN
        Subinterface is not configured as a S-VLAN."
    DEFVAL    { 5000 }
    ::= { juniVlanSubIfEntry 6 }

juniVlanSubIfVlanStackEthertype OBJECT-TYPE
    SYNTAX      INTEGER {
                    etherType8100h(33024),
                    etherType88a8h(34984),
                    etherType9100h(37120) }
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The ethertype is used to recognize and demultiplex traffic for this
        S-VLAN.  Must be either 0x8100, 0x88a8, or 0x9100."
    DEFVAL    { etherType9100h }
    ::= { juniVlanSubIfEntry 7 }

juniVlanSubIfVlanAdvisoryRxSpeed OBJECT-TYPE
    SYNTAX      Integer32 (0..2147483647)
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Advisory receive speed, in kilobits per second (kbps),
        of this subinterface. This object has no impact on
        forwarding performance but may be used as a hint for
        underlying circuit receive speed."
    DEFVAL    { 0 }
       ::= { juniVlanSubIfEntry 8 }

juniVlanSubIfVlanAdvisoryTxSpeed OBJECT-TYPE
    SYNTAX      Integer32 (0..2147483647)
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Advisory transmit speed, in kilobits per second (kbps),
        of this subinterface. This object has no impact on
        forwarding performance but may be used as a hint for
        underlying circuit transmit speed."
    DEFVAL    { 0 }
       ::= { juniVlanSubIfEntry 9 }


-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Ethernet Interface Statistics
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- The Ethernet Interface Statistics Table
--
juniEthernetIfStatsTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF JuniEthernetIfStatsEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The parameters for the Ethernet interface statistics."
    ::= { juniEthernetIfStats 1 }

juniEthernetIfStatsEntry OBJECT-TYPE
    SYNTAX      JuniEthernetIfStatsEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The Parameters for a particular Ethernet interface statistics."
    INDEX     { juniEthernetIfStatsIndex }
    ::= { juniEthernetIfStatsTable 1 }

JuniEthernetIfStatsEntry ::= SEQUENCE {
    juniEthernetIfStatsIndex             InterfaceIndex,
    juniEthernetIfIngressLineUtilization Unsigned32,
    juniEthernetIfEgressLineUtilization  Unsigned32 }

juniEthernetIfStatsIndex OBJECT-TYPE
    SYNTAX      InterfaceIndex
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The ifIndex value of the corresponding ethernet interface."
    ::= { juniEthernetIfStatsEntry 1 }

juniEthernetIfIngressLineUtilization OBJECT-TYPE
    SYNTAX      Unsigned32 (0..100)
    UNITS       "percent"
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The ingress line utilization statistic for this ethernet interface."
    ::= { juniEthernetIfStatsEntry 2 }

juniEthernetIfEgressLineUtilization OBJECT-TYPE
    SYNTAX      Unsigned32 (0..100)
    UNITS       "percent"
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The egress line utilization statistic for this ethernet interface."
    ::= { juniEthernetIfStatsEntry 3 }


-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- LAG Interface Creation
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
--
-- IfIndex selection for creating new LAG Interfaces
--
juniLagNextIfIndex OBJECT-TYPE
    SYNTAX      JuniNextIfIndex
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Coordinate ifIndex value allocation for entries in
        juniLagIfTable.

        A GET of this object returns the next available ifIndex value to be used
        to create an entry in the associated interface table; or zero, if no
        valid ifIndex value is available.  This object also returns a value of
        zero when it is the lexicographic successor of a varbind presented in an
        SNMP GETNEXT or GETBULK request, for which circumstance it is assumed
        that ifIndex allocation is unintended.

        Successive GETs will typically return different values, thus avoiding
        collisions among cooperating management clients seeking to create table
        entries simultaneously.  "
    ::= { juniLagIfLayer 1 }

-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Notifications
-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- No notifications are defined in this MIB.  Placeholders follow.
-- juniEthernetTrapControl  OBJECT IDENTIFIER ::= { juniEthernetMIB 2 }
-- juniEthernetTraps        OBJECT IDENTIFIER ::= { juniEthernetMIB 3 }
-- juniEthernetPrefix       OBJECT IDENTIFIER ::= { juniEthernetTraps 0 }


-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Conformance information
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
juniEthernetConformance OBJECT IDENTIFIER ::= { juniEthernetMIB 4 }
juniEthernetCompliances OBJECT IDENTIFIER ::= { juniEthernetConformance 1 }
juniEthernetGroups      OBJECT IDENTIFIER ::= { juniEthernetConformance 2 }

--
-- compliance statements
--
juniEthernetCompliance  MODULE-COMPLIANCE
    STATUS      obsolete
    DESCRIPTION
        "Obsolete compliance statement for entities which implement the Juniper
        Ethernet MIB.  This statement became obsolete when support for VLANs was
        added."
    MODULE   -- this module
        MANDATORY-GROUPS {
            juniEthernetGroup,
            juniEthernetSubIfGroup }
    ::= { juniEthernetCompliances 1 }                              -- JUNOSe 2.0

juniEthernetCompliance2  MODULE-COMPLIANCE
    STATUS      obsolete
    DESCRIPTION
        "Obsolete compliance statement for entities which implement the Juniper
        Ethernet MIB.  This statement became obsolete when VLAN stack support
        was added."
    MODULE   -- this module
        MANDATORY-GROUPS {
            juniEthernetGroup,
            juniEthernetSubIfGroup }
        GROUP       juniVlanGroup
            DESCRIPTION
                "The juniVlanGroup is mandatory only for entities that support
                VLAN interfaces."
        GROUP       juniVlanSubIfGroup
            DESCRIPTION
                "The juniVlanSubIfGroup is mandatory only for entities that
                support a subinterface to major interface layer model for VLAN
                interfaces."
    ::= { juniEthernetCompliances 2 }                              -- JUNOSe 3.0

juniEthernetCompliance3  MODULE-COMPLIANCE
    STATUS      obsolete
    DESCRIPTION
        "Obsolete compliance statement for entities which implement the Juniper
        Ethernet MIB.  This statement became obsolete when MAU type and length
        support was added."
    MODULE   -- this module
        MANDATORY-GROUPS {
            juniEthernetGroup,
            juniEthernetSubIfGroup }
        GROUP       juniVlanGroup
            DESCRIPTION
                "The juniVlanGroup is mandatory only for entities that support
                VLAN interfaces."
        GROUP       juniVlanSubIfGroup2
            DESCRIPTION
                "This group is mandatory only for entities that support a
                subinterface to major interface layer model for VLAN
                interfaces."
    ::= { juniEthernetCompliances 3 }                              -- JUNOSe 4.0

juniEthernetCompliance4  MODULE-COMPLIANCE
    STATUS      obsolete
    DESCRIPTION
        "The compliance statement for entities which implement the Juniper
        Ethernet MIB.  This statement became obsolete when Ethernet interface
        statistics support was added."
    MODULE   -- this module
        MANDATORY-GROUPS {
            juniEthernetGroup2,
            juniEthernetSubIfGroup }
        GROUP       juniVlanGroup
            DESCRIPTION
                "The juniVlanGroup is mandatory only for entities that support
                VLAN interfaces."
        GROUP       juniVlanSubIfGroup2
            DESCRIPTION
                "This group is mandatory only for entities that support a
                subinterface to major interface layer model for VLAN
                interfaces."
    ::= { juniEthernetCompliances 4 }                              -- JUNOSe 4.1

juniEthernetCompliance5  MODULE-COMPLIANCE
    STATUS      obsolete
    DESCRIPTION
        "The compliance statement for entities which implement the Juniper
        Ethernet MIB."
    MODULE   -- this module
        MANDATORY-GROUPS {
            juniEthernetGroup2,
            juniEthernetSubIfGroup,
            juniEthernetIfStatsGroup }
        GROUP       juniVlanGroup
            DESCRIPTION
                "The juniVlanGroup is mandatory only for entities that support
                VLAN interfaces."
        GROUP       juniVlanSubIfGroup2
            DESCRIPTION
                "This group is mandatory only for entities that support a
                subinterface to major interface layer model for VLAN
                interfaces."
    ::= { juniEthernetCompliances 5 }                              -- JUNOSe 5.2

juniEthernetCompliance6  MODULE-COMPLIANCE
    STATUS      current
    DESCRIPTION
        "The compliance statement for entities which implement the Juniper
        Ethernet MIB."
    MODULE   -- this module
        MANDATORY-GROUPS {
            juniEthernetGroup2,
            juniEthernetSubIfGroup,
            juniEthernetIfStatsGroup }
        GROUP       juniVlanGroup
            DESCRIPTION
                "The juniVlanGroup is mandatory only for entities that support
                VLAN interfaces."
        GROUP       juniVlanSubIfGroup2
            DESCRIPTION
                "This group is mandatory only for entities that support a
                subinterface to major interface layer model for VLAN
                interfaces."
        GROUP       juniLagIfGroup
            DESCRIPTION
                "The juniLagIfGroup is mandatory only for entities that support
                LAG interfaces."
    ::= { juniEthernetCompliances 6 }                              -- JUNOSe 7.0


--
-- units of conformance
--
juniEthernetGroup  OBJECT-GROUP
    OBJECTS {
        juniEthernetIfDuplexMode,
        juniEthernetIfSpeed,
        juniEthernetIfMtu,
        juniEthernetIfOperDuplexMode }
    STATUS      obsolete
    DESCRIPTION
        "Obsolete collection of objects providing management of Ethernet
        interfaces in a Juniper product.  This group became obsolete when MAU
        type and length support was added."
    ::= { juniEthernetGroups 1 }                                   -- JUNOSe 2.0

juniEthernetSubIfGroup  OBJECT-GROUP
    OBJECTS {
        juniEthernetSubIfNextIfIndex,
        juniEthernetSubIfRowStatus,
        juniEthernetSubIfLowerIfIndex,
        juniEthernetSubIfId }
    STATUS      current
    DESCRIPTION
        "A collection of objects providing management of Ethernet SubInterfaces
        in a Juniper product."
    ::= { juniEthernetGroups 2 }                                   -- JUNOSe 2.0

juniVlanGroup  OBJECT-GROUP
    OBJECTS {
        juniVlanMajorNextIfIndex,
        juniVlanMajorIfLowerIfIndex,
        juniVlanMajorIfRowStatus }
    STATUS      current
    DESCRIPTION
        "A collection of objects providing management of Major VLAN interfaces
        in a Juniper product."
    ::= { juniEthernetGroups 3 }                                   -- JUNOSe 3.0

juniVlanSubIfGroup  OBJECT-GROUP
    OBJECTS {
        juniVlanSubNextIfIndex,
        juniVlanSubIfVlanId,
        juniVlanSubIfVlanUntagged,
        juniVlanSubIfLowerIfIndex,
        juniVlanSubIfRowStatus }
    STATUS      obsolete
    DESCRIPTION
        "Obsolete collection of objects providing management of VLAN
        SubInterfaces in a Juniper product.  This group became obsolete when
        VLAN stack support was added."
    ::= { juniEthernetGroups 4 }                                   -- JUNOSe 3.0

juniVlanSubIfGroup2  OBJECT-GROUP
    OBJECTS {
        juniVlanSubNextIfIndex,
        juniVlanSubIfVlanId,
        juniVlanSubIfVlanUntagged,
        juniVlanSubIfVlanStackId,
        juniVlanSubIfLowerIfIndex,
        juniVlanSubIfRowStatus,
        juniVlanSubIfVlanStackEthertype,
        juniVlanSubIfVlanAdvisoryRxSpeed,
        juniVlanSubIfVlanAdvisoryTxSpeed }
    STATUS      current
    DESCRIPTION
        "A collection of objects providing management of VLAN SubInterfaces in a
        Juniper product."
    ::= { juniEthernetGroups 5 }                                   -- JUNOSe 4.0

juniEthernetGroup2  OBJECT-GROUP
    OBJECTS {
        juniEthernetIfDuplexMode,
        juniEthernetIfSpeed,
        juniEthernetIfMtu,
        juniEthernetIfOperDuplexMode,
        juniEthernetIfPrimaryMauType,
        juniEthernetIfSecondaryMauType,
        juniEthernetIfPrimaryLength,
        juniEthernetIfSecondaryLength }
    STATUS      current
    DESCRIPTION
        "A collection of objects providing management of Ethernet interfaces in
        a Juniper product."
    ::= { juniEthernetGroups 6 }                                   -- JUNOSe 4.1

juniEthernetIfStatsGroup  OBJECT-GROUP
    OBJECTS {
        juniEthernetIfIngressLineUtilization,
        juniEthernetIfEgressLineUtilization }
    STATUS      current
    DESCRIPTION
        "A collection of objects providing Ethernet interface statistics in
        a Juniper product."
    ::= { juniEthernetGroups 7 }                                   -- JUNOSe 5.2

juniLagIfGroup  OBJECT-GROUP
    OBJECTS {
        juniLagNextIfIndex }
    STATUS      current
    DESCRIPTION
        "A collection of objects providing management of LAG interfaces in
        a Juniper product."
    ::= { juniEthernetGroups 8 }                                   -- JUNOSe 7.0

END