Help us improve your experience.

Let us know what you think.

Do you have time for a two-minute survey?

header-navigation
keyboard_arrow_up
list Table of Contents
file_download PDF
{ "lLangCode": "en", "lName": "English", "lCountryCode": "us", "transcode": "en_US" }
English
keyboard_arrow_right

Examples: Bundling Multiple PPP Links on a Single Link Using MLPPP

date_range 13-Jun-24

Example: Configuring an MLPPP Bundle

This example shows how to configure an MLPPP bundle to increase traffic bandwidth.

Requirements

Before you begin, you should have two MX Series routers (MX240, MX480, or MX960 routers) configured with at least two serial interfaces that communicate over serial links.

Overview

In this example, you create the MLPPP bundle lsq-0/0/0.0 at the logical unit level of the link services interface lsq-0/0/0 on the MX Series routers R0 and R1. You then add the two serial interfaces se-1/0/0 and se-1/0/1 as constituent links to the multilink bundle. In Figure 1, your company's branch office is connected to its main branch using routers R0 and R1. You transmit data and voice traffic on two low-speed 1-Mbps serial links. To increase bandwidth, you configure MLPPP and join the two serial links se-1/0/0 and se-1/0/1 into the multilink bundle lsq-0/0/0.0. Then you configure LFI and CoS on R0 and R1 to enable them to transmit voice packets ahead of data packets.

Figure 1: Configuring MLPPP and LFI on Serial LinksConfiguring MLPPP and LFI on Serial Links

Configuration

Procedure

CLI Quick Configuration

To quickly configure this example, copy the following commands, paste them into a text file, remove any line breaks, change any details necessary to match your network configuration, and then copy and paste the commands into the CLI at the [edit] hierarchy level.

content_copy zoom_out_map
For device R0
set interfaces lsq-0/0/0 unit 0 family inet address 10.0.0.10/24
set interfaces se-1/0/0 unit 0 family mlppp bundle lsq-0/0/0.0 
set interfaces se-1/0/1 unit 0 family mlppp bundle lsq-0/0/0.0 
set interfaces se-1/0/0 serial-options clocking-mode dce clock-rate 2.0mhz 
set interfaces se-1/0/1 serial-options clocking-mode dce clock-rate 2.0mhz 
content_copy zoom_out_map
For device R1
set interfaces lsq-0/0/0 unit 0 family inet address 10.0.0.9/24 
set interfaces se-1/0/0 unit 0 family mlppp bundle lsq-0/0/0.0 
set interfaces se-1/0/1 unit 0 family mlppp bundle lsq-0/0/0.0 
Step-by-Step Procedure

The following example requires you to navigate various levels in the configuration hierarchy. For instructions on how to do that, see Using the CLI Editor in Configuration Mode in the Junos OS CLI User Guide.

To configure MLPPP bundle:

  1. Create an interface on both the routers.

    content_copy zoom_out_map
    [edit]
    user@host# edit interfaces lsq-0/0/0 unit 0
    
  2. Configure a family inet and define the IP address on device R0.

    content_copy zoom_out_map
    [edit interfaces lsq-0/0/0 unit 0]
    user@host# set family inet address 10.0.0.10/24
    
  3. Configure a family inet and define the IP address on device R1.

    content_copy zoom_out_map
    [edit interfaces lsq-0/0/0 unit 0]
    user@host# set family inet address 10.0.0.9/24
    
  4. Specify the names of the constituent links to be added to the multilink bundle on both the routers.

    content_copy zoom_out_map
    [edit interfaces]
    user@host# edit se-1/0/0 unit 0
    user@host# set family mlppp bundle lsq-0/0/0.0
    [edit interfaces]
    user@host# edit se-1/0/1 unit 0
    user@host# set family mlppp bundle lsq-0/0/0.0
    
  5. Set the serial options to the same values for both interfaces on R0.

    Note:

    R0 is set as a DCE device. The serial options are not set for interfaces on R1. You can set the serial options according to your network setup.

    content_copy zoom_out_map
    [edit interfaces]
    user@host# set se-1/0/0 serial-options clocking-mode dce clock-rate 2.0mhz
    user@host# set se-1/0/1 serial-options clocking-mode dce clock-rate 2.0mhz
    
Results

From configuration mode, confirm your configuration by entering the show interfaces lsq-0/0/0, show interfaces se-1/0/0, and show interfaces se-1/0/1 commands for R0 and R1. If the output does not display the intended configuration, repeat the configuration instructions in this example to correct it.

content_copy zoom_out_map
For device R0
[edit]
    user@host# show interfaces lsq-0/0/0
family inet {
    address 10.0.0.10/24;
        }
    }
[edit]
user@host# show interfaces se-1/0/0
    clocking-mode dce;
        clock-rate 2.0mhz;
        }
        unit 0 {
            family mlppp {
            bundle lsq-0/0/0.0;
        }
    }
[edit]
    user@host# show interfaces se-1/0/1
serial-options {
    clocking-mode dce;
        clock-rate 2.0mhz;
        }
        unit 0 {
            family mlppp {
            bundle lsq-0/0/0.0;
        }
    }
content_copy zoom_out_map
For device R1
[edit]
user@host# show interfaces lsq-0/0/0
    family inet {
        address 10.0.0.9/24;
        }
    }
[edit]
    user@host# show interfaces se-1/0/0
    unit 0 {
    family mlppp {
        bundle lsq-0/0/0.0;
    }
}
[edit]
    user@host# show interfaces se-1/0/1
    unit 0 {
    family mlppp {
        bundle lsq-0/0/0.0;
    }
}

If you are done configuring the router, enter commit from configuration mode.

Verification

Confirm that the configuration is working properly:

Verifying the MLPPP Bundle

Purpose

Verify that the constituent links are added to the bundle correctly.

Action

From operational mode, enter the show interfaces lsq-0/0/0 statistics command.

footer-navigation