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