[Contents] [Prev] [Next] [Index] [Report an Error] [No Frames]


Configuration Tasks

MLFR configuration consists of three major tasks, each with several steps:

  1. Create the member links to be aggregated into a multilink bundle.
  1. Specify the interface on which you want to configure MLFR.
  2. host1(config)#interface serial 2/0:1
    
    
    
  3. Specify MLFR as the encapsulation method on the interface.
  4. host1(config-if)#encapsulation mlframe-relay ietf
    
    
    
  1. Add member links to a multilink bundle.
  1. Define the MLFR bundle.
  2. host1(config)#interface mlframe-relay boston
    
    
    
  3. Add each member link.
  4. host1(config-if)#member-interface serial 2/0:1
    
    
    
  5. (Optional) Add a description to the major interface.
  6. host1(config-if)#frame-relay description bostonBundleDescription
    
    
    
  7. (Optional) Configure Frame Relay parameters.
  8. host1(config-if)#frame-relay intf-type dce
    
    host1(config-if)#frame-relay lmi-type cisco
    
    
    
  1. Configure the Frame Relay subinterface.
  1. Define the subinterface for the MLFR bundle.
  2. host1(config)#interface mlframe-relay boston.1
    
    
    
  3. Assign a DLCI for the subinterface.
  4. host1(config-subif)#frame-relay interface-dlci 16 ietf
    
    
    
  5. (Optional) Add a description to the subinterface.
  6. host1(config-subif)#frame-relay description bostonBundleSubOneDescription
    
    
    
  7. Assign an IP address to the subinterface.
  8. host1(config-subif)#ip address 10.10.100.1 255.255.255.0
    

Configuration Example

The following commands configure three T1 lines and aggregate them into a multilink bundle named boston.

host1(config)#interface serial 2/0:1
host1(config-if)#encapsulation mlframe-relay ietf
host1(config-if)#exit
host1(config)#interface serial 2/0:2
host1(config-if)#encapsulation mlframe-relay ietf
host1(config-if)#exit
host1(config)#interface serial 2/0:3
host1(config-if)#encapsulation mlframe-relay ietf
host1(config-if)#exit
host1(config)#interface mlframe-relay boston
host1(config-if)#member-interface serial 2/0:1
host1(config-if)#frame-relay description bostonBundleDescription
host1(config-if)#frame-relay intf-type dce
host1(config-if)#frame-relay lmi-type cisco
host1(config-if)#member-interface serial 2/0:2
host1(config-if)#member-interface serial 2/0:3
host1(config-if)#exit
host1(config)#interface mlframe-relay boston.1
host1(config-subif)frame-relay description bostonBundleSubOneDescription
host1(config-subif)#frame-relay interface-dlci 16 ietf
host1(config-subif)#ip address 10.10.100.1 255.255.255.0

Configuring Frame Relay Versus MLFR

All the configuration commands that apply to Frame Relay also apply to MLFR. The following listing describes commands specific to configuring MLFR; for other Frame Relay commands, see Chapter 2, Configuring Frame Relay.

encapsulation mlframe-relay ietf

interface mlframe-relay

member-interface


[Contents] [Prev] [Next] [Index] [Report an Error] [No Frames]