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