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


Configuring a PPPoE Interface

To configure a PPPoE interface over the underlying Fast Ethernet or ATM interface, perform the following tasks:

  1. Specify the logical Ethernet interface or the logical ATM interface as the underlying interface for the PPPoE session by including the underlying-interface statement:
  2. underlying-interface interface-name;
    
    
    

You can include this statement at the following hierarchy levels:

The underlying interface can be an ATM, Fast Ethernet, or Gigabit Ethernet logical interface—for example, at-0/0/1.0 (ATM VC), fe-1/0/1.0 (Fast Ethernet interface), or ge-2/0/0 (Gigabit Ethernet interface).

  1. Identify the access concentrator by a unique name by including the access-concentrator statement:
  2. access-concentrator name;
    
    
    

You can include this statement at the following hierarchy levels:

  1. By default, after a PPPoE session is terminated, the session attempts to reconnect immediately. To specify how many seconds to wait before attempting to reconnect, include the auto-reconnect statement:
  2. auto-reconnect seconds;
    
    
    

You can include this statement at the following hierarchy levels:

You can configure the reconnection attempt to occur in 0 through 4,294,967,295 seconds after the session terminates.

  1. Identify the type of service provided by the access concentrator—such as the name of the Internet service provider (ISP), class, or quality of service—by including the service-name statement:
  2. service-name name;
    
    
    

You can include this statement at the following hierarchy levels:

  1. Configure the maximum transmission unit (MTU) of the protocol by including the mtu statement at the [edit interfaces pp0] hierarchy level:
  2. [edit interfaces pp0]
    
    mtu bytes;
    
    
    
  3. Configure the PPPoE interface address in one of the following ways:

You can include these statements at the following hierarchy levels:

You can include these statements at the following hierarchy levels:

You can include this statement at the following hierarchy levels:

  1. Configure the maximum transmission unit (MTU) size for the family. Specify a range from 0 through 5012 bytes. To set the MTU, include the mtu statement:
  2. mtu bytes;
    
    
    

You can include this statement at the following hierarchy levels:

  1. Disable the sending of keepalives on a logical interface by including the no-keepalives statement:
  2. no-keepalives;
    
    
    

You can include this statement at the following hierarchy levels:

Example: Configuring a PPPoE Interface

Configure a PPPoE over ATM-over-ADSL interface:

[edit interfaces]
at-2/0/0 {
    encapsulation ethernet-over-atm;
    atm-options {
        vpi 0;
    }
    dsl-options {
        operating-mode auto;
    }
    unit 0 {
        encapsulation ppp-over-ether-over-atm-llc;
        vci 0.120;
    }
}
pp0 {
    mtu 1492;
    unit 0 {
        ppp-options {
            chap {
                access-profile A-ppp-client;
                local-name A-at-2/0/0.0;
            }
        }
        pppoe-options {
            underlying-interface at-2/0/0;
            access-concentrator ispl.com;
            service-name "video@ispl.com";
            auto-reconnect 100;
        }
        no-keepalives;
        family inet {
            negotiate-address;
            mtu 100;
        }
        family inet6 {
            negotiate-address;
            mtu 200;
        }
        family mpls {
            negotiate-address;
            mtu 300;
        }
    }
}

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