This section includes the following topics:
On a one-port Channelized STM1 IQ PIC, or each individual ports of the 4-port Channelized STM1 IQE PIC, you can configure one SDH STM1 interface. To configure an SDH STM1 interface, include the no-partition interface-type statement at the [edit interfaces cstm1-fpc/pic/port] hierarchy level, specifying the so interface type:
- [edit interfaces cstm1-fpc/pic/port]
-
no-partition interface-type so;
This configuration creates interface so-fpc/pic/port.
![]() |
Note: Class-of-service (CoS) rules cannot be applied to an individual channel configured on channelized IQ and IQE interfaces. You can only apply CoS rules to the aggregate bit streams. |
To configure an E1 interface on a Channelized STM1 IQ or IQE PIC, you must perform the following tasks:
- [edit interfaces cstm1-fpc/pic/port]
-
no-partition interface-type cau4;
- [edit interfaces cau4-fpc/pic/port]
-
partition partition-number interface-type e1;
![]() |
Note: Class-of-service (CoS) rules cannot be applied to an individual channel configured on channelized IQ or IQE interfaces. You can only apply CoS rules to the aggregate bit streams. |
![]() |
Note: For channelized STM1 interfaces, channel numbering begins with 0 (:0). For channelized STM1 IQ and IQE interfaces, channel numbering begins with 1 (:1). |
Configure the following five E1 interfaces:
- [edit interfaces cstm1-0/0/0]
- no-partition interface-type cau4;
- [edit interfaces cau4-0/0/0]
- partition 1-5 interface-type e1;
For a full configuration example, see the JUNOS Feature Guide.
By default, all the time slots on a channelized E1 interface are used. To configure a fractional E1 interface on a Channelized STM1 IQ or IQE PIC, you must perform the following tasks:
- [edit interfaces cstm1-fpc/pic/port]
-
no-partition interface-type cau4;
- [edit interfaces cau4-fpc/pic/port]
-
partition partition-number interface-type e1;
- [edit interfaces e1-fpc/pic/port:channel e1-options]
-
timeslots time-slot-range;
![]() |
Note: For channelized STM1 interfaces, channel numbering begins with 0 (:0). For channelized STM1 IQ or IQE interfaces, channel numbering begins with 1 (:1). |
For more information about E1 time slots, see Configuring Fractional E1 Time Slots.
Configure a fractional E1 interface that uses time slots 2 through 10:
- [edit interfaces cstm1-0/0/0]
- no-partition cau4;
- [edit interfaces cau4-0/0/0]
- partition 1 interface-type e1;
- [edit interfaces e1-0/0/0 e1-options]
- timeslots 2-10;
For a full configuration example, see the JUNOS Feature Guide.
By default, all the time slots on a channelized STM1 interface are used. To configure an NxDS0 IQ interface on a Channelized STM1 IQ or IQE PIC, you must perform the following tasks:
- [edit interfaces cstm1-fpc/pic/port]
-
no-partition interface-type cau4;
- [edit interfaces cau4-fpc/pic/port]
-
partition partition-number interface-type ce1;
- [edit interfaces ce1-fpc/pic/port:channel]
-
partition partition-number timeslots time-slot-range interface-type ds;
![]() |
Note: Class-of-service (CoS) rules cannot be applied to an individual channel configured on channelized IQ and IQE interfaces. You can only apply CoS rules to the aggregate bit streams. |
![]() |
Note: For channelized STM1 interfaces, channel numbering begins with 0 (:0). For channelized STM1 IQ and IQE interfaces, channel numbering begins with 1 (:1). |
For more information about E1 time slots, see Configuring Fractional E1 Time Slots.
Configure an NxDS0 interface that uses time slots 1 through 10. This configuration creates the ds-0/0/0:1:1 interface.
- [edit interfaces cstm1-0/0/0]
- no-partition interface-type cau4;
- [edit interfaces cau4-0/0/0]
- partition 1 interface-type ce1;
- [edit interfaces ce1-0/0/0:1]
- partition 1 timeslots 1-10 interface-type ds;
For a full configuration example, see the JUNOS Feature Guide.
Configure STM1, E1, fractional E1, and NxDS0 interfaces:
STM1 Interface
- [edit interfaces]
- cstm1-0/0/0 {
- no-partition interface-type so;
- }
- so-0/0/0 {
-
- unit 0 {
-
- family inet {
- address 10.10.12.1/30;
- }
- }
- }
E1 Interface
- [edit interfaces]
- cstm1-1/1/0 {
- no-partition interface-type cau4;
- }
- [edit interfaces]
- cau4-1/1/0 {
- partition 1-63 interface-type e1;
- }
- [edit interfaces]
- e1-1/1/0:1 {
-
- unit 0 {
-
- family inet {
- address 10.10.10.1/30;
- }
- }
- }
- ...
Fractional E1 Interface
- [edit interfaces]
- cstm1-1/0/0 {
- no-partition interface-type cau4;
- }
- [edit interfaces]
- cau4-1/0/0 {
- partition 1-63 interface-type e1;
- }
- [edit interfaces]
- e1-1/1/0:1 {
-
- e1-options {
- timeslots 2-10;
- }
-
- unit 0 {
-
- family inet {
- address 10.10.10.1/30;
- }
- }
- }
- ...
DS0 Interface
- [edit interfaces]
- cstm1-2/0/0 {
- no-partition interface-type cau4;
- }
- [edit interfaces]
- cau4-2/0/0 {
- partition 1-10 interface-type ce1;
- }
- [edit interfaces]
- ce1-2/0/0:1 {
- partition 1 interface-type ds timeslots 2-10;
- [edit interfaces]
-
- ds-2/0/0:1:1 {
-
- unit 0 {
-
- family inet {
- address 10.12.12.1/30;
- }
- }
- }
- ...
- }
For a full configuration example, see the JUNOS Feature Guide.