Configure an NxT1 bundle using FRF.15 on a link services IQ interface.
FRF.15 is similar to FRF.12, as described in Configuring a Single Fractional T1 Interface Using FRF.12. The difference is that FRF.15 supports multiple physical links in a bundle, whereas FRF.12 supports only one physical link per bundle. For the JUNOS software implementation of FRF.15, you can configure one DLCI per physical link.
- [edit interfaces]
- lsq-1/3/0 {
- per-unit-scheduler;
-
- unit 0 {
- encapsulation multilink-frame-relay-end-to-end;
- }
- }
- unit 1 {
- encapsulation multilink-frame-relay-end-to-end;
- }
- # First physical link
- t1-1/1/0:1 {
- encapsulation frame-relay;
-
- unit 0 {
- dlci 69;
-
- family mlfr-end-to-end {
- bundle lsq-1/3/0.0;
- }
- }
- }
- # Second physical link
- t1-1/1/0:2 {
- encapsulation frame-relay;
-
- unit 0 {
- dlci 13;
-
- family mlfr-end-to-end {
- bundle lsq-1/3/0.0;
- }
- }
- }