[ 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:

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:

You can include this statement at the following hierarchy levels:

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:

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:

You can include this statement at the following hierarchy levels:

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:

You can include this statement at the following hierarchy levels:

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]