Description

This article explains how to enable 10G ports on PTX10008 chassis running Junos OS Evolved (20.4R2-EVO).

Symptoms

I need to connect end host with the 10G link to PTX10008 chassis. The line card type is JNP10K-LC1201. The JNP10K-LC1201 supports the following transceiver types:

  • QSFP+ (40G)
  • QSFP28 (100G)
  • QSFP-DD (400G)

For the complete list of supported transceiver types, refer to Juniper's  Hardware Compatibility Tool .

Solution

The solution is to channelize 40-Gigabit Ethernet Port into four 10-Gigabit Ethernet channels using QSFP+ 40G breakout transceiver (QSFP+-4X10G-LR).

user@router-re0# run show chassis hardware
Hardware inventory:
Item             Version  Part number  Serial number     Description
Chassis                                EQ793             JNP10008 [PTX10008]
Midplane 0       REV 16   750-086802   BCBS5097          Midplane 8
Routing Engine 0          BUILTIN      BUILTIN           JNP10K-RE1-E
Routing Engine 1          BUILTIN      BUILTIN           JNP10K-RE1-E
CB 0             REV 06   750-101345   BCBR7152          Control Board
CB 1             REV 06   750-101345   BCBS0046          Control Board
FPC 1            REV 38   750-093524   BCBR9420          JNP10K-LC1201
  CPU            REV 10   750-087304   BCBR6916          JNP10K-LC1201 PMB Board
  PIC 0                   BUILTIN      BUILTIN           JNP10K-36QDD-LC-PIC
    Xcvr 0       REV 01   740-082823   1G1CZAA52800L     QSFP56-DD-400GBASE-LR8
    Xcvr 1       REV 01   740-058732   1GCQA4080P7       QSFP-100GBASE-LR4

    Xcvr 30      REV 01   740-057315   INGBU8400337      QSFP+-4X10G-LR              
    Xcvr 31      REV 01   740-032986   QE510518          QSFP+-40G-SR4
  MEZZ 0         REV 10   711-084968   BCBR6931          JNP10K-LC1201 MEZZ Board


By default, all ports operate in 400-Gigabit Ethernet mode:

user@router-re0# run show interfaces terse | match et-1/0/30
et-1/0/30               up    down

user@router-re0# run show interfaces et-1/0/30 | match speed
  Link-level type: Ethernet, MTU: 1514, LAN-PHY mode, Speed: 400Gbps , BPDU Error: None, Loop Detect PDU Error: None, MAC-REWRITE Error: None, Loopback: Disabled, Source filtering: Disabled,


To configure et-1/0/30 port to operate as 10-Gigabit Ethernet channels:

user@router-re0# set interfaces et-1/0/30 speed 10g
user@router-re0# set interfaces et-1/0/30 number-of-sub-ports 4
user@router-re0# show | compare
[edit interfaces]
+   et-1/0/30 {
+       number-of-sub-ports 4;
+       speed 10g;
+   }
user@router-re0# commit

After committing the above config, et-1/0/30 port will be channelized to four 10G ports with names et-1/0/30:0 - et-1/0/30:3
 
user@router-re0# run show interfaces terse | match et-1/0/30
et-1/0/30:0             up    up
et-1/0/30:1             up    up
et-1/0/30:2             up    up
et-1/0/30:3             up    up

user@router-re0# run show interfaces et-1/0/30:0 | match speed
  Link-level type: Ethernet, MTU: 1514, LAN-PHY mode, Speed: 10Gbps , BPDU Error: None, Loop Detect PDU Error: None, MAC-REWRITE Error: None, Loopback: Disabled, Source filtering: Disabled,

The needed config can be applied to the respective 10g port:
 
user@router-re0# set interfaces et-1/0/30:0 unit 0 family inet address 192.168.2.1/24
user@router-re0# commit

user@router-re0# run ping 192.168.2.2 count 3
PING 192.168.2.2 (192.168.2.2) 56(84) bytes of data.
64 bytes from 192.168.2.2: icmp_seq=1 ttl=64 time=1.50 ms
64 bytes from 192.168.2.2: icmp_seq=2 ttl=64 time=0.653 ms
64 bytes from 192.168.2.2: icmp_seq=3 ttl=64 time=0.754 ms

--- 192.168.2.2 ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 2035ms
rtt min/avg/max/mdev = 0.653/0.970/1.505/0.381 ms


Notes: 
  • The above shown configuration example is applicable for software releases from Junos OS Evolved 20.1R2 and later. 
  • For software releases from Junos OS Evolved 19.4R1-S1 up to Junos OS Evolved 20.1R2 the configuration is done under chassis hierarchy.

Related Information