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