Configuration procedure

  1. Configure Router A:

    # Create interface MFR 2/0/1, and assign an IP address to the interface.

    <RouterA> system-view
    [RouterA] interface mfr 2/0/1
    [RouterA-MFR2/0/1] ip address 10.140.10.1 255.255.255.0
    

    # Set the type of the interface to DTE.

    [RouterA-MFR2/0/1] fr interface-type dte
    

    # Configure a static Frame Relay address-to-DLCI map for the interface.

    [RouterA-MFR2/0/1] fr map ip 10.140.10.2 100
    [RouterA-MFR2/0/1] quit
    

    # Bind Serial 2/1/0 and Serial 2/1/1 to MFR 2/0/1.

    [RouterA] interface serial 2/1/0
    [RouterA-Serial2/1/0] link-protocol mfr
    [RouterA-Serial2/1/0] fr mfr mfr2/0/1
    [RouterA-Serial2/1/0] quit
    [RouterA] interface serial 2/1/1
    [RouterA-Serial2/1/1] link-protocol mfr
    [RouterA-Serial2/1/1] fr mfr mfr2/0/1
    [RouterA-Serial2/1/1] quit
    
  2. Configure Router B:

    # Create interface MFR 2/0/1, and assign an IP address to the interface.

    <RouterB> system-view
    [RouterB] interface mfr 2/0/1
    [RouterB-MFR2/0/1] ip address 10.140.10.2 255.255.255.0
    

    # Set the type of the interface to DCE.

    [RouterB-MFR2/0/1] fr interface-type dce
    

    # Create a virtual circuit for the interface.

    [RouterB-MFR2/0/1] fr dlci 100
    [RouterB-MFR2/0/1-fr-dlci-100] quit
    

    # Configure a static Frame Relay address-to-DLCI map for the interface.

    [RouterB-MFR2/0/1] fr map ip 10.140.10.1 100
    [RouterB-MFR2/0/1] quit
    

    # Bind Serial 2/1/0 and Serial 2/1/1 to MFR 2/0/1.

    [RouterB] interface serial 2/1/0
    [RouterB-Serial2/1/0] link-protocol mfr
    [RouterB-Serial2/1/0] fr mfr mfr2/0/1
    [RouterB-Serial2/1/0] quit
    [RouterB] interface serial 2/1/1
    [RouterB-Serial2/1/1] link-protocol mfr
    [RouterB-Serial2/1/1] fr mfr mfr2/0/1
    [RouterB-Serial2/1/1] quit