# kernel space PPPOE driver example configuration
#
# See the manual page pppd(8) for information on all the options.

# MUST CHANGE: Uncomment the following line, replacing the user@provider.net
# by the DSL user name given to your by your DSL provider.
# There should be a matching entry with the password in /etc/ppp/pap-secrets
# and/or /etc/ppp/chap-secrets.
#user "myusername@myprovider.net"

# load the pppoe plugin. Change the ethernet interface name if needed
plugin rp-pppoe.so
eth0

# Assumes that your IP address is allocated dynamically
# by your DSL provider...
noipdefault
# Try to get the name server addresses from the ISP.
usepeerdns
# Use this connection as the default route.
# Comment out if you already have the correct default route installed.
defaultroute

# Uncomment if your DSL provider charges by minute connected
# and you want to use demand-dialing. 
#
# Disconnect after 300 seconds (5 minutes) of idle time.
#demand
#idle 300

# Makes pppd "dial again" when the connection is lost.
persist

# You shouldn't need to change these options unless your ISP does not
# support LCP echo requests.
lcp-echo-interval 20
lcp-echo-failure 3

# Override any connect script that may have been set in /etc/ppp/options.
hide-password
connect /bin/true
noauth

# RFC 2516, paragraph 7 mandates that the following options MUST NOT be
# requested and MUST be rejected if requested by the peer:
# Address-and-Control-Field-Compression (ACFC)
noaccomp
# Asynchronous-Control-Character-Map (ACCM)
default-asyncmap

# do not try to negotiate other kinds of compression
nopcomp
noccp
novj

