home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 February / PCWorld_2000-02_cd.bin / live / etc / ppp / options < prev    next >
Text File  |  1998-06-18  |  10KB  |  279 lines

  1. # /etc/ppp/options
  2. # $Id: options,v 1.4 1996/05/01 18:57:04 alvar Exp $
  3. # Originally created by Jim Knoble <jmknoble@mercury.interpath.net>
  4. # Modified for Debian by alvar Bray <alvar@meiko.co.uk>
  5. # Modified for PPP Server setup by Christoph Lameter <clameter@debian.org>
  6. #
  7. # Use the command  egrep -v '#|^ *$' /etc/ppp/options to quickly see what 
  8. # options are active in this file.
  9.  
  10. # Specify which DNS Servers the incoming Win95 or WinNT Connection should use
  11. # Two Servers can be remotely configured
  12. # ms-dns 192.168.1.1
  13. # ms-dns 192.168.1.2
  14.  
  15. # Specify which WINS Servers the incoming connection Win95 or WinNT should use
  16. # ms-wins 192.168.1.50
  17. # ms-wins 192.168.1.51
  18.  
  19. # Run the executable or shell command specified after pppd has
  20. # terminated the link.  This script could, for example, issue commands
  21. # to the modem to cause it to hang up if hardware modem control signals
  22. # were not available.
  23. #disconnect "chat -- \d+++\d\c OK ath0 OK"
  24.  
  25. # async character map -- 32-bit hex; each bit is a character
  26. # that needs to be escaped for pppd to receive it.  0x00000001
  27. # represents '\x01', and 0x80000000 represents '\x1f'.
  28. asyncmap 0
  29.  
  30. # Require the peer to authenticate itself before allowing network
  31. # packets to be sent or received.
  32. # Please do not disable this setting. It is expected to be standard in
  33. # future releases of pppd. Use the call option (see manpage) to disable
  34. # authentication for specific peers.
  35. auth
  36.  
  37. # Use hardware flow control (i.e. RTS/CTS) to control the flow of data
  38. # on the serial port.
  39. crtscts
  40.  
  41. # Use software flow control (i.e. XON/XOFF) to control the flow of data
  42. # on the serial port.
  43. #xonxoff
  44.  
  45. # Specifies that certain characters should be escaped on transmission
  46. # (regardless of whether the peer requests them to be escaped with its
  47. # async control character map).  The characters to be escaped are
  48. # specified as a list of hex numbers separated by commas.  Note that
  49. # almost any character can be specified for the escape option, unlike
  50. # the asyncmap option which only allows control characters to be
  51. # specified.  The characters which may not be escaped are those with hex
  52. # values 0x20 - 0x3f or 0x5e.
  53. #escape 11,13,ff
  54.  
  55. # Don't use the modem control lines.
  56. #local
  57.  
  58. # Specifies that pppd should use a UUCP-style lock on the serial device
  59. # to ensure exclusive access to the device.
  60. lock
  61.  
  62. # Use the modem control lines.  On Ultrix, this option implies hardware
  63. # flow control, as for the crtscts option.  (This option is not fully
  64. # implemented.)
  65. modem
  66.  
  67. # Set the MRU [Maximum Receive Unit] value to <n> for negotiation.  pppd
  68. # will ask the peer to send packets of no more than <n> bytes. The
  69. # minimum MRU value is 128.  The default MRU value is 1500.  A value of
  70. # 296 is recommended for slow links (40 bytes for TCP/IP header + 256
  71. # bytes of data).
  72. #mru 542
  73.  
  74. # Set the interface netmask to <n>, a 32 bit netmask in "decimal dot"
  75. # notation (e.g. 255.255.255.0).
  76. #netmask 255.255.255.0
  77.  
  78. # Disables the default behaviour when no local IP address is specified,
  79. # which is to determine (if possible) the local IP address from the
  80. # hostname. With this option, the peer will have to supply the local IP
  81. # address during IPCP negotiation (unless it specified explicitly on the
  82. # command line or in an options file).
  83. #noipdefault
  84.  
  85. # Enables the "passive" option in the LCP.  With this option, pppd will
  86. # attempt to initiate a connection; if no reply is received from the
  87. # peer, pppd will then just wait passively for a valid LCP packet from
  88. # the peer (instead of exiting, as it does without this option).
  89. #passive
  90.  
  91. # With this option, pppd will not transmit LCP packets to initiate a
  92. # connection until a valid LCP packet is received from the peer (as for
  93. # the "passive" option with old versions of pppd).
  94. #silent
  95.  
  96. # Don't request or allow negotiation of any options for LCP and IPCP
  97. # (use default values).
  98. #-all
  99.  
  100. # Disable Address/Control compression negotiation (use default, i.e.
  101. # address/control field disabled).
  102. #-ac
  103.  
  104. # Disable asyncmap negotiation (use the default asyncmap, i.e. escape
  105. # all control characters).
  106. #-am
  107.  
  108. # Don't fork to become a background process (otherwise pppd will do so
  109. # if a serial device is specified).
  110. #-detach
  111.  
  112. # Disable IP address negotiation (with this option, the remote IP
  113. # address must be specified with an option on the command line or in an
  114. # options file).
  115. #-ip
  116.  
  117. # Disable magic number negotiation.  With this option, pppd cannot
  118. # detect a looped-back line.
  119. #-mn
  120.  
  121. # Disable MRU [Maximum Receive Unit] negotiation (use default, i.e.
  122. # 1500).
  123. #-mru
  124.  
  125. # Disable protocol field compression negotiation (use default, i.e.
  126. # protocol field compression disabled).
  127. #-pc
  128.  
  129. # Require the peer to authenticate itself using PAP.
  130. #+pap
  131.  
  132. # Don't agree to authenticate using PAP.
  133. #-pap
  134.  
  135. # Require the peer to authenticate itself using CHAP [Cryptographic
  136. # Handshake Authentication Protocol] authentication.
  137. #+chap
  138.  
  139. # Don't agree to authenticate using CHAP.
  140. #-chap
  141.  
  142. # Disable negotiation of Van Jacobson style IP header compression (use
  143. # default, i.e. no compression).
  144. #-vj
  145.  
  146. # Increase debugging level (same as -d).  If this option is given, pppd
  147. # will log the contents of all control packets sent or received in a
  148. # readable form.  The packets are logged through syslog with facility
  149. # daemon and level debug. This information can be directed to a file by
  150. # setting up /etc/syslog.conf appropriately (see syslog.conf(5)).  (If
  151. # pppd is compiled with extra debugging enabled, it will log messages
  152. # using facility local2 instead of daemon).
  153. #debug
  154.  
  155. # Append the domain name <d> to the local host name for authentication
  156. # purposes.  For example, if gethostname() returns the name porsche,
  157. # but the fully qualified domain name is porsche.Quotron.COM, you would
  158. # use the domain option to set the domain name to Quotron.COM.
  159. #domain <d>
  160.  
  161. # Enable debugging code in the kernel-level PPP driver.  The argument n
  162. # is a number which is the sum of the following values: 1 to enable
  163. # general debug messages, 2 to request that the contents of received
  164. # packets be printed, and 4 to request that the contents of transmitted
  165. # packets be printed.
  166. #kdebug n
  167.  
  168. # Set the MTU [Maximum Transmit Unit] value to <n>. Unless the peer
  169. # requests a smaller value via MRU negotiation, pppd will request that
  170. # the kernel networking code send data packets of no more than n bytes
  171. # through the PPP network interface.
  172. #mtu <n>
  173.  
  174. # Enforce the use of the hostname as the name of the local system for
  175. # authentication purposes (overrides the name option).
  176. #usehostname
  177.  
  178. # Set the assumed name of the remote system for authentication purposes
  179. # to <n>.
  180. #remotename <n>
  181.  
  182. # Add an entry to this system's ARP [Address Resolution Protocol]
  183. # table with the IP address of the peer and the Ethernet address of this
  184. # system.
  185. proxyarp
  186.  
  187. # Use the system password database for authenticating the peer using
  188. # PAP. Note: mgetty already provides this option. If this is specified
  189. # then dialin from users using a script under Linux to fire up ppp wont work.
  190. # login
  191.  
  192. # If this option is given, pppd will send an LCP echo-request frame to
  193. # the peer every n seconds. Under Linux, the echo-request is sent when
  194. # no packets have been received from the peer for n seconds. Normally
  195. # the peer should respond to the echo-request by sending an echo-reply.
  196. # This option can be used with the lcp-echo-failure option to detect
  197. # that the peer is no longer connected.
  198. lcp-echo-interval 30
  199.  
  200. # If this option is given, pppd will presume the peer to be dead if n
  201. # LCP echo-requests are sent without receiving a valid LCP echo-reply.
  202. # If this happens, pppd will terminate the connection.  Use of this
  203. # option requires a non-zero value for the lcp-echo-interval parameter.
  204. # This option can be used to enable pppd to terminate after the physical
  205. # connection has been broken (e.g., the modem has hung up) in
  206. # situations where no hardware modem control lines are available.
  207. lcp-echo-failure 4
  208.  
  209. # Set the LCP restart interval (retransmission timeout) to <n> seconds
  210. # (default 3).
  211. #lcp-restart <n>
  212.  
  213. # Set the maximum number of LCP terminate-request transmissions to <n>
  214. # (default 3).
  215. #lcp-max-terminate <n>
  216.  
  217. # Set the maximum number of LCP configure-request transmissions to <n>
  218. # (default 10).
  219. #lcp-max-configure <n>
  220.  
  221. # Set the maximum number of LCP configure-NAKs returned before starting
  222. # to send configure-Rejects instead to <n> (default 10).
  223. #lcp-max-failure <n>
  224.  
  225. # Set the IPCP restart interval (retransmission timeout) to <n>
  226. # seconds (default 3).
  227. #ipcp-restart <n>
  228.  
  229. # Set the maximum number of IPCP terminate-request transmissions to <n>
  230. # (default 3).
  231. #ipcp-max-terminate <n>
  232.  
  233. # Set the maximum number of IPCP configure-request transmissions to <n>
  234. # (default 10).
  235. #ipcp-max-configure <n>
  236.  
  237. # Set the maximum number of IPCP configure-NAKs returned before starting
  238. # to send configure-Rejects instead to <n> (default 10).
  239. #ipcp-max-failure <n>
  240.  
  241. # Set the PAP restart interval (retransmission timeout) to <n> seconds
  242. # (default 3).
  243. #pap-restart <n>
  244.  
  245. # Set the maximum number of PAP authenticate-request transmissions to
  246. # <n> (default 10).
  247. #pap-max-authreq <n>
  248.  
  249. # Set the CHAP restart interval (retransmission timeout for
  250. # challenges) to <n> seconds (default 3).
  251. #chap-restart <n>
  252.  
  253. # Set the maximum number of CHAP challenge transmissions to <n>
  254. # (default 10).
  255. #chap-max-challenge
  256.  
  257. # If this option is given, pppd will rechallenge the peer every <n>
  258. # seconds.
  259. #chap-interval <n>
  260.  
  261. # With this option, pppd will accept the peer's idea of our local IP
  262. # address, even if the local IP address was specified in an option.
  263. #ipcp-accept-local
  264.  
  265. # With this option, pppd will accept the peer's idea of its (remote) IP
  266. # address, even if the remote IP address was specified in an option.
  267. #ipcp-accept-remote
  268.  
  269. # Disable the IPXCP and IPX protocols.
  270. # To let pppd pass IPX packets comment this out --- you'll probably also
  271. # want to install ipxripd, and have the Internal IPX Network option enabled
  272. # in your kernel.  /usr/doc/HOWTO/IPX-HOWTO.gz contains more info.
  273. noipx
  274.  
  275. # ---<End of File>---
  276.  
  277.