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