]> git.ozlabs.org Git - ppp.git/blob - pppd/pppd.8
Add copyright notice and rewrite all sections which are identifiably
[ppp.git] / pppd / pppd.8
1 .\" manual page [] for pppd 2.4
2 .\" $Id: pppd.8,v 1.72 2003/06/11 00:11:11 paulus Exp $
3 .\" SH section heading
4 .\" SS subsection heading
5 .\" LP paragraph
6 .\" IP indented paragraph
7 .\" TP hanging label
8 .\" 
9 .\" Copyright (c) 1993-2003 Paul Mackerras <paulus@samba.org>
10 .\"
11 .\" Permission to use, copy, modify, and distribute this software for any
12 .\" purpose with or without fee is hereby granted, provided that the above
13 .\" copyright notice and this permission notice appear in all copies.
14 .\"
15 .\" THIS SOFTWARE IS PROVIDED "AS IS" AND THE AUTHORS DISCLAIM ALL WARRANTIES
16 .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
17 .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
18 .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19 .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
20 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
21 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22 .\"
23 .TH PPPD 8
24 .SH NAME
25 pppd \- Point-to-Point Protocol Daemon
26 .SH SYNOPSIS
27 .B pppd
28 [
29 .I options
30 ]
31 .SH DESCRIPTION
32 .LP
33 PPP is the protocol used for establishing internet links over dial-up
34 modems, DSL connections, and many other types of point-to-point
35 links.  The \fIpppd\fR daemon works together with the kernel PPP
36 driver to establish and maintain a PPP link with another system
37 (called the \fIpeer\fR) and to negotiate Internet Protocol (IP)
38 addresses for each end of the link.  Pppd can also authenticate the
39 peer and/or supply authentication information to the peer.  PPP can be
40 used with other network protocols besides IP, but such use is becoming
41 increasingly rare.
42 .SH FREQUENTLY USED OPTIONS
43 .TP
44 .I ttyname
45 Use the serial port called \fIttyname\fR to communicate with the
46 peer.  The string "/dev/" is prepended to \fIttyname\fR to form the
47 name of the device to open.  If no device name is given, or if the
48 name of the terminal
49 connected to the standard input is given, pppd will use that terminal,
50 and will not fork to put itself in the background.  A value for this
51 option from a privileged source cannot be overridden by a
52 non-privileged user.
53 .TP
54 .I speed
55 An option that is a decimal number is taken as the desired baud rate
56 for the serial device.  On systems such as
57 4.4BSD and NetBSD, any speed can be specified.  Other systems
58 (e.g. Linux, SunOS) only support the commonly-used baud rates.
59 .TP
60 .B asyncmap \fImap
61 This option sets the Async-Control-Character-Map (ACCM) for this end
62 of the link.  The ACCM is a set of 32 bits, one for each of the
63 ASCII control characters with values from 0 to 31, where a 1 bit
64 indicates that the corresponding control character should not be used
65 in PPP packets sent to this system.  The map is encoded as a
66 hexadecimal number (without a leading 0x) where the least significant
67 bit (00000001) represents character 0 and the most significant bit
68 (80000000) represents character 31.
69 Pppd will ask the peer to send these characters as a 2-byte
70 escape sequence.
71 If multiple \fIasyncmap\fR options are given, the values are ORed
72 together.  If no \fIasyncmap\fR option is given, no async character
73 map will be negotiated for the receive direction; the peer should then
74 escape \fIall\fR control characters.  To escape transmitted
75 characters, use the \fIescape\fR option.
76 .TP
77 .B auth
78 Require the peer to authenticate itself before allowing network
79 packets to be sent or received.  This option is the default if the
80 system has a default route.  If neither this option nor the
81 \fInoauth\fR option is specified, pppd will only allow the peer to use
82 IP addresses to which the system does not already have a route.
83 .TP
84 .B call \fIname
85 Read options from the file /etc/ppp/peers/\fIname\fR.  This file may
86 contain privileged options, such as \fInoauth\fR, even if pppd
87 is not being run by root.  The \fIname\fR string may not begin with /
88 or include .. as a pathname component.  The format of the options file
89 is described below.
90 .TP
91 .B connect \fIscript
92 Usually there is something which needs to be done to prepare the link
93 before the PPP protocol can be started; for instance, with a dial-up
94 modem, commands need to be sent to the modem to dial the appropriate
95 phone number.  This option specifies an command for pppd to execute
96 (by passing it to a shell) before attempting to start PPP negotiation.
97 The chat (8) program is often useful here, as it provides a way to
98 send arbitrary strings to a modem and respond to received characters.
99 A value
100 for this option from a privileged source cannot be overridden by a
101 non-privileged user.
102 .TP
103 .B crtscts
104 Specifies that pppd should set the serial port to use hardware flow
105 control using the RTS and CTS signals in the RS-232 interface.
106 If neither the \fIcrtscts\fR, the
107 \fInocrtscts\fR, the \fIcdtrcts\fR nor the \fInocdtrcts\fR option
108 is given, the hardware flow control setting for the serial port is
109 left unchanged.
110 Some serial ports (such as Macintosh serial ports) lack a true
111 RTS output. Such serial ports use this mode to implement
112 unidirectional flow control. The serial port will
113 suspend transmission when requested by the modem (via CTS)
114 but will be unable to request the modem to stop sending to the
115 computer. This mode retains the ability to use DTR as
116 a modem control line.
117 .TP
118 .B defaultroute
119 Add a default route to the system routing tables, using the peer as
120 the gateway, when IPCP negotiation is successfully completed.
121 This entry is removed when the PPP connection is broken.  This option
122 is privileged if the \fInodefaultroute\fR option has been specified.
123 .TP
124 .B disconnect \fIscript
125 Execute the command specified by \fIscript\fR, by passing it to a
126 shell, after
127 pppd has terminated the link.  This command could, for example, issue
128 commands to the modem to cause it to hang up if hardware modem control
129 signals were not available.  The disconnect script is not run if the
130 modem has already hung up.  A value for this option from a privileged
131 source cannot be overridden by a non-privileged user.
132 .TP
133 .B escape \fIxx,yy,...
134 Specifies that certain characters should be escaped on transmission
135 (regardless of whether the peer requests them to be escaped with its
136 async control character map).  The characters to be escaped are
137 specified as a list of hex numbers separated by commas.  Note that
138 almost any character can be specified for the \fIescape\fR option,
139 unlike the \fIasyncmap\fR option which only allows control characters
140 to be specified.  The characters which may not be escaped are those
141 with hex values 0x20 \- 0x3f or 0x5e.
142 .TP
143 .B file \fIname
144 Read options from file \fIname\fR (the format is described below).
145 The file must be readable by the user who has invoked pppd.
146 .TP
147 .B init \fIscript
148 Execute the command specified by \fIscript\fR, by passing it to a shell, to
149 initialize the serial line.  This script would typically use the
150 chat(8) program to configure the modem to enable auto answer.  A value
151 for this option from a privileged source cannot be overridden by a
152 non-privileged user.
153 .TP
154 .B lock
155 Specifies that pppd should create a UUCP-style lock file for the
156 serial device to ensure exclusive access to the device.
157 .TP
158 .B mru \fIn
159 Set the MRU [Maximum Receive Unit] value to \fIn\fR. Pppd
160 will ask the peer to send packets of no more than \fIn\fR bytes.
161 The value of \fIn\fR must be between 128 and 16384; the default is 1500.
162 A value of
163 296 works well on very slow links (40 bytes for TCP/IP header + 256
164 bytes of data).
165 Note that for the IPv6 protocol, the MRU must be at least 1280.
166 .TP
167 .B mtu \fIn
168 Set the MTU [Maximum Transmit Unit] value to \fIn\fR.  Unless the
169 peer requests a smaller value via MRU negotiation, pppd will
170 request that the kernel networking code send data packets of no more
171 than \fIn\fR bytes through the PPP network interface.  Note that for 
172 the IPv6 protocol, the MTU must be at least 1280.
173 .TP
174 .B passive
175 Enables the "passive" option in the LCP.  With this option, pppd will
176 attempt to initiate a connection; if no reply is received from the
177 peer, pppd will then just wait passively for a valid LCP packet from
178 the peer, instead of exiting, as it would without this option.
179 .SH OPTIONS
180 .TP
181 .I <local_IP_address>\fB:\fI<remote_IP_address>
182 Set the local and/or remote interface IP addresses.  Either one may be
183 omitted.  The IP addresses can be specified with a host name or in
184 decimal dot notation (e.g. 150.234.56.78).  The default local
185 address is the (first) IP address of the system (unless the
186 \fInoipdefault\fR
187 option is given).  The remote address will be obtained from the peer
188 if not specified in any option.  Thus, in simple cases, this option is
189 not required.  If a local and/or remote IP address is specified with
190 this option, pppd
191 will not accept a different value from the peer in the IPCP
192 negotiation, unless the \fIipcp-accept-local\fR and/or
193 \fIipcp-accept-remote\fR options are given, respectively.
194 .TP
195 .B ipv6 \fI<local_interface_identifier>\fR,\fI<remote_interface_identifier>
196 Set the local and/or remote 64-bit interface identifier. Either one may be
197 omitted. The identifier must be specified in standard ascii notation of
198 IPv6 addresses (e.g. ::dead:beef). If the
199 \fIipv6cp-use-ipaddr\fR
200 option is given, the local identifier is the local IPv4 address (see above).
201 On systems which supports a unique persistent id, such as EUI-48 derived
202 from the Ethernet MAC address, \fIipv6cp-use-persistent\fR option can be
203 used to replace the \fIipv6 <local>,<remote>\fR option. Otherwise the 
204 identifier is randomized.
205 .TP
206 .B active-filter \fIfilter-expression
207 Specifies a packet filter to be applied to data packets to determine
208 which packets are to be regarded as link activity, and therefore reset
209 the idle timer, or cause the link to be brought up in demand-dialling
210 mode.  This option is useful in conjunction with the
211 \fBidle\fR option if there are packets being sent or received
212 regularly over the link (for example, routing information packets)
213 which would otherwise prevent the link from ever appearing to be idle.
214 The \fIfilter-expression\fR syntax is as described for tcpdump(1),
215 except that qualifiers which are inappropriate for a PPP link, such as
216 \fBether\fR and \fBarp\fR, are not permitted.  Generally the filter
217 expression should be enclosed in single-quotes to prevent whitespace
218 in the expression from being interpreted by the shell. This option
219 is currently only available under NetBSD or Linux, and then only
220 if both the kernel and pppd were compiled with PPP_FILTER defined.
221 .TP
222 .B allow-ip \fIaddress(es)
223 Allow peers to use the given IP address or subnet without
224 authenticating themselves.  The parameter is parsed as for each
225 element of the list of allowed IP addresses in the secrets files (see
226 the AUTHENTICATION section below).
227 .TP
228 .B allow-number \fInumber
229 Allow peers to connect from the given telephone number.  A trailing
230 `*' character will match all numbers beginning with the leading part.
231 .TP
232 .B bsdcomp \fInr,nt
233 Request that the peer compress packets that it sends, using the
234 BSD-Compress scheme, with a maximum code size of \fInr\fR bits, and
235 agree to compress packets sent to the peer with a maximum code size of
236 \fInt\fR bits.  If \fInt\fR is not specified, it defaults to the value
237 given for \fInr\fR.  Values in the range 9 to 15 may be used for
238 \fInr\fR and \fInt\fR; larger values give better compression but
239 consume more kernel memory for compression dictionaries.
240 Alternatively, a value of 0 for \fInr\fR or \fInt\fR disables
241 compression in the corresponding direction.  Use \fInobsdcomp\fR or
242 \fIbsdcomp 0\fR to disable BSD-Compress compression entirely.
243 .TP
244 .B cdtrcts
245 Use a non-standard hardware flow control (i.e. DTR/CTS) to control
246 the flow of data on the serial port.  If neither the \fIcrtscts\fR,
247 the \fInocrtscts\fR, the \fIcdtrcts\fR nor the \fInocdtrcts\fR
248 option is given, the hardware flow control setting for the serial
249 port is left unchanged.
250 Some serial ports (such as Macintosh serial ports) lack a true
251 RTS output. Such serial ports use this mode to implement true
252 bi-directional flow control. The sacrifice is that this flow
253 control mode does not permit using DTR as a modem control line.
254 .TP
255 .B chap-interval \fIn
256 If this option is given, pppd will rechallenge the peer every \fIn\fR
257 seconds.
258 .TP
259 .B chap-max-challenge \fIn
260 Set the maximum number of CHAP challenge transmissions to \fIn\fR
261 (default 10).
262 .TP
263 .B chap-restart \fIn
264 Set the CHAP restart interval (retransmission timeout for challenges)
265 to \fIn\fR seconds (default 3).
266 .TP
267 .B connect-delay \fIn
268 Wait for up \fIn\fR milliseconds after the connect script finishes for
269 a valid PPP packet from the peer.  At the end of this time, or when a
270 valid PPP packet is received from the peer, pppd will commence
271 negotiation by sending its first LCP packet.  The default value is
272 1000 (1 second).  This wait period only applies if the \fBconnect\fR
273 or \fBpty\fR option is used.
274 .TP
275 .B debug
276 Enables connection debugging facilities.
277 If this option is given, pppd will log the contents of all
278 control packets sent or received in a readable form.  The packets are
279 logged through syslog with facility \fIdaemon\fR and level
280 \fIdebug\fR.  This information can be directed to a file by setting up
281 /etc/syslog.conf appropriately (see syslog.conf(5)).
282 .TP
283 .B default-asyncmap
284 Disable asyncmap negotiation, forcing all control characters to be
285 escaped for both the transmit and the receive direction.
286 .TP
287 .B default-mru
288 Disable MRU [Maximum Receive Unit] negotiation.  With this option,
289 pppd will use the default MRU value of 1500 bytes for both the
290 transmit and receive direction.
291 .TP
292 .B deflate \fInr,nt
293 Request that the peer compress packets that it sends, using the
294 Deflate scheme, with a maximum window size of \fI2**nr\fR bytes, and
295 agree to compress packets sent to the peer with a maximum window size
296 of \fI2**nt\fR bytes.  If \fInt\fR is not specified, it defaults to
297 the value given for \fInr\fR.  Values in the range 9 to 15 may be used
298 for \fInr\fR and \fInt\fR; larger values give better compression but
299 consume more kernel memory for compression dictionaries.
300 Alternatively, a value of 0 for \fInr\fR or \fInt\fR disables
301 compression in the corresponding direction.  Use \fInodeflate\fR or
302 \fIdeflate 0\fR to disable Deflate compression entirely.  (Note: pppd
303 requests Deflate compression in preference to BSD-Compress if the peer
304 can do either.)
305 .TP
306 .B demand
307 Initiate the link only on demand, i.e. when data traffic is present.
308 With this option, the remote IP address must be specified by the user
309 on the command line or in an options file.  Pppd will initially
310 configure the interface and enable it for IP traffic without
311 connecting to the peer.  When traffic is available, pppd will
312 connect to the peer and perform negotiation, authentication, etc.
313 When this is completed, pppd will commence passing data packets
314 (i.e., IP packets) across the link.
315
316 The \fIdemand\fR option implies the \fIpersist\fR option.  If this
317 behaviour is not desired, use the \fInopersist\fR option after the
318 \fIdemand\fR option.  The \fIidle\fR and \fIholdoff\fR
319 options are also useful in conjuction with the \fIdemand\fR option.
320 .TP
321 .B domain \fId
322 Append the domain name \fId\fR to the local host name for authentication
323 purposes.  For example, if gethostname() returns the name porsche, but
324 the fully qualified domain name is porsche.Quotron.COM, you could
325 specify \fIdomain Quotron.COM\fR.  Pppd would then use the name
326 \fIporsche.Quotron.COM\fR for looking up secrets in the secrets file,
327 and as the default name to send to the peer when authenticating itself
328 to the peer.  This option is privileged.
329 .TP
330 .B dryrun
331 With the \fBdryrun\fR option, pppd will print out all the option
332 values which have been set and then exit, after parsing the command
333 line and options files and checking the option values, but before
334 initiating the link.  The option values are logged at level info, and
335 also printed to standard output unless the device on standard output
336 is the device that pppd would be using to communicate with the peer.
337 .TP
338 .B dump
339 With the \fBdump\fR option, pppd will print out all the option values
340 which have been set.  This option is like the \fBdryrun\fR option
341 except that pppd proceeds as normal rather than exiting.
342 .TP
343 .B endpoint \fI<epdisc>
344 Sets the endpoint discriminator sent by the local machine to the peer
345 during multilink negotiation to \fI<epdisc>\fR.  The default is to use
346 the MAC address of the first ethernet interface on the system, if any,
347 otherwise the IPv4 address corresponding to the hostname, if any,
348 provided it is not in the multicast or locally-assigned IP address
349 ranges, or the localhost address.  The endpoint discriminator can be
350 the string \fBnull\fR or of the form \fItype\fR:\fIvalue\fR, where
351 type is a decimal number or one of the strings \fBlocal\fR, \fBIP\fR,
352 \fBMAC\fR, \fBmagic\fR, or \fBphone\fR.  The value is an IP address in
353 dotted-decimal notation for the \fBIP\fR type, or a string of bytes in
354 hexadecimal, separated by periods or colons for the other types.  For
355 the MAC type, the value may also be the name of an ethernet or similar
356 network interface.  This option is currently only available under
357 Linux.
358 .TP
359 .B eap-interval \fIn
360 If this option is given and pppd authenticates the peer with EAP
361 (i.e., is the server), pppd will restart EAP authentication every
362 \fIn\fR seconds.  For EAP SRP-SHA1, see also the \fBsrp-interval\fR
363 option, which enables lightweight rechallenge.
364 .TP
365 .B eap-max-rreq \fIn
366 Set the maximum number of EAP Requests to which pppd will respond (as
367 a client) without hearing EAP Success or Failure.  (Default is 20.)
368 .TP
369 .B eap-max-sreq \fIn
370 Set the maximum number of EAP Requests that pppd will issue (as a
371 server) while attempting authentication.  (Default is 10.)
372 .TP
373 .B eap-restart \fIn
374 Set the retransmit timeout for EAP Requests when acting as a server
375 (authenticator).  (Default is 3 seconds.)
376 .TP
377 .B eap-timeout \fIn
378 Set the maximum time to wait for the peer to send an EAP Request when
379 acting as a client (authenticatee).  (Default is 20 seconds.)
380 .TP
381 .B hide-password
382 When logging the contents of PAP packets, this option causes pppd to
383 exclude the password string from the log.  This is the default.
384 .TP
385 .B holdoff \fIn
386 Specifies how many seconds to wait before re-initiating the link after
387 it terminates.  This option only has any effect if the \fIpersist\fR
388 or \fIdemand\fR option is used.  The holdoff period is not applied if
389 the link was terminated because it was idle.
390 .TP
391 .B idle \fIn
392 Specifies that pppd should disconnect if the link is idle for \fIn\fR
393 seconds.  The link is idle when no data packets (i.e. IP packets) are
394 being sent or received.  Note: it is not advisable to use this option
395 with the \fIpersist\fR option without the \fIdemand\fR option.
396 If the \fBactive-filter\fR
397 option is given, data packets which are rejected by the specified
398 activity filter also count as the link being idle.
399 .TP
400 .B ipcp-accept-local
401 With this option, pppd will accept the peer's idea of our local IP
402 address, even if the local IP address was specified in an option.
403 .TP
404 .B ipcp-accept-remote
405 With this option, pppd will accept the peer's idea of its (remote) IP
406 address, even if the remote IP address was specified in an option.
407 .TP
408 .B ipcp-max-configure \fIn
409 Set the maximum number of IPCP configure-request transmissions to
410 \fIn\fR (default 10).
411 .TP
412 .B ipcp-max-failure \fIn
413 Set the maximum number of IPCP configure-NAKs returned before starting
414 to send configure-Rejects instead to \fIn\fR (default 10).
415 .TP
416 .B ipcp-max-terminate \fIn
417 Set the maximum number of IPCP terminate-request transmissions to
418 \fIn\fR (default 3).
419 .TP
420 .B ipcp-restart \fIn
421 Set the IPCP restart interval (retransmission timeout) to \fIn\fR
422 seconds (default 3).
423 .TP
424 .B ipparam \fIstring
425 Provides an extra parameter to the ip-up and ip-down scripts.  If this
426 option is given, the \fIstring\fR supplied is given as the 6th
427 parameter to those scripts.
428 .TP
429 .B ipv6cp-max-configure \fIn
430 Set the maximum number of IPv6CP configure-request transmissions to
431 \fIn\fR (default 10).
432 .TP
433 .B ipv6cp-max-failure \fIn
434 Set the maximum number of IPv6CP configure-NAKs returned before starting
435 to send configure-Rejects instead to \fIn\fR (default 10).
436 .TP
437 .B ipv6cp-max-terminate \fIn
438 Set the maximum number of IPv6CP terminate-request transmissions to
439 \fIn\fR (default 3).
440 .TP
441 .B ipv6cp-restart \fIn
442 Set the IPv6CP restart interval (retransmission timeout) to \fIn\fR
443 seconds (default 3).
444 .TP
445 .B ipx
446 Enable the IPXCP and IPX protocols.  This option is presently only
447 supported under Linux, and only if your kernel has been configured to
448 include IPX support.
449 .TP
450 .B ipx-network \fIn
451 Set the IPX network number in the IPXCP configure request frame to
452 \fIn\fR, a hexadecimal number (without a leading 0x).  There is no
453 valid default.  If this option is not specified, the network number is
454 obtained from the peer.  If the peer does not have the network number,
455 the IPX protocol will not be started.
456 .TP
457 .B ipx-node \fIn\fB:\fIm
458 Set the IPX node numbers. The two node numbers are separated from each
459 other with a colon character. The first number \fIn\fR is the local
460 node number. The second number \fIm\fR is the peer's node number. Each
461 node number is a hexadecimal number, at most 10 digits long. The node
462 numbers on the ipx-network must be unique. There is no valid
463 default. If this option is not specified then the node numbers are
464 obtained from the peer.
465 .TP
466 .B ipx-router-name \fI<string>
467 Set the name of the router. This is a string and is sent to the peer
468 as information data.
469 .TP
470 .B ipx-routing \fIn
471 Set the routing protocol to be received by this option. More than one
472 instance of \fIipx-routing\fR may be specified. The '\fInone\fR'
473 option (0) may be specified as the only instance of ipx-routing. The
474 values may be \fI0\fR for \fINONE\fR, \fI2\fR for \fIRIP/SAP\fR, and
475 \fI4\fR for \fINLSP\fR.
476 .TP
477 .B ipxcp-accept-local
478 Accept the peer's NAK for the node number specified in the ipx-node
479 option. If a node number was specified, and non-zero, the default is
480 to insist that the value be used. If you include this option then you
481 will permit the peer to override the entry of the node number.
482 .TP
483 .B ipxcp-accept-network
484 Accept the peer's NAK for the network number specified in the
485 ipx-network option. If a network number was specified, and non-zero, the
486 default is to insist that the value be used. If you include this
487 option then you will permit the peer to override the entry of the node
488 number.
489 .TP
490 .B ipxcp-accept-remote
491 Use the peer's network number specified in the configure request
492 frame. If a node number was specified for the peer and this option was
493 not specified, the peer will be forced to use the value which you have
494 specified.
495 .TP
496 .B ipxcp-max-configure \fIn
497 Set the maximum number of IPXCP configure request frames which the
498 system will send to \fIn\fR. The default is 10.
499 .TP
500 .B ipxcp-max-failure \fIn
501 Set the maximum number of IPXCP NAK frames which the local system will
502 send before it rejects the options. The default value is 3.
503 .TP
504 .B ipxcp-max-terminate \fIn
505 Set the maximum nuber of IPXCP terminate request frames before the
506 local system considers that the peer is not listening to them. The
507 default value is 3.
508 .TP
509 .B kdebug \fIn
510 Enable debugging code in the kernel-level PPP driver.  The argument
511 values depend on the specific kernel driver, but in general a value of
512 1 will enable general kernel debug messages.  (Note that these
513 messages are usually only useful for debugging the kernel driver
514 itself.)  For the Linux 2.2.x kernel driver, the value is a sum of
515 bits: 1 to
516 enable general debug messages, 2 to request that the contents of
517 received packets be printed, and 4 to request that the contents of
518 transmitted packets be printed.  On most systems, messages printed by
519 the kernel are logged by syslog(1) to a file as directed in the
520 /etc/syslog.conf configuration file.
521 .TP
522 .B ktune
523 Enables pppd to alter kernel settings as appropriate.  Under Linux,
524 pppd will enable IP forwarding (i.e. set /proc/sys/net/ipv4/ip_forward
525 to 1) if the \fIproxyarp\fR option is used, and will enable the
526 dynamic IP address option (i.e. set /proc/sys/net/ipv4/ip_dynaddr to
527 1) in demand mode if the local address changes.
528 .TP
529 .B lcp-echo-failure \fIn
530 If this option is given, pppd will presume the peer to be dead
531 if \fIn\fR LCP echo-requests are sent without receiving a valid LCP
532 echo-reply.  If this happens, pppd will terminate the
533 connection.  Use of this option requires a non-zero value for the
534 \fIlcp-echo-interval\fR parameter.  This option can be used to enable
535 pppd to terminate after the physical connection has been broken
536 (e.g., the modem has hung up) in situations where no hardware modem
537 control lines are available.
538 .TP
539 .B lcp-echo-interval \fIn
540 If this option is given, pppd will send an LCP echo-request frame to
541 the peer every \fIn\fR seconds.  Normally the peer should respond to
542 the echo-request by sending an echo-reply.  This option can be used
543 with the \fIlcp-echo-failure\fR option to detect that the peer is no
544 longer connected.
545 .TP
546 .B lcp-max-configure \fIn
547 Set the maximum number of LCP configure-request transmissions to
548 \fIn\fR (default 10).
549 .TP
550 .B lcp-max-failure \fIn
551 Set the maximum number of LCP configure-NAKs returned before starting
552 to send configure-Rejects instead to \fIn\fR (default 10).
553 .TP
554 .B lcp-max-terminate \fIn
555 Set the maximum number of LCP terminate-request transmissions to
556 \fIn\fR (default 3).
557 .TP
558 .B lcp-restart \fIn
559 Set the LCP restart interval (retransmission timeout) to \fIn\fR
560 seconds (default 3).
561 .TP
562 .B linkname \fIname\fR
563 Sets the logical name of the link to \fIname\fR.  Pppd will create a
564 file named \fBppp-\fIname\fB.pid\fR in /var/run (or /etc/ppp on some
565 systems) containing its process ID.  This can be useful in determining
566 which instance of pppd is responsible for the link to a given peer
567 system.  This is a privileged option.
568 .TP
569 .B local
570 Don't use the modem control lines.  With this option, pppd will ignore
571 the state of the CD (Carrier Detect) signal from the modem and will
572 not change the state of the DTR (Data Terminal Ready) signal.
573 .TP
574 .B logfd \fIn
575 Send log messages to file descriptor \fIn\fR.  Pppd will send log
576 messages to at most one file or file descriptor (as well as sending
577 the log messages to syslog), so this option and the \fBlogfile\fR
578 option are mutually exclusive.  The default is for pppd to send log
579 messages to stdout (file descriptor 1), unless the serial port is
580 already open on stdout.
581 .TP
582 .B logfile \fIfilename
583 Append log messages to the file \fIfilename\fR (as well as sending the
584 log messages to syslog).  The file is opened with the privileges of
585 the user who invoked pppd, in append mode.
586 .TP
587 .B login
588 Use the system password database for authenticating the peer using
589 PAP, and record the user in the system wtmp file.  Note that the peer
590 must have an entry in the /etc/ppp/pap-secrets file as well as the
591 system password database to be allowed access.
592 .TP
593 .B maxconnect \fIn
594 Terminate the connection when it has been available for network
595 traffic for \fIn\fR seconds (i.e. \fIn\fR seconds after the first
596 network control protocol comes up).
597 .TP
598 .B maxfail \fIn
599 Terminate after \fIn\fR consecutive failed connection attempts.  A
600 value of 0 means no limit.  The default value is 10.
601 .TP
602 .B modem
603 Use the modem control lines.  This option is the default.  With this
604 option, pppd will wait for the CD (Carrier Detect) signal from the
605 modem to be asserted when opening the serial device (unless a connect
606 script is specified), and it will drop the DTR (Data Terminal Ready)
607 signal briefly when the connection is terminated and before executing
608 the connect script.  On Ultrix, this option implies hardware flow
609 control, as for the \fIcrtscts\fR option.
610 .TP
611 .B mp
612 Enables the use of PPP multilink; this is an alias for the `multilink'
613 option.  This option is currently only available under Linux.
614 .TP
615 .B mppe-stateful
616 Allow MPPE to use stateful mode.  Stateless mode is still attempted first.
617 The default is to disallow stateful mode.  
618 .TP
619 .B mpshortseq
620 Enables the use of short (12-bit) sequence numbers in multilink
621 headers, as opposed to 24-bit sequence numbers.  This option is only
622 available under Linux, and only has any effect if multilink is
623 enabled (see the multilink option).
624 .TP
625 .B mrru \fIn
626 Sets the Maximum Reconstructed Receive Unit to \fIn\fR.  The MRRU is
627 the maximum size for a received packet on a multilink bundle, and is
628 analogous to the MRU for the individual links.  This option is
629 currently only available under Linux, and only has any effect if
630 multilink is enabled (see the multilink option).
631 .TP
632 .B ms-dns \fI<addr>
633 If pppd is acting as a server for Microsoft Windows clients, this
634 option allows pppd to supply one or two DNS (Domain Name Server)
635 addresses to the clients.  The first instance of this option specifies
636 the primary DNS address; the second instance (if given) specifies the
637 secondary DNS address.  (This option was present in some older
638 versions of pppd under the name \fBdns-addr\fR.)
639 .TP
640 .B ms-wins \fI<addr>
641 If pppd is acting as a server for Microsoft Windows or "Samba"
642 clients, this option allows pppd to supply one or two WINS (Windows
643 Internet Name Services) server addresses to the clients.  The first
644 instance of this option specifies the primary WINS address; the second
645 instance (if given) specifies the secondary WINS address.
646 .TP
647 .B multilink
648 Enables the use of the PPP multilink protocol.  If the peer also
649 supports multilink, then this link can become part of a bundle between
650 the local system and the peer.  If there is an existing bundle to the
651 peer, pppd will join this link to that bundle, otherwise pppd will
652 create a new bundle.  See the MULTILINK section below.  This option is
653 currently only available under Linux.
654 .TP
655 .B name \fIname
656 Set the name of the local system for authentication purposes to
657 \fIname\fR.  This is a privileged option.  With this option, pppd will
658 use lines in the secrets files which have \fIname\fR as the second
659 field when looking for a secret to use in authenticating the peer.  In
660 addition, unless overridden with the \fIuser\fR option, \fIname\fR
661 will be used as the name to send to the peer when authenticating the
662 local system to the peer.  (Note that pppd does not append the domain
663 name to \fIname\fR.)
664 .TP
665 .B noaccomp
666 Disable Address/Control compression in both directions (send and
667 receive).
668 .TP
669 .B noauth
670 Do not require the peer to authenticate itself.  This option is
671 privileged.
672 .TP
673 .B nobsdcomp
674 Disables BSD-Compress compression; \fBpppd\fR will not request or
675 agree to compress packets using the BSD-Compress scheme.
676 .TP
677 .B noccp
678 Disable CCP (Compression Control Protocol) negotiation.  This option
679 should only be required if the peer is buggy and gets confused by
680 requests from pppd for CCP negotiation.
681 .TP
682 .B nocrtscts
683 Disable hardware flow control (i.e. RTS/CTS) on the serial port.
684 If neither the \fIcrtscts\fR nor the \fInocrtscts\fR nor the
685 \fIcdtrcts\fR nor the \fInocdtrcts\fR option is given, the hardware
686 flow control setting for the serial port is left unchanged.
687 .TP
688 .B nocdtrcts
689 This option is a synonym for \fInocrtscts\fR. Either of these options will
690 disable both forms of hardware flow control.
691 .TP
692 .B nodefaultroute
693 Disable the \fIdefaultroute\fR option.  The system administrator who
694 wishes to prevent users from creating default routes with pppd
695 can do so by placing this option in the /etc/ppp/options file.
696 .TP
697 .B nodeflate
698 Disables Deflate compression; pppd will not request or agree to
699 compress packets using the Deflate scheme.
700 .TP
701 .B nodetach
702 Don't detach from the controlling terminal.  Without this option, if a
703 serial device other than the terminal on the standard input is
704 specified, pppd will fork to become a background process.
705 .TP
706 .B noendpoint
707 Disables pppd from sending an endpoint discriminator to the peer or
708 accepting one from the peer (see the MULTILINK section below).  This
709 option should only be required if the peer is buggy.
710 .TP
711 .B noip
712 Disable IPCP negotiation and IP communication.  This option should
713 only be required if the peer is buggy and gets confused by requests
714 from pppd for IPCP negotiation.
715 .TP
716 .B noipv6
717 Disable IPv6CP negotiation and IPv6 communication. This option should
718 only be required if the peer is buggy and gets confused by requests
719 from pppd for IPv6CP negotiation.
720 .TP
721 .B noipdefault
722 Disables the default behaviour when no local IP address is specified,
723 which is to determine (if possible) the local IP address from the
724 hostname.  With this option, the peer will have to supply the local IP
725 address during IPCP negotiation (unless it specified explicitly on the
726 command line or in an options file).
727 .TP
728 .B noipx
729 Disable the IPXCP and IPX protocols.  This option should only be
730 required if the peer is buggy and gets confused by requests from pppd
731 for IPXCP negotiation.
732 .TP
733 .B noktune
734 Opposite of the \fIktune\fR option; disables pppd from changing system
735 settings.
736 .TP
737 .B nolog
738 Do not send log messages to a file or file descriptor.  This option
739 cancels the \fBlogfd\fR and \fBlogfile\fR options.
740 .TP
741 .B nomagic
742 Disable magic number negotiation.  With this option, pppd cannot
743 detect a looped-back line.  This option should only be needed if the
744 peer is buggy.
745 .TP
746 .B nomp
747 Disables the use of PPP multilink.  This option is currently only
748 available under Linux.
749 .TP
750 .B nomppe
751 Disables MPPE (Microsoft Point to Point Encryption).  This is the default.
752 .TP
753 .B nomppe-40
754 Disable 40\-bit encryption with MPPE.
755 .TP
756 .B nomppe-128
757 Disable 128\-bit encryption with MPPE.
758 .TP
759 .B nomppe-stateful
760 Disable MPPE stateful mode.  This is the default.
761 .TP
762 .B nompshortseq
763 Disables the use of short (12-bit) sequence numbers in the PPP
764 multilink protocol, forcing the use of 24-bit sequence numbers.  This
765 option is currently only available under Linux, and only has any
766 effect if multilink is enabled.
767 .TP
768 .B nomultilink
769 Disables the use of PPP multilink.  This option is currently only
770 available under Linux.
771 .TP
772 .B nopcomp
773 Disable protocol field compression negotiation in both the receive and
774 the transmit direction.
775 .TP
776 .B nopersist
777 Exit once a connection has been made and terminated.  This is the
778 default unless the \fIpersist\fR or \fIdemand\fR option has been
779 specified.
780 .TP
781 .B nopredictor1
782 Do not accept or agree to Predictor-1 compression.
783 .TP
784 .B noproxyarp
785 Disable the \fIproxyarp\fR option.  The system administrator who
786 wishes to prevent users from creating proxy ARP entries with pppd can
787 do so by placing this option in the /etc/ppp/options file.
788 .TP
789 .B notty
790 Normally, pppd requires a terminal device.  With this option, pppd
791 will allocate itself a pseudo-tty master/slave pair and use the slave
792 as its terminal device.  Pppd will create a child process to act as a
793 `character shunt' to transfer characters between the pseudo-tty master
794 and its standard input and output.  Thus pppd will transmit characters
795 on its standard output and receive characters on its standard input
796 even if they are not terminal devices.  This option increases the
797 latency and CPU overhead of transferring data over the ppp interface
798 as all of the characters sent and received must flow through the
799 character shunt process.  An explicit device name may not be given if
800 this option is used.
801 .TP
802 .B novj
803 Disable Van Jacobson style TCP/IP header compression in both the
804 transmit and the receive direction.
805 .TP
806 .B novjccomp
807 Disable the connection-ID compression option in Van Jacobson style
808 TCP/IP header compression.  With this option, pppd will not omit the
809 connection-ID byte from Van Jacobson compressed TCP/IP headers, nor
810 ask the peer to do so.
811 .TP
812 .B papcrypt
813 Indicates that all secrets in the /etc/ppp/pap-secrets file which are
814 used for checking the identity of the peer are encrypted, and thus
815 pppd should not accept a password which, before encryption, is
816 identical to the secret from the /etc/ppp/pap-secrets file.
817 .TP
818 .B pap-max-authreq \fIn
819 Set the maximum number of PAP authenticate-request transmissions to
820 \fIn\fR (default 10).
821 .TP
822 .B pap-restart \fIn
823 Set the PAP restart interval (retransmission timeout) to \fIn\fR
824 seconds (default 3).
825 .TP
826 .B pap-timeout \fIn
827 Set the maximum time that pppd will wait for the peer to authenticate
828 itself with PAP to \fIn\fR seconds (0 means no limit).
829 .TP
830 .B pass-filter \fIfilter-expression
831 Specifies a packet filter to applied to data packets being sent or
832 received to determine which packets should be allowed to pass.
833 Packets which are rejected by the filter are silently discarded.  This
834 option can be used to prevent specific network daemons (such as
835 routed) using up link bandwidth, or to provide a basic firewall
836 capability.
837 The \fIfilter-expression\fR syntax is as described for tcpdump(1),
838 except that qualifiers which are inappropriate for a PPP link, such as
839 \fBether\fR and \fBarp\fR, are not permitted.  Generally the filter
840 expression should be enclosed in single-quotes to prevent whitespace
841 in the expression from being interpreted by the shell.  Note that it
842 is possible to apply different constraints to incoming and outgoing
843 packets using the \fBinbound\fR and \fBoutbound\fR qualifiers. This
844 option is currently only available under NetBSD or Linux, and then
845 only if both the kernel and pppd were compiled with PPP_FILTER defined.
846 .TP
847 .B password \fIpassword-string
848 Specifies the password to use for authenticating to the peer.  Use
849 of this option is discouraged, as the password is likely to be visible
850 to other users on the system (for example, by using ps(1)).
851 .TP
852 .B persist
853 Do not exit after a connection is terminated; instead try to reopen
854 the connection. The \fBmaxfail\fR option still has an effect on
855 persistent connections.
856 .TP
857 .B plugin \fIfilename
858 Load the shared library object file \fIfilename\fR as a plugin.  This
859 is a privileged option.  If \fIfilename\fR does not contain a slash
860 (/), pppd will look in the \fB/usr/lib/pppd/\fIversion\fR directory
861 for the plugin, where
862 \fIversion\fR is the version number of pppd (for example, 2.4.2).
863 .TP
864 .B predictor1
865 Request that the peer compress frames that it sends using Predictor-1
866 compression, and agree to compress transmitted frames with Predictor-1
867 if requested.  This option has no effect unless the kernel driver
868 supports Predictor-1 compression.
869 .TP
870 .B privgroup \fIgroup-name
871 Allows members of group \fIgroup-name\fR to use privileged options.
872 This is a privileged option.  Use of this option requires care as
873 there is no guarantee that members of \fIgroup-name\fR cannot use pppd
874 to become root themselves.  Consider it equivalent to putting the
875 members of \fIgroup-name\fR in the kmem or disk group.
876 .TP
877 .B proxyarp
878 Add an entry to this system's ARP [Address Resolution Protocol] table
879 with the IP address of the peer and the Ethernet address of this
880 system.  This will have the effect of making the peer appear to other
881 systems to be on the local ethernet.
882 .TP
883 .B pty \fIscript
884 Specifies that the command \fIscript\fR is to be used to communicate
885 rather than a specific terminal device.  Pppd will allocate itself a
886 pseudo-tty master/slave pair and use the slave as its terminal
887 device.  The \fIscript\fR will be run in a child process with the
888 pseudo-tty master as its standard input and output.  An explicit
889 device name may not be given if this option is used.  (Note: if the
890 \fIrecord\fR option is used in conjuction with the \fIpty\fR option,
891 the child process will have pipes on its standard input and output.)
892 .TP
893 .B receive-all
894 With this option, pppd will accept all control characters from the
895 peer, including those marked in the receive asyncmap.  Without this
896 option, pppd will discard those characters as specified in RFC1662.
897 This option should only be needed if the peer is buggy.
898 .TP
899 .B record \fIfilename
900 Specifies that pppd should record all characters sent and received to
901 a file named \fIfilename\fR.  This file is opened in append mode,
902 using the user's user-ID and permissions.  This option is implemented
903 using a pseudo-tty and a process to transfer characters between the
904 pseudo-tty and the real serial device, so it will increase the latency
905 and CPU overhead of transferring data over the ppp interface.  The
906 characters are stored in a tagged format with timestamps, which can be
907 displayed in readable form using the pppdump(8) program.
908 .TP
909 .B remotename \fIname
910 Set the assumed name of the remote system for authentication purposes
911 to \fIname\fR.
912 .TP
913 .B remotenumber \fInumber
914 Set the assumed telephone number of the remote system for authentication
915 purposes to \fInumber\fR.
916 .TP
917 .B refuse-chap
918 With this option, pppd will not agree to authenticate itself to the
919 peer using CHAP.
920 .TP
921 .B refuse-mschap
922 With this option, pppd will not agree to authenticate itself to the
923 peer using MS-CHAP.
924 .TP
925 .B refuse-mschap-v2
926 With this option, pppd will not agree to authenticate itself to the
927 peer using MS-CHAPv2.
928 .TP
929 .B refuse-eap
930 With this option, pppd will not agree to authenticate itself to the
931 peer using EAP.
932 .TP
933 .B refuse-pap
934 With this option, pppd will not agree to authenticate itself to the
935 peer using PAP.
936 .TP
937 .B require-chap
938 Require the peer to authenticate itself using CHAP [Challenge
939 Handshake Authentication Protocol] authentication.
940 .TP
941 .B require-mppe
942 Require the use of MPPE (Microsoft Point to Point Encryption).  This
943 option disables all other compression types.  This option enables
944 both 40\-bit and 128\-bit encryption.  In order for MPPE to successfully
945 come up, you must have authenticated with either MS-CHAP or MS-CHAPv2.
946 This option is presently only supported under Linux, and only if your
947 kernel has been configured to include MPPE support.
948 .TP
949 .B require-mppe-40
950 Require the use of MPPE, with 40\-bit encryption.
951 .TP
952 .B require-mppe-128
953 Require the use of MPPE, with 128\-bit encryption.
954 .TP
955 .B require-mschap
956 Require the peer to authenticate itself using MS-CHAP [Microsft Challenge
957 Handshake Authentication Protocol] authentication.
958 .TP
959 .B require-mschap-v2
960 Require the peer to authenticate itself using MS-CHAPv2 [Microsft Challenge
961 Handshake Authentication Protocol, Version 2] authentication.
962 .TP
963 .B require-eap
964 Require the peer to authenticate itself using EAP [Extensible
965 Authentication Protocol] authentication.
966 .TP
967 .B require-pap
968 Require the peer to authenticate itself using PAP [Password
969 Authentication Protocol] authentication.
970 .TP
971 .B show-password
972 When logging the contents of PAP packets, this option causes pppd to
973 show the password string in the log message.
974 .TP
975 .B silent
976 With this option, pppd will not transmit LCP packets to initiate a
977 connection until a valid LCP packet is received from the peer (as for
978 the `passive' option with ancient versions of pppd).
979 .TP
980 .B srp-interval \fIn
981 If this parameter is given and pppd uses EAP SRP-SHA1 to authenticate
982 the peer (i.e., is the server), then pppd will use the optional
983 lightweight SRP rechallenge mechanism at intervals of \fIn\fR
984 seconds.  This option is faster than \fBeap-interval\fR
985 reauthentication because it uses a hash-based mechanism and does not
986 derive a new session key.
987 .TP
988 .B srp-pn-secret \fIstring
989 Set the long-term pseudonym-generating secret for the server.  This
990 value is optional and if set, needs to be known at the server
991 (authenticator) side only, and should be different for each server (or
992 poll of identical servers).  It is used along with the current date to
993 generate a key to encrypt and decrypt the client's identity contained
994 in the pseudonym.
995 .TP
996 .B srp-use-pseudonym
997 When operating as an EAP SRP-SHA1 client, attempt to use the pseudonym
998 stored in ~/.ppp_psuedonym first as the identity, and save in this
999 file any pseudonym offered by the peer during authentication.
1000 .TP
1001 .B sync
1002 Use synchronous HDLC serial encoding instead of asynchronous.
1003 The device used by pppd with this option must have sync support.
1004 Currently supports Microgate SyncLink adapters
1005 under Linux and FreeBSD 2.2.8 and later.
1006 .TP
1007 .B unit \fInum
1008 Sets the ppp unit number (for a ppp0 or ppp1 etc interface name) for outbound
1009 connections.
1010 .TP
1011 .B updetach
1012 With this option, pppd will detach from its controlling terminal once
1013 it has successfully established the ppp connection (to the point where
1014 the first network control protocol, usually the IP control protocol,
1015 has come up).
1016 .TP
1017 .B usehostname
1018 Enforce the use of the hostname (with domain name appended, if given)
1019 as the name of the local system for authentication purposes (overrides
1020 the \fIname\fR option).  This option is not normally needed since the
1021 \fIname\fR option is privileged.
1022 .TP
1023 .B usepeerdns
1024 Ask the peer for up to 2 DNS server addresses.  The addresses supplied
1025 by the peer (if any) are passed to the /etc/ppp/ip-up script in the
1026 environment variables DNS1 and DNS2.  In addition, pppd will create an
1027 /etc/ppp/resolv.conf file containing one or two nameserver lines with
1028 the address(es) supplied by the peer.
1029 .TP
1030 .B user \fIname
1031 Sets the name used for authenticating the local system to the peer to
1032 \fIname\fR.
1033 .TP
1034 .B vj-max-slots \fIn
1035 Sets the number of connection slots to be used by the Van Jacobson
1036 TCP/IP header compression and decompression code to \fIn\fR, which
1037 must be between 2 and 16 (inclusive).
1038 .TP
1039 .B welcome \fIscript
1040 Run the executable or shell command specified by \fIscript\fR before
1041 initiating PPP negotiation, after the connect script (if any) has
1042 completed.  A value for this option from a privileged source cannot be
1043 overridden by a non-privileged user.
1044 .TP
1045 .B xonxoff
1046 Use software flow control (i.e. XON/XOFF) to control the flow of data on
1047 the serial port.
1048 .SH OPTIONS FILES
1049 Options can be taken from files as well as the command line.  Pppd
1050 reads options from the files /etc/ppp/options, ~/.ppprc and
1051 /etc/ppp/options.\fIttyname\fR (in that order) before processing the
1052 options on the command line.  (In fact, the command-line options are
1053 scanned to find the terminal name before the options.\fIttyname\fR
1054 file is read.)  In forming the name of the options.\fIttyname\fR file,
1055 the initial /dev/ is removed from the terminal name, and any remaining
1056 / characters are replaced with dots.
1057 .PP
1058 An options file is parsed into a series of words, delimited by
1059 whitespace.  Whitespace can be included in a word by enclosing the
1060 word in double-quotes (").  A backslash (\\) quotes the following character.
1061 A hash (#) starts a comment, which continues until the end of the
1062 line.  There is no restriction on using the \fIfile\fR or \fIcall\fR
1063 options within an options file.
1064 .SH SECURITY
1065 .I pppd
1066 provides system administrators with sufficient access control that PPP
1067 access to a server machine can be provided to legitimate users without
1068 fear of compromising the security of the server or the network it's
1069 on.  This control is provided through restrictions on which IP
1070 addresses the peer may use, based on its authenticated identity (if
1071 any), and through restrictions on which options a non-privileged user
1072 may use.  Several of pppd's options are privileged, in particular
1073 those which permit potentially insecure configurations; these options
1074 are only accepted in files which are under the control of the system
1075 administrator, or if pppd is being run by root.
1076 .PP
1077 The default behaviour of pppd is to allow an unauthenticated peer to
1078 use a given IP address only if the system does not already have a
1079 route to that IP address.  For example, a system with a
1080 permanent connection to the wider internet will normally have a
1081 default route, and thus all peers will have to authenticate themselves
1082 in order to set up a connection.  On such a system, the \fIauth\fR
1083 option is the default.  On the other hand, a system where the
1084 PPP link is the only connection to the internet will not normally have
1085 a default route, so the peer will be able to use almost any IP address
1086 without authenticating itself.
1087 .PP
1088 As indicated above, some security-sensitive options are privileged,
1089 which means that they may not be used by an ordinary non-privileged
1090 user running a setuid-root pppd, either on the command line, in the
1091 user's ~/.ppprc file, or in an options file read using the \fIfile\fR
1092 option.  Privileged options may be used in /etc/ppp/options file or in
1093 an options file read using the \fIcall\fR option.  If pppd is being
1094 run by the root user, privileged options can be used without
1095 restriction.
1096 .PP
1097 When opening the device, pppd uses either the invoking user's user ID
1098 or the root UID (that is, 0), depending on whether the device name was
1099 specified by the user or the system administrator.  If the device name
1100 comes from a privileged source, that is, /etc/ppp/options or an
1101 options file read using the \fIcall\fR option, pppd uses full root
1102 privileges when opening the device.  Thus, by creating an appropriate
1103 file under /etc/ppp/peers, the system administrator can allow users to
1104 establish a ppp connection via a device which they would not normally
1105 have permission to access.  Otherwise pppd uses the invoking user's
1106 real UID when opening the device.
1107 .SH AUTHENTICATION
1108 Authentication is the process whereby one peer convinces the other of
1109 its identity.  This involves the first peer sending its name to the
1110 other, together with some kind of secret information which could only
1111 come from the genuine authorized user of that name.  In such an
1112 exchange, we will call the first peer the "client" and the other the
1113 "server".  The client has a name by which it identifies itself to the
1114 server, and the server also has a name by which it identifies itself
1115 to the client.  Generally the genuine client shares some secret (or
1116 password) with the server, and authenticates itself by proving that it
1117 knows that secret.  Very often, the names used for authentication
1118 correspond to the internet hostnames of the peers, but this is not
1119 essential.
1120 .LP
1121 At present, pppd supports three authentication protocols: the Password
1122 Authentication Protocol (PAP), Challenge Handshake Authentication
1123 Protocol (CHAP), and Extensible Authentication Protocol (EAP).  PAP
1124 involves the client sending its name and a cleartext password to the
1125 server to authenticate itself.  In contrast, the server initiates the
1126 CHAP authentication exchange by sending a challenge to the client (the
1127 challenge packet includes the server's name).  The client must respond
1128 with a response which includes its name plus a hash value derived from
1129 the shared secret and the challenge, in order to prove that it knows
1130 the secret.  EAP supports CHAP-style authentication, and also includes
1131 the SRP-SHA1 mechanism, which is resistant to dictionary-based attacks
1132 and does not require a cleartext password on the server side.
1133 .LP
1134 The PPP protocol, being symmetrical, allows both peers to require the
1135 other to authenticate itself.  In that case, two separate and
1136 independent authentication exchanges will occur.  The two exchanges
1137 could use different authentication protocols, and in principle,
1138 different names could be used in the two exchanges.
1139 .LP
1140 The default behaviour of pppd is to agree to authenticate if
1141 requested, and to not require authentication from the peer.  However,
1142 pppd will not agree to authenticate itself with a particular protocol
1143 if it has no secrets which could be used to do so.
1144 .LP
1145 Pppd stores secrets for use in authentication in secrets
1146 files (/etc/ppp/pap-secrets for PAP, /etc/ppp/chap-secrets for CHAP,
1147 MS-CHAP, MS-CHAPv2, and EAP MD5-Challenge, and /etc/ppp/srp-secrets
1148 for EAP SRP-SHA1).
1149 All secrets files have the same format.  The secrets files can
1150 contain secrets for pppd to use in authenticating itself to other
1151 systems, as well as secrets for pppd to use when authenticating other
1152 systems to itself.
1153 .LP
1154 Each line in a secrets file contains one secret.  A given secret is
1155 specific to a particular combination of client and server \- it can
1156 only be used by that client to authenticate itself to that server.
1157 Thus each line in a secrets file has at least 3 fields: the name of
1158 the client, the name of the server, and the secret.  These fields may
1159 be followed by a list of the IP addresses that the specified client
1160 may use when connecting to the specified server.
1161 .LP
1162 A secrets file is parsed into words as for a options file, so the
1163 client name, server name and secrets fields must each be one word,
1164 with any embedded spaces or other special characters quoted or
1165 escaped.  Note that case is significant in the client and server names
1166 and in the secret.
1167 .LP
1168 If the secret starts with an `@', what follows is assumed to be the
1169 name of a file from which to read the secret.  A "*" as the client or
1170 server name matches any name.  When selecting a secret, pppd takes the
1171 best match, i.e.  the match with the fewest wildcards.
1172 .LP
1173 Any following words on the same line are taken to be a list of
1174 acceptable IP addresses for that client.  If there are only 3 words on
1175 the line, or if the first word is "-", then all IP addresses are
1176 disallowed.  To allow any address, use "*".  A word starting with "!"
1177 indicates that the specified address is \fInot\fR acceptable.  An
1178 address may be followed by "/" and a number \fIn\fR, to indicate a
1179 whole subnet, i.e. all addresses which have the same value in the most
1180 significant \fIn\fR bits.  In this form, the address may be followed
1181 by a plus sign ("+") to indicate that one address from the subnet is
1182 authorized, based on the ppp network interface unit number in use.
1183 In this case, the host part of the address will be set to the unit
1184 number plus one.
1185 .LP
1186 Thus a secrets file contains both secrets for use in authenticating
1187 other hosts, plus secrets which we use for authenticating ourselves to
1188 others.  When pppd is authenticating the peer (checking the peer's
1189 identity), it chooses a secret with the peer's name in the first
1190 field and the name of the local system in the second field.  The
1191 name of the local system defaults to the hostname, with the domain
1192 name appended if the \fIdomain\fR option is used.  This default can be
1193 overridden with the \fIname\fR option, except when the
1194 \fIusehostname\fR option is used.  (For EAP SRP-SHA1, see the
1195 srp-entry(8) utility for generating proper validator entries to be
1196 used in the "secret" field.)
1197 .LP
1198 When pppd is choosing a secret to use in authenticating itself to the
1199 peer, it first determines what name it is going to use to identify
1200 itself to the peer.  This name can be specified by the user with the
1201 \fIuser\fR option.  If this option is not used, the name defaults to
1202 the name of the local system, determined as described in the previous
1203 paragraph.  Then pppd looks for a secret with this name in the first
1204 field and the peer's name in the second field.  Pppd will know the
1205 name of the peer if CHAP or EAP authentication is being used, because
1206 the peer will have sent it in the challenge packet.  However, if PAP
1207 is being used, pppd will have to determine the peer's name from the
1208 options specified by the user.  The user can specify the peer's name
1209 directly with the \fIremotename\fR option.  Otherwise, if the remote
1210 IP address was specified by a name (rather than in numeric form), that
1211 name will be used as the peer's name.  Failing that, pppd will use the
1212 null string as the peer's name.
1213 .LP
1214 When authenticating the peer with PAP, the supplied password is first
1215 compared with the secret from the secrets file.  If the password
1216 doesn't match the secret, the password is encrypted using crypt() and
1217 checked against the secret again.  Thus secrets for authenticating the
1218 peer can be stored in encrypted form if desired.  If the
1219 \fIpapcrypt\fR option is given, the first (unencrypted) comparison is
1220 omitted, for better security.
1221 .LP
1222 Furthermore, if the \fIlogin\fR option was specified, the username and
1223 password are also checked against the system password database.  Thus,
1224 the system administrator can set up the pap-secrets file to allow PPP
1225 access only to certain users, and to restrict the set of IP addresses
1226 that each user can use.  Typically, when using the \fIlogin\fR option,
1227 the secret in /etc/ppp/pap-secrets would be "", which will match any
1228 password supplied by the peer.  This avoids the need to have the same
1229 secret in two places.
1230 .LP
1231 Authentication must be satisfactorily completed before IPCP (or any
1232 other Network Control Protocol) can be started.  If the peer is
1233 required to authenticate itself, and fails to do so, pppd will
1234 terminated the link (by closing LCP).  If IPCP negotiates an
1235 unacceptable IP address for the remote host, IPCP will be closed.  IP
1236 packets can only be sent or received when IPCP is open.
1237 .LP
1238 In some cases it is desirable to allow some hosts which can't
1239 authenticate themselves to connect and use one of a restricted set of
1240 IP addresses, even when the local host generally requires
1241 authentication.  If the peer refuses to authenticate itself when
1242 requested, pppd takes that as equivalent to authenticating with PAP
1243 using the empty string for the username and password.  Thus, by adding
1244 a line to the pap-secrets file which specifies the empty string for
1245 the client and password, it is possible to allow restricted access to
1246 hosts which refuse to authenticate themselves.
1247 .SH ROUTING
1248 .LP
1249 When IPCP negotiation is completed successfully, pppd will inform the
1250 kernel of the local and remote IP addresses for the ppp interface.
1251 This is sufficient to create a host route to the remote end of the
1252 link, which will enable the peers to exchange IP packets.
1253 Communication with other machines generally requires further
1254 modification to routing tables and/or ARP (Address Resolution
1255 Protocol) tables.  In most cases the \fIdefaultroute\fR and/or
1256 \fIproxyarp\fR options are sufficient for this, but in some cases
1257 further intervention is required.  The /etc/ppp/ip-up script can be
1258 used for this.
1259 .LP
1260 Sometimes it is desirable to add a default route through the remote
1261 host, as in the case of a machine whose only connection to the
1262 Internet is through the ppp interface.  The \fIdefaultroute\fR option
1263 causes pppd to create such a default route when IPCP comes up, and
1264 delete it when the link is terminated.
1265 .LP
1266 In some cases it is desirable to use proxy ARP, for example on a
1267 server machine connected to a LAN, in order to allow other hosts to
1268 communicate with the remote host.  The \fIproxyarp\fR option causes
1269 pppd to look for a network interface on the same subnet as the remote
1270 host (an interface supporting broadcast and ARP, which is up and not a
1271 point-to-point or loopback interface).  If found, pppd creates a
1272 permanent, published ARP entry with the IP address of the remote host
1273 and the hardware address of the network interface found.
1274 .LP
1275 When the \fIdemand\fR option is used, the interface IP addresses have
1276 already been set at the point when IPCP comes up.  If pppd has not
1277 been able to negotiate the same addresses that it used to configure
1278 the interface (for example when the peer is an ISP that uses dynamic
1279 IP address assignment), pppd has to change the interface IP addresses
1280 to the negotiated addresses.  This may disrupt existing connections,
1281 and the use of demand dialling with peers that do dynamic IP address
1282 assignment is not recommended.
1283 .SH MULTILINK
1284 Multilink PPP provides the capability to combine two or more PPP links
1285 between a pair of machines into a single `bundle', which appears as a
1286 single virtual PPP link which has the combined bandwidth of the
1287 individual links.  Currently, multilink PPP is only supported under
1288 Linux.
1289 .LP
1290 Pppd detects that the link it is controlling is connected to the same
1291 peer as another link using the peer's endpoint discriminator and the
1292 authenticated identity of the peer (if it authenticates itself).  The
1293 endpoint discriminator is a block of data which is hopefully unique
1294 for each peer.  Several types of data can be used, including
1295 locally-assigned strings of bytes, IP addresses, MAC addresses,
1296 randomly strings of bytes, or E-164 phone numbers.  The endpoint
1297 discriminator sent to the peer by pppd can be set using the endpoint
1298 option.
1299 .LP
1300 In circumstances the peer may send no endpoint discriminator or a
1301 non-unique value.  The optional bundle option adds an extra string
1302 which is added to the peer's endpoint discriminator and authenticated
1303 identity when matching up links to be joined together in a bundle.
1304 The bundle option can also be used to allow the establishment of
1305 multiple bundles between the local system and the peer.  Pppd uses a
1306 TDB database in /var/run/pppd.tdb to match up links.
1307 .LP
1308 Assuming that multilink is enabled and the peer is willing to
1309 negotiate multilink, then when pppd is invoked to bring up the first
1310 link to the peer, it will detect that no other link is connected to
1311 the peer and create a new bundle, that is, another ppp network
1312 interface unit.  When another pppd is invoked to bring up another link
1313 to the peer, it will detect the existing bundle and join its link to
1314 it.  Currently, if the first pppd terminates (for example, because of
1315 a hangup or a received signal) the bundle is destroyed.
1316 .SH EXAMPLES
1317 .LP
1318 The following examples assume that the /etc/ppp/options file contains
1319 the \fIauth\fR option (as in the default /etc/ppp/options file in the
1320 ppp distribution).
1321 .LP
1322 Probably the most common use of pppd is to dial out to an ISP.  This
1323 can be done with a command such as
1324 .IP
1325 pppd call isp
1326 .LP
1327 where the /etc/ppp/peers/isp file is set up by the system
1328 administrator to contain something like this:
1329 .IP
1330 ttyS0 19200 crtscts
1331 .br
1332 connect '/usr/sbin/chat -v -f /etc/ppp/chat-isp'
1333 .br
1334 noauth
1335 .LP
1336 In this example, we are using chat to dial the ISP's modem and go
1337 through any logon sequence required.  The /etc/ppp/chat-isp file
1338 contains the script used by chat; it could for example contain
1339 something like this:
1340 .IP
1341 ABORT "NO CARRIER"
1342 .br
1343 ABORT "NO DIALTONE"
1344 .br
1345 ABORT "ERROR"
1346 .br
1347 ABORT "NO ANSWER"
1348 .br
1349 ABORT "BUSY"
1350 .br
1351 ABORT "Username/Password Incorrect"
1352 .br
1353 "" "at"
1354 .br
1355 OK "at&d0&c1"
1356 .br
1357 OK "atdt2468135"
1358 .br
1359 "name:" "^Umyuserid"
1360 .br
1361 "word:" "\\qmypassword"
1362 .br
1363 "ispts" "\\q^Uppp"
1364 .br
1365 "~-^Uppp-~"
1366 .LP
1367 See the chat(8) man page for details of chat scripts.
1368 .LP
1369 Pppd can also be used to provide a dial-in ppp service for users.  If
1370 the users already have login accounts, the simplest way to set up the
1371 ppp service is to let the users log in to their accounts and run pppd
1372 (installed setuid-root) with a command such as
1373 .IP
1374 pppd proxyarp
1375 .LP
1376 To allow a user to use the PPP facilities, you need to allocate an IP
1377 address for that user's machine and create an entry in
1378 /etc/ppp/pap-secrets, /etc/ppp/chap-secrets, or /etc/ppp/srp-secrets
1379 (depending on which authentication method the PPP implementation on
1380 the user's machine supports), so that the user's machine can
1381 authenticate itself.  For example, if Joe has a machine called
1382 "joespc" that is to be allowed to dial in to the machine called
1383 "server" and use the IP address joespc.my.net, you would add an entry
1384 like this to /etc/ppp/pap-secrets or /etc/ppp/chap-secrets:
1385 .IP
1386 joespc  server  "joe's secret"  joespc.my.net
1387 .LP
1388 (See srp-entry(8) for a means to generate the server's entry when
1389 SRP-SHA1 is in use.)
1390 Alternatively, you can create a username called (for example) "ppp",
1391 whose login shell is pppd and whose home directory is /etc/ppp.
1392 Options to be used when pppd is run this way can be put in
1393 /etc/ppp/.ppprc.
1394 .LP
1395 If your serial connection is any more complicated than a piece of
1396 wire, you may need to arrange for some control characters to be
1397 escaped.  In particular, it is often useful to escape XON (^Q) and
1398 XOFF (^S), using \fIasyncmap a0000\fR.  If the path includes a telnet,
1399 you probably should escape ^] as well (\fIasyncmap 200a0000\fR).  If
1400 the path includes an rlogin, you will need to use the \fIescape ff\fR
1401 option on the end which is running the rlogin client, since many
1402 rlogin implementations are not transparent; they will remove the
1403 sequence [0xff, 0xff, 0x73, 0x73, followed by any 8 bytes] from the
1404 stream.
1405 .SH DIAGNOSTICS
1406 .LP
1407 Messages are sent to the syslog daemon using facility LOG_DAEMON.
1408 (This can be overridden by recompiling pppd with the macro
1409 LOG_PPP defined as the desired facility.)  See the syslog(8)
1410 documentation for details of where the syslog daemon will write the
1411 messages.  On most systems, the syslog daemon uses the
1412 /etc/syslog.conf file to specify the destination(s) for syslog
1413 messages.  You may need to edit that file to suit.
1414 .LP
1415 The \fIdebug\fR option causes the contents of all control packets sent
1416 or received to be logged, that is, all LCP, PAP, CHAP, EAP, or IPCP packets.
1417 This can be useful if the PPP negotiation does not succeed or if
1418 authentication fails.
1419 If debugging is enabled at compile time, the \fIdebug\fR option also
1420 causes other debugging messages to be logged.
1421 .LP
1422 Debugging can also be enabled or disabled by sending a SIGUSR1 signal
1423 to the pppd process.  This signal acts as a toggle.
1424 .SH EXIT STATUS
1425 The exit status of pppd is set to indicate whether any error was
1426 detected, or the reason for the link being terminated.  The values
1427 used are:
1428 .TP
1429 .B 0
1430 Pppd has detached, or otherwise the connection was successfully
1431 established and terminated at the peer's request.
1432 .TP
1433 .B 1
1434 An immediately fatal error of some kind occurred, such as an essential
1435 system call failing, or running out of virtual memory.
1436 .TP
1437 .B 2
1438 An error was detected in processing the options given, such as two
1439 mutually exclusive options being used.
1440 .TP
1441 .B 3
1442 Pppd is not setuid-root and the invoking user is not root.
1443 .TP
1444 .B 4
1445 The kernel does not support PPP, for example, the PPP kernel driver is
1446 not included or cannot be loaded.
1447 .TP
1448 .B 5
1449 Pppd terminated because it was sent a SIGINT, SIGTERM or SIGHUP
1450 signal.
1451 .TP
1452 .B 6
1453 The serial port could not be locked.
1454 .TP
1455 .B 7
1456 The serial port could not be opened.
1457 .TP
1458 .B 8
1459 The connect script failed (returned a non-zero exit status).
1460 .TP
1461 .B 9
1462 The command specified as the argument to the \fIpty\fR option could
1463 not be run.
1464 .TP
1465 .B 10
1466 The PPP negotiation failed, that is, it didn't reach the point where
1467 at least one network protocol (e.g. IP) was running.
1468 .TP
1469 .B 11
1470 The peer system failed (or refused) to authenticate itself.
1471 .TP
1472 .B 12
1473 The link was established successfully and terminated because it was
1474 idle.
1475 .TP
1476 .B 13
1477 The link was established successfully and terminated because the
1478 connect time limit was reached.
1479 .TP
1480 .B 14
1481 Callback was negotiated and an incoming call should arrive shortly.
1482 .TP
1483 .B 15
1484 The link was terminated because the peer is not responding to echo
1485 requests.
1486 .TP
1487 .B 16
1488 The link was terminated by the modem hanging up.
1489 .TP
1490 .B 17
1491 The PPP negotiation failed because serial loopback was detected.
1492 .TP
1493 .B 18
1494 The init script failed (returned a non-zero exit status).
1495 .TP
1496 .B 19
1497 We failed to authenticate ourselves to the peer.
1498 .SH SCRIPTS
1499 Pppd invokes scripts at various stages in its processing which can be
1500 used to perform site-specific ancillary processing.  These scripts are
1501 usually shell scripts, but could be executable code files instead.
1502 Pppd does not wait for the scripts to finish.  The scripts are
1503 executed as root (with the real and effective user-id set to 0), so
1504 that they can do things such as update routing tables or run
1505 privileged daemons.  Be careful that the contents of these scripts do
1506 not compromise your system's security.  Pppd runs the scripts with
1507 standard input, output and error redirected to /dev/null, and with an
1508 environment that is empty except for some environment variables that
1509 give information about the link.  The environment variables that pppd
1510 sets are:
1511 .TP
1512 .B DEVICE
1513 The name of the serial tty device being used.
1514 .TP
1515 .B IFNAME
1516 The name of the network interface being used.
1517 .TP
1518 .B IPLOCAL
1519 The IP address for the local end of the link.  This is only set when
1520 IPCP has come up.
1521 .TP
1522 .B IPREMOTE
1523 The IP address for the remote end of the link.  This is only set when
1524 IPCP has come up.
1525 .TP
1526 .B PEERNAME
1527 The authenticated name of the peer.  This is only set if the peer
1528 authenticates itself.
1529 .TP
1530 .B SPEED
1531 The baud rate of the tty device.
1532 .TP
1533 .B ORIG_UID
1534 The real user-id of the user who invoked pppd.
1535 .TP
1536 .B PPPLOGNAME
1537 The username of the real user-id that invoked pppd. This is always set.
1538 .P
1539 For the ip-down and auth-down scripts, pppd also sets the following
1540 variables giving statistics for the connection:
1541 .TP
1542 .B CONNECT_TIME
1543 The number of seconds from when the PPP negotiation started until the
1544 connection was terminated.
1545 .TP
1546 .B BYTES_SENT
1547 The number of bytes sent (at the level of the serial port) during the
1548 connection.
1549 .TP
1550 .B BYTES_RCVD
1551 The number of bytes received (at the level of the serial port) during
1552 the connection.
1553 .TP
1554 .B LINKNAME
1555 The logical name of the link, set with the \fIlinkname\fR option.
1556 .P
1557 Pppd invokes the following scripts, if they exist.  It is not an error
1558 if they don't exist.
1559 .TP
1560 .B /etc/ppp/auth-up
1561 A program or script which is executed after the remote system
1562 successfully authenticates itself.  It is executed with the parameters
1563 .IP
1564 \fIinterface-name peer-name user-name tty-device speed\fR
1565 .IP
1566 Note that this script is not executed if the peer doesn't authenticate
1567 itself, for example when the \fInoauth\fR option is used.
1568 .TP
1569 .B /etc/ppp/auth-down
1570 A program or script which is executed when the link goes down, if
1571 /etc/ppp/auth-up was previously executed.  It is executed in the same
1572 manner with the same parameters as /etc/ppp/auth-up.
1573 .TP
1574 .B /etc/ppp/ip-up
1575 A program or script which is executed when the link is available for
1576 sending and receiving IP packets (that is, IPCP has come up).  It is
1577 executed with the parameters
1578 .IP
1579 \fIinterface-name tty-device speed local-IP-address
1580 remote-IP-address ipparam\fR
1581 .TP
1582 .B /etc/ppp/ip-down
1583 A program or script which is executed when the link is no longer
1584 available for sending and receiving IP packets.  This script can be
1585 used for undoing the effects of the /etc/ppp/ip-up script.  It is
1586 invoked in the same manner and with the same parameters as the ip-up
1587 script.
1588 .TP
1589 .B /etc/ppp/ipv6-up
1590 Like /etc/ppp/ip-up, except that it is executed when the link is available 
1591 for sending and receiving IPv6 packets. It is executed with the parameters
1592 .IP
1593 \fIinterface-name tty-device speed local-link-local-address
1594 remote-link-local-address ipparam\fR
1595 .TP
1596 .B /etc/ppp/ipv6-down
1597 Similar to /etc/ppp/ip-down, but it is executed when IPv6 packets can no
1598 longer be transmitted on the link. It is executed with the same parameters 
1599 as the ipv6-up script.
1600 .TP
1601 .B /etc/ppp/ipx-up
1602 A program or script which is executed when the link is available for
1603 sending and receiving IPX packets (that is, IPXCP has come up).  It is
1604 executed with the parameters
1605 .IP
1606 \fIinterface-name tty-device speed network-number local-IPX-node-address
1607 remote-IPX-node-address local-IPX-routing-protocol remote-IPX-routing-protocol
1608 local-IPX-router-name remote-IPX-router-name ipparam pppd-pid\fR 
1609 .IP
1610 The local-IPX-routing-protocol and remote-IPX-routing-protocol field
1611 may be one of the following:
1612 .IP
1613 NONE      to indicate that there is no routing protocol
1614 .br
1615 RIP       to indicate that RIP/SAP should be used
1616 .br
1617 NLSP      to indicate that Novell NLSP should be used
1618 .br
1619 RIP NLSP  to indicate that both RIP/SAP and NLSP should be used
1620 .TP
1621 .B /etc/ppp/ipx-down
1622 A program or script which is executed when the link is no longer
1623 available for sending and receiving IPX packets.  This script can be
1624 used for undoing the effects of the /etc/ppp/ipx-up script.  It is
1625 invoked in the same manner and with the same parameters as the ipx-up
1626 script.
1627 .SH FILES
1628 .TP
1629 .B /var/run/ppp\fIn\fB.pid \fR(BSD or Linux), \fB/etc/ppp/ppp\fIn\fB.pid \fR(others)
1630 Process-ID for pppd process on ppp interface unit \fIn\fR.
1631 .TP
1632 .B /var/run/ppp-\fIname\fB.pid \fR(BSD or Linux),
1633 \fB/etc/ppp/ppp-\fIname\fB.pid \fR(others)
1634 Process-ID for pppd process for logical link \fIname\fR (see the
1635 \fIlinkname\fR option).
1636 .TP
1637 .B /etc/ppp/pap-secrets
1638 Usernames, passwords and IP addresses for PAP authentication.  This
1639 file should be owned by root and not readable or writable by any other
1640 user.  Pppd will log a warning if this is not the case.
1641 .TP
1642 .B /etc/ppp/chap-secrets
1643 Names, secrets and IP addresses for CHAP/MS-CHAP/MS-CHAPv2 authentication.
1644 As for /etc/ppp/pap-secrets, this file should be owned by root and not
1645 readable or writable by any other user.  Pppd will log a warning if
1646 this is not the case.
1647 .TP
1648 .B /etc/ppp/srp-secrets
1649 Names, secrets, and IP addresses for EAP authentication.  As for
1650 /etc/ppp/pap-secrets, this file should be owned by root and not
1651 readable or writable by any other user.  Pppd will log a warning if
1652 this is not the case.
1653 .TP
1654 .B ~/.ppp_pseudonym
1655 Saved client-side SRP-SHA1 pseudonym.  See the \fIsrp-use-pseudonym\fR
1656 option for details.
1657 .TP
1658 .B /etc/ppp/options
1659 System default options for pppd, read before user default options or
1660 command-line options.
1661 .TP
1662 .B ~/.ppprc
1663 User default options, read before /etc/ppp/options.\fIttyname\fR.
1664 .TP
1665 .B /etc/ppp/options.\fIttyname
1666 System default options for the serial port being used, read after
1667 ~/.ppprc.  In forming the \fIttyname\fR part of this
1668 filename, an initial /dev/ is stripped from the port name (if
1669 present), and any slashes in the remaining part are converted to
1670 dots.
1671 .TP
1672 .B /etc/ppp/peers
1673 A directory containing options files which may contain privileged
1674 options, even if pppd was invoked by a user other than root.  The
1675 system administrator can create options files in this directory to
1676 permit non-privileged users to dial out without requiring the peer to
1677 authenticate, but only to certain trusted peers.
1678 .SH SEE ALSO
1679 .TP
1680 .B RFC1144
1681 Jacobson, V.
1682 \fICompressing TCP/IP headers for low-speed serial links.\fR
1683 February 1990.
1684 .TP
1685 .B RFC1321
1686 Rivest, R.
1687 .I The MD5 Message-Digest Algorithm.
1688 April 1992.
1689 .TP
1690 .B RFC1332
1691 McGregor, G.
1692 .I PPP Internet Protocol Control Protocol (IPCP).
1693 May 1992.
1694 .TP
1695 .B RFC1334
1696 Lloyd, B.; Simpson, W.A.
1697 .I PPP authentication protocols.
1698 October 1992.
1699 .TP
1700 .B RFC1661
1701 Simpson, W.A.
1702 .I The Point\-to\-Point Protocol (PPP).
1703 July 1994.
1704 .TP
1705 .B RFC1662
1706 Simpson, W.A.
1707 .I PPP in HDLC-like Framing.
1708 July 1994.
1709 .TP
1710 .B RFC2284
1711 Blunk, L.; Vollbrecht, J.,
1712 .I PPP Extensible Authentication Protocol (EAP).
1713 March 1998.
1714 .TP
1715 .B RFC2472
1716 Haskin, D.
1717 .I IP Version 6 over PPP
1718 December 1998.
1719 .TP
1720 .B RFC2945
1721 Wu, T.,
1722 .I The SRP Authentication and Key Exchange System
1723 September 2000.
1724 .TP
1725 .B draft-ietf-pppext-eap-srp-03.txt
1726 Carlson, J.; et al.,
1727 .I EAP SRP-SHA1 Authentication Protocol.
1728 July 2001.
1729 .SH NOTES
1730 Some limited degree of control can be exercised over a running pppd
1731 process by sending it a signal from the list below.
1732 .TP
1733 .B SIGINT, SIGTERM
1734 These signals cause pppd to terminate the link (by closing LCP),
1735 restore the serial device settings, and exit.
1736 .TP
1737 .B SIGHUP
1738 This signal causes pppd to terminate the link, restore the serial
1739 device settings, and close the serial device.  If the \fIpersist\fR or
1740 \fIdemand\fR option has been specified, pppd will try to reopen the
1741 serial device and start another connection (after the holdoff period).
1742 Otherwise pppd will exit.  If this signal is received during the
1743 holdoff period, it causes pppd to end the holdoff period immediately.
1744 .TP
1745 .B SIGUSR1
1746 This signal toggles the state of the \fIdebug\fR option.
1747 .TP
1748 .B SIGUSR2
1749 This signal causes pppd to renegotiate compression.  This can be
1750 useful to re-enable compression after it has been disabled as a result
1751 of a fatal decompression error.  (Fatal decompression errors generally
1752 indicate a bug in one or other implementation.)
1753
1754 .SH AUTHORS
1755 Paul Mackerras (Paul.Mackerras@samba.org), based on earlier work by
1756 Drew Perkins,
1757 Brad Clements,
1758 Karl Fox,
1759 Greg Christy,
1760 and
1761 Brad Parker.