To configure a PPPoE interface over the underlying Fast Ethernet or ATM interface, perform the following tasks:
-
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).
-
access-concentrator name;
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.
-
service-name name;
You can include this statement at the following hierarchy levels:
- [edit interfaces pp0]
-
mtu bytes;
-
address address destination address;
You can include these statements at the following hierarchy levels:
-
unnumbered-address interface-name destination address;
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:
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;
- }
- }
- }