]> git.ozlabs.org Git - ppp.git/blob - pppd/pppd.8
comment on papcrypt
[ppp.git] / pppd / pppd.8
1 .\" manual page [] for pppd 2.0
2 .\" $Id: pppd.8,v 1.10 1995/05/01 01:43:54 paulus Exp $
3 .\" SH section heading
4 .\" SS subsection heading
5 .\" LP paragraph
6 .\" IP indented paragraph
7 .\" TP hanging label
8 .TH PPPD 8
9 .SH NAME
10 pppd \- Point to Point Protocol daemon
11 .SH SYNOPSIS
12 .B pppd
13 [
14 .I options
15 ] [
16 .I tty_name
17 ] [
18 .I speed
19 ]
20 .SH DESCRIPTION
21 .LP
22 The Point-to-Point Protocol (PPP) provides a method for transmitting
23 datagrams over serial point-to-point links.  PPP
24 is composed of three parts: a method for encapsulating datagrams over
25 serial links, an extensible Link Control Protocol (LCP), and
26 a family of Network Control Protocols (NCP) for establishing
27 and configuring different network-layer protocols.
28 .LP
29 The encapsulation scheme is provided by driver code in the kernel.
30 .B pppd
31 provides the basic LCP, authentication support, and an
32 NCP for establishing and configuring the Internet Protocol (IP)
33 (called the IP Control Protocol, IPCP).
34 .SH FREQUENTLY USED OPTIONS
35 .TP
36 .I <tty_name>
37 Communicate over the named device.  The string "/dev/"
38 is prepended if necessary.  If no device name is given,
39 .I pppd
40 will use the controlling terminal, and will not fork to put itself in
41 the background.
42 .TP
43 .I <speed>
44 Set the baud rate to <speed>.  On systems such as 4.4BSD and NetBSD,
45 any speed can be specified.  Other systems (e.g. SunOS) allow only a
46 limited set of speeds.
47 .TP
48 .B asyncmap \fI<map>
49 Set the async character map to <map>.
50 This map describes which control characters cannot be successfully
51 received over the serial line.
52 .I pppd
53 will ask the peer to send these characters as a 2-byte escape sequence.
54 The argument is a 32 bit hex number
55 with each bit representing a character to escape. 
56 Bit 0 (00000001) represents the character 0x00;
57 bit 31 (80000000) represents the character 0x1f or ^_.
58 If multiple \fBasyncmap\fR options are
59 given, the values are ORed together.
60 If no \fBasyncmap\fR option is given, no async character map will be
61 negotiated for the receive direction; the peer should then escape
62 \fIall\fR control characters.
63 .TP
64 .B auth
65 Require the peer to authenticate itself before allowing network
66 packets to be sent or received.
67 .TP
68 .B connect \fI<p>
69 Use the executable or shell command specified by \fI<p>\fR to set up the
70 serial line.  This script would typically use the "chat" program to
71 dial the modem and start the remote ppp session.
72 .TP
73 .B crtscts
74 Use hardware flow control (i.e. RTS/CTS) to control the flow of data on
75 the serial port.
76 .TP
77 .B -crtscts
78 Disable hardware flow control (i.e. RTS/CTS) on the serial port.  If
79 neither the \fBcrtscts\fR nor the \fB\-crtscts\fR option is given,
80 the hardware flow control setting for the serial port is left
81 unchanged.
82 .TP
83 .B xonxoff
84 Use software flow control (i.e. XON/XOFF) to control the flow of data on
85 the serial port.  This option is only implemented on Linux systems
86 at present.
87 .TP
88 .B defaultroute
89 Add a default route to the system routing tables, using the peer as
90 the gateway, when IPCP negotiation is successfully completed.
91 This entry is removed when the PPP connection is broken.
92 .TP
93 .B disconnect \fI<p>
94 Run the executable or shell command specified by \fI<p>\fR after
95 \fIpppd\fR has terminated the link.  This script could, for example,
96 issue commands to the modem to cause it to hang up if hardware modem
97 control signals were not available.
98 .TP
99 .B escape \fIxx,yy,...
100 Specifies that certain characters should be escaped on transmission
101 (regardless of whether the peer requests them to be escaped with its
102 async control character map).  The characters to be escaped are
103 specified as a list of hex numbers separated by commas.  Note that
104 almost any character can be specified for the \fBescape\fR option,
105 unlike the \fBasyncmap\fR option which only allows control characters
106 to be specified.  The characters which may not be escaped are those
107 with hex values 0x20 - 0x3f or 0x5e.
108 .TP
109 .B file \fI<f>
110 Read options from file <f> (the format is described below).
111 .TP
112 .B lock
113 Specifies that \fIpppd\fR should use a UUCP-style lock on the serial
114 device to ensure exclusive access to the device.
115 .TP
116 .B mru \fI<n>
117 Set the MRU [Maximum Receive Unit] value to <n> for negotiation.
118 .I pppd
119 will ask the peer to send packets of no more than <n> bytes.
120 The minimum MRU value is 128. 
121 The default MRU value is 1500.  A value of 296 is recommended for slow
122 links (40 bytes for TCP/IP header + 256 bytes of data).
123 .TP
124 .B netmask \fI<n>
125 Set the interface netmask to <n>, a 32 bit netmask in "decimal dot" notation
126 (e.g. 255.255.255.0).
127 .TP
128 .B passive
129 Enables the "passive" option in the LCP.  With this option,
130 .I pppd
131 will attempt to initiate a connection; if no reply is received from
132 the peer,
133 .I pppd
134 will then just wait passively for a valid LCP packet from the peer
135 (instead of exiting, as it does without this option).
136 .TP
137 .B silent
138 With this option,
139 .I pppd
140 will not transmit LCP packets to initiate a connection until a valid
141 LCP packet is received from the peer (as for the `passive' option with
142 old versions of \fIpppd\fR).
143 .SH OPTIONS
144 .TP
145 .I <local_IP_address>\fB:\fI<remote_IP_address>
146 Set the local and/or remote interface IP addresses.  Either one may be
147 omitted.  The IP addresses can be specified with a host name or in
148 decimal dot notation (e.g. 150.234.56.78).  The default local
149 address is the (first) IP address of the system (unless the
150 .B noipdefault
151 option is given).  The remote address will be obtained from the peer
152 if not specified in any option.  Thus, in simple cases, this option is
153 not required.
154 If a local and/or remote IP address is specified with this option,
155 .I pppd
156 will not accept a different value from the peer in the IPCP
157 negotiation, unless the
158 .B ipcp-accept-local
159 and/or
160 .B ipcp-accept-remote
161 options are given, respectively.
162 .TP
163 .B -all
164 Don't request or allow negotiation of any options for LCP and IPCP (use
165 default values).
166 .TP
167 .B -ac
168 Disable Address/Control compression negotiation (use default, i.e.
169 address/control field disabled).
170 .TP
171 .B -am
172 Disable asyncmap negotiation (use the default asyncmap, i.e. escape
173 all control characters).
174 .TP
175 .B -as \fI<n>
176 Same as
177 .B asyncmap \fI<n>
178 .TP
179 .B -d
180 Increase debugging level (same as the \fBdebug\fR option).
181 .TP
182 .B -detach
183 Don't fork to become a background process (otherwise
184 .I pppd
185 will do so if a serial device is specified).
186 .TP
187 .B -ip
188 Disable IP address negotiation (with this option, the remote IP
189 address must be specified with an option on the command line or in an
190 options file).
191 .TP
192 .B -mn
193 Disable magic number negotiation.  With this option,
194 .I pppd
195 cannot detect a looped-back line.
196 .TP
197 .B -mru
198 Disable MRU [Maximum Receive Unit] negotiation (use default, i.e. 1500).
199 .TP
200 .B -p
201 Same as the
202 .B passive
203 option.
204 .TP
205 .B -pc
206 Disable protocol field compression negotiation (use default, i.e.
207 protocol field compression disabled).
208 .TP
209 .B +ua \fI<p>
210 Agree to authenticate using PAP [Password Authentication Protocol] if
211 requested by the peer, and
212 use the data in file <p> for the user and password to send to the
213 peer. The file contains the remote user name, followed by a newline,
214 followed by the remote password, followed by a newline.  This option
215 is obsolescent.
216 .TP
217 .B +pap
218 Require the peer to authenticate itself using PAP.
219 .TP
220 .B -pap
221 Don't agree to authenticate using PAP.
222 .TP
223 .B +chap
224 Require the peer to authenticate itself using CHAP [Cryptographic
225 Handshake Authentication Protocol] authentication.
226 .TP
227 .B -chap
228 Don't agree to authenticate using CHAP.
229 .TP
230 .B -vj
231 Disable negotiation of Van Jacobson style IP header compression (use
232 default, i.e. no compression).
233 .TP
234 .B bsdcomp \fInr,nt
235 Request that the peer compress packets that it sends, using the
236 BSD-Compress scheme, with a maximum code size of \fInr\fR bits, and
237 agree to compress packets sent to the peer with a maximum code size of
238 \fInt\fR bits.  If \fInt\fR is not specified, it defaults to the value
239 given for \fInr\fR.  Values in the range 9 to 15 may be used for
240 \fInr\fR and \fInt\fR; larger values give better compression but
241 consume more kernel memory for compression dictionaries.
242 Alternatively, a value of 0 for \fInr\fR or \fInt\fR disables
243 compression in the corresponding direction.
244 .TP
245 .B \-bsdcomp
246 Disables compression; \fBpppd\fR will not request or agree to compress
247 packets using the BSD-Compress scheme.
248 .TP
249 .B debug
250 Increase debugging level (same as \fB\-d\fR).
251 If this
252 option is given, \fIpppd\fR will log the contents of all control
253 packets sent or received in a readable form.  The packets are logged
254 through syslog with facility \fIdaemon\fR and level \fIdebug\fR.  This
255 information can be directed to a file by setting up /etc/syslog.conf
256 appropriately (see syslog.conf(5)).
257 .TP
258 .B domain \fI<d>
259 Append the domain name <d> to the local host name for authentication
260 purposes.  For example, if gethostname() returns the name porsche, but the
261 fully qualified domain name is porsche.Quotron.COM, you would use the
262 domain option to set the domain name to Quotron.COM.
263 .TP
264 .B modem
265 Use the modem control lines.  This option is the default.  With this
266 option,
267 .B pppd
268 will wait for the CD (Carrier Detect) signal from the modem to be asserted
269 when opening the serial device
270 (unless a connect script is specified), and it will drop the DTR (Data
271 Terminal Ready) signal briefly when the connection is terminated and before
272 executing the connect script.
273 On Ultrix, this option implies hardware
274 flow control, as for the \fBcrtscts\fR option.  
275 .TP
276 .B kdebug \fIn
277 Enable debugging code in the kernel-level PPP driver.  The argument
278 \fIn\fR is a number which is the sum of the following values: 1 to
279 enable general debug messages, 2 to request that the contents of
280 received packets be printed, and 4 to request that the contents of
281 transmitted packets be printed.
282 .TP
283 .B local
284 Don't use the modem control lines.  With this option,
285 .B pppd
286 will ignore the state of the CD (Carrier Detect) signal from the modem and
287 will not change the state of the DTR (Data Terminal Ready) signal.
288 .TP
289 .B mtu \fI<n>
290 Set the MTU [Maximum Transmit Unit] value to \fI<n>\fR.  Unless the
291 peer requests a smaller value via MRU negotiation, \fIpppd\fR will
292 request that the kernel networking code send data packets of no more
293 than \fIn\fR bytes through the PPP network interface. 
294 .TP
295 .B name \fI<n>
296 Set the name of the local system for authentication purposes to <n>.
297 .TP
298 .B user \fI<u>
299 Set the user name to use for authenticating this machine with the peer
300 using PAP to <u>.
301 .TP
302 .B usehostname
303 Enforce the use of the hostname as the name of the local system for
304 authentication purposes (overrides the
305 .B name
306 option).
307 .TP
308 .B remotename \fI<n>
309 Set the assumed name of the remote system for authentication purposes
310 to <n>.
311 .TP
312 .B papcrypt
313 Indicates that all secrets in the /etc/ppp/pap-secrets file which
314 are used for checking the identity of the peer are encrypted, and thus
315 pppd should not accept a password which (before encryption) is
316 identical to the secret from the /etc/ppp/pap-secrets file.
317 .TP
318 .B proxyarp
319 Add an entry to this system's ARP [Address Resolution Protocol] table
320 with the IP address of the peer and the Ethernet address of this
321 system.
322 .TP
323 .B persist
324 Do not exit after a connection is terminated; instead try to reopen
325 the connection.
326 .TP
327 .B login
328 Use the system password database for authenticating the peer using
329 PAP.
330 .TP
331 .B noipdefault
332 Disables the default behaviour when no local IP address is specified,
333 which is to determine (if possible) the local IP address from the
334 hostname.  With this option, the peer will have to supply the local IP
335 address during IPCP negotiation (unless it specified explicitly on the
336 command line or in an options file).
337 .TP
338 .B lcp-echo-interval \fI<n>
339 If this option is given, \fIpppd\fR will send an LCP echo-request
340 frame to the peer every \fIn\fR seconds.  Under Linux, the
341 echo-request is sent when no packets have been received from the peer
342 for \fIn\fR seconds.  Normally the peer should respond to the
343 echo-request by sending an echo-reply.  This option can be used with
344 the \fIlcp-echo-failure\fR option to detect that the peer is no longer
345 connected.
346 .TP
347 .B lcp-echo-failure \fI<n>
348 If this option is given, \fIpppd\fR will presume the peer to be dead
349 if \fIn\fR LCP echo-requests are sent without receiving a valid LCP
350 echo-reply.  If this happens, \fIpppd\fR will terminate the
351 connection.  Use of this option requires a non-zero value for the
352 \fIlcp-echo-interval\fR parameter.  This option can be used to enable
353 \fIpppd\fR to terminate after the physical connection has been broken
354 (e.g., the modem has hung up) in situations where no hardware modem
355 control lines are available.
356 .TP
357 .B lcp-restart \fI<n>
358 Set the LCP restart interval (retransmission timeout) to <n> seconds
359 (default 3).
360 .TP
361 .B lcp-max-terminate \fI<n>
362 Set the maximum number of LCP terminate-request transmissions to <n>
363 (default 3).
364 .TP
365 .B lcp-max-configure \fI<n>
366 Set the maximum number of LCP configure-request transmissions to <n>
367 (default 10).
368 .TP
369 .B lcp-max-failure \fI<n>
370 Set the maximum number of LCP configure-NAKs returned before starting
371 to send configure-Rejects instead to <n> (default 10).
372 .TP
373 .B ipcp-restart \fI<n>
374 Set the IPCP restart interval (retransmission timeout) to <n> seconds
375 (default 3).
376 .TP
377 .B ipcp-max-terminate \fI<n>
378 Set the maximum number of IPCP terminate-request transmissions to <n>
379 (default 3).
380 .TP
381 .B ipcp-max-configure \fI<n>
382 Set the maximum number of IPCP configure-request transmissions to <n>
383 (default 10).
384 .TP
385 .B ipcp-max-failure \fI<n>
386 Set the maximum number of IPCP configure-NAKs returned before starting
387 to send configure-Rejects instead to <n> (default 10).
388 .TP
389 .B pap-restart \fI<n>
390 Set the PAP restart interval (retransmission timeout) to <n> seconds
391 (default 3).
392 .TP
393 .B pap-max-authreq \fI<n>
394 Set the maximum number of PAP authenticate-request transmissions to
395 <n> (default 10).
396 .TP
397 .B chap-restart \fI<n>
398 Set the CHAP restart interval (retransmission timeout for challenges)
399 to <n> seconds (default 3).
400 .TP
401 .B chap-max-challenge \fI<n>
402 Set the maximum number of CHAP challenge transmissions to <n> (default
403 10).
404 .TP
405 .B chap-interval \fI<n>
406 If this option is given,
407 .I pppd
408 will rechallenge the peer every <n> seconds.
409 .TP
410 .B ipcp-accept-local
411 With this option,
412 .I pppd
413 will accept the peer's idea of our local IP address, even if the
414 local IP address was specified in an option.
415 .TP
416 .B ipcp-accept-remote
417 With this option,
418 .I pppd
419 will accept the peer's idea of its (remote) IP address, even if the
420 remote IP address was specified in an option.
421 .SH OPTIONS FILES
422 Options can be taken from files as well as the command line.  
423 .I pppd
424 reads options from the files /etc/ppp/options and ~/.ppprc before
425 looking at the command line.  An options file is parsed into a series
426 of words, delimited by whitespace.  Whitespace can be included in a
427 word by enclosing the word in quotes (").  A backslash (\\) quotes the
428 following character.  A hash (#) starts a comment, which continues
429 until the end of the line.
430 .SH AUTHENTICATION
431 .I pppd
432 provides system administrators with sufficient access control that PPP
433 access to a server machine can be provided to legitimate users without
434 fear of compromising the security of the server or the network it's
435 on.  In part this is provided by the /etc/ppp/options file, where the
436 administrator can place options to require authentication whenever
437 .I pppd
438 is run, and in part by the PAP and CHAP secrets files, where the
439 administrator can restrict the set of IP addresses which individual
440 users may use.
441 .LP
442 The default behaviour of
443 .I pppd
444 is to agree to authenticate if requested, and to not
445 require authentication from the peer.  However, 
446 .I pppd
447 will not agree to
448 authenticate itself with a particular protocol if it has no secrets
449 which could be used to do so.
450 .LP
451 Authentication is based on secrets, which are selected from secrets
452 files (/etc/ppp/pap-secrets for PAP, /etc/ppp/chap-secrets for CHAP).
453 Both secrets files have the same format, and both can store secrets
454 for several combinations of server (authenticating peer) and client
455 (peer being authenticated).  Note that
456 .I pppd
457 can be both a server
458 and client, and that different protocols can be used in the two
459 directions if desired.
460 .LP
461 A secrets file is parsed into words as for a options file.  A secret
462 is specified by a line containing at least 3 words, in the order
463 client name, server name, secret.  Any following words on the same line are
464 taken to be a list of acceptable IP addresses for that client.  If
465 there are only 3 words on the line, it is assumed that any IP address
466 is OK; to disallow all IP addresses, use "-".  If the secret starts
467 with an `@', what follows is assumed to be the name of a file from
468 which to read the secret.  A "*" as the client or server name matches
469 any name.  When selecting a secret, \fIpppd\fR takes the best match, i.e.
470 the match with the fewest wildcards.
471 .LP
472 Thus a secrets file contains both secrets for use in authenticating
473 other hosts, plus secrets which we use for authenticating ourselves to
474 others.  Which secret to use is chosen based on the names of the host
475 (the `local name') and its peer (the `remote name').  The local name
476 is set as follows:
477 .TP 3
478 if the \fBusehostname\fR option is given,
479 then the local name is the hostname of this machine
480 (with the domain appended, if given)
481 .TP 3
482 else if the \fBname\fR option is given,
483 then use the argument of the first \fBname\fR option seen
484 .TP 3
485 else if the local IP address is specified with a hostname,
486 then use that name
487 .TP 3
488 else use the hostname of this machine (with the domain appended, if given)
489 .LP
490 When authenticating ourselves using PAP, there is also a `username'
491 which is the local name by default, but can be set with the \fBuser\fR
492 option or the \fB+ua\fR option.
493 .LP
494 The remote name is set as follows:
495 .TP 3
496 if the \fBremotename\fR option is given,
497 then use the argument of the last \fBremotename\fR option seen
498 .TP 3
499 else if the remote IP address is specified with a hostname,
500 then use that host name
501 .TP 3
502 else the remote name is the null string "".
503 .LP
504 Secrets are selected from the PAP secrets file as follows:
505 .TP 2
506 *
507 For authenticating the peer, look for a secret with client ==
508 username specified in the PAP authenticate-request, and server ==
509 local name.
510 .TP 2
511 *
512 For authenticating ourselves to the peer, look for a secret with
513 client == our username, server == remote name.
514 .LP
515 When authenticating the peer with PAP, a secret of "" matches any
516 password supplied by the peer.  If the password doesn't match the
517 secret, the password is encrypted using crypt() and checked against
518 the secret again; thus secrets for authenticating the peer can be
519 stored in encrypted form.  If the \fBpapcrypt\fR option is given, the
520 first (unencrypted) comparison is omitted, for better security.
521 .LP
522 If the \fBlogin\fR option was specified, the
523 username and password are also checked against the system password
524 database.  Thus, the system administrator can set up the pap-secrets
525 file to allow PPP access only to certain users, and to restrict the
526 set of IP addresses that each user can use.  Typically, when using the
527 \fBlogin\fR option, the secret in /etc/ppp/pap-secrets would be "", to
528 avoid the need to have the same secret in two places.
529 .LP
530 Secrets are selected from the CHAP secrets file as follows:
531 .TP 2
532 *
533 For authenticating the peer, look for a secret with client == name
534 specified in the CHAP-Response message, and server == local name.
535 .TP 2
536 *
537 For authenticating ourselves to the peer, look for a secret with
538 client == local name, and server == name specified in the
539 CHAP-Challenge message.
540 .LP
541 Authentication must be satisfactorily completed before IPCP (or any
542 other Network Control Protocol) can be started.  If authentication
543 fails, \fIpppd\fR will terminated the link (by closing LCP).  If IPCP
544 negotiates an unacceptable IP address for the remote host, IPCP will
545 be closed.  IP packets can only be sent or received when IPCP is open.
546 .LP
547 In some cases it is desirable to allow some hosts which can't
548 authenticate themselves to connect and use one of a restricted set of
549 IP addresses, even when the local host generally requires
550 authentication.  If the peer refuses to authenticate itself when
551 requested, \fIpppd\fR takes that as equivalent to authenticating with
552 PAP using the empty string for the username and password.  Thus, by
553 adding a line to the pap-secrets file which specifies the empty string
554 for the client and password, it is possible to allow restricted access
555 to hosts which refuse to authenticate themselves.
556 .SH ROUTING
557 .LP
558 When IPCP negotiation is completed successfully,
559 .I pppd
560 will inform the kernel of the local and remote IP addresses for the
561 ppp interface.  This is sufficient to create a
562 host route to the remote end of the link, which will enable the peers
563 to exchange IP packets.  Communication with other machines generally
564 requires further modification to routing tables and/or ARP (Address
565 Resolution Protocol) tables.  In some cases this will be done
566 automatically through the actions of the \fIrouted\fR or \fIgated\fR
567 daemons, but in most cases some further intervention is required.
568 .LP
569 Sometimes it is desirable
570 to add a default route through the remote host, as in the case of a
571 machine whose only connection to the Internet is through the ppp
572 interface.  The \fBdefaultroute\fR option causes \fIpppd\fR to create such a
573 default route when IPCP comes up, and delete it when the link is
574 terminated.
575 .LP
576 In some cases it is desirable to use proxy ARP, for example on a
577 server machine connected to a LAN, in order to allow other hosts to
578 communicate with the remote host.  The \fBproxyarp\fR option causes \fIpppd\fR
579 to look for a network interface on the same subnet as the remote host
580 (an interface supporting broadcast and ARP, which is up and not a
581 point-to-point or loopback interface).  If found, \fIpppd\fR creates a
582 permanent, published ARP entry with the IP address of the remote host
583 and the hardware address of the network interface found.
584 .SH EXAMPLES
585 .LP
586 In the simplest case, you can connect the serial ports of two machines
587 and issue a command like
588 .IP
589 pppd /dev/ttya 9600 passive
590 .LP
591 to each machine, assuming there is no \fIgetty\fR running on the
592 serial ports.  If one machine has a \fIgetty\fR running, you can use
593 \fIkermit\fR or \fItip\fR on the other machine to log in to the first
594 machine and issue a command like
595 .IP
596 pppd passive
597 .LP
598 Then exit from the communications program (making sure the connection
599 isn't dropped), and issue a command like
600 .IP
601 pppd /dev/ttya 9600
602 .LP
603 The process of logging in to the other machine and starting \fIpppd\fR
604 can be automated by using the \fBconnect\fR option to run \fIchat\fR,
605 for example:
606 .IP
607 pppd /dev/ttya 38400 connect 'chat "" "" "login:" "username"
608 "Password:" "password" "% " "exec pppd passive"'
609 .LP
610 (Note however that running chat like this will leave the password
611 visible in the parameter list of pppd and chat.)
612 .LP
613 If your serial connection is any more complicated than a piece of
614 wire, you may need to arrange for some control characters to be
615 escaped.  In particular, it is often useful to escape XON (^Q) and
616 XOFF (^S), using \fBasyncmap a0000\fR.  If the path includes a telnet,
617 you probably should escape ^] as well (\fBasyncmap 200a0000\fR).
618 If the path includes an rlogin, you will need to use the \fBescape
619 ff\fR option on the end which is running the rlogin client, since many
620 rlogin implementations are not
621 transparent; they will remove the sequence [0xff, 0xff, 0x73, 0x73,
622 followed by any 8 bytes] from the stream.
623 .SH DIAGNOSTICS
624 .LP
625 Messages are sent to the syslog daemon using facility LOG_DAEMON.
626 (This can be overriden by recompiling \fIpppd\fR with the macro
627 LOG_PPP defined as the desired facility.)  In order to see the error
628 and debug messages, you will need to edit your /etc/syslog.conf file
629 to direct the messages to the desired output device or file.
630 .LP
631 The \fBdebug\fR option causes the contents of all control packets sent
632 or received to be logged, that is, all LCP, PAP, CHAP or IPCP packets.
633 This can be useful if the PPP negotiation does not succeed.
634 If debugging is enabled at compile time, the \fBdebug\fR option also
635 causes other debugging messages to be logged.
636 .LP
637 Debugging can also be enabled or disabled by sending a
638 SIGUSR1 to the
639 .I pppd
640 process.  This signal acts as a toggle.
641 .SH FILES
642 .TP
643 .B /var/run/ppp\fIn\fB.pid \fR(BSD or Linux), \fB/etc/ppp/ppp\fIn\fB.pid \fR(others)
644 Process-ID for \fIpppd\fR process on ppp interface unit \fIn\fR.
645 .TP
646 .B /etc/ppp/ip-up
647 A program or script which is executed when the link is available for
648 sending and receiving IP packets (that is, IPCP has come up).  It is
649 executed with the parameters
650 .IP
651 \fIinterface-name tty-device speed local-IP-address
652 remote-IP-address\fR
653 .IP
654 and with its standard input,
655 output and error streams redirected to \fB/dev/null\fR.
656 .IP
657 This program or script is executed with the same real and effective
658 user-ID as \fIpppd\fR, that is, at least the effective user-ID and
659 possibly the real user-ID will be \fBroot\fR.  This is so that it can
660 be used to manipulate routes, run privileged daemons (e.g.
661 \fBsendmail\fR), etc.  Be careful that the contents of the
662 /etc/ppp/ip-up and /etc/ppp/ip-down scripts do not compromise your
663 system's security.
664 .TP
665 .B /etc/ppp/ip-down
666 A program or script which is executed when the link is no longer
667 available for sending and receiving IP packets.  This script can be
668 used for undoing the effects of the /etc/ppp/ip-up script.  It is
669 invoked with the same parameters as the ip-up script, and the same
670 security considerations apply, since it is executed with the same
671 effective and real user-IDs as \fIpppd\fR.
672 .TP
673 .B /etc/ppp/pap-secrets
674 Usernames, passwords and IP addresses for PAP authentication.
675 .TP
676 .B /etc/ppp/chap-secrets
677 Names, secrets and IP addresses for CHAP authentication.
678 .TP
679 .B /etc/ppp/options
680 System default options for
681 .I pppd,
682 read before user default options or command-line options.
683 .TP
684 .B ~/.ppprc
685 User default options, read before command-line options.
686 .TP
687 .B /etc/ppp/options.\fIttyname
688 System default options for the serial port being used, read after
689 command-line options.
690 .SH SEE ALSO
691 .TP
692 .B RFC1144
693 Jacobson, V.
694 .I Compressing TCP/IP headers for low-speed serial links.
695 1990 February.
696 .TP
697 .B RFC1321
698 Rivest, R.
699 .I The MD5 Message-Digest Algorithm.
700 1992 April.
701 .TP
702 .B RFC1332
703 McGregor, G.
704 .I PPP Internet Protocol Control Protocol (IPCP).
705 1992 May.
706 .TP
707 .B RFC1334
708 Lloyd, B.; Simpson, W.A.
709 .I PPP authentication protocols.
710 1992 October.
711 .TP
712 .B RFC1548
713 Simpson, W.A.
714 .I The Point\-to\-Point Protocol (PPP).
715 1993 December.
716 .TP
717 .B RFC1549
718 Simpson, W.A.
719 .I PPP in HDLC Framing.
720 1993 December
721 .SH NOTES
722 The following signals have the specified effect when sent to the
723 .I pppd
724 process.
725 .TP
726 .B SIGINT, SIGTERM
727 These signals cause \fBpppd\fR to terminate the link (by closing LCP),
728 restore the serial device settings, and exit.
729 .TP
730 .B SIGHUP
731 This signal causes \fBpppd\fR to terminate the link, restore the
732 serial device settings, and close the serial device.  If the
733 \fBpersist\fR option has been specified, \fBpppd\fR will try to reopen
734 the serial device and start another connection.  Otherwise \fBpppd\fR
735 will exit.
736 .TP
737 .B SIGUSR2
738 This signal causes
739 .B pppd
740 to renegotiate compression.  This can be useful to re-enable
741 compression after it has been disabled as a result of a fatal
742 decompression error.  With the BSD Compress scheme, fatal
743 decompression errors generally indicate a bug in one or other
744 implementation.
745
746 .SH AUTHORS
747 Drew Perkins,
748 Brad Clements,
749 Karl Fox,
750 Greg Christy,
751 Brad Parker,
752 Paul Mackerras (paulus@cs.anu.edu.au).