home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / share / doc / ppp / examples / peers-pppoe < prev    next >
Encoding:
Text File  |  2006-07-10  |  791 b   |  30 lines

  1. # example configuration for the kernel space PPP over Ethernet driver
  2. #
  3. # See the manual page pppd(8) for information on all the options.
  4.  
  5. # MUST CHANGE: replace myusername@realm with the PPP login name given to
  6. # your by your provider.
  7. # There should be a matching entry with the password in /etc/ppp/pap-secrets
  8. # and/or /etc/ppp/chap-secrets.
  9. user "myusername@realm"
  10.  
  11. # Load the PPPoE plugin.
  12. plugin rp-pppoe.so
  13.  
  14. # Ethernet interface to which the modem is connected.
  15. eth0
  16.  
  17. # Assumes that your IP address is allocated dynamically by the ISP.
  18. noipdefault
  19. # Try to get the name server addresses from the ISP.
  20. usepeerdns
  21. # Use this connection as the default route.
  22. defaultroute
  23.  
  24. # Makes pppd "dial again" when the connection is lost.
  25. persist
  26.  
  27. # Do not ask the remote to authenticate.
  28. noauth
  29.  
  30.