confd.ppp0 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # /etc/conf.d/net.ppp0:
  2. # Config file for /etc/init.d/net.ppp0
  3. PEER="MyPeer" # Define peer (aka ISP)
  4. DEBUG="no" # Turn on debugging
  5. PERSIST="no" # Redial after being dropped
  6. ONDEMAND="no" # Only bring the interface up on demand?
  7. MODEMPORT="/dev/ttyS1" # TTY device modem is connected to
  8. LINESPEED="115200" # Speed pppd should try to connect at
  9. INITSTRING="" # Extra init string for the modem
  10. DEFROUTE="yes" # Must pppd set the default route?
  11. HARDFLOWCTL="yes" # Use hardware flow control?
  12. ESCAPECHARS="yes" # Use escape caracters ?
  13. PPPOPTIONS="" # Extra options for pppd
  14. USERNAME="user" # The PAP/CHAP username
  15. PASSWORD="passwd" # Your password/secret. Ugly I know, but i
  16. # will work on something more secure later
  17. # on. 700 permission on /etc/init.d/net.ppp0
  18. # should be enouth for now.
  19. NUMBER="9180000" # The telephone number of your ISP
  20. # leave blank for leased-line operation.
  21. REMIP="" # The ip of the remote box if it should be set
  22. NETMASK="" # Netmask
  23. IPADDR="" # Our IP if we have a static one
  24. MRU="768" # Sets the MRU
  25. MTU="768" # Sets the MTU
  26. RETRYTIMEOUT="60" # Retry timeout for when ONDEMAND="yes" or
  27. # PERSIST="yes"
  28. IDLETIMEOUT="600" # Idle timeout for when ONDEMAND="yes"
  29. PEERDNS="no" # Should pppd set the peer dns?
  30. AUTOCFGFILES="yes" # By default this scripts will generate
  31. # /etc/ppp/chat-isp, /etc/ppp/chap-secrets,
  32. # /etc/ppp/pap-secrets and /etc/ppp/peers/isp
  33. # automatically. Set to "no" if you experience
  34. # problems, or need specialized scripts. You
  35. # will have to create these files by hand then.
  36. AUTOCHATSCRIPT="yes" # By default this script iwll generate
  37. # /etc/ppp/chat-${PEER} automatically. Set to "no"
  38. # if you experience problems, or need specialized
  39. # scripts. You will have to create these files by
  40. # hand then.
  41. # Directory where the templates is stored
  42. TEMPLATEDIR=/etc/ppp