Initial import from FreeBSD RELENG_4:
[dragonfly.git] / usr.sbin / ppp / ppp.8.m4
1 changequote({,})dnl
2 changecom(,)dnl
3 .\"
4 .\" Copyright (c) 2001 Brian Somers <brian@Awfulhak.org>
5 .\" All rights reserved.
6 .\"
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that the following conditions
9 .\" are met:
10 .\" 1. Redistributions of source code must retain the above copyright
11 .\"    notice, this list of conditions and the following disclaimer.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\"    notice, this list of conditions and the following disclaimer in the
14 .\"    documentation and/or other materials provided with the distribution.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 .\" SUCH DAMAGE.
27 .\"
28 .\" $FreeBSD: src/usr.sbin/ppp/ppp.8.m4,v 1.301.2.1 2002/09/01 02:12:31 brian Exp $
29 .\"
30 .Dd September 20, 1995
31 .Dt PPP 8
32 .Os
33 .Sh NAME
34 .Nm ppp
35 .Nd Point to Point Protocol (a.k.a. user-ppp)
36 .Sh SYNOPSIS
37 .Nm
38 .Op Fl Va mode
39 .Op Fl nat
40 .Op Fl quiet
41 .Op Fl unit Ns Ar N
42 .Op Ar system ...
43 .Sh DESCRIPTION
44 This is a user process
45 .Em PPP
46 software package.
47 Normally,
48 .Em PPP
49 is implemented as a part of the kernel (e.g., as managed by
50 .Xr pppd 8 )
51 and it's thus somewhat hard to debug and/or modify its behaviour.
52 However, in this implementation
53 .Em PPP
54 is done as a user process with the help of the
55 tunnel device driver (tun).
56 .Pp
57 The
58 .Fl nat
59 flag does the equivalent of a
60 .Dq nat enable yes ,
61 enabling
62 .Nm Ns No 's
63 network address translation features.
64 This allows
65 .Nm
66 to act as a NAT or masquerading engine for all machines on an internal
67 LAN.
68 ifdef({LOCALNAT},{},{Refer to
69 .Xr libalias 3
70 for details on the technical side of the NAT engine.
71 })dnl
72 Refer to the
73 .Sx NETWORK ADDRESS TRANSLATION (PACKET ALIASING)
74 section of this manual page for details on how to configure NAT in
75 .Nm .
76 .Pp
77 The
78 .Fl quiet
79 flag tells
80 .Nm
81 to be silent at startup rather than displaying the mode and interface
82 to standard output.
83 .Pp
84 The
85 .Fl unit
86 flag tells
87 .Nm
88 to only attempt to open
89 .Pa /dev/tun Ns Ar N .
90 Normally,
91 .Nm
92 will start with a value of 0 for
93 .Ar N ,
94 and keep trying to open a tunnel device by incrementing the value of
95 .Ar N
96 by one each time until it succeeds.
97 If it fails three times in a row
98 because the device file is missing, it gives up.
99 .Pp
100 The following
101 .Va mode Ns No s
102 are understood by
103 .Nm :
104 .Bl -tag -width XXX -offset XXX
105 .It Fl auto
106 .Nm
107 opens the tun interface, configures it then goes into the background.
108 The link isn't brought up until outgoing data is detected on the tun
109 interface at which point
110 .Nm
111 attempts to bring up the link.
112 Packets received (including the first one) while
113 .Nm
114 is trying to bring the link up will remain queued for a default of
115 2 minutes.
116 See the
117 .Dq set choked
118 command below.
119 .Pp
120 In
121 .Fl auto
122 mode, at least one
123 .Dq system
124 must be given on the command line (see below) and a
125 .Dq set ifaddr
126 must be done in the system profile that specifies a peer IP address to
127 use when configuring the interface.
128 Something like
129 .Dq 10.0.0.1/0
130 is usually appropriate.
131 See the
132 .Dq pmdemand
133 system in
134 .Pa /usr/share/examples/ppp/ppp.conf.sample
135 for an example.
136 .It Fl background
137 Here,
138 .Nm
139 attempts to establish a connection with the peer immediately.
140 If it succeeds,
141 .Nm
142 goes into the background and the parent process returns an exit code
143 of 0.
144 If it fails,
145 .Nm
146 exits with a non-zero result.
147 .It Fl foreground
148 In foreground mode,
149 .Nm
150 attempts to establish a connection with the peer immediately, but never
151 becomes a daemon.
152 The link is created in background mode.
153 This is useful if you wish to control
154 .Nm Ns No 's
155 invocation from another process.
156 .It Fl direct
157 This is used for receiving incoming connections.
158 .Nm
159 ignores the
160 .Dq set device
161 line and uses descriptor 0 as the link.
162 .Pp
163 If callback is configured,
164 .Nm
165 will use the
166 .Dq set device
167 information when dialing back.
168 .It Fl dedicated
169 This option is designed for machines connected with a dedicated
170 wire.
171 .Nm
172 will always keep the device open and will never use any configured
173 chat scripts.
174 .It Fl ddial
175 This mode is equivalent to
176 .Fl auto
177 mode except that
178 .Nm
179 will bring the link back up any time it's dropped for any reason.
180 .It Fl interactive
181 This is a no-op, and gives the same behaviour as if none of the above
182 modes have been specified.
183 .Nm
184 loads any sections specified on the command line then provides an
185 interactive prompt.
186 .El
187 .Pp
188 One or more configuration entries or systems
189 (as specified in
190 .Pa /etc/ppp/ppp.conf )
191 may also be specified on the command line.
192 .Nm
193 will read the
194 .Dq default
195 system from
196 .Pa /etc/ppp/ppp.conf
197 at startup, followed by each of the systems specified on the command line.
198 .Sh Major Features
199 .Bl -diag
200 .It Provides an interactive user interface.
201 Using its command mode, the user can
202 easily enter commands to establish the connection with the remote end, check
203 the status of connection and close the connection.
204 All functions can also be optionally password protected for security.
205 .It Supports both manual and automatic dialing.
206 Interactive mode has a
207 .Dq term
208 command which enables you to talk to the device directly.
209 When you are connected to the remote peer and it starts to talk
210 .Em PPP ,
211 .Nm
212 detects it and switches to packet mode automatically.
213 Once you have
214 determined the proper sequence for connecting with the remote host, you
215 can write a chat script to {define} the necessary dialing and login
216 procedure for later convenience.
217 .It Supports on-demand dialup capability.
218 By using
219 .Fl auto
220 mode,
221 .Nm
222 will act as a daemon and wait for a packet to be sent over the
223 .Em PPP
224 link.
225 When this happens, the daemon automatically dials and establishes the
226 connection.
227 In almost the same manner
228 .Fl ddial
229 mode (direct-dial mode) also automatically dials and establishes the
230 connection.
231 However, it differs in that it will dial the remote site
232 any time it detects the link is down, even if there are no packets to be
233 sent.
234 This mode is useful for full-time connections where we worry less
235 about line charges and more about being connected full time.
236 A third
237 .Fl dedicated
238 mode is also available.
239 This mode is targeted at a dedicated link between two machines.
240 .Nm
241 will never voluntarily quit from dedicated mode - you must send it the
242 .Dq quit all
243 command via its diagnostic socket.
244 A
245 .Dv SIGHUP
246 will force an LCP renegotiation, and a
247 .Dv SIGTERM
248 will force it to exit.
249 .It Supports client callback.
250 .Nm
251 can use either the standard LCP callback protocol or the Microsoft
252 CallBack Control Protocol (ftp://ftp.microsoft.com/developr/rfc/cbcp.txt).
253 .It Supports NAT or packet aliasing.
254 Packet aliasing (a.k.a. IP masquerading) allows computers on a
255 private, unregistered network to access the Internet.
256 The
257 .Em PPP
258 host acts as a masquerading gateway.
259 IP addresses as well as TCP and
260 UDP port numbers are NAT'd for outgoing packets and de-NAT'd for
261 returning packets.
262 .It Supports background PPP connections.
263 In background mode, if
264 .Nm
265 successfully establishes the connection, it will become a daemon.
266 Otherwise, it will exit with an error.
267 This allows the setup of
268 scripts that wish to execute certain commands only if the connection
269 is successfully established.
270 .It Supports server-side PPP connections.
271 In direct mode,
272 .Nm
273 acts as server which accepts incoming
274 .Em PPP
275 connections on stdin/stdout.
276 .It "Supports PAP and CHAP (rfc 1994, 2433 and 2759) authentication.
277 With PAP or CHAP, it is possible to skip the Unix style
278 .Xr login 1
279 procedure, and use the
280 .Em PPP
281 protocol for authentication instead.
282 If the peer requests Microsoft CHAP authentication and
283 .Nm
284 is compiled with DES support, an appropriate MD4/DES response will be
285 made.
286 .It Supports RADIUS (rfc 2138 & 2548) authentication.
287 An extension to PAP and CHAP,
288 .Em \&R Ns No emote
289 .Em \&A Ns No ccess
290 .Em \&D Ns No ial
291 .Em \&I Ns No n
292 .Em \&U Ns No ser
293 .Em \&S Ns No ervice
294 allows authentication information to be stored in a central or
295 distributed database along with various per-user framed connection
296 characteristics.
297 ifdef({LOCALRAD},{},{If
298 .Xr libradius 3
299 is available at compile time,
300 .Nm
301 will use it to make
302 .Em RADIUS
303 requests when configured to do so.
304 })dnl
305 .It Supports Proxy Arp.
306 .Nm
307 can be configured to make one or more proxy arp entries on behalf of
308 the peer.
309 This allows routing from the peer to the LAN without
310 configuring each machine on that LAN.
311 .It Supports packet filtering.
312 User can {define} four kinds of filters: the
313 .Em in
314 filter for incoming packets, the
315 .Em out
316 filter for outgoing packets, the
317 .Em dial
318 filter to {define} a dialing trigger packet and the
319 .Em alive
320 filter for keeping a connection alive with the trigger packet.
321 .It Tunnel driver supports bpf.
322 The user can use
323 .Xr tcpdump 1
324 to check the packet flow over the
325 .Em PPP
326 link.
327 .It Supports PPP over TCP and PPP over UDP.
328 If a device name is specified as
329 .Em host Ns No : Ns Em port Ns
330 .Xo
331 .Op / Ns tcp|udp ,
332 .Xc
333 .Nm
334 will open a TCP or UDP connection for transporting data rather than using a
335 conventional serial device.
336 UDP connections force
337 .Nm
338 into synchronous mode.
339 .It Supports PPP over ISDN.
340 If
341 .Nm
342 is given a raw B-channel i4b device to open as a link, it's able to talk
343 to the
344 .Xr isdnd 8
345 daemon to establish an ISDN connection.
346 .It Supports PPP over Ethernet (rfc 2516).
347 If
348 .Nm
349 is given a device specification of the format
350 .No PPPoE: Ns Ar iface Ns Xo
351 .Op \&: Ns Ar provider Ns
352 .Xc
353 and if
354 .Xr netgraph 4
355 is available,
356 .Nm
357 will attempt talk
358 .Em PPP
359 over Ethernet to
360 .Ar provider
361 using the
362 .Ar iface
363 network interface.
364 .Pp
365 On systems that do not support
366 .Xr netgraph 4 ,
367 an external program such as
368 .Xr pppoe 8
369 may be used.
370 .It "Supports IETF draft Predictor-1 (rfc 1978) and DEFLATE (rfc 1979) compression."
371 .Nm
372 supports not only VJ-compression but also Predictor-1 and DEFLATE compression.
373 Normally, a modem has built-in compression (e.g., v42.bis) and the system
374 may receive higher data rates from it as a result of such compression.
375 While this is generally a good thing in most other situations, this
376 higher speed data imposes a penalty on the system by increasing the
377 number of serial interrupts the system has to process in talking to the
378 modem and also increases latency.
379 Unlike VJ-compression, Predictor-1 and DEFLATE compression pre-compresses
380 .Em all
381 network traffic flowing through the link, thus reducing overheads to a
382 minimum.
383 .It Supports Microsoft's IPCP extensions (rfc 1877).
384 Name Server Addresses and NetBIOS Name Server Addresses can be negotiated
385 with clients using the Microsoft
386 .Em PPP
387 stack (i.e., Win95, WinNT)
388 .It Supports Multi-link PPP (rfc 1990)
389 It is possible to configure
390 .Nm
391 to open more than one physical connection to the peer, combining the
392 bandwidth of all links for better throughput.
393 .It Supports MPPE (draft-ietf-pppext-mppe)
394 MPPE is Microsoft Point to Point Encryption scheme.
395 It is possible to configure
396 .Nm
397 to participate in Microsoft's Windows VPN.
398 For now,
399 .Nm
400 can only get encryption keys from CHAP 81 authentication.
401 .Nm
402 must be compiled with DES for MPPE to operate.
403 .It Supports IPV6CP (rfc 2023).
404 An IPv6 connection can be made in addition to or instead of the normal
405 IPv4 connection.
406 .El
407 .Sh PERMISSIONS
408 .Nm
409 is installed as user
410 .Dv root
411 and group
412 .Dv network ,
413 with permissions
414 .Dv 04554 .
415 By default,
416 .Nm
417 will not run if the invoking user id is not zero.
418 This may be overridden by using the
419 .Dq allow users
420 command in
421 .Pa /etc/ppp/ppp.conf .
422 When running as a normal user,
423 .Nm
424 switches to user id 0 in order to alter the system routing table, set up
425 system lock files and read the ppp configuration files.
426 All external commands (executed via the "shell" or "!bg" commands) are executed
427 as the user id that invoked
428 .Nm .
429 Refer to the
430 .Sq ID0
431 logging facility if you're interested in what exactly is done as user id
432 zero.
433 .Sh GETTING STARTED
434 When you first run
435 .Nm
436 you may need to deal with some initial configuration details.
437 .Bl -bullet
438 .It
439 Your kernel must {include} a tunnel device (the GENERIC kernel includes
440 one by default).
441 If it doesn't, or if you require more than one tun
442 interface, you'll need to rebuild your kernel with the following line in
443 your kernel configuration file:
444 .Pp
445 .Dl pseudo-device tun N
446 .Pp
447 where
448 .Ar N
449 is the maximum number of
450 .Em PPP
451 connections you wish to support.
452 .It
453 Check your
454 .Pa /dev
455 directory for the tunnel device entries
456 .Pa /dev/tunN ,
457 where
458 .Sq N
459 represents the number of the tun device, starting at zero.
460 If they don't exist, you can create them by running "sh ./MAKEDEV tunN".
461 This will create tun devices 0 through
462 .Ar N .
463 .It
464 Make sure that your system has a group named
465 .Dq network
466 in the
467 .Pa /etc/group
468 file and that the group contains the names of all users expected to use
469 .Nm .
470 Refer to the
471 .Xr group 5
472 manual page for details.
473 Each of these users must also be given access using the
474 .Dq allow users
475 command in
476 .Pa /etc/ppp/ppp.conf .
477 .It
478 Create a log file.
479 .Nm
480 uses
481 .Xr syslog 3
482 to log information.
483 A common log file name is
484 .Pa /var/log/ppp.log .
485 To make output go to this file, put the following lines in the
486 .Pa /etc/syslog.conf
487 file:
488 .Bd -literal -offset indent
489 !ppp
490 *.*<TAB>/var/log/ppp.log
491 .Ed
492 .Pp
493 It is possible to have more than one
494 .Em PPP
495 log file by creating a link to the
496 .Nm
497 executable:
498 .Pp
499 .Dl # cd /usr/sbin
500 .Dl # ln ppp ppp0
501 .Pp
502 and using
503 .Bd -literal -offset indent
504 !ppp0
505 *.*<TAB>/var/log/ppp0.log
506 .Ed
507 .Pp
508 in
509 .Pa /etc/syslog.conf .
510 Don't forget to send a
511 .Dv HUP
512 signal to
513 .Xr syslogd 8
514 after altering
515 .Pa /etc/syslog.conf .
516 .It
517 Although not strictly relevant to
518 .Nm Ns No 's
519 operation, you should configure your resolver so that it works correctly.
520 This can be done by configuring a local DNS
521 (using
522 .Xr named 8 )
523 or by adding the correct
524 .Sq nameserver
525 lines to the file
526 .Pa /etc/resolv.conf .
527 Refer to the
528 .Xr resolv.conf 5
529 manual page for details.
530 .Pp
531 Alternatively, if the peer supports it,
532 .Nm
533 can be configured to ask the peer for the nameserver address(es) and to
534 update
535 .Pa /etc/resolv.conf
536 automatically.
537 Refer to the
538 .Dq enable dns
539 and
540 .Dq resolv
541 commands below for details.
542 .El
543 .Sh MANUAL DIALING
544 In the following examples, we assume that your machine name is
545 .Dv awfulhak .
546 when you invoke
547 .Nm
548 (see
549 .Sx PERMISSIONS
550 above) with no arguments, you are presented with a prompt:
551 .Bd -literal -offset indent
552 ppp ON awfulhak>
553 .Ed
554 .Pp
555 The
556 .Sq ON
557 part of your prompt should always be in upper case.
558 If it is in lower case, it means that you must supply a password using the
559 .Dq passwd
560 command.
561 This only ever happens if you connect to a running version of
562 .Nm
563 and have not authenticated yourself using the correct password.
564 .Pp
565 You can start by specifying the device name and speed:
566 .Bd -literal -offset indent
567 ppp ON awfulhak> set device /dev/cuaa0
568 ppp ON awfulhak> set speed 38400
569 .Ed
570 .Pp
571 Normally, hardware flow control (CTS/RTS) is used.
572 However, under
573 certain circumstances (as may happen when you are connected directly
574 to certain PPP-capable terminal servers), this may result in
575 .Nm
576 hanging as soon as it tries to write data to your communications link
577 as it is waiting for the CTS (clear to send) signal - which will never
578 come.
579 Thus, if you have a direct line and can't seem to make a
580 connection, try turning CTS/RTS off with
581 .Dq set ctsrts off .
582 If you need to do this, check the
583 .Dq set accmap
584 description below too - you'll probably need to
585 .Dq set accmap 000a0000 .
586 .Pp
587 Usually, parity is set to
588 .Dq none ,
589 and this is
590 .Nm Ns No 's
591 default.
592 Parity is a rather archaic error checking mechanism that is no
593 longer used because modern modems do their own error checking, and most
594 link-layer protocols (that's what
595 .Nm
596 is) use much more reliable checking mechanisms.
597 Parity has a relatively
598 huge overhead (a 12.5% increase in traffic) and as a result, it is always
599 disabled
600 (set to
601 .Dq none )
602 when
603 .Dv PPP
604 is opened.
605 However, some ISPs (Internet Service Providers) may use
606 specific parity settings at connection time (before
607 .Dv PPP
608 is opened).
609 Notably, Compuserve insist on even parity when logging in:
610 .Bd -literal -offset indent
611 ppp ON awfulhak> set parity even
612 .Ed
613 .Pp
614 You can now see what your current device settings look like:
615 .Bd -literal -offset indent
616 ppp ON awfulhak> show physical
617 Name: deflink
618  State:           closed
619  Device:          N/A
620  Link Type:       interactive
621  Connect Count:   0
622  Queued Packets:  0
623  Phone Number:    N/A
624
625 Defaults:
626  Device List:     /dev/cuaa0
627  Characteristics: 38400bps, cs8, even parity, CTS/RTS on
628
629 Connect time: 0 secs
630 0 octets in, 0 octets out
631 Overall 0 bytes/sec
632 ppp ON awfulhak>
633 .Ed
634 .Pp
635 The term command can now be used to talk directly to the device:
636 .Bd -literal -offset indent
637 ppp ON awfulhak> term
638 at
639 OK
640 atdt123456
641 CONNECT
642 login: myispusername
643 Password: myisppassword
644 Protocol: ppp
645 .Ed
646 .Pp
647 When the peer starts to talk in
648 .Em PPP ,
649 .Nm
650 detects this automatically and returns to command mode.
651 .Bd -literal -offset indent
652 ppp ON awfulhak>               # No link has been established
653 Ppp ON awfulhak>               # We've connected & finished LCP
654 PPp ON awfulhak>               # We've authenticated
655 PPP ON awfulhak>               # We've agreed IP numbers
656 .Ed
657 .Pp
658 If it does not, it's probable that the peer is waiting for your end to
659 start negotiating.
660 To force
661 .Nm
662 to start sending
663 .Em PPP
664 configuration packets to the peer, use the
665 .Dq ~p
666 command to drop out of terminal mode and enter packet mode.
667 .Pp
668 If you never even receive a login prompt, it is quite likely that the
669 peer wants to use PAP or CHAP authentication instead of using Unix-style
670 login/password authentication.
671 To set things up properly, drop back to
672 the prompt and set your authentication name and key, then reconnect:
673 .Bd -literal -offset indent
674 ~.
675 ppp ON awfulhak> set authname myispusername
676 ppp ON awfulhak> set authkey myisppassword
677 ppp ON awfulhak> term
678 at
679 OK
680 atdt123456
681 CONNECT
682 .Ed
683 .Pp
684 You may need to tell ppp to initiate negotiations with the peer here too:
685 .Bd -literal -offset indent
686 ~p
687 ppp ON awfulhak>               # No link has been established
688 Ppp ON awfulhak>               # We've connected & finished LCP
689 PPp ON awfulhak>               # We've authenticated
690 PPP ON awfulhak>               # We've agreed IP numbers
691 .Ed
692 .Pp
693 You are now connected!
694 Note that
695 .Sq PPP
696 in the prompt has changed to capital letters to indicate that you have
697 a peer connection.
698 If only some of the three Ps go uppercase, wait until
699 either everything is uppercase or lowercase.
700 If they revert to lowercase, it means that
701 .Nm
702 couldn't successfully negotiate with the peer.
703 A good first step for troubleshooting at this point would be to
704 .Bd -literal -offset indent
705 ppp ON awfulhak> set log local phase lcp ipcp
706 .Ed
707 .Pp
708 and try again.
709 Refer to the
710 .Dq set log
711 command description below for further details.
712 If things fail at this point,
713 it is quite important that you turn logging on and try again.
714 It is also
715 important that you note any prompt changes and report them to anyone trying
716 to help you.
717 .Pp
718 When the link is established, the show command can be used to see how
719 things are going:
720 .Bd -literal -offset indent
721 PPP ON awfulhak> show physical
722 * Modem related information is shown here *
723 PPP ON awfulhak> show ccp
724 * CCP (compression) related information is shown here *
725 PPP ON awfulhak> show lcp
726 * LCP (line control) related information is shown here *
727 PPP ON awfulhak> show ipcp
728 * IPCP (IP) related information is shown here *
729 PPP ON awfulhak> show ipv6cp
730 * IPV6CP (IPv6) related information is shown here *
731 PPP ON awfulhak> show link
732 * Link (high level) related information is shown here *
733 PPP ON awfulhak> show bundle
734 * Logical (high level) connection related information is shown here *
735 .Ed
736 .Pp
737 At this point, your machine has a host route to the peer.
738 This means
739 that you can only make a connection with the host on the other side
740 of the link.
741 If you want to add a default route entry (telling your
742 machine to send all packets without another routing entry to the other
743 side of the
744 .Em PPP
745 link), enter the following command:
746 .Bd -literal -offset indent
747 PPP ON awfulhak> add default HISADDR
748 .Ed
749 .Pp
750 The string
751 .Sq HISADDR
752 represents the IP address of the connected peer.
753 If the
754 .Dq add
755 command fails due to an existing route, you can overwrite the existing
756 route using
757 .Bd -literal -offset indent
758 PPP ON awfulhak> add! default HISADDR
759 .Ed
760 .Pp
761 This command can also be executed before actually making the connection.
762 If a new IP address is negotiated at connection time,
763 .Nm
764 will update your default route accordingly.
765 .Pp
766 You can now use your network applications (ping, telnet, ftp etc.)
767 in other windows or terminals on your machine.
768 If you wish to reuse the current terminal, you can put
769 .Nm
770 into the background using your standard shell suspend and background
771 commands (usually
772 .Dq ^Z
773 followed by
774 .Dq bg ) .
775 .Pp
776 Refer to the
777 .Sx PPP COMMAND LIST
778 section for details on all available commands.
779 .Sh AUTOMATIC DIALING
780 To use automatic dialing, you must prepare some Dial and Login chat scripts.
781 See the example definitions in
782 .Pa /usr/share/examples/ppp/ppp.conf.sample
783 (the format of
784 .Pa /etc/ppp/ppp.conf
785 is pretty simple).
786 Each line contains one comment, inclusion, label or command:
787 .Bl -bullet
788 .It
789 A line starting with a
790 .Pq Dq #
791 character is treated as a comment line.
792 Leading whitespace are ignored when identifying comment lines.
793 .It
794 An inclusion is a line beginning with the word
795 .Sq {!include} .
796 It must have one argument - the file to {include}.
797 You may wish to
798 .Dq {!include} ~/.ppp.conf
799 for compatibility with older versions of
800 .Nm .
801 .It
802 A label name starts in the first column and is followed by
803 a colon
804 .Pq Dq \&: .
805 .It
806 A command line must contain a space or tab in the first column.
807 .El
808 .Pp
809 The
810 .Pa /etc/ppp/ppp.conf
811 file should consist of at least a
812 .Dq default
813 section.
814 This section is always executed.
815 It should also contain
816 one or more sections, named according to their purpose, for example,
817 .Dq MyISP
818 would represent your ISP, and
819 .Dq ppp-in
820 would represent an incoming
821 .Nm
822 configuration.
823 You can now specify the destination label name when you invoke
824 .Nm .
825 Commands associated with the
826 .Dq default
827 label are executed, followed by those associated with the destination
828 label provided.
829 When
830 .Nm
831 is started with no arguments, the
832 .Dq default
833 section is still executed.
834 The load command can be used to manually load a section from the
835 .Pa /etc/ppp/ppp.conf
836 file:
837 .Bd -literal -offset indent
838 ppp ON awfulhak> load MyISP
839 .Ed
840 .Pp
841 Note, no action is taken by
842 .Nm
843 after a section is loaded, whether it's the result of passing a label on
844 the command line or using the
845 .Dq load
846 command.
847 Only the commands specified for that label in the configuration
848 file are executed.
849 However, when invoking
850 .Nm
851 with the
852 .Fl background ,
853 .Fl ddial ,
854 or
855 .Fl dedicated
856 switches, the link mode tells
857 .Nm
858 to establish a connection.
859 Refer to the
860 .Dq set mode
861 command below for further details.
862 .Pp
863 Once the connection is made, the
864 .Sq ppp
865 portion of the prompt will change to
866 .Sq PPP :
867 .Bd -literal -offset indent
868 # ppp MyISP
869 \&...
870 ppp ON awfulhak> dial
871 Ppp ON awfulhak>
872 PPp ON awfulhak>
873 PPP ON awfulhak>
874 .Ed
875 .Pp
876 The Ppp prompt indicates that
877 .Nm
878 has entered the authentication phase.
879 The PPp prompt indicates that
880 .Nm
881 has entered the network phase.
882 The PPP prompt indicates that
883 .Nm
884 has successfully negotiated a network layer protocol and is in
885 a usable state.
886 .Pp
887 If the
888 .Pa /etc/ppp/ppp.linkup
889 file is available, its contents are executed
890 when the
891 .Em PPP
892 connection is established.
893 See the provided
894 .Dq pmdemand
895 example in
896 .Pa /usr/share/examples/ppp/ppp.conf.sample
897 which runs a script in the background after the connection is established
898 (refer to the
899 .Dq shell
900 and
901 .Dq bg
902 commands below for a description of possible substitution strings).
903 Similarly, when a connection is closed, the contents of the
904 .Pa /etc/ppp/ppp.linkdown
905 file are executed.
906 Both of these files have the same format as
907 .Pa /etc/ppp/ppp.conf .
908 .Pp
909 In previous versions of
910 .Nm ,
911 it was necessary to re-add routes such as the default route in the
912 .Pa ppp.linkup
913 file.
914 .Nm
915 supports
916 .Sq sticky routes ,
917 where all routes that contain the
918 .Dv HISADDR ,
919 .Dv MYADDR ,
920 .Dv HISADDR6
921 or
922 .Dv MYADDR6
923 literals will automatically be updated when the values of these variables
924 change.
925 .Sh BACKGROUND DIALING
926 If you want to establish a connection using
927 .Nm
928 non-interactively (such as from a
929 .Xr crontab 5
930 entry or an
931 .Xr at 1
932 job) you should use the
933 .Fl background
934 option.
935 When
936 .Fl background
937 is specified,
938 .Nm
939 attempts to establish the connection immediately.
940 If multiple phone
941 numbers are specified, each phone number will be tried once.
942 If the attempt fails,
943 .Nm
944 exits immediately with a non-zero exit code.
945 If it succeeds, then
946 .Nm
947 becomes a daemon, and returns an exit status of zero to its caller.
948 The daemon exits automatically if the connection is dropped by the
949 remote system, or it receives a
950 .Dv TERM
951 signal.
952 .Sh DIAL ON DEMAND
953 Demand dialing is enabled with the
954 .Fl auto
955 or
956 .Fl ddial
957 options.
958 You must also specify the destination label in
959 .Pa /etc/ppp/ppp.conf
960 to use.
961 It must contain the
962 .Dq set ifaddr
963 command to {define} the remote peers IP address.
964 (refer to
965 .Pa /usr/share/examples/ppp/ppp.conf.sample )
966 .Bd -literal -offset indent
967 # ppp -auto pmdemand
968 .Ed
969 .Pp
970 When
971 .Fl auto
972 or
973 .Fl ddial
974 is specified,
975 .Nm
976 runs as a daemon but you can still configure or examine its
977 configuration by using the
978 .Dq set server
979 command in
980 .Pa /etc/ppp/ppp.conf ,
981 (for example,
982 .Dq Li "set server +3000 mypasswd" )
983 and connecting to the diagnostic port as follows:
984 .Bd -literal -offset indent
985 # pppctl 3000   (assuming tun0)
986 Password:
987 PPP ON awfulhak> show who
988 tcp (127.0.0.1:1028) *
989 .Ed
990 .Pp
991 The
992 .Dq show who
993 command lists users that are currently connected to
994 .Nm
995 itself.
996 If the diagnostic socket is closed or changed to a different
997 socket, all connections are immediately dropped.
998 .Pp
999 In
1000 .Fl auto
1001 mode, when an outgoing packet is detected,
1002 .Nm
1003 will perform the dialing action (chat script) and try to connect
1004 with the peer.
1005 In
1006 .Fl ddial
1007 mode, the dialing action is performed any time the line is found
1008 to be down.
1009 If the connect fails, the default behaviour is to wait 30 seconds
1010 and then attempt to connect when another outgoing packet is detected.
1011 This behaviour can be changed using the
1012 .Dq set redial
1013 command:
1014 .Pp
1015 .No set redial Ar secs Ns Xo
1016 .Oo + Ns Ar inc Ns
1017 .Op - Ns Ar max Ns
1018 .Oc Ns Op . Ns Ar next
1019 .Op Ar attempts
1020 .Xc
1021 .Pp
1022 .Bl -tag -width attempts -compact
1023 .It Ar secs
1024 is the number of seconds to wait before attempting
1025 to connect again.
1026 If the argument is the literal string
1027 .Sq Li random ,
1028 the delay period is a random value between 1 and 30 seconds inclusive.
1029 .It Ar inc
1030 is the number of seconds that
1031 .Ar secs
1032 should be incremented each time a new dial attempt is made.
1033 The timeout reverts to
1034 .Ar secs
1035 only after a successful connection is established.
1036 The default value for
1037 .Ar inc
1038 is zero.
1039 .It Ar max
1040 is the maximum number of times
1041 .Nm
1042 should increment
1043 .Ar secs .
1044 The default value for
1045 .Ar max
1046 is 10.
1047 .It Ar next
1048 is the number of seconds to wait before attempting
1049 to dial the next number in a list of numbers (see the
1050 .Dq set phone
1051 command).
1052 The default is 3 seconds.
1053 Again, if the argument is the literal string
1054 .Sq Li random ,
1055 the delay period is a random value between 1 and 30 seconds.
1056 .It Ar attempts
1057 is the maximum number of times to try to connect for each outgoing packet
1058 that triggers a dial.
1059 The previous value is unchanged if this parameter is omitted.
1060 If a value of zero is specified for
1061 .Ar attempts ,
1062 .Nm
1063 will keep trying until a connection is made.
1064 .El
1065 .Pp
1066 So, for example:
1067 .Bd -literal -offset indent
1068 set redial 10.3 4
1069 .Ed
1070 .Pp
1071 will attempt to connect 4 times for each outgoing packet that causes
1072 a dial attempt with a 3 second delay between each number and a 10 second
1073 delay after all numbers have been tried.
1074 If multiple phone numbers
1075 are specified, the total number of attempts is still 4 (it does not
1076 attempt each number 4 times).
1077 .Pp
1078 Alternatively,
1079 .Pp
1080 .Bd -literal -offset indent
1081 set redial 10+10-5.3 20
1082 .Ed
1083 .Pp
1084 tells
1085 .Nm
1086 to attempt to connect 20 times.
1087 After the first attempt,
1088 .Nm
1089 pauses for 10 seconds.
1090 After the next attempt it pauses for 20 seconds
1091 and so on until after the sixth attempt it pauses for 1 minute.
1092 The next 14 pauses will also have a duration of one minute.
1093 If
1094 .Nm
1095 connects, disconnects and fails to connect again, the timeout starts again
1096 at 10 seconds.
1097 .Pp
1098 Modifying the dial delay is very useful when running
1099 .Nm
1100 in
1101 .Fl auto
1102 mode on both ends of the link.
1103 If each end has the same timeout,
1104 both ends wind up calling each other at the same time if the link
1105 drops and both ends have packets queued.
1106 At some locations, the serial link may not be reliable, and carrier
1107 may be lost at inappropriate times.
1108 It is possible to have
1109 .Nm
1110 redial should carrier be unexpectedly lost during a session.
1111 .Bd -literal -offset indent
1112 set reconnect timeout ntries
1113 .Ed
1114 .Pp
1115 This command tells
1116 .Nm
1117 to re-establish the connection
1118 .Ar ntries
1119 times on loss of carrier with a pause of
1120 .Ar timeout
1121 seconds before each try.
1122 For example,
1123 .Bd -literal -offset indent
1124 set reconnect 3 5
1125 .Ed
1126 .Pp
1127 tells
1128 .Nm
1129 that on an unexpected loss of carrier, it should wait
1130 .Ar 3
1131 seconds before attempting to reconnect.
1132 This may happen up to
1133 .Ar 5
1134 times before
1135 .Nm
1136 gives up.
1137 The default value of ntries is zero (no reconnect).
1138 Care should be taken with this option.
1139 If the local timeout is slightly
1140 longer than the remote timeout, the reconnect feature will always be
1141 triggered (up to the given number of times) after the remote side
1142 times out and hangs up.
1143 NOTE: In this context, losing too many LQRs constitutes a loss of
1144 carrier and will trigger a reconnect.
1145 If the
1146 .Fl background
1147 flag is specified, all phone numbers are dialed at most once until
1148 a connection is made.
1149 The next number redial period specified with the
1150 .Dq set redial
1151 command is honoured, as is the reconnect tries value.
1152 If your redial
1153 value is less than the number of phone numbers specified, not all
1154 the specified numbers will be tried.
1155 To terminate the program, type
1156 .Bd -literal -offset indent
1157 PPP ON awfulhak> close
1158 ppp ON awfulhak> quit all
1159 .Ed
1160 .Pp
1161 A simple
1162 .Dq quit
1163 command will terminate the
1164 .Xr pppctl 8
1165 or
1166 .Xr telnet 1
1167 connection but not the
1168 .Nm
1169 program itself.
1170 You must use
1171 .Dq quit all
1172 to terminate
1173 .Nm
1174 as well.
1175 .Sh RECEIVING INCOMING PPP CONNECTIONS (Method 1)
1176 To handle an incoming
1177 .Em PPP
1178 connection request, follow these steps:
1179 .Bl -enum
1180 .It
1181 Make sure the modem and (optionally)
1182 .Pa /etc/rc.serial
1183 is configured correctly.
1184 .Bl -bullet -compact
1185 .It
1186 Use Hardware Handshake (CTS/RTS) for flow control.
1187 .It
1188 Modem should be set to NO echo back (ATE0) and NO results string (ATQ1).
1189 .El
1190 .Pp
1191 .It
1192 Edit
1193 .Pa /etc/ttys
1194 to enable a
1195 .Xr getty 8
1196 on the port where the modem is attached.
1197 For example:
1198 .Pp
1199 .Dl ttyd1 Qo /usr/libexec/getty std.38400 Qc dialup on secure
1200 .Pp
1201 Don't forget to send a
1202 .Dv HUP
1203 signal to the
1204 .Xr init 8
1205 process to start the
1206 .Xr getty 8 :
1207 .Pp
1208 .Dl # kill -HUP 1
1209 .Pp
1210 It is usually also necessary to train your modem to the same DTR speed
1211 as the getty:
1212 .Bd -literal -offset indent
1213 # ppp
1214 ppp ON awfulhak> set device /dev/cuaa1
1215 ppp ON awfulhak> set speed 38400
1216 ppp ON awfulhak> term
1217 deflink: Entering terminal mode on /dev/cuaa1
1218 Type `~?' for help
1219 at
1220 OK
1221 at
1222 OK
1223 atz
1224 OK
1225 at
1226 OK
1227 ~.
1228 ppp ON awfulhak> quit
1229 .Ed
1230 .It
1231 Create a
1232 .Pa /usr/local/bin/ppplogin
1233 file with the following contents:
1234 .Bd -literal -offset indent
1235 #! /bin/sh
1236 exec /usr/sbin/ppp -direct incoming
1237 .Ed
1238 .Pp
1239 Direct mode
1240 .Pq Fl direct
1241 lets
1242 .Nm
1243 work with stdin and stdout.
1244 You can also use
1245 .Xr pppctl 8
1246 to connect to a configured diagnostic port, in the same manner as with
1247 client-side
1248 .Nm .
1249 .Pp
1250 Here, the
1251 .Ar incoming
1252 section must be set up in
1253 .Pa /etc/ppp/ppp.conf .
1254 .Pp
1255 Make sure that the
1256 .Ar incoming
1257 section contains the
1258 .Dq allow users
1259 command as appropriate.
1260 .It
1261 Prepare an account for the incoming user.
1262 .Bd -literal
1263 ppp:xxxx:66:66:PPP Login User:/home/ppp:/usr/local/bin/ppplogin
1264 .Ed
1265 .Pp
1266 Refer to the manual entries for
1267 .Xr adduser 8
1268 and
1269 .Xr vipw 8
1270 for details.
1271 .It
1272 Support for IPCP Domain Name Server and NetBIOS Name Server negotiation
1273 can be enabled using the
1274 .Dq accept dns
1275 and
1276 .Dq set nbns
1277 commands.
1278 Refer to their descriptions below.
1279 .El
1280 .Sh RECEIVING INCOMING PPP CONNECTIONS (Method 2)
1281 This method differs in that we use
1282 .Nm
1283 to authenticate the connection rather than
1284 .Xr login 1 :
1285 .Bl -enum
1286 .It
1287 Configure your default section in
1288 .Pa /etc/gettytab
1289 with automatic ppp recognition by specifying the
1290 .Dq pp
1291 capability:
1292 .Bd -literal
1293 default:\\
1294         :pp=/usr/local/bin/ppplogin:\\
1295         .....
1296 .Ed
1297 .It
1298 Configure your serial device(s), enable a
1299 .Xr getty 8
1300 and create
1301 .Pa /usr/local/bin/ppplogin
1302 as in the first three steps for method 1 above.
1303 .It
1304 Add either
1305 .Dq enable chap
1306 or
1307 .Dq enable pap
1308 (or both)
1309 to
1310 .Pa /etc/ppp/ppp.conf
1311 under the
1312 .Sq incoming
1313 label (or whatever label
1314 .Pa ppplogin
1315 uses).
1316 .It
1317 Create an entry in
1318 .Pa /etc/ppp/ppp.secret
1319 for each incoming user:
1320 .Bd -literal
1321 Pfred<TAB>xxxx
1322 Pgeorge<TAB>yyyy
1323 .Ed
1324 .El
1325 .Pp
1326 Now, as soon as
1327 .Xr getty 8
1328 detects a ppp connection (by recognising the HDLC frame headers), it runs
1329 .Dq /usr/local/bin/ppplogin .
1330 .Pp
1331 It is
1332 .Em VITAL
1333 that either PAP or CHAP are enabled as above.
1334 If they are not, you are
1335 allowing anybody to establish a ppp session with your machine
1336 .Em without
1337 a password, opening yourself up to all sorts of potential attacks.
1338 .Sh AUTHENTICATING INCOMING CONNECTIONS
1339 Normally, the receiver of a connection requires that the peer
1340 authenticates itself.
1341 This may be done using
1342 .Xr login 1 ,
1343 but alternatively, you can use PAP or CHAP.
1344 CHAP is the more secure of the two, but some clients may not support it.
1345 Once you decide which you wish to use, add the command
1346 .Sq enable chap
1347 or
1348 .Sq enable pap
1349 to the relevant section of
1350 .Pa ppp.conf .
1351 .Pp
1352 You must then configure the
1353 .Pa /etc/ppp/ppp.secret
1354 file.
1355 This file contains one line per possible client, each line
1356 containing up to five fields:
1357 .Pp
1358 .Ar name Ar key Oo
1359 .Ar hisaddr Op Ar label Op Ar callback-number
1360 .Oc
1361 .Pp
1362 The
1363 .Ar name
1364 and
1365 .Ar key
1366 specify the client username and password.
1367 If
1368 .Ar key
1369 is
1370 .Dq \&*
1371 and PAP is being used,
1372 .Nm
1373 will look up the password database
1374 .Pq Xr passwd 5
1375 when authenticating.
1376 If the client does not offer a suitable response based on any
1377 .Ar name Ns No / Ns Ar key
1378 combination in
1379 .Pa ppp.secret ,
1380 authentication fails.
1381 .Pp
1382 If authentication is successful,
1383 .Ar hisaddr
1384 (if specified)
1385 is used when negotiating IP numbers.
1386 See the
1387 .Dq set ifaddr
1388 command for details.
1389 .Pp
1390 If authentication is successful and
1391 .Ar label
1392 is specified, the current system label is changed to match the given
1393 .Ar label .
1394 This will change the subsequent parsing of the
1395 .Pa ppp.linkup
1396 and
1397 .Pa ppp.linkdown
1398 files.
1399 .Pp
1400 If authentication is successful and
1401 .Ar callback-number
1402 is specified and
1403 .Dq set callback
1404 has been used in
1405 .Pa ppp.conf ,
1406 the client will be called back on the given number.
1407 If CBCP is being used,
1408 .Ar callback-number
1409 may also contain a list of numbers or a
1410 .Dq \&* ,
1411 as if passed to the
1412 .Dq set cbcp
1413 command.
1414 The value will be used in
1415 .Nm Ns No 's
1416 subsequent CBCP phase.
1417 .Sh PPP OVER TCP and UDP (a.k.a Tunnelling)
1418 Instead of running
1419 .Nm
1420 over a serial link, it is possible to
1421 use a TCP connection instead by specifying the host, port and protocol as the
1422 device:
1423 .Pp
1424 .Dl set device ui-gate:6669/tcp
1425 .Pp
1426 Instead of opening a serial device,
1427 .Nm
1428 will open a TCP connection to the given machine on the given
1429 socket.
1430 It should be noted however that
1431 .Nm
1432 doesn't use the telnet protocol and will be unable to negotiate
1433 with a telnet server.
1434 You should set up a port for receiving this
1435 .Em PPP
1436 connection on the receiving machine (ui-gate).
1437 This is done by first updating
1438 .Pa /etc/services
1439 to name the service:
1440 .Pp
1441 .Dl ppp-in 6669/tcp # Incoming PPP connections over TCP
1442 .Pp
1443 and updating
1444 .Pa /etc/inetd.conf
1445 to tell
1446 .Xr inetd 8
1447 how to deal with incoming connections on that port:
1448 .Pp
1449 .Dl ppp-in stream tcp nowait root /usr/sbin/ppp ppp -direct ppp-in
1450 .Pp
1451 Don't forget to send a
1452 .Dv HUP
1453 signal to
1454 .Xr inetd 8
1455 after you've updated
1456 .Pa /etc/inetd.conf .
1457 Here, we use a label named
1458 .Dq ppp-in .
1459 The entry in
1460 .Pa /etc/ppp/ppp.conf
1461 on ui-gate (the receiver) should contain the following:
1462 .Bd -literal -offset indent
1463 ppp-in:
1464  set timeout 0
1465  set ifaddr 10.0.4.1 10.0.4.2
1466 .Ed
1467 .Pp
1468 and the entry in
1469 .Pa /etc/ppp/ppp.linkup
1470 should contain:
1471 .Bd -literal -offset indent
1472 ppp-in:
1473  add 10.0.1.0/24 HISADDR
1474 .Ed
1475 .Pp
1476 It is necessary to put the
1477 .Dq add
1478 command in
1479 .Pa ppp.linkup
1480 to ensure that the route is only added after
1481 .Nm
1482 has negotiated and assigned addresses to its interface.
1483 .Pp
1484 You may also want to enable PAP or CHAP for security.
1485 To enable PAP, add the following line:
1486 .Bd -literal -offset indent
1487  enable PAP
1488 .Ed
1489 .Pp
1490 You'll also need to create the following entry in
1491 .Pa /etc/ppp/ppp.secret :
1492 .Bd -literal -offset indent
1493 MyAuthName MyAuthPasswd
1494 .Ed
1495 .Pp
1496 If
1497 .Ar MyAuthPasswd
1498 is a
1499 .Dq * ,
1500 the password is looked up in the
1501 .Xr passwd 5
1502 database.
1503 .Pp
1504 The entry in
1505 .Pa /etc/ppp/ppp.conf
1506 on awfulhak (the initiator) should contain the following:
1507 .Bd -literal -offset indent
1508 ui-gate:
1509  set escape 0xff
1510  set device ui-gate:ppp-in/tcp
1511  set dial
1512  set timeout 30
1513  set log Phase Chat Connect hdlc LCP IPCP IPV6CP CCP tun
1514  set ifaddr 10.0.4.2 10.0.4.1
1515 .Ed
1516 .Pp
1517 with the route setup in
1518 .Pa /etc/ppp/ppp.linkup :
1519 .Bd -literal -offset indent
1520 ui-gate:
1521  add 10.0.2.0/24 HISADDR
1522 .Ed
1523 .Pp
1524 Again, if you're enabling PAP, you'll also need this in the
1525 .Pa /etc/ppp/ppp.conf
1526 profile:
1527 .Bd -literal -offset indent
1528  set authname MyAuthName
1529  set authkey MyAuthKey
1530 .Ed
1531 .Pp
1532 We're assigning the address of 10.0.4.1 to ui-gate, and the address
1533 10.0.4.2 to awfulhak.
1534 To open the connection, just type
1535 .Pp
1536 .Dl awfulhak # ppp -background ui-gate
1537 .Pp
1538 The result will be an additional "route" on awfulhak to the
1539 10.0.2.0/24 network via the TCP connection, and an additional
1540 "route" on ui-gate to the 10.0.1.0/24 network.
1541 The networks are effectively bridged - the underlying TCP
1542 connection may be across a public network (such as the
1543 Internet), and the
1544 .Em PPP
1545 traffic is conceptually encapsulated
1546 (although not packet by packet) inside the TCP stream between
1547 the two gateways.
1548 .Pp
1549 The major disadvantage of this mechanism is that there are two
1550 "guaranteed delivery" mechanisms in place - the underlying TCP
1551 stream and whatever protocol is used over the
1552 .Em PPP
1553 link - probably TCP again.
1554 If packets are lost, both levels will
1555 get in each others way trying to negotiate sending of the missing
1556 packet.
1557 .Pp
1558 To avoid this overhead, it is also possible to do all this using
1559 UDP instead of TCP as the transport by simply changing the protocol
1560 from "tcp" to "udp".
1561 When using UDP as a transport,
1562 .Nm
1563 will operate in synchronous mode.
1564 This is another gain as the incoming
1565 data does not have to be rearranged into packets.
1566 .Pp
1567 Care should be taken when adding a default route through a tunneled
1568 setup like this.
1569 It is quite common for the default route
1570 (added in
1571 .Pa /etc/ppp/ppp.linkup )
1572 to end up routing the link's TCP connection through the tunnel,
1573 effectively garrotting the connection.
1574 To avoid this, make sure you add a static route for the benefit of
1575 the link:
1576 .Bd -literal -offset indent
1577 ui-gate:
1578  set escape 0xff
1579  set device ui-gate:ppp-in/tcp
1580  add ui-gate x.x.x.x
1581  .....
1582 .Ed
1583 .Pp
1584 where
1585 .Dq x.x.x.x
1586 is the IP number that your route to
1587 .Dq ui-gate
1588 would normally use.
1589 .Pp
1590 When routing your connection accross a public network such as the Internet,
1591 it is preferable to encrypt the data.
1592 This can be done with the help of the MPPE protocol, although currently this
1593 means that you will not be able to also compress the traffic as MPPE is
1594 implemented as a compression layer (thank Microsoft for this).
1595 To enable MPPE encryption, add the following lines to
1596 .Pa /etc/ppp/ppp.conf
1597 on the server:
1598 .Bd -literal -offset indent
1599   enable MSCHAPv2
1600   disable deflate pred1
1601   deny deflate pred1
1602 .Ed
1603 .Pp
1604 ensuring that you've put the requisite entry in
1605 .Pa /etc/ppp/ppp.secret
1606 (MSCHAPv2 is challenge based, so
1607 .Xr passwd 5
1608 cannot be used)
1609 .Pp
1610 MSCHAPv2 and MPPE are accepted by default, so the client end should work
1611 without any additional changes (although ensure you have
1612 .Dq set authname
1613 and
1614 .Dq set authkey
1615 in your profile).
1616 .Sh NETWORK ADDRESS TRANSLATION (PACKET ALIASING)
1617 The
1618 .Fl nat
1619 command line option enables network address translation (a.k.a. packet
1620 aliasing).
1621 This allows the
1622 .Nm
1623 host to act as a masquerading gateway for other computers over
1624 a local area network.
1625 Outgoing IP packets are NAT'd so that they appear to come from the
1626 .Nm
1627 host, and incoming packets are de-NAT'd so that they are routed
1628 to the correct machine on the local area network.
1629 NAT allows computers on private, unregistered subnets to have Internet
1630 access, although they are invisible from the outside world.
1631 In general, correct
1632 .Nm
1633 operation should first be verified with network address translation disabled.
1634 Then, the
1635 .Fl nat
1636 option should be switched on, and network applications (web browser,
1637 .Xr telnet 1 ,
1638 .Xr ftp 1 ,
1639 .Xr ping 8 ,
1640 .Xr traceroute 8 )
1641 should be checked on the
1642 .Nm
1643 host.
1644 Finally, the same or similar applications should be checked on other
1645 computers in the LAN.
1646 If network applications work correctly on the
1647 .Nm
1648 host, but not on other machines in the LAN, then the masquerading
1649 software is working properly, but the host is either not forwarding
1650 or possibly receiving IP packets.
1651 Check that IP forwarding is enabled in
1652 .Pa /etc/rc.conf
1653 and that other machines have designated the
1654 .Nm
1655 host as the gateway for the LAN.
1656 .Sh PACKET FILTERING
1657 This implementation supports packet filtering.
1658 There are four kinds of
1659 filters: the
1660 .Em in
1661 filter, the
1662 .Em out
1663 filter, the
1664 .Em dial
1665 filter and the
1666 .Em alive
1667 filter.
1668 Here are the basics:
1669 .Bl -bullet
1670 .It
1671 A filter definition has the following syntax:
1672 .Pp
1673 set filter
1674 .Ar name
1675 .Ar rule-no
1676 .Ar action
1677 .Op !\&
1678 .Oo
1679 .Op host
1680 .Ar src_addr Ns Op / Ns Ar width
1681 .Op Ar dst_addr Ns Op / Ns Ar width
1682 .Oc
1683 .Ar [ proto Op src Ar cmp port
1684 .Op dst Ar cmp port
1685 .Op estab
1686 .Op syn
1687 .Op finrst
1688 .Op timeout Ar secs ]
1689 .Bl -enum
1690 .It
1691 .Ar Name
1692 should be one of
1693 .Sq in ,
1694 .Sq out ,
1695 .Sq dial
1696 or
1697 .Sq alive .
1698 .It
1699 .Ar Rule-no
1700 is a numeric value between
1701 .Sq 0
1702 and
1703 .Sq 39
1704 specifying the rule number.
1705 Rules are specified in numeric order according to
1706 .Ar rule-no ,
1707 but only if rule
1708 .Sq 0
1709 is defined.
1710 .It
1711 .Ar Action
1712 may be specified as
1713 .Sq permit
1714 or
1715 .Sq deny ,
1716 in which case, if a given packet matches the rule, the associated action
1717 is taken immediately.
1718 .Ar Action
1719 can also be specified as
1720 .Sq clear
1721 to clear the action associated with that particular rule, or as a new
1722 rule number greater than the current rule.
1723 In this case, if a given
1724 packet matches the current rule, the packet will next be matched against
1725 the new rule number (rather than the next rule number).
1726 .Pp
1727 The
1728 .Ar action
1729 may optionally be followed with an exclamation mark
1730 .Pq Dq !\& ,
1731 telling
1732 .Nm
1733 to reverse the sense of the following match.
1734 .It
1735 .Op Ar src_addr Ns Op / Ns Ar width
1736 and
1737 .Op Ar dst_addr Ns Op / Ns Ar width
1738 are the source and destination IP number specifications.
1739 If
1740 .Op / Ns Ar width
1741 is specified, it gives the number of relevant netmask bits,
1742 allowing the specification of an address range.
1743 .Pp
1744 Either
1745 .Ar src_addr
1746 or
1747 .Ar dst_addr
1748 may be given the values
1749 .Dv MYADDR ,
1750 .Dv HISADDR ,
1751 .Dv MYADDR6
1752 or
1753 .Dv HISADDR6
1754 (refer to the description of the
1755 .Dq bg
1756 command for a description of these values).
1757 When these values are used,
1758 the filters will be updated any time the values change.
1759 This is similar to the behaviour of the
1760 .Dq add
1761 command below.
1762 .It
1763 .Ar Proto
1764 may be any protocol from
1765 .Xr protocols 5 .
1766 .It
1767 .Ar Cmp
1768 is one of
1769 .Sq \&lt ,
1770 .Sq \&eq
1771 or
1772 .Sq \&gt ,
1773 meaning less-than, equal and greater-than respectively.
1774 .Ar Port
1775 can be specified as a numeric port or by service name from
1776 .Pa /etc/services .
1777 .It
1778 The
1779 .Sq estab ,
1780 .Sq syn ,
1781 and
1782 .Sq finrst
1783 flags are only allowed when
1784 .Ar proto
1785 is set to
1786 .Sq tcp ,
1787 and represent the TH_ACK, TH_SYN and TH_FIN or TH_RST TCP flags respectively.
1788 .It
1789 The timeout value adjusts the current idle timeout to at least
1790 .Ar secs
1791 seconds.
1792 If a timeout is given in the alive filter as well as in the in/out
1793 filter, the in/out value is used.
1794 If no timeout is given, the default timeout (set using
1795 .Ic set timeout
1796 and defaulting to 180 seconds) is used.
1797 .El
1798 .Pp
1799 .It
1800 Each filter can hold up to 40 rules, starting from rule 0.
1801 The entire rule set is not effective until rule 0 is defined,
1802 i.e., the default is to allow everything through.
1803 .It
1804 If no rule in a defined set of rules matches a packet, that packet will
1805 be discarded (blocked).
1806 If there are no rules in a given filter, the packet will be permitted.
1807 .It
1808 It's possible to filter based on the payload of UDP frames where those
1809 frames contain a
1810 .Em PROTO_IP
1811 .Em PPP
1812 frame header.
1813 See the
1814 .Ar filter-decapsulation
1815 option below for further details.
1816 .It
1817 Use
1818 .Dq set filter Ar name No -1
1819 to flush all rules.
1820 .El
1821 .Pp
1822 See
1823 .Pa /usr/share/examples/ppp/ppp.conf.sample .
1824 .Sh SETTING THE IDLE TIMER
1825 To check/set the idle timer, use the
1826 .Dq show bundle
1827 and
1828 .Dq set timeout
1829 commands:
1830 .Bd -literal -offset indent
1831 ppp ON awfulhak> set timeout 600
1832 .Ed
1833 .Pp
1834 The timeout period is measured in seconds, the default value for which
1835 is 180 seconds
1836 (or 3 min).
1837 To disable the idle timer function, use the command
1838 .Bd -literal -offset indent
1839 ppp ON awfulhak> set timeout 0
1840 .Ed
1841 .Pp
1842 In
1843 .Fl ddial
1844 and
1845 .Fl dedicated
1846 modes, the idle timeout is ignored.
1847 In
1848 .Fl auto
1849 mode, when the idle timeout causes the
1850 .Em PPP
1851 session to be
1852 closed, the
1853 .Nm
1854 program itself remains running.
1855 Another trigger packet will cause it to attempt to re-establish the link.
1856 .Sh PREDICTOR-1 and DEFLATE COMPRESSION
1857 .Nm
1858 supports both Predictor type 1 and deflate compression.
1859 By default,
1860 .Nm
1861 will attempt to use (or be willing to accept) both compression protocols
1862 when the peer agrees
1863 (or requests them).
1864 The deflate protocol is preferred by
1865 .Nm .
1866 Refer to the
1867 .Dq disable
1868 and
1869 .Dq deny
1870 commands if you wish to disable this functionality.
1871 .Pp
1872 It is possible to use a different compression algorithm in each direction
1873 by using only one of
1874 .Dq disable deflate
1875 and
1876 .Dq deny deflate
1877 (assuming that the peer supports both algorithms).
1878 .Pp
1879 By default, when negotiating DEFLATE,
1880 .Nm
1881 will use a window size of 15.
1882 Refer to the
1883 .Dq set deflate
1884 command if you wish to change this behaviour.
1885 .Pp
1886 A special algorithm called DEFLATE24 is also available, and is disabled
1887 and denied by default.
1888 This is exactly the same as DEFLATE except that
1889 it uses CCP ID 24 to negotiate.
1890 This allows
1891 .Nm
1892 to successfully negotiate DEFLATE with
1893 .Nm pppd
1894 version 2.3.*.
1895 .Sh CONTROLLING IP ADDRESS
1896 For IPv4,
1897 .Nm
1898 uses IPCP to negotiate IP addresses.
1899 Each side of the connection
1900 specifies the IP address that it's willing to use, and if the requested
1901 IP address is acceptable then
1902 .Nm
1903 returns an ACK to the requester.
1904 Otherwise,
1905 .Nm
1906 returns NAK to suggest that the peer use a different IP address.
1907 When
1908 both sides of the connection agree to accept the received request (and
1909 send an ACK), IPCP is set to the open state and a network level connection
1910 is established.
1911 To control this IPCP behaviour, this implementation has the
1912 .Dq set ifaddr
1913 command for defining the local and remote IP address:
1914 .Bd -ragged -offset indent
1915 .No set ifaddr Oo Ar src_addr Ns
1916 .Op / Ns Ar \&nn
1917 .Oo Ar dst_addr Ns Op / Ns Ar \&nn
1918 .Oo Ar netmask
1919 .Op Ar trigger_addr
1920 .Oc
1921 .Oc
1922 .Oc
1923 .Ed
1924 .Pp
1925 where,
1926 .Sq src_addr
1927 is the IP address that the local side is willing to use,
1928 .Sq dst_addr
1929 is the IP address which the remote side should use and
1930 .Sq netmask
1931 is the netmask that should be used.
1932 .Sq Src_addr
1933 defaults to the current
1934 .Xr hostname 1 ,
1935 .Sq dst_addr
1936 defaults to 0.0.0.0, and
1937 .Sq netmask
1938 defaults to whatever mask is appropriate for
1939 .Sq src_addr .
1940 It is only possible to make
1941 .Sq netmask
1942 smaller than the default.
1943 The usual value is 255.255.255.255, as
1944 most kernels ignore the netmask of a POINTOPOINT interface.
1945 .Pp
1946 Some incorrect
1947 .Em PPP
1948 implementations require that the peer negotiates a specific IP
1949 address instead of
1950 .Sq src_addr .
1951 If this is the case,
1952 .Sq trigger_addr
1953 may be used to specify this IP number.
1954 This will not affect the
1955 routing table unless the other side agrees with this proposed number.
1956 .Bd -literal -offset indent
1957 set ifaddr 192.244.177.38 192.244.177.2 255.255.255.255 0.0.0.0
1958 .Ed
1959 .Pp
1960 The above specification means:
1961 .Pp
1962 .Bl -bullet -compact
1963 .It
1964 I will first suggest that my IP address should be 0.0.0.0, but I
1965 will only accept an address of 192.244.177.38.
1966 .It
1967 I strongly insist that the peer uses 192.244.177.2 as his own
1968 address and won't permit the use of any IP address but 192.244.177.2.
1969 When the peer requests another IP address, I will always suggest that
1970 it uses 192.244.177.2.
1971 .It
1972 The routing table entry will have a netmask of 0xffffffff.
1973 .El
1974 .Pp
1975 This is all fine when each side has a pre-determined IP address, however
1976 it is often the case that one side is acting as a server which controls
1977 all IP addresses and the other side should go along with it.
1978 In order to allow more flexible behaviour, the
1979 .Dq set ifaddr
1980 command allows the user to specify IP addresses more loosely:
1981 .Pp
1982 .Dl set ifaddr 192.244.177.38/24 192.244.177.2/20
1983 .Pp
1984 A number followed by a slash
1985 .Pq Dq /
1986 represents the number of bits significant in the IP address.
1987 The above example means:
1988 .Pp
1989 .Bl -bullet -compact
1990 .It
1991 I'd like to use 192.244.177.38 as my address if it is possible, but I'll
1992 also accept any IP address between 192.244.177.0 and 192.244.177.255.
1993 .It
1994 I'd like to make him use 192.244.177.2 as his own address, but I'll also
1995 permit him to use any IP address between 192.244.176.0 and
1996 192.244.191.255.
1997 .It
1998 As you may have already noticed, 192.244.177.2 is equivalent to saying
1999 192.244.177.2/32.
2000 .It
2001 As an exception, 0 is equivalent to 0.0.0.0/0, meaning that I have no
2002 preferred IP address and will obey the remote peers selection.
2003 When using zero, no routing table entries will be made until a connection
2004 is established.
2005 .It
2006 192.244.177.2/0 means that I'll accept/permit any IP address but I'll
2007 suggest that 192.244.177.2 be used first.
2008 .El
2009 .Pp
2010 When negotiating IPv6 addresses, no control is given to the user.
2011 IPV6CP negotiation is fully automatic.
2012 .Sh CONNECTING WITH YOUR INTERNET SERVICE PROVIDER
2013 The following steps should be taken when connecting to your ISP:
2014 .Bl -enum
2015 .It
2016 Describe your providers phone number(s) in the dial script using the
2017 .Dq set phone
2018 command.
2019 This command allows you to set multiple phone numbers for
2020 dialing and redialing separated by either a pipe
2021 .Pq Dq \&|
2022 or a colon
2023 .Pq Dq \&: :
2024 .Bd -ragged -offset indent
2025 .No set phone Ar telno Ns Xo
2026 .Oo \&| Ns Ar backupnumber
2027 .Oc Ns ... Ns Oo : Ns Ar nextnumber
2028 .Oc Ns ...
2029 .Xc
2030 .Ed
2031 .Pp
2032 Numbers after the first in a pipe-separated list are only used if the
2033 previous number was used in a failed dial or login script.
2034 Numbers
2035 separated by a colon are used sequentially, irrespective of what happened
2036 as a result of using the previous number.
2037 For example:
2038 .Bd -literal -offset indent
2039 set phone "1234567|2345678:3456789|4567890"
2040 .Ed
2041 .Pp
2042 Here, the 1234567 number is attempted.
2043 If the dial or login script fails,
2044 the 2345678 number is used next time, but *only* if the dial or login script
2045 fails.
2046 On the dial after this, the 3456789 number is used.
2047 The 4567890
2048 number is only used if the dial or login script using the 3456789 fails.
2049 If the login script of the 2345678 number fails, the next number is still the
2050 3456789 number.
2051 As many pipes and colons can be used as are necessary
2052 (although a given site would usually prefer to use either the pipe or the
2053 colon, but not both).
2054 The next number redial timeout is used between all numbers.
2055 When the end of the list is reached, the normal redial period is
2056 used before starting at the beginning again.
2057 The selected phone number is substituted for the \\\\T string in the
2058 .Dq set dial
2059 command (see below).
2060 .It
2061 Set up your redial requirements using
2062 .Dq set redial .
2063 For example, if you have a bad telephone line or your provider is
2064 usually engaged (not so common these days), you may want to specify
2065 the following:
2066 .Bd -literal -offset indent
2067 set redial 10 4
2068 .Ed
2069 .Pp
2070 This says that up to 4 phone calls should be attempted with a pause of 10
2071 seconds before dialing the first number again.
2072 .It
2073 Describe your login procedure using the
2074 .Dq set dial
2075 and
2076 .Dq set login
2077 commands.
2078 The
2079 .Dq set dial
2080 command is used to talk to your modem and establish a link with your
2081 ISP, for example:
2082 .Bd -literal -offset indent
2083 set dial "ABORT BUSY ABORT NO\\\\sCARRIER TIMEOUT 4 \\"\\" \e
2084   ATZ OK-ATZ-OK ATDT\\\\T TIMEOUT 60 CONNECT"
2085 .Ed
2086 .Pp
2087 This modem "chat" string means:
2088 .Bl -bullet
2089 .It
2090 Abort if the string "BUSY" or "NO CARRIER" are received.
2091 .It
2092 Set the timeout to 4 seconds.
2093 .It
2094 Expect nothing.
2095 .It
2096 Send ATZ.
2097 .It
2098 Expect OK.
2099 If that's not received within the 4 second timeout, send ATZ
2100 and expect OK.
2101 .It
2102 Send ATDTxxxxxxx where xxxxxxx is the next number in the phone list from
2103 above.
2104 .It
2105 Set the timeout to 60.
2106 .It
2107 Wait for the CONNECT string.
2108 .El
2109 .Pp
2110 Once the connection is established, the login script is executed.
2111 This script is written in the same style as the dial script, but care should
2112 be taken to avoid having your password logged:
2113 .Bd -literal -offset indent
2114 set authkey MySecret
2115 set login "TIMEOUT 15 login:-\\\\r-login: awfulhak \e
2116   word: \\\\P ocol: PPP HELLO"
2117 .Ed
2118 .Pp
2119 This login "chat" string means:
2120 .Bl -bullet
2121 .It
2122 Set the timeout to 15 seconds.
2123 .It
2124 Expect "login:".
2125 If it's not received, send a carriage return and expect
2126 "login:" again.
2127 .It
2128 Send "awfulhak"
2129 .It
2130 Expect "word:" (the tail end of a "Password:" prompt).
2131 .It
2132 Send whatever our current
2133 .Ar authkey
2134 value is set to.
2135 .It
2136 Expect "ocol:" (the tail end of a "Protocol:" prompt).
2137 .It
2138 Send "PPP".
2139 .It
2140 Expect "HELLO".
2141 .El
2142 .Pp
2143 The
2144 .Dq set authkey
2145 command is logged specially.
2146 When
2147 .Ar command
2148 or
2149 .Ar chat
2150 logging is enabled, the actual password is not logged;
2151 .Sq ********
2152 is logged instead.
2153 .Pp
2154 Login scripts vary greatly between ISPs.
2155 If you're setting one up for the first time,
2156 .Em ENABLE CHAT LOGGING
2157 so that you can see if your script is behaving as you expect.
2158 .It
2159 Use
2160 .Dq set device
2161 and
2162 .Dq set speed
2163 to specify your serial line and speed, for example:
2164 .Bd -literal -offset indent
2165 set device /dev/cuaa0
2166 set speed 115200
2167 .Ed
2168 .Pp
2169 Cuaa0 is the first serial port on
2170 .Fx .
2171 If you're running
2172 .Nm
2173 on
2174 .Ox ,
2175 cua00 is the first.
2176 A speed of 115200 should be specified
2177 if you have a modem capable of bit rates of 28800 or more.
2178 In general, the serial speed should be about four times the modem speed.
2179 .It
2180 Use the
2181 .Dq set ifaddr
2182 command to {define} the IP address.
2183 .Bl -bullet
2184 .It
2185 If you know what IP address your provider uses, then use it as the remote
2186 address (dst_addr), otherwise choose something like 10.0.0.2/0 (see below).
2187 .It
2188 If your provider has assigned a particular IP address to you, then use
2189 it as your address (src_addr).
2190 .It
2191 If your provider assigns your address dynamically, choose a suitably
2192 unobtrusive and unspecific IP number as your address.
2193 10.0.0.1/0 would be appropriate.
2194 The bit after the / specifies how many bits of the
2195 address you consider to be important, so if you wanted to insist on
2196 something in the class C network 1.2.3.0, you could specify 1.2.3.1/24.
2197 .It
2198 If you find that your ISP accepts the first IP number that you suggest,
2199 specify third and forth arguments of
2200 .Dq 0.0.0.0 .
2201 This will force your ISP to assign a number.
2202 (The third argument will
2203 be ignored as it is less restrictive than the default mask for your
2204 .Sq src_addr ) .
2205 .El
2206 .Pp
2207 An example for a connection where you don't know your IP number or your
2208 ISPs IP number would be:
2209 .Bd -literal -offset indent
2210 set ifaddr 10.0.0.1/0 10.0.0.2/0 0.0.0.0 0.0.0.0
2211 .Ed
2212 .Pp
2213 .It
2214 In most cases, your ISP will also be your default router.
2215 If this is the case, add the line
2216 .Bd -literal -offset indent
2217 add default HISADDR
2218 .Ed
2219 .Pp
2220 to
2221 .Pa /etc/ppp/ppp.conf
2222 (or to
2223 .Pa /etc/ppp/ppp.linkup
2224 for setups that don't use
2225 .Fl auto
2226 mode).
2227 .Pp
2228 This tells
2229 .Nm
2230 to add a default route to whatever the peer address is
2231 (10.0.0.2 in this example).
2232 This route is
2233 .Sq sticky ,
2234 meaning that should the value of
2235 .Dv HISADDR
2236 change, the route will be updated accordingly.
2237 .It
2238 If your provider requests that you use PAP/CHAP authentication methods, add
2239 the next lines to your
2240 .Pa /etc/ppp/ppp.conf
2241 file:
2242 .Bd -literal -offset indent
2243 set authname MyName
2244 set authkey MyPassword
2245 .Ed
2246 .Pp
2247 Both are accepted by default, so
2248 .Nm
2249 will provide whatever your ISP requires.
2250 .Pp
2251 It should be noted that a login script is rarely (if ever) required
2252 when PAP or CHAP are in use.
2253 .It
2254 Ask your ISP to authenticate your nameserver address(es) with the line
2255 .Bd -literal -offset indent
2256 enable dns
2257 .Ed
2258 .Pp
2259 Do
2260 .Em NOT
2261 do this if you are running a local DNS unless you also either use
2262 .Dq resolv readonly
2263 or have
2264 .Dq resolv restore
2265 in
2266 .Pa /etc/ppp/ppp.linkdown ,
2267 as
2268 .Nm
2269 will simply circumvent its use by entering some nameserver lines in
2270 .Pa /etc/resolv.conf .
2271 .El
2272 .Pp
2273 Please refer to
2274 .Pa /usr/share/examples/ppp/ppp.conf.sample
2275 and
2276 .Pa /usr/share/examples/ppp/ppp.linkup.sample
2277 for some real examples.
2278 The pmdemand label should be appropriate for most ISPs.
2279 .Sh LOGGING FACILITY
2280 .Nm
2281 is able to generate the following log info either via
2282 .Xr syslog 3
2283 or directly to the screen:
2284 .Pp
2285 .Bl -tag -width XXXXXXXXX -offset XXX -compact
2286 .It Li All
2287 Enable all logging facilities.
2288 This generates a lot of log.
2289 The most common use of 'all' is as a basis, where you remove some facilities
2290 after enabling 'all' ('debug' and 'timer' are usually best disabled.)
2291 .It Li Async
2292 Dump async level packet in hex.
2293 .It Li CBCP
2294 Generate CBCP (CallBack Control Protocol) logs.
2295 .It Li CCP
2296 Generate a CCP packet trace.
2297 .It Li Chat
2298 Generate
2299 .Sq dial ,
2300 .Sq login ,
2301 .Sq logout
2302 and
2303 .Sq hangup
2304 chat script trace logs.
2305 .It Li Command
2306 Log commands executed either from the command line or any of the configuration
2307 files.
2308 .It Li Connect
2309 Log Chat lines containing the string "CONNECT".
2310 .It Li Debug
2311 Log debug information.
2312 .It Li DNS
2313 Log DNS QUERY packets.
2314 .It Li Filter
2315 Log packets permitted by the dial filter and denied by any filter.
2316 .It Li HDLC
2317 Dump HDLC packet in hex.
2318 .It Li ID0
2319 Log all function calls specifically made as user id 0.
2320 .It Li IPCP
2321 Generate an IPCP packet trace.
2322 .It Li LCP
2323 Generate an LCP packet trace.
2324 .It Li LQM
2325 Generate LQR reports.
2326 .It Li Phase
2327 Phase transition log output.
2328 .It Li Physical
2329 Dump physical level packet in hex.
2330 .It Li Sync
2331 Dump sync level packet in hex.
2332 .It Li TCP/IP
2333 Dump all TCP/IP packets.
2334 .It Li Timer
2335 Log timer manipulation.
2336 .It Li TUN
2337 Include the tun device on each log line.
2338 .It Li Warning
2339 Output to the terminal device.
2340 If there is currently no terminal,
2341 output is sent to the log file using syslogs
2342 .Dv LOG_WARNING .
2343 .It Li Error
2344 Output to both the terminal device
2345 and the log file using syslogs
2346 .Dv LOG_ERROR .
2347 .It Li Alert
2348 Output to the log file using
2349 .Dv LOG_ALERT .
2350 .El
2351 .Pp
2352 The
2353 .Dq set log
2354 command allows you to set the logging output level.
2355 Multiple levels can be specified on a single command line.
2356 The default is equivalent to
2357 .Dq set log Phase .
2358 .Pp
2359 It is also possible to log directly to the screen.
2360 The syntax is the same except that the word
2361 .Dq local
2362 should immediately follow
2363 .Dq set log .
2364 The default is
2365 .Dq set log local
2366 (i.e., only the un-maskable warning, error and alert output).
2367 .Pp
2368 If The first argument to
2369 .Dq set log Op local
2370 begins with a
2371 .Sq +
2372 or a
2373 .Sq -
2374 character, the current log levels are
2375 not cleared, for example:
2376 .Bd -literal -offset indent
2377 PPP ON awfulhak> set log phase
2378 PPP ON awfulhak> show log
2379 Log:   Phase Warning Error Alert
2380 Local: Warning Error Alert
2381 PPP ON awfulhak> set log +tcp/ip -warning
2382 PPP ON awfulhak> set log local +command
2383 PPP ON awfulhak> show log
2384 Log:   Phase TCP/IP Warning Error Alert
2385 Local: Command Warning Error Alert
2386 .Ed
2387 .Pp
2388 Log messages of level Warning, Error and Alert are not controllable
2389 using
2390 .Dq set log Op local .
2391 .Pp
2392 The
2393 .Ar Warning
2394 level is special in that it will not be logged if it can be displayed
2395 locally.
2396 .Sh SIGNAL HANDLING
2397 .Nm
2398 deals with the following signals:
2399 .Bl -tag -width "USR2"
2400 .It INT
2401 Receipt of this signal causes the termination of the current connection
2402 (if any).
2403 This will cause
2404 .Nm
2405 to exit unless it is in
2406 .Fl auto
2407 or
2408 .Fl ddial
2409 mode.
2410 .It HUP, TERM & QUIT
2411 These signals tell
2412 .Nm
2413 to exit.
2414 .It USR1
2415 This signal, tells
2416 .Nm
2417 to re-open any existing server socket, dropping all existing diagnostic
2418 connections.
2419 Sockets that couldn't previously be opened will be retried.
2420 .It USR2
2421 This signal, tells
2422 .Nm
2423 to close any existing server socket, dropping all existing diagnostic
2424 connections.
2425 .Dv SIGUSR1
2426 can still be used to re-open the socket.
2427 .El
2428 .Sh MULTI-LINK PPP
2429 If you wish to use more than one physical link to connect to a
2430 .Em PPP
2431 peer, that peer must also understand the
2432 .Em MULTI-LINK PPP
2433 protocol.
2434 Refer to RFC 1990 for specification details.
2435 .Pp
2436 The peer is identified using a combination of his
2437 .Dq endpoint discriminator
2438 and his
2439 .Dq authentication id .
2440 Either or both of these may be specified.
2441 It is recommended that
2442 at least one is specified, otherwise there is no way of ensuring that
2443 all links are actually connected to the same peer program, and some
2444 confusing lock-ups may result.
2445 Locally, these identification variables are specified using the
2446 .Dq set enddisc
2447 and
2448 .Dq set authname
2449 commands.
2450 The
2451 .Sq authname
2452 (and
2453 .Sq authkey )
2454 must be agreed in advance with the peer.
2455 .Pp
2456 Multi-link capabilities are enabled using the
2457 .Dq set mrru
2458 command (set maximum reconstructed receive unit).
2459 Once multi-link is enabled,
2460 .Nm
2461 will attempt to negotiate a multi-link connection with the peer.
2462 .Pp
2463 By default, only one
2464 .Sq link
2465 is available
2466 (called
2467 .Sq deflink ) .
2468 To create more links, the
2469 .Dq clone
2470 command is used.
2471 This command will clone existing links, where all
2472 characteristics are the same except:
2473 .Bl -enum
2474 .It
2475 The new link has its own name as specified on the
2476 .Dq clone
2477 command line.
2478 .It
2479 The new link is an
2480 .Sq interactive
2481 link.
2482 Its mode may subsequently be changed using the
2483 .Dq set mode
2484 command.
2485 .It
2486 The new link is in a
2487 .Sq closed
2488 state.
2489 .El
2490 .Pp
2491 A summary of all available links can be seen using the
2492 .Dq show links
2493 command.
2494 .Pp
2495 Once a new link has been created, command usage varies.
2496 All link specific commands must be prefixed with the
2497 .Dq link Ar name
2498 command, specifying on which link the command is to be applied.
2499 When only a single link is available,
2500 .Nm
2501 is smart enough not to require the
2502 .Dq link Ar name
2503 prefix.
2504 .Pp
2505 Some commands can still be used without specifying a link - resulting
2506 in an operation at the
2507 .Sq bundle
2508 level.
2509 For example, once two or more links are available, the command
2510 .Dq show ccp
2511 will show CCP configuration and statistics at the multi-link level, and
2512 .Dq link deflink show ccp
2513 will show the same information at the
2514 .Dq deflink
2515 link level.
2516 .Pp
2517 Armed with this information, the following configuration might be used:
2518 .Pp
2519 .Bd -literal -offset indent
2520 mp:
2521  set timeout 0
2522  set log phase chat
2523  set device /dev/cuaa0 /dev/cuaa1 /dev/cuaa2
2524  set phone "123456789"
2525  set dial "ABORT BUSY ABORT NO\\sCARRIER TIMEOUT 5 \\"\\" ATZ \e
2526            OK-AT-OK \\\\dATDT\\\\T TIMEOUT 45 CONNECT"
2527  set login
2528  set ifaddr 10.0.0.1/0 10.0.0.2/0 0.0.0.0 0.0.0.0
2529  set authname ppp
2530  set authkey ppppassword
2531
2532  set mrru 1500
2533  clone 1,2,3            # Create 3 new links - duplicates of the default
2534  link deflink remove    # Delete the default link (called ``deflink'')
2535 .Ed
2536 .Pp
2537 Note how all cloning is done at the end of the configuration.
2538 Usually, the link will be configured first, then cloned.
2539 If you wish all links
2540 to be up all the time, you can add the following line to the end of your
2541 configuration.
2542 .Pp
2543 .Bd -literal -offset indent
2544   link 1,2,3 set mode ddial
2545 .Ed
2546 .Pp
2547 If you want the links to dial on demand, this command could be used:
2548 .Pp
2549 .Bd -literal -offset indent
2550   link * set mode auto
2551 .Ed
2552 .Pp
2553 Links may be tied to specific names by removing the
2554 .Dq set device
2555 line above, and specifying the following after the
2556 .Dq clone
2557 command:
2558 .Pp
2559 .Bd -literal -offset indent
2560  link 1 set device /dev/cuaa0
2561  link 2 set device /dev/cuaa1
2562  link 3 set device /dev/cuaa2
2563 .Ed
2564 .Pp
2565 Use the
2566 .Dq help
2567 command to see which commands require context (using the
2568 .Dq link
2569 command), which have optional
2570 context and which should not have any context.
2571 .Pp
2572 When
2573 .Nm
2574 has negotiated
2575 .Em MULTI-LINK
2576 mode with the peer, it creates a local domain socket in the
2577 .Pa /var/run
2578 directory.
2579 This socket is used to pass link information (including
2580 the actual link file descriptor) between different
2581 .Nm
2582 invocations.
2583 This facilitates
2584 .Nm Ns No 's
2585 ability to be run from a
2586 .Xr getty 8
2587 or directly from
2588 .Pa /etc/gettydefs
2589 (using the
2590 .Sq pp=
2591 capability), without needing to have initial control of the serial
2592 line.
2593 Once
2594 .Nm
2595 negotiates multi-link mode, it will pass its open link to any
2596 already running process.
2597 If there is no already running process,
2598 .Nm
2599 will act as the master, creating the socket and listening for new
2600 connections.
2601 .Sh PPP COMMAND LIST
2602 This section lists the available commands and their effect.
2603 They are usable either from an interactive
2604 .Nm
2605 session, from a configuration file or from a
2606 .Xr pppctl 8
2607 or
2608 .Xr telnet 1
2609 session.
2610 .Bl -tag -width 2n
2611 .It accept|deny|enable|disable Ar option....
2612 These directives tell
2613 .Nm
2614 how to negotiate the initial connection with the peer.
2615 Each
2616 .Dq option
2617 has a default of either accept or deny and enable or disable.
2618 .Dq Accept
2619 means that the option will be ACK'd if the peer asks for it.
2620 .Dq Deny
2621 means that the option will be NAK'd if the peer asks for it.
2622 .Dq Enable
2623 means that the option will be requested by us.
2624 .Dq Disable
2625 means that the option will not be requested by us.
2626 .Pp
2627 .Dq Option
2628 may be one of the following:
2629 .Bl -tag -width 2n
2630 .It acfcomp
2631 Default: Enabled and Accepted.
2632 ACFComp stands for Address and Control Field Compression.
2633 Non LCP packets will usually have an address
2634 field of 0xff (the All-Stations address) and a control field of
2635 0x03 (the Unnumbered Information command).
2636 If this option is
2637 negotiated, these two bytes are simply not sent, thus minimising
2638 traffic.
2639 .Pp
2640 See
2641 .Pa rfc1662
2642 for details.
2643 .It chap Ns Op \&05
2644 Default: Disabled and Accepted.
2645 CHAP stands for Challenge Handshake Authentication Protocol.
2646 Only one of CHAP and PAP (below) may be negotiated.
2647 With CHAP, the authenticator sends a "challenge" message to its peer.
2648 The peer uses a one-way hash function to encrypt the
2649 challenge and sends the result back.
2650 The authenticator does the same, and compares the results.
2651 The advantage of this mechanism is that no
2652 passwords are sent across the connection.
2653 A challenge is made when the connection is first made.
2654 Subsequent challenges may occur.
2655 If you want to have your peer authenticate itself, you must
2656 .Dq enable chap .
2657 in
2658 .Pa /etc/ppp/ppp.conf ,
2659 and have an entry in
2660 .Pa /etc/ppp/ppp.secret
2661 for the peer.
2662 .Pp
2663 When using CHAP as the client, you need only specify
2664 .Dq AuthName
2665 and
2666 .Dq AuthKey
2667 in
2668 .Pa /etc/ppp/ppp.conf .
2669 CHAP is accepted by default.
2670 Some
2671 .Em PPP
2672 implementations use "MS-CHAP" rather than MD5 when encrypting the
2673 challenge.
2674 MS-CHAP is a combination of MD4 and DES.
2675 If
2676 .Nm
2677 was built on a machine with DES libraries available, it will respond
2678 to MS-CHAP authentication requests, but will never request them.
2679 .It deflate
2680 Default: Enabled and Accepted.
2681 This option decides if deflate
2682 compression will be used by the Compression Control Protocol (CCP).
2683 This is the same algorithm as used by the
2684 .Xr gzip 1
2685 program.
2686 Note: There is a problem negotiating
2687 .Ar deflate
2688 capabilities with
2689 .Xr pppd 8
2690 - a
2691 .Em PPP
2692 implementation available under many operating systems.
2693 .Nm pppd
2694 (version 2.3.1) incorrectly attempts to negotiate
2695 .Ar deflate
2696 compression using type
2697 .Em 24
2698 as the CCP configuration type rather than type
2699 .Em 26
2700 as specified in
2701 .Pa rfc1979 .
2702 Type
2703 .Ar 24
2704 is actually specified as
2705 .Dq PPP Magna-link Variable Resource Compression
2706 in
2707 .Pa rfc1975 !
2708 .Nm
2709 is capable of negotiating with
2710 .Nm pppd ,
2711 but only if
2712 .Dq deflate24
2713 is
2714 .Ar enable Ns No d
2715 and
2716 .Ar accept Ns No ed .
2717 .It deflate24
2718 Default: Disabled and Denied.
2719 This is a variance of the
2720 .Ar deflate
2721 option, allowing negotiation with the
2722 .Xr pppd 8
2723 program.
2724 Refer to the
2725 .Ar deflate
2726 section above for details.
2727 It is disabled by default as it violates
2728 .Pa rfc1975 .
2729 .It dns
2730 Default: Disabled and Denied.
2731 This option allows DNS negotiation.
2732 .Pp
2733 If
2734 .Dq enable Ns No d,
2735 .Nm
2736 will request that the peer confirms the entries in
2737 .Pa /etc/resolv.conf .
2738 If the peer NAKs our request (suggesting new IP numbers),
2739 .Pa /etc/resolv.conf
2740 is updated and another request is sent to confirm the new entries.
2741 .Pp
2742 If
2743 .Dq accept Ns No ed,
2744 .Nm
2745 will answer any DNS queries requested by the peer rather than rejecting
2746 them.
2747 The answer is taken from
2748 .Pa /etc/resolv.conf
2749 unless the
2750 .Dq set dns
2751 command is used as an override.
2752 .It enddisc
2753 Default: Enabled and Accepted.
2754 This option allows control over whether we
2755 negotiate an endpoint discriminator.
2756 We only send our discriminator if
2757 .Dq set enddisc
2758 is used and
2759 .Ar enddisc
2760 is enabled.
2761 We reject the peers discriminator if
2762 .Ar enddisc
2763 is denied.
2764 .It LANMan|chap80lm
2765 Default: Disabled and Accepted.
2766 The use of this authentication protocol
2767 is discouraged as it partially violates the authentication protocol by
2768 implementing two different mechanisms (LANMan & NT) under the guise of
2769 a single CHAP type (0x80).
2770 .Dq LANMan
2771 uses a simple DES encryption mechanism and is the least secure of the
2772 CHAP alternatives (although is still more secure than PAP).
2773 .Pp
2774 Refer to the
2775 .Dq MSChap
2776 description below for more details.
2777 .It lqr
2778 Default: Disabled and Accepted.
2779 This option decides if Link Quality Requests will be sent or accepted.
2780 LQR is a protocol that allows
2781 .Nm
2782 to determine that the link is down without relying on the modems
2783 carrier detect.
2784 When LQR is enabled,
2785 .Nm
2786 sends the
2787 .Em QUALPROTO
2788 option (see
2789 .Dq set lqrperiod
2790 below) as part of the LCP request.
2791 If the peer agrees, both sides will
2792 exchange LQR packets at the agreed frequency, allowing detailed link
2793 quality monitoring by enabling LQM logging.
2794 If the peer doesn't agree,
2795 .Nm
2796 will send ECHO LQR requests instead.
2797 These packets pass no information of interest, but they
2798 .Em MUST
2799 be replied to by the peer.
2800 .Pp
2801 Whether using LQR or ECHO LQR,
2802 .Nm
2803 will abruptly drop the connection if 5 unacknowledged packets have been
2804 sent rather than sending a 6th.
2805 A message is logged at the
2806 .Em PHASE
2807 level, and any appropriate
2808 .Dq reconnect
2809 values are honoured as if the peer were responsible for dropping the
2810 connection.
2811 .It mppe
2812 Default: Enabled and Accepted.
2813 This is Microsoft Point to Point Encryption scheme.
2814 MPPE key size can be
2815 40-, 56- and 128-bits.
2816 Refer to
2817 .Dq set mppe
2818 command.
2819 .It MSChapV2|chap81
2820 Default: Disabled and Accepted.
2821 It is very similar to standard CHAP (type 0x05)
2822 except that it issues challenges of a fixed 16 bytes in length and uses a
2823 combination of MD4, SHA-1 and DES to encrypt the challenge rather than using the
2824 standard MD5 mechanism.
2825 .It MSChap|chap80nt
2826 Default: Disabled and Accepted.
2827 The use of this authentication protocol
2828 is discouraged as it partially violates the authentication protocol by
2829 implementing two different mechanisms (LANMan & NT) under the guise of
2830 a single CHAP type (0x80).
2831 It is very similar to standard CHAP (type 0x05)
2832 except that it issues challenges of a fixed 8 bytes in length and uses a
2833 combination of MD4 and DES to encrypt the challenge rather than using the
2834 standard MD5 mechanism.
2835 CHAP type 0x80 for LANMan is also supported - see
2836 .Dq enable LANMan
2837 for details.
2838 .Pp
2839 Because both
2840 .Dq LANMan
2841 and
2842 .Dq NT
2843 use CHAP type 0x80, when acting as authenticator with both
2844 .Dq enable Ns No d ,
2845 .Nm
2846 will rechallenge the peer up to three times if it responds using the wrong
2847 one of the two protocols.
2848 This gives the peer a chance to attempt using both protocols.
2849 .Pp
2850 Conversely, when
2851 .Nm
2852 acts as the authenticatee with both protocols
2853 .Dq accept Ns No ed ,
2854 the protocols are used alternately in response to challenges.
2855 .Pp
2856 Note: If only LANMan is enabled,
2857 .Xr pppd 8
2858 (version 2.3.5) misbehaves when acting as authenticatee.
2859 It provides both
2860 the NT and the LANMan answers, but also suggests that only the NT answer
2861 should be used.
2862 .It pap
2863 Default: Disabled and Accepted.
2864 PAP stands for Password Authentication Protocol.
2865 Only one of PAP and CHAP (above) may be negotiated.
2866 With PAP, the ID and Password are sent repeatedly to the peer until
2867 authentication is acknowledged or the connection is terminated.
2868 This is a rather poor security mechanism.
2869 It is only performed when the connection is first established.
2870 If you want to have your peer authenticate itself, you must
2871 .Dq enable pap .
2872 in
2873 .Pa /etc/ppp/ppp.conf ,
2874 and have an entry in
2875 .Pa /etc/ppp/ppp.secret
2876 for the peer (although see the
2877 .Dq passwdauth
2878 and
2879 .Dq set radius
2880 options below).
2881 .Pp
2882 When using PAP as the client, you need only specify
2883 .Dq AuthName
2884 and
2885 .Dq AuthKey
2886 in
2887 .Pa /etc/ppp/ppp.conf .
2888 PAP is accepted by default.
2889 .It pred1
2890 Default: Enabled and Accepted.
2891 This option decides if Predictor 1
2892 compression will be used by the Compression Control Protocol (CCP).
2893 .It protocomp
2894 Default: Enabled and Accepted.
2895 This option is used to negotiate
2896 PFC (Protocol Field Compression), a mechanism where the protocol
2897 field number is reduced to one octet rather than two.
2898 .It shortseq
2899 Default: Enabled and Accepted.
2900 This option determines if
2901 .Nm
2902 will request and accept requests for short
2903 (12 bit)
2904 sequence numbers when negotiating multi-link mode.
2905 This is only applicable if our MRRU is set (thus enabling multi-link).
2906 .It vjcomp
2907 Default: Enabled and Accepted.
2908 This option determines if Van Jacobson header compression will be used.
2909 .El
2910 .Pp
2911 The following options are not actually negotiated with the peer.
2912 Therefore, accepting or denying them makes no sense.
2913 .Bl -tag -width 2n
2914 .It filter-decapsulation
2915 Default: Disabled.
2916 When this option is enabled,
2917 .Nm
2918 will examine UDP frames to see if they actually contain a
2919 .Em PPP
2920 frame as their payload.
2921 If this is the case, all filters will operate on the payload rather
2922 than the actual packet.
2923 .Pp
2924 This is useful if you want to send PPPoUDP traffic over a
2925 .Em PPP
2926 link, but want that link to do smart things with the real data rather than
2927 the UDP wrapper.
2928 .Pp
2929 The UDP frame payload must not be compressed in any way, otherwise
2930 .Nm
2931 will not be able to interpret it.
2932 It's therefore recommended that you
2933 .Ic disable vj pred1 deflate
2934 and
2935 .Ic deny vj pred1 deflate
2936 in the configuration for the
2937 .Nm
2938 invocation with the udp link.
2939 .It idcheck
2940 Default: Enabled.
2941 When
2942 .Nm
2943 exchanges low-level LCP, CCP and IPCP configuration traffic, the
2944 .Em Identifier
2945 field of any replies is expected to be the same as that of the request.
2946 By default,
2947 .Nm
2948 drops any reply packets that do not contain the expected identifier
2949 field, reporting the fact at the respective log level.
2950 If
2951 .Ar idcheck
2952 is disabled,
2953 .Nm
2954 will ignore the identifier field.
2955 .It iface-alias
2956 Default: Enabled if
2957 .Fl nat
2958 is specified.
2959 This option simply tells
2960 .Nm
2961 to add new interface addresses to the interface rather than replacing them.
2962 The option can only be enabled if network address translation is enabled
2963 .Pq Dq nat enable yes .
2964 .Pp
2965 With this option enabled,
2966 .Nm
2967 will pass traffic for old interface addresses through the NAT
2968 ifdef({LOCALNAT},{engine,},{engine
2969 (see
2970 .Xr libalias 3 ) ,})
2971 resulting in the ability (in
2972 .Fl auto
2973 mode) to properly connect the process that caused the PPP link to
2974 come up in the first place.
2975 .Pp
2976 Disabling NAT with
2977 .Dq nat enable no
2978 will also disable
2979 .Sq iface-alias .
2980 .It ipcp
2981 Default: Enabled.
2982 This option allows
2983 .Nm
2984 to attempt to negotiate IP control protocol capabilities and if
2985 successful to exchange IP datagrams with the peer.
2986 .It ipv6cp
2987 Default: Enabled.
2988 This option allows
2989 .Nm
2990 to attempt to negotiate IPv6 control protocol capabilities and if
2991 successful to exchange IPv6 datagrams with the peer.
2992 .It keep-session
2993 Default: Disabled.
2994 When
2995 .Nm
2996 runs as a Multi-link server, a different
2997 .Nm
2998 instance initially receives each connection.
2999 After determining that
3000 the link belongs to an already existing bundle (controlled by another
3001 .Nm
3002 invocation),
3003 .Nm
3004 will transfer the link to that process.
3005 .Pp
3006 If the link is a tty device or if this option is enabled,
3007 .Nm
3008 will not exit, but will change its process name to
3009 .Dq session owner
3010 and wait for the controlling
3011 .Nm
3012 to finish with the link and deliver a signal back to the idle process.
3013 This prevents the confusion that results from
3014 .Nm Ns No 's
3015 parent considering the link resource available again.
3016 .Pp
3017 For tty devices that have entries in
3018 .Pa /etc/ttys ,
3019 this is necessary to prevent another
3020 .Xr getty 8
3021 from being started, and for program links such as
3022 .Xr sshd 8 ,
3023 it prevents
3024 .Xr sshd 8
3025 from exiting due to the death of its child.
3026 As
3027 .Nm
3028 cannot determine its parents requirements (except for the tty case), this
3029 option must be enabled manually depending on the circumstances.
3030 .It loopback
3031 Default: Enabled.
3032 When
3033 .Ar loopback
3034 is enabled,
3035 .Nm
3036 will automatically loop back packets being sent
3037 out with a destination address equal to that of the
3038 .Em PPP
3039 interface.
3040 If disabled,
3041 .Nm
3042 will send the packet, probably resulting in an ICMP redirect from
3043 the other end.
3044 It is convenient to have this option enabled when
3045 the interface is also the default route as it avoids the necessity
3046 of a loopback route.
3047 .It passwdauth
3048 Default: Disabled.
3049 Enabling this option will tell the PAP authentication
3050 code to use the password database (see
3051 .Xr passwd 5 )
3052 to authenticate the caller if they cannot be found in the
3053 .Pa /etc/ppp/ppp.secret
3054 file.
3055 .Pa /etc/ppp/ppp.secret
3056 is always checked first.
3057 If you wish to use passwords from
3058 .Xr passwd 5 ,
3059 but also to specify an IP number or label for a given client, use
3060 .Dq \&*
3061 as the client password in
3062 .Pa /etc/ppp/ppp.secret .
3063 .It proxy
3064 Default: Disabled.
3065 Enabling this option will tell
3066 .Nm
3067 to proxy ARP for the peer.
3068 This means that
3069 .Nm
3070 will make an entry in the ARP table using
3071 .Dv HISADDR
3072 and the
3073 .Dv MAC
3074 address of the local network in which
3075 .Dv HISADDR
3076 appears.
3077 This allows other machines connecteed to the LAN to talk to
3078 the peer as if the peer itself was connected to the LAN.
3079 The proxy entry cannot be made unless
3080 .Dv HISADDR
3081 is an address from a LAN.
3082 .It proxyall
3083 Default: Disabled.
3084 Enabling this will tell
3085 .Nm
3086 to add proxy arp entries for every IP address in all class C or
3087 smaller subnets routed via the tun interface.
3088 .Pp
3089 Proxy arp entries are only made for sticky routes that are added
3090 using the
3091 .Dq add
3092 command.
3093 No proxy arp entries are made for the interface address itself
3094 (as created by the
3095 .Dq set ifaddr
3096 command).
3097 .It sroutes
3098 Default: Enabled.
3099 When the
3100 .Dq add
3101 command is used with the
3102 .Dv HISADDR ,
3103 .Dv MYADDR ,
3104 .Dv HISADDR6
3105 or
3106 .Dv MYADDR6
3107 values, entries are stored in the
3108 .Sq sticky route
3109 list.
3110 Each time these variables change, this list is re-applied to the routing table.
3111 .Pp
3112 Disabling this option will prevent the re-application of sticky routes,
3113 although the
3114 .Sq stick route
3115 list will still be maintained.
3116 .It Op tcp Ns Xo
3117 .No mssfixup
3118 .Xc
3119 Default: Enabled.
3120 This option tells
3121 .Nm
3122 to adjust TCP SYN packets so that the maximum receive segment
3123 size is not greater than the amount allowed by the interface MTU.
3124 .It throughput
3125 Default: Enabled.
3126 This option tells
3127 .Nm
3128 to gather throughput statistics.
3129 Input and output is sampled over
3130 a rolling 5 second window, and current, best and total figures are retained.
3131 This data is output when the relevant
3132 .Em PPP
3133 layer shuts down, and is also available using the
3134 .Dq show
3135 command.
3136 Throughput statistics are available at the
3137 .Dq IPCP
3138 and
3139 .Dq physical
3140 levels.
3141 .It utmp
3142 Default: Enabled.
3143 Normally, when a user is authenticated using PAP or CHAP, and when
3144 .Nm
3145 is running in
3146 .Fl direct
3147 mode, an entry is made in the utmp and wtmp files for that user.
3148 Disabling this option will tell
3149 .Nm
3150 not to make any utmp or wtmp entries.
3151 This is usually only necessary if
3152 you require the user to both login and authenticate themselves.
3153 .El
3154 .Pp
3155 .It add Ns Xo
3156 .Op !\&
3157 .Ar dest Ns Op / Ns Ar nn
3158 .Op Ar mask
3159 .Op Ar gateway
3160 .Xc
3161 .Ar Dest
3162 is the destination IP address.
3163 The netmask is specified either as a number of bits with
3164 .Ar /nn
3165 or as an IP number using
3166 .Ar mask .
3167 .Ar 0 0
3168 or simply
3169 .Ar 0
3170 with no mask refers to the default route.
3171 It is also possible to use the literal name
3172 .Sq default
3173 instead of
3174 .Ar 0 .
3175 .Ar Gateway
3176 is the next hop gateway to get to the given
3177 .Ar dest
3178 machine/network.
3179 Refer to the
3180 .Xr route 8
3181 command for further details.
3182 .Pp
3183 It is possible to use the symbolic names
3184 .Sq MYADDR ,
3185 .Sq HISADDR ,
3186 .Sq MYADDR6
3187 or
3188 .Sq HISADDR6
3189 as the destination, and
3190 .Sq HISADDR
3191 or
3192 .Sq HISADDR6
3193 as the
3194 .Ar gateway .
3195 .Sq MYADDR
3196 is replaced with the interface IP address,
3197 .Sq HISADDR
3198 is replaced with the interface IP destination (peer) address,
3199 .Sq MYADDR6
3200 is replaced with the interface IPv6 address, and
3201 .Sq HISADDR6
3202 is replaced with the interface IPv6 destination address,
3203 .Pp
3204 If the
3205 .Ar add!\&
3206 command is used
3207 (note the trailing
3208 .Dq !\& ) ,
3209 then if the route already exists, it will be updated as with the
3210 .Sq route change
3211 command (see
3212 .Xr route 8
3213 for further details).
3214 .Pp
3215 Routes that contain the
3216 .Dq HISADDR ,
3217 .Dq MYADDR ,
3218 .Dq HISADDR6 ,
3219 .Dq MYADDR6 ,
3220 .Dq DNS0 ,
3221 or
3222 .Dq DNS1
3223 constants are considered
3224 .Sq sticky .
3225 They are stored in a list (use
3226 .Dq show ncp
3227 to see the list), and each time the value of one of these variables
3228 changes, the appropriate routing table entries are updated.
3229 This facility may be disabled using
3230 .Dq disable sroutes .
3231 .It allow Ar command Op Ar args
3232 This command controls access to
3233 .Nm
3234 and its configuration files.
3235 It is possible to allow user-level access,
3236 depending on the configuration file label and on the mode that
3237 .Nm
3238 is being run in.
3239 For example, you may wish to configure
3240 .Nm
3241 so that only user
3242 .Sq fred
3243 may access label
3244 .Sq fredlabel
3245 in
3246 .Fl background
3247 mode.
3248 .Pp
3249 User id 0 is immune to these commands.
3250 .Bl -tag -width 2n
3251 .It allow user Ns Xo
3252 .Op s
3253 .Ar logname Ns No ...
3254 .Xc
3255 By default, only user id 0 is allowed access to
3256 .Nm .
3257 If this command is used, all of the listed users are allowed access to
3258 the section in which the
3259 .Dq allow users
3260 command is found.
3261 The
3262 .Sq default
3263 section is always checked first (even though it is only ever automatically
3264 loaded at startup).
3265 .Dq allow users
3266 commands are cumulative in a given section, but users allowed in any given
3267 section override users allowed in the default section, so it's possible to
3268 allow users access to everything except a given label by specifying default
3269 users in the
3270 .Sq default
3271 section, and then specifying a new user list for that label.
3272 .Pp
3273 If user
3274 .Sq *
3275 is specified, access is allowed to all users.
3276 .It allow mode Ns Xo
3277 .Op s
3278 .Ar mode Ns No ...
3279 .Xc
3280 By default, access using any
3281 .Nm
3282 mode is possible.
3283 If this command is used, it restricts the access
3284 .Ar modes
3285 allowed to load the label under which this command is specified.
3286 Again, as with the
3287 .Dq allow users
3288 command, each
3289 .Dq allow modes
3290 command overrides any previous settings, and the
3291 .Sq default
3292 section is always checked first.
3293 .Pp
3294 Possible modes are:
3295 .Sq interactive ,
3296 .Sq auto ,
3297 .Sq direct ,
3298 .Sq dedicated ,
3299 .Sq ddial ,
3300 .Sq background
3301 and
3302 .Sq * .
3303 .Pp
3304 When running in multi-link mode, a section can be loaded if it allows
3305 .Em any
3306 of the currently existing line modes.
3307 .El
3308 .Pp
3309 .It nat Ar command Op Ar args
3310 This command allows the control of the network address translation (also
3311 known as masquerading or IP aliasing) facilities that are built into
3312 .Nm .
3313 NAT is done on the external interface only, and is unlikely to make sense
3314 if used with the
3315 .Fl direct
3316 flag.
3317 .Pp
3318 If nat is enabled on your system (it may be omitted at compile time),
3319 the following commands are possible:
3320 .Bl -tag -width 2n
3321 .It nat enable yes|no
3322 This command either switches network address translation on or turns it off.
3323 The
3324 .Fl nat
3325 command line flag is synonymous with
3326 .Dq nat enable yes .
3327 .It nat addr Op Ar addr_local addr_alias
3328 This command allows data for
3329 .Ar addr_alias
3330 to be redirected to
3331 .Ar addr_local .
3332 It is useful if you own a small number of real IP numbers that
3333 you wish to map to specific machines behind your gateway.
3334 .It nat deny_incoming yes|no
3335 If set to yes, this command will refuse all incoming packets where an
3336 aliasing link doesn't already exist.
3337 ifdef({LOCALNAT},{},{Refer to the
3338 .Sx CONCEPTUAL BACKGROUND
3339 section of
3340 .Xr libalias 3
3341 for a description of what an
3342 .Dq aliasing link
3343 is.
3344 })dnl
3345 .Pp
3346 It should be noted under what circumstances an aliasing link is
3347 ifdef({LOCALNAT},{created.},{created by
3348 .Xr libalias 3 .})
3349 It may be necessary to further protect your network from outside
3350 connections using the
3351 .Dq set filter
3352 or
3353 .Dq nat target
3354 commands.
3355 .It nat help|?
3356 This command gives a summary of available nat commands.
3357 .It nat log yes|no
3358 This option causes various NAT statistics and information to
3359 be logged to the file
3360 .Pa /var/log/alias.log .
3361 .It nat port Ar proto Ar targetIP Ns Xo
3362 .No : Ns Ar targetPort Ns
3363 .Oo
3364 .No - Ns Ar targetPort
3365 .Oc Ar aliasPort Ns
3366 .Oo
3367 .No - Ns Ar aliasPort
3368 .Oc Oo Ar remoteIP : Ns
3369 .Ar remotePort Ns
3370 .Oo
3371 .No - Ns Ar remotePort
3372 .Oc Ns
3373 .Oc
3374 .Xc
3375 This command causes incoming
3376 .Ar proto
3377 connections to
3378 .Ar aliasPort
3379 to be redirected to
3380 .Ar targetPort
3381 on
3382 .Ar targetIP .
3383 .Ar proto
3384 is either
3385 .Dq tcp
3386 or
3387 .Dq udp .
3388 .Pp
3389 A range of port numbers may be specified as shown above.
3390 The ranges must be of the same size.
3391 .Pp
3392 If
3393 .Ar remoteIP
3394 is specified, only data coming from that IP number is redirected.
3395 .Ar remotePort
3396 must either be
3397 .Dq 0
3398 (indicating any source port)
3399 or a range of ports the same size as the other ranges.
3400 .Pp
3401 This option is useful if you wish to run things like Internet phone on
3402 machines behind your gateway, but is limited in that connections to only
3403 one interior machine per source machine and target port are possible.
3404 .It nat proto Ar proto localIP Oo
3405 .Ar publicIP Op Ar remoteIP
3406 .Oc
3407 This command tells
3408 .Nm
3409 to redirect packets of protocol type
3410 .Ar proto
3411 (see
3412 .Xr protocols 5 )
3413 to the internal address
3414 .Ar localIP .
3415 .Pp
3416 If
3417 .Ar publicIP
3418 is specified, only packets destined for that address are matched,
3419 otherwise the default alias address is used.
3420 .Pp
3421 If
3422 .Ar remoteIP
3423 is specified, only packets matching that source address are matched,
3424 .Pp
3425 This command is useful for redirecting tunnel endpoints to an internal machine,
3426 for example:
3427 .Pp
3428 .Dl nat proto ipencap 10.0.0.1
3429 .It "nat proxy cmd" Ar arg Ns No ...
3430 This command tells
3431 .Nm
3432 to proxy certain connections, redirecting them to a given server.
3433 ifdef({LOCALNAT},{},{Refer to the description of
3434 .Fn PacketAliasProxyRule
3435 in
3436 .Xr libalias 3
3437 for details of the available commands.
3438 })dnl
3439 .It nat punch_fw Op Ar base count
3440 This command tells
3441 .Nm
3442 to punch holes in the firewall for FTP or IRC DCC connections.
3443 This is done dynamically by installing termporary firewall rules which
3444 allow a particular connection (and only that connection) to go through
3445 the firewall.
3446 The rules are removed once the corresponding connection terminates.
3447 .Pp
3448 A maximum of
3449 .Ar count
3450 rules starting from rule number
3451 .Ar base
3452 will be used for punching firewall holes.
3453 The range will be cleared when the
3454 .Dq nat punch_fw
3455 command is run.
3456 .Pp
3457 If no arguments are given, firewall punching is disabled.
3458 .It nat same_ports yes|no
3459 When enabled, this command will tell the network address translation engine to
3460 attempt to avoid changing the port number on outgoing packets.
3461 This is useful
3462 if you want to support protocols such as RPC and LPD which require
3463 connections to come from a well known port.
3464 .It nat target Op Ar address
3465 Set the given target address or clear it if no address is given.
3466 The target address is used
3467 ifdef({LOCALNAT},{},{by libalias })dnl
3468 to specify how to NAT incoming packets by default.
3469 If a target address is not set or if
3470 .Dq default
3471 is given, packets are not altered and are allowed to route to the internal
3472 network.
3473 .Pp
3474 The target address may be set to
3475 .Dq MYADDR ,
3476 in which case
3477 ifdef({LOCALNAT},{all packets will be redirected},
3478 {libalias will redirect all packets})
3479 to the interface address.
3480 .It nat use_sockets yes|no
3481 When enabled, this option tells the network address translation engine to
3482 create a socket so that it can guarantee a correct incoming ftp data or
3483 IRC connection.
3484 .It nat unregistered_only yes|no
3485 Only alter outgoing packets with an unregistered source address.
3486 According to RFC 1918, unregistered source addresses
3487 are 10.0.0.0/8, 172.16.0.0/12 and 192.168.0.0/16.
3488 .El
3489 .Pp
3490 These commands are also discussed in the file
3491 .Pa README.nat
3492 which comes with the source distribution.
3493 .Pp
3494 .It Op !\& Ns Xo
3495 .No bg Ar command
3496 .Xc
3497 The given
3498 .Ar command
3499 is executed in the background with the following words replaced:
3500 .Bl -tag -width COMPILATIONDATE
3501 .It Li AUTHNAME
3502 This is replaced with the local
3503 .Ar authname
3504 value.
3505 See the
3506 .Dq set authname
3507 command below.
3508 .It Li COMPILATIONDATE
3509 This is replaced with the date on which
3510 .Nm
3511 was compiled.
3512 .It Li DNS0 & DNS1
3513 These are replaced with the primary and secondary nameserver IP numbers.
3514 If nameservers are negotiated by IPCP, the values of these macros will change.
3515 .It Li ENDDISC
3516 This is replaced with the local endpoint discriminator value.
3517 See the
3518 .Dq set enddisc
3519 command below.
3520 .It Li HISADDR
3521 This is replaced with the peers IP number.
3522 .It Li HISADDR6
3523 This is replaced with the peers IPv6 number.
3524 .It Li INTERFACE
3525 This is replaced with the name of the interface that's in use.
3526 .It Li IPOCTETSIN
3527 This is replaced with the number of IP bytes received since the connection
3528 was established.
3529 .It Li IPOCTETSOUT
3530 This is replaced with the number of IP bytes sent since the connection
3531 was established.
3532 .It Li IPPACKETSIN
3533 This is replaced with the number of IP packets received since the connection
3534 was established.
3535 .It Li IPPACKETSOUT
3536 This is replaced with the number of IP packets sent since the connection
3537 was established.
3538 .It Li IPV6OCTETSIN
3539 This is replaced with the number of IPv6 bytes received since the connection
3540 was established.
3541 .It Li IPV6OCTETSOUT
3542 This is replaced with the number of IPv6 bytes sent since the connection
3543 was established.
3544 .It Li IPV6PACKETSIN
3545 This is replaced with the number of IPv6 packets received since the connection
3546 was established.
3547 .It Li IPV6PACKETSOUT
3548 This is replaced with the number of IPv6 packets sent since the connection
3549 was established.
3550 .It Li LABEL
3551 This is replaced with the last label name used.
3552 A label may be specified on the
3553 .Nm
3554 command line, via the
3555 .Dq load
3556 or
3557 .Dq dial
3558 commands and in the
3559 .Pa ppp.secret
3560 file.
3561 .It Li MYADDR
3562 This is replaced with the IP number assigned to the local interface.
3563 .It Li MYADDR6
3564 This is replaced with the IPv6 number assigned to the local interface.
3565 .It Li OCTETSIN
3566 This is replaced with the number of bytes received since the connection
3567 was established.
3568 .It Li OCTETSOUT
3569 This is replaced with the number of bytes sent since the connection
3570 was established.
3571 .It Li PACKETSIN
3572 This is replaced with the number of packets received since the connection
3573 was established.
3574 .It Li PACKETSOUT
3575 This is replaced with the number of packets sent since the connection
3576 was established.
3577 .It Li PEER_ENDDISC
3578 This is replaced with the value of the peers endpoint discriminator.
3579 .It Li PROCESSID
3580 This is replaced with the current process id.
3581 .It Li SOCKNAME
3582 This is replaced with the name of the diagnostic socket.
3583 .It Li UPTIME
3584 This is replaced with the bundle uptime in HH:MM:SS format.
3585 .It Li USER
3586 This is replaced with the username that has been authenticated with PAP or
3587 CHAP.
3588 Normally, this variable is assigned only in -direct mode.
3589 This value is available irrespective of whether utmp logging is enabled.
3590 .It Li VERSION
3591 This is replaced with the current version number of
3592 .Nm .
3593 .El
3594 .Pp
3595 These substitutions are also done by the
3596 .Dq set proctitle ,
3597 .Dq ident
3598 and
3599 .Dq log
3600 commands.
3601 .Pp
3602 If you wish to pause
3603 .Nm
3604 while the command executes, use the
3605 .Dq shell
3606 command instead.
3607 .It clear physical|ipcp|ipv6 Op current|overall|peak...
3608 Clear the specified throughput values at either the
3609 .Dq physical ,
3610 .Dq ipcp
3611 or
3612 .Dq ipv6cp
3613 level.
3614 If
3615 .Dq physical
3616 is specified, context must be given (see the
3617 .Dq link
3618 command below).
3619 If no second argument is given, all values are cleared.
3620 .It clone Ar name Ns Xo
3621 .Op \&, Ns Ar name Ns
3622 .No ...
3623 .Xc
3624 Clone the specified link, creating one or more new links according to the
3625 .Ar name
3626 argument(s).
3627 This command must be used from the
3628 .Dq link
3629 command below unless you've only got a single link (in which case that
3630 link becomes the default).
3631 Links may be removed using the
3632 .Dq remove
3633 command below.
3634 .Pp
3635 The default link name is
3636 .Dq deflink .
3637 .It close Op lcp|ccp Ns Op !\&
3638 If no arguments are given, the relevant protocol layers will be brought
3639 down and the link will be closed.
3640 If
3641 .Dq lcp
3642 is specified, the LCP layer is brought down, but
3643 .Nm
3644 will not bring the link offline.
3645 It is subsequently possible to use
3646 .Dq term
3647 (see below)
3648 to talk to the peer machine if, for example, something like
3649 .Dq slirp
3650 is being used.
3651 If
3652 .Dq ccp
3653 is specified, only the relevant compression layer is closed.
3654 If the
3655 .Dq !\&
3656 is used, the compression layer will remain in the closed state, otherwise
3657 it will re-enter the STOPPED state, waiting for the peer to initiate
3658 further CCP negotiation.
3659 In any event, this command does not disconnect the user from
3660 .Nm
3661 or exit
3662 .Nm .
3663 See the
3664 .Dq quit
3665 command below.
3666 .It delete Ns Xo
3667 .Op !\&
3668 .Ar dest
3669 .Xc
3670 This command deletes the route with the given
3671 .Ar dest
3672 IP address.
3673 If
3674 .Ar dest
3675 is specified as
3676 .Sq ALL ,
3677 all non-direct entries in the routing table for the current interface,
3678 and all
3679 .Sq sticky route
3680 entries are deleted.
3681 If
3682 .Ar dest
3683 is specified as
3684 .Sq default ,
3685 the default route is deleted.
3686 .Pp
3687 If the
3688 .Ar delete!\&
3689 command is used
3690 (note the trailing
3691 .Dq !\& ) ,
3692 .Nm
3693 will not complain if the route does not already exist.
3694 .It dial|call Op Ar label Ns Xo
3695 .No ...
3696 .Xc
3697 This command is the equivalent of
3698 .Dq load label
3699 followed by
3700 .Dq open ,
3701 and is provided for backwards compatibility.
3702 .It down Op Ar lcp|ccp
3703 Bring the relevant layer down ungracefully, as if the underlying layer
3704 had become unavailable.
3705 It's not considered polite to use this command on
3706 a Finite State Machine that's in the OPEN state.
3707 If no arguments are
3708 supplied, the entire link is closed (or if no context is given, all links
3709 are terminated).
3710 If
3711 .Sq lcp
3712 is specified, the
3713 .Em LCP
3714 layer is terminated but the device is not brought offline and the link
3715 is not closed.
3716 If
3717 .Sq ccp
3718 is specified, only the relevant compression layer(s) are terminated.
3719 .It help|? Op Ar command
3720 Show a list of available commands.
3721 If
3722 .Ar command
3723 is specified, show the usage string for that command.
3724 .It ident Op Ar text Ns No ...
3725 Identify the link to the peer using
3726 .Ar text .
3727 If
3728 .Ar text
3729 is empty, link identification is disabled.
3730 It is possible to use any of the words described for the
3731 .Ic bg
3732 command above.
3733 Refer to the
3734 .Ic sendident
3735 command for details of when
3736 .Nm
3737 identifies itself to the peer.
3738 .It iface Ar command Op args
3739 This command is used to control the interface used by
3740 .Nm .
3741 .Ar Command
3742 may be one of the following:
3743 .Bl -tag -width 2n
3744 .It iface add Ns Xo
3745 .Op !\&
3746 .Ar addr Ns Op / Ns Ar bits
3747 .Op Ar peer
3748 .Xc
3749 .It iface add Ns Xo
3750 .Op !\&
3751 .Ar addr
3752 .Ar mask
3753 .Ar peer
3754 .Xc
3755 Add the given
3756 .Ar addr mask peer
3757 combination to the interface.
3758 Instead of specifying
3759 .Ar mask ,
3760 .Ar /bits
3761 can be used
3762 (with no space between it and
3763 .Ar addr ) .
3764 If the given address already exists, the command fails unless the
3765 .Dq !\&
3766 is used - in which case the previous interface address entry is overwritten
3767 with the new one, allowing a change of netmask or peer address.
3768 .Pp
3769 If only
3770 .Ar addr
3771 is specified,
3772 .Ar bits
3773 defaults to
3774 .Dq 32
3775 and
3776 .Ar peer
3777 defaults to
3778 .Dq 255.255.255.255 .
3779 This address (the broadcast address) is the only duplicate peer address that
3780 .Nm
3781 allows.
3782 .It iface clear Op INET | INET6
3783 If this command is used while
3784 .Nm
3785 is in the OPENED state or while in
3786 .Fl auto
3787 mode, all addresses except for the NCP negotiated address are deleted
3788 from the interface.
3789 If
3790 .Nm
3791 is not in the OPENED state and is not in
3792 .Fl auto
3793 mode, all interface addresses are deleted.
3794 .Pp
3795 If the INET or INET6 arguments are used, only addresses for that address
3796 family are cleared.
3797 .Pp
3798 .It iface delete Ns Xo
3799 .Op !\& Ns
3800 .No |rm Ns Op !\&
3801 .Ar addr
3802 .Xc
3803 This command deletes the given
3804 .Ar addr
3805 from the interface.
3806 If the
3807 .Dq !\&
3808 is used, no error is given if the address isn't currently assigned to
3809 the interface (and no deletion takes place).
3810 .It iface show
3811 Shows the current state and current addresses for the interface.
3812 It is much the same as running
3813 .Dq ifconfig INTERFACE .
3814 .It iface help Op Ar sub-command
3815 This command, when invoked without
3816 .Ar sub-command ,
3817 will show a list of possible
3818 .Dq iface
3819 sub-commands and a brief synopsis for each.
3820 When invoked with
3821 .Ar sub-command ,
3822 only the synopsis for the given sub-command is shown.
3823 .El
3824 .It Op data Ns Xo
3825 .No link
3826 .Ar name Ns Op , Ns Ar name Ns
3827 .No ... Ar command Op Ar args
3828 .Xc
3829 This command may prefix any other command if the user wishes to
3830 specify which link the command should affect.
3831 This is only applicable after multiple links have been created in Multi-link
3832 mode using the
3833 .Dq clone
3834 command.
3835 .Pp
3836 .Ar Name
3837 specifies the name of an existing link.
3838 If
3839 .Ar name
3840 is a comma separated list,
3841 .Ar command
3842 is executed on each link.
3843 If
3844 .Ar name
3845 is
3846 .Dq * ,
3847 .Ar command
3848 is executed on all links.
3849 .It load Op Ar label Ns Xo
3850 .No ...
3851 .Xc
3852 Load the given
3853 .Ar label Ns No (s)
3854 from the
3855 .Pa ppp.conf
3856 file.
3857 If
3858 .Ar label
3859 is not given, the
3860 .Ar default
3861 label is used.
3862 .Pp
3863 Unless the
3864 .Ar label
3865 section uses the
3866 .Dq set mode ,
3867 .Dq open
3868 or
3869 .Dq dial
3870 commands,
3871 .Nm
3872 will not attempt to make an immediate connection.
3873 .It log Ar word Ns No ...
3874 Send the given word(s) to the log file with the prefix
3875 .Dq LOG: .
3876 Word substitutions are done as explained under the
3877 .Dq !bg
3878 command above.
3879 .It open Op lcp|ccp|ipcp
3880 This is the opposite of the
3881 .Dq close
3882 command.
3883 All closed links are immediately brought up apart from second and subsequent
3884 .Ar demand-dial
3885 links - these will come up based on the
3886 .Dq set autoload
3887 command that has been used.
3888 .Pp
3889 If the
3890 .Dq lcp
3891 argument is used while the LCP layer is already open, LCP will be
3892 renegotiated.
3893 This allows various LCP options to be changed, after which
3894 .Dq open lcp
3895 can be used to put them into effect.
3896 After renegotiating LCP,
3897 any agreed authentication will also take place.
3898 .Pp
3899 If the
3900 .Dq ccp
3901 argument is used, the relevant compression layer is opened.
3902 Again, if it is already open, it will be renegotiated.
3903 .Pp
3904 If the
3905 .Dq ipcp
3906 argument is used, the link will be brought up as normal, but if
3907 IPCP is already open, it will be renegotiated and the network
3908 interface will be reconfigured.
3909 .Pp
3910 It is probably not good practice to re-open the PPP state machines
3911 like this as it's possible that the peer will not behave correctly.
3912 It
3913 .Em is
3914 however useful as a way of forcing the CCP or VJ dictionaries to be reset.
3915 .It passwd Ar pass
3916 Specify the password required for access to the full
3917 .Nm
3918 command set.
3919 This password is required when connecting to the diagnostic port (see the
3920 .Dq set server
3921 command).
3922 .Ar Pass
3923 is specified on the
3924 .Dq set server
3925 command line.
3926 The value of
3927 .Ar pass
3928 is not logged when
3929 .Ar command
3930 logging is active, instead, the literal string
3931 .Sq ********
3932 is logged.
3933 .It quit|bye Op all
3934 If
3935 .Dq quit
3936 is executed from the controlling connection or from a command file,
3937 ppp will exit after closing all connections.
3938 Otherwise, if the user
3939 is connected to a diagnostic socket, the connection is simply dropped.
3940 .Pp
3941 If the
3942 .Ar all
3943 argument is given,
3944 .Nm
3945 will exit despite the source of the command after closing all existing
3946 connections.
3947 .It remove|rm
3948 This command removes the given link.
3949 It is only really useful in multi-link mode.
3950 A link must be in the
3951 .Dv CLOSED
3952 state before it is removed.
3953 .It rename|mv Ar name
3954 This command renames the given link to
3955 .Ar name .
3956 It will fail if
3957 .Ar name
3958 is already used by another link.
3959 .Pp
3960 The default link name is
3961 .Sq deflink .
3962 Renaming it to
3963 .Sq modem ,
3964 .Sq cuaa0
3965 or
3966 .Sq USR
3967 may make the log file more readable.
3968 .It resolv Ar command
3969 This command controls
3970 .Nm Ns No 's
3971 manipulation of the
3972 .Xr resolv.conf 5
3973 file.
3974 When
3975 .Nm
3976 starts up, it loads the contents of this file into memory and retains this
3977 image for future use.
3978 .Ar command
3979 is one of the following:
3980 .Bl -tag -width readonly
3981 .It Em readonly
3982 Treat
3983 .Pa /etc/resolv.conf
3984 as read only.
3985 If
3986 .Dq dns
3987 is enabled,
3988 .Nm
3989 will still attempt to negotiate nameservers with the peer, making the results
3990 available via the
3991 .Dv DNS0
3992 and
3993 .Dv DNS1
3994 macros.
3995 This is the opposite of the
3996 .Dq resolv writable
3997 command.
3998 .It Em reload
3999 Reload
4000 .Pa /etc/resolv.conf
4001 into memory.
4002 This may be necessary if for example a DHCP client overwrote
4003 .Pa /etc/resolv.conf .
4004 .It Em restore
4005 Replace
4006 .Pa /etc/resolv.conf
4007 with the version originally read at startup or with the last
4008 .Dq resolv reload
4009 command.
4010 This is sometimes a useful command to put in the
4011 .Pa /etc/ppp/ppp.linkdown
4012 file.
4013 .It Em rewrite
4014 Rewrite the
4015 .Pa /etc/resolv.conf
4016 file.
4017 This command will work even if the
4018 .Dq resolv readonly
4019 command has been used.
4020 It may be useful as a command in the
4021 .Pa /etc/ppp/ppp.linkup
4022 file if you wish to defer updating
4023 .Pa /etc/resolv.conf
4024 until after other commands have finished.
4025 .It Em writable
4026 Allow
4027 .Nm
4028 to update
4029 .Pa /etc/resolv.conf
4030 if
4031 .Dq dns
4032 is enabled and
4033 .Nm
4034 successfully negotiates a DNS.
4035 This is the opposite of the
4036 .Dq resolv readonly
4037 command.
4038 .El
4039 .It save
4040 This option is not (yet) implemented.
4041 .It sendident
4042 This command tells
4043 .Nm
4044 to identify itself to the peer.
4045 The link must be in LCP state or higher.
4046 If no identity has been set (via the
4047 .Ic ident
4048 command),
4049 .Ic sendident
4050 will fail.
4051 .Pp
4052 When an identity has been set,
4053 .Nm
4054 will automatically identify itself when it sends or receives a configure
4055 reject, when negotiation fails or when LCP reaches the opened state.
4056 .Pp
4057 Received identification packets are logged to the LCP log (see
4058 .Ic set log
4059 for details) and are never responded to.
4060 .It set Ns Xo
4061 .Op up
4062 .Ar var value
4063 .Xc
4064 This option allows the setting of any of the following variables:
4065 .Bl -tag -width 2n
4066 .It set accmap Ar hex-value
4067 ACCMap stands for Asynchronous Control Character Map.
4068 This is always
4069 negotiated with the peer, and defaults to a value of 00000000 in hex.
4070 This protocol is required to defeat hardware that depends on passing
4071 certain characters from end to end (such as XON/XOFF etc).
4072 .Pp
4073 For the XON/XOFF scenario, use
4074 .Dq set accmap 000a0000 .
4075 .It set Op auth Ns Xo
4076 .No key Ar value
4077 .Xc
4078 This sets the authentication key (or password) used in client mode
4079 PAP or CHAP negotiation to the given value.
4080 It also specifies the
4081 password to be used in the dial or login scripts in place of the
4082 .Sq \eP
4083 sequence, preventing the actual password from being logged.
4084 If
4085 .Ar command
4086 or
4087 .Ar chat
4088 logging is in effect,
4089 .Ar value
4090 is logged as
4091 .Sq ********
4092 for security reasons.
4093 .Pp
4094 If the first character of
4095 .Ar value
4096 is an exclamation mark
4097 .Pq Dq !\& ,
4098 .Nm
4099 treats the remainder of the string as a program that must be executed
4100 to determine the
4101 .Dq authname
4102 and
4103 .Dq authkey
4104 values.
4105 .Pp
4106 If the
4107 .Dq !\&
4108 is doubled up
4109 (to
4110 .Dq !! ) ,
4111 it is treated as a single literal
4112 .Dq !\& ,
4113 otherwise, ignoring the
4114 .Dq !\& ,
4115 .Ar value
4116 is parsed as a program to execute in the same was as the
4117 .Dq !bg
4118 command above, substituting special names in the same manner.
4119 Once executed,
4120 .Nm
4121 will feed the program three lines of input, each terminated by a newline
4122 character:
4123 .Bl -bullet
4124 .It
4125 The host name as sent in the CHAP challenge.
4126 .It
4127 The challenge string as sent in the CHAP challenge.
4128 .It
4129 The locally defined
4130 .Dq authname .
4131 .El
4132 .Pp
4133 Two lines of output are expected:
4134 .Bl -bullet
4135 .It
4136 The
4137 .Dq authname
4138 to be sent with the CHAP response.
4139 .It
4140 The
4141 .Dq authkey ,
4142 which is encrypted with the challenge and request id, the answer being sent
4143 in the CHAP response packet.
4144 .El
4145 .Pp
4146 When configuring
4147 .Nm
4148 in this manner, it's expected that the host challenge is a series of ASCII
4149 digits or characters.
4150 An encryption device or Secure ID card is usually
4151 required to calculate the secret appropriate for the given challenge.
4152 .It set authname Ar id
4153 This sets the authentication id used in client mode PAP or CHAP negotiation.
4154 .Pp
4155 If used in
4156 .Fl direct
4157 mode with CHAP enabled,
4158 .Ar id
4159 is used in the initial authentication challenge and should normally be set to
4160 the local machine name.
4161 .It set autoload Xo
4162 .Ar min-percent max-percent period
4163 .Xc
4164 These settings apply only in multi-link mode and default to zero, zero and
4165 five respectively.
4166 When more than one
4167 .Ar demand-dial
4168 (also known as
4169 .Fl auto )
4170 mode link is available, only the first link is made active when
4171 .Nm
4172 first reads data from the tun device.
4173 The next
4174 .Ar demand-dial
4175 link will be opened only when the current bundle throughput is at least
4176 .Ar max-percent
4177 percent of the total bundle bandwidth for
4178 .Ar period
4179 seconds.
4180 When the current bundle throughput decreases to
4181 .Ar min-percent
4182 percent or less of the total bundle bandwidth for
4183 .Ar period
4184 seconds, a
4185 .Ar demand-dial
4186 link will be brought down as long as it's not the last active link.
4187 .Pp
4188 Bundle throughput is measured as the maximum of inbound and outbound
4189 traffic.
4190 .Pp
4191 The default values cause
4192 .Ar demand-dial
4193 links to simply come up one at a time.
4194 .Pp
4195 Certain devices cannot determine their physical bandwidth, so it
4196 is sometimes necessary to use the
4197 .Dq set bandwidth
4198 command (described below) to make
4199 .Dq set autoload
4200 work correctly.
4201 .It set bandwidth Ar value
4202 This command sets the connection bandwidth in bits per second.
4203 .Ar value
4204 must be greater than zero.
4205 It is currently only used by the
4206 .Dq set autoload
4207 command above.
4208 .It set callback Ar option Ns No ...
4209 If no arguments are given, callback is disabled, otherwise,
4210 .Nm
4211 will request (or in
4212 .Fl direct
4213 mode, will accept) one of the given
4214 .Ar option Ns No s .
4215 In client mode, if an
4216 .Ar option
4217 is NAK'd
4218 .Nm
4219 will request a different
4220 .Ar option ,
4221 until no options remain at which point
4222 .Nm
4223 will terminate negotiations (unless
4224 .Dq none
4225 is one of the specified
4226 .Ar option ) .
4227 In server mode,
4228 .Nm
4229 will accept any of the given protocols - but the client
4230 .Em must
4231 request one of them.
4232 If you wish callback to be optional, you must {include}
4233 .Ar none
4234 as an option.
4235 .Pp
4236 The
4237 .Ar option Ns No s
4238 are as follows (in this order of preference):
4239 .Pp
4240 .Bl -tag -width Ds
4241 .It auth
4242 The callee is expected to decide the callback number based on
4243 authentication.
4244 If
4245 .Nm
4246 is the callee, the number should be specified as the fifth field of
4247 the peers entry in
4248 .Pa /etc/ppp/ppp.secret .
4249 .It cbcp
4250 Microsoft's callback control protocol is used.
4251 See
4252 .Dq set cbcp
4253 below.
4254 .Pp
4255 If you wish to negotiate
4256 .Ar cbcp
4257 in client mode but also wish to allow the server to request no callback at
4258 CBCP negotiation time, you must specify both
4259 .Ar cbcp
4260 and
4261 .Ar none
4262 as callback options.
4263 .It E.164 *| Ns Xo
4264 .Ar number Ns Op , Ns Ar number Ns
4265 .No ...
4266 .Xc
4267 The caller specifies the
4268 .Ar number .
4269 If
4270 .Nm
4271 is the callee,
4272 .Ar number
4273 should be either a comma separated list of allowable numbers or a
4274 .Dq \&* ,
4275 meaning any number is permitted.
4276 If
4277 .Nm
4278 is the caller, only a single number should be specified.
4279 .Pp
4280 Note, this option is very unsafe when used with a
4281 .Dq \&*
4282 as a malicious caller can tell
4283 .Nm
4284 to call any (possibly international) number without first authenticating
4285 themselves.
4286 .It none
4287 If the peer does not wish to do callback at all,
4288 .Nm
4289 will accept the fact and continue without callback rather than terminating
4290 the connection.
4291 This is required (in addition to one or more other callback
4292 options) if you wish callback to be optional.
4293 .El
4294 .Pp
4295 .It set cbcp Oo
4296 .No *| Ns Ar number Ns Oo
4297 .No , Ns Ar number Ns ...\& Oc
4298 .Op Ar delay Op Ar retry
4299 .Oc
4300 If no arguments are given, CBCP (Microsoft's CallBack Control Protocol)
4301 is disabled - ie, configuring CBCP in the
4302 .Dq set callback
4303 command will result in
4304 .Nm
4305 requesting no callback in the CBCP phase.
4306 Otherwise,
4307 .Nm
4308 attempts to use the given phone
4309 .Ar number Ns No (s).
4310 .Pp
4311 In server mode
4312 .Pq Fl direct ,
4313 .Nm
4314 will insist that the client uses one of these numbers, unless
4315 .Dq \&*
4316 is used in which case the client is expected to specify the number.
4317 .Pp
4318 In client mode,
4319 .Nm
4320 will attempt to use one of the given numbers (whichever it finds to
4321 be agreeable with the peer), or if
4322 .Dq \&*
4323 is specified,
4324 .Nm
4325 will expect the peer to specify the number.
4326 .It set cd Oo
4327 .No off| Ns Ar seconds Ns Op !\&
4328 .Oc
4329 Normally,
4330 .Nm
4331 checks for the existence of carrier depending on the type of device
4332 that has been opened:
4333 .Bl -tag -width XXX -offset XXX
4334 .It Terminal Devices
4335 Carrier is checked one second after the login script is complete.
4336 If it's not set,
4337 .Nm
4338 assumes that this is because the device doesn't support carrier (which
4339 is true for most
4340 .Dq laplink
4341 NULL-modem cables), logs the fact and stops checking
4342 for carrier.
4343 .Pp
4344 As ptys don't support the TIOCMGET ioctl, the tty device will switch all
4345 carrier detection off when it detects that the device is a pty.
4346 .It ISDN (i4b) Devices
4347 Carrier is checked once per second for 6 seconds.
4348 If it's not set after
4349 the sixth second, the connection attempt is considered to have failed and
4350 the device is closed.
4351 Carrier is always required for i4b devices.
4352 .It PPPoE (netgraph) Devices
4353 Carrier is checked once per second for 5 seconds.
4354 If it's not set after
4355 the fifth second, the connection attempt is considered to have failed and
4356 the device is closed.
4357 Carrier is always required for PPPoE devices.
4358 .El
4359 .Pp
4360 All other device types don't support carrier.
4361 Setting a carrier value will
4362 result in a warning when the device is opened.
4363 .Pp
4364 Some modems take more than one second after connecting to assert the carrier
4365 signal.
4366 If this delay isn't increased, this will result in
4367 .Nm Ns No 's
4368 inability to detect when the link is dropped, as
4369 .Nm
4370 assumes that the device isn't asserting carrier.
4371 .Pp
4372 The
4373 .Dq set cd
4374 command overrides the default carrier behaviour.
4375 .Ar seconds
4376 specifies the maximum number of seconds that
4377 .Nm
4378 should wait after the dial script has finished before deciding if
4379 carrier is available or not.
4380 .Pp
4381 If
4382 .Dq off
4383 is specified,
4384 .Nm
4385 will not check for carrier on the device, otherwise
4386 .Nm
4387 will not proceed to the login script until either carrier is detected
4388 or until
4389 .Ar seconds
4390 has elapsed, at which point
4391 .Nm
4392 assumes that the device will not set carrier.
4393 .Pp
4394 If no arguments are given, carrier settings will go back to their default
4395 values.
4396 .Pp
4397 If
4398 .Ar seconds
4399 is followed immediately by an exclamation mark
4400 .Pq Dq !\& ,
4401 .Nm
4402 will
4403 .Em require
4404 carrier.
4405 If carrier is not detected after
4406 .Ar seconds
4407 seconds, the link will be disconnected.
4408 .It set choked Op Ar timeout
4409 This sets the number of seconds that
4410 .Nm
4411 will keep a choked output queue before dropping all pending output packets.
4412 If
4413 .Ar timeout
4414 is less than or equal to zero or if
4415 .Ar timeout
4416 isn't specified, it is set to the default value of
4417 .Em 120 seconds .
4418 .Pp
4419 A choked output queue occurs when
4420 .Nm
4421 has read a certain number of packets from the local network for transmission,
4422 but cannot send the data due to link failure (the peer is busy etc.).
4423 .Nm
4424 will not read packets indefinitely.
4425 Instead, it reads up to
4426 .Em 30
4427 packets (or
4428 .Em 30 No +
4429 .Em nlinks No *
4430 .Em 2
4431 packets in multi-link mode), then stops reading the network interface
4432 until either
4433 .Ar timeout
4434 seconds have passed or at least one packet has been sent.
4435 .Pp
4436 If
4437 .Ar timeout
4438 seconds pass, all pending output packets are dropped.
4439 .It set ctsrts|crtscts on|off
4440 This sets hardware flow control.
4441 Hardware flow control is
4442 .Ar on
4443 by default.
4444 .It set deflate Ar out-winsize Op Ar in-winsize
4445 This sets the DEFLATE algorithms default outgoing and incoming window
4446 sizes.
4447 Both
4448 .Ar out-winsize
4449 and
4450 .Ar in-winsize
4451 must be values between
4452 .Em 8
4453 and
4454 .Em 15 .
4455 If
4456 .Ar in-winsize
4457 is specified,
4458 .Nm
4459 will insist that this window size is used and will not accept any other
4460 values from the peer.
4461 .It set dns Op Ar primary Op Ar secondary
4462 This command specifies DNS overrides for the
4463 .Dq accept dns
4464 command.
4465 Refer to the
4466 .Dq accept
4467 command description above for details.
4468 This command does not affect the IP numbers requested using
4469 .Dq enable dns .
4470 .It set device|line Xo
4471 .Ar value Ns No ...
4472 .Xc
4473 This sets the device(s) to which
4474 .Nm
4475 will talk to the given
4476 .Dq value .
4477 .Pp
4478 All ISDN and serial device names are expected to begin with
4479 .Pa /dev/ .
4480 ISDN devices are usually called
4481 .Pa i4brbchX
4482 and serial devices are usually called
4483 .Pa cuaXX .
4484 .Pp
4485 If
4486 .Dq value
4487 does not begin with
4488 .Pa /dev/ ,
4489 it must either begin with an exclamation mark
4490 .Pq Dq !\& ,
4491 be of the format
4492 .No PPPoE: Ns Ar iface Ns Xo
4493 .Op \&: Ns Ar provider Ns
4494 .Xc
4495 (on
4496 .Xr netgraph 4
4497 enabled systems), or be of the format
4498 .Sm off
4499 .Ar host : port Op /tcp|udp .
4500 .Sm on
4501 .Pp
4502 If it begins with an exclamation mark, the rest of the device name is
4503 treated as a program name, and that program is executed when the device
4504 is opened.
4505 Standard input, output and error are fed back to
4506 .Nm
4507 and are read and written as if they were a regular device.
4508 .Pp
4509 If a
4510 .No PPPoE: Ns Ar iface Ns Xo
4511 .Op \&: Ns Ar provider Ns
4512 .Xc
4513 specification is given,
4514 .Nm
4515 will attempt to create a
4516 .Em PPP
4517 over Ethernet connection using the given
4518 .Ar iface
4519 interface by using
4520 .Xr netgraph 4 .
4521 If
4522 .Xr netgraph 4
4523 is not available,
4524 .Nm
4525 will attempt to load it using
4526 .Xr kldload 2 .
4527 If this fails, an external program must be used such as the
4528 .Xr pppoe 8
4529 program available under
4530 .Ox .
4531 The given
4532 .Ar provider
4533 is passed as the service name in the PPPoE Discovery Initiation (PADI)
4534 packet.
4535 If no provider is given, an empty value will be used.
4536 .Pp
4537 When a PPPoE connection is established,
4538 .Nm
4539 will place the name of the Access Concentrator in the environment variable
4540 .Ev ACNAME .
4541 .Pp
4542 Refer to
4543 .Xr netgraph 4
4544 and
4545 .Xr ng_pppoe 4
4546 for further details.
4547 .Pp
4548 If a
4549 .Ar host Ns No : Ns Ar port Ns Oo
4550 .No /tcp|udp
4551 .Oc
4552 specification is given,
4553 .Nm
4554 will attempt to connect to the given
4555 .Ar host
4556 on the given
4557 .Ar port .
4558 If a
4559 .Dq /tcp
4560 or
4561 .Dq /udp
4562 suffix is not provided, the default is
4563 .Dq /tcp .
4564 Refer to the section on
4565 .Em PPP OVER TCP and UDP
4566 above for further details.
4567 .Pp
4568 If multiple
4569 .Dq values
4570 are specified,
4571 .Nm
4572 will attempt to open each one in turn until it succeeds or runs out of
4573 devices.
4574 .It set dial Ar chat-script
4575 This specifies the chat script that will be used to dial the other
4576 side.
4577 See also the
4578 .Dq set login
4579 command below.
4580 Refer to
4581 .Xr chat 8
4582 and to the example configuration files for details of the chat script
4583 format.
4584 It is possible to specify some special
4585 .Sq values
4586 in your chat script as follows:
4587 .Bl -tag -width 2n
4588 .It Li \ec
4589 When used as the last character in a
4590 .Sq send
4591 string, this indicates that a newline should not be appended.
4592 .It Li \ed
4593 When the chat script encounters this sequence, it delays two seconds.
4594 .It Li \ep
4595 When the chat script encounters this sequence, it delays for one quarter of
4596 a second.
4597 .It Li \en
4598 This is replaced with a newline character.
4599 .It Li \er
4600 This is replaced with a carriage return character.
4601 .It Li \es
4602 This is replaced with a space character.
4603 .It Li \et
4604 This is replaced with a tab character.
4605 .It Li \eT
4606 This is replaced by the current phone number (see
4607 .Dq set phone
4608 below).
4609 .It Li \eP
4610 This is replaced by the current
4611 .Ar authkey
4612 value (see
4613 .Dq set authkey
4614 above).
4615 .It Li \eU
4616 This is replaced by the current
4617 .Ar authname
4618 value (see
4619 .Dq set authname
4620 above).
4621 .El
4622 .Pp
4623 Note that two parsers will examine these escape sequences, so in order to
4624 have the
4625 .Sq chat parser
4626 see the escape character, it is necessary to escape it from the
4627 .Sq command parser .
4628 This means that in practice you should use two escapes, for example:
4629 .Bd -literal -offset indent
4630 set dial "... ATDT\\\\T CONNECT"
4631 .Ed
4632 .Pp
4633 It is also possible to execute external commands from the chat script.
4634 To do this, the first character of the expect or send string is an
4635 exclamation mark
4636 .Pq Dq !\& .
4637 If a literal exclamation mark is required, double it up to
4638 .Dq !!\&
4639 and it will be treated as a single literal
4640 .Dq !\& .
4641 When the command is executed, standard input and standard output are
4642 directed to the open device (see the
4643 .Dq set device
4644 command), and standard error is read by
4645 .Nm
4646 and substituted as the expect or send string.
4647 If
4648 .Nm
4649 is running in interactive mode, file descriptor 3 is attached to
4650 .Pa /dev/tty .
4651 .Pp
4652 For example (wrapped for readability):
4653 .Bd -literal -offset indent
4654 set login "TIMEOUT 5 \\"\\" \\"\\" login:--login: ppp \e
4655 word: ppp \\"!sh \\\\-c \\\\\\"echo \\\\-n label: >&2\\\\\\"\\" \e
4656 \\"!/bin/echo in\\" HELLO"
4657 .Ed
4658 .Pp
4659 would result in the following chat sequence (output using the
4660 .Sq set log local chat
4661 command before dialing):
4662 .Bd -literal -offset indent
4663 Dial attempt 1 of 1
4664 dial OK!
4665 Chat: Expecting:
4666 Chat: Sending:
4667 Chat: Expecting: login:--login:
4668 Chat: Wait for (5): login:
4669 Chat: Sending: ppp
4670 Chat: Expecting: word:
4671 Chat: Wait for (5): word:
4672 Chat: Sending: ppp
4673 Chat: Expecting: !sh \\-c "echo \\-n label: >&2"
4674 Chat: Exec: sh -c "echo -n label: >&2"
4675 Chat: Wait for (5): !sh \\-c "echo \\-n label: >&2" --> label:
4676 Chat: Exec: /bin/echo in
4677 Chat: Sending:
4678 Chat: Expecting: HELLO
4679 Chat: Wait for (5): HELLO
4680 login OK!
4681 .Ed
4682 .Pp
4683 Note (again) the use of the escape character, allowing many levels of
4684 nesting.
4685 Here, there are four parsers at work.
4686 The first parses the original line, reading it as three arguments.
4687 The second parses the third argument, reading it as 11 arguments.
4688 At this point, it is
4689 important that the
4690 .Dq \&-
4691 signs are escaped, otherwise this parser will see them as constituting
4692 an expect-send-expect sequence.
4693 When the
4694 .Dq !\&
4695 character is seen, the execution parser reads the first command as three
4696 arguments, and then
4697 .Xr sh 1
4698 itself expands the argument after the
4699 .Fl c .
4700 As we wish to send the output back to the modem, in the first example
4701 we redirect our output to file descriptor 2 (stderr) so that
4702 .Nm
4703 itself sends and logs it, and in the second example, we just output to stdout,
4704 which is attached directly to the modem.
4705 .Pp
4706 This, of course means that it is possible to execute an entirely external
4707 .Dq chat
4708 command rather than using the internal one.
4709 See
4710 .Xr chat 8
4711 for a good alternative.
4712 .Pp
4713 The external command that is executed is subjected to the same special
4714 word expansions as the
4715 .Dq !bg
4716 command.
4717 .It set enddisc Op label|IP|MAC|magic|psn value
4718 This command sets our local endpoint discriminator.
4719 If set prior to LCP negotiation, and if no
4720 .Dq disable enddisc
4721 command has been used,
4722 .Nm
4723 will send the information to the peer using the LCP endpoint discriminator
4724 option.
4725 The following discriminators may be set:
4726 .Bl -tag -width indent
4727 .It Li label
4728 The current label is used.
4729 .It Li IP
4730 Our local IP number is used.
4731 As LCP is negotiated prior to IPCP, it is
4732 possible that the IPCP layer will subsequently change this value.
4733 If
4734 it does, the endpoint discriminator stays at the old value unless manually
4735 reset.
4736 .It Li MAC
4737 This is similar to the
4738 .Ar IP
4739 option above, except that the MAC address associated with the local IP
4740 number is used.
4741 If the local IP number is not resident on any Ethernet
4742 interface, the command will fail.
4743 .Pp
4744 As the local IP number defaults to whatever the machine host name is,
4745 .Dq set enddisc mac
4746 is usually done prior to any
4747 .Dq set ifaddr
4748 commands.
4749 .It Li magic
4750 A 20 digit random number is used.
4751 Care should be taken when using magic numbers as restarting
4752 .Nm
4753 or creating a link using a different
4754 .Nm
4755 invocation will also use a different magic number and will therefore not
4756 be recognised by the peer as belonging to the same bundle.
4757 This makes it unsuitable for
4758 .Fl direct
4759 connections.
4760 .It Li psn Ar value
4761 The given
4762 .Ar value
4763 is used.
4764 .Ar Value
4765 should be set to an absolute public switched network number with the
4766 country code first.
4767 .El
4768 .Pp
4769 If no arguments are given, the endpoint discriminator is reset.
4770 .It set escape Ar value...
4771 This option is similar to the
4772 .Dq set accmap
4773 option above.
4774 It allows the user to specify a set of characters that will be
4775 .Sq escaped
4776 as they travel across the link.
4777 .It set filter dial|alive|in|out Ar rule-no Xo
4778 .No permit|deny|clear| Ns Ar rule-no
4779 .Op !\&
4780 .Oo Op host
4781 .Ar src_addr Ns Op / Ns Ar width
4782 .Op Ar dst_addr Ns Op / Ns Ar width
4783 .Oc [ Ns Ar proto
4784 .Op src lt|eq|gt Ar port
4785 .Op dst lt|eq|gt Ar port
4786 .Op estab
4787 .Op syn
4788 .Op finrst
4789 .Op timeout Ar secs ]
4790 .Xc
4791 .Nm
4792 supports four filter sets.
4793 The
4794 .Em alive
4795 filter specifies packets that keep the connection alive - resetting the
4796 idle timer.
4797 The
4798 .Em dial
4799 filter specifies packets that cause
4800 .Nm
4801 to dial when in
4802 .Fl auto
4803 mode.
4804 The
4805 .Em in
4806 filter specifies packets that are allowed to travel
4807 into the machine and the
4808 .Em out
4809 filter specifies packets that are allowed out of the machine.
4810 .Pp
4811 Filtering is done prior to any IP alterations that might be done by the
4812 NAT engine on outgoing packets and after any IP alterations that might
4813 be done by the NAT engine on incoming packets.
4814 By default all empty filter sets allow all packets to pass.
4815 Rules are processed in order according to
4816 .Ar rule-no
4817 (unless skipped by specifying a rule number as the
4818 .Ar action ) .
4819 Up to 40 rules may be given for each set.
4820 If a packet doesn't match
4821 any of the rules in a given set, it is discarded.
4822 In the case of
4823 .Em in
4824 and
4825 .Em out
4826 filters, this means that the packet is dropped.
4827 In the case of
4828 .Em alive
4829 filters it means that the packet will not reset the idle timer (even if
4830 the
4831 .Ar in Ns No / Ns Ar out
4832 filter has a
4833 .Dq timeout
4834 value) and in the case of
4835 .Em dial
4836 filters it means that the packet will not trigger a dial.
4837 A packet failing to trigger a dial will be dropped rather than queued.
4838 Refer to the
4839 section on
4840 .Sx PACKET FILTERING
4841 above for further details.
4842 .It set hangup Ar chat-script
4843 This specifies the chat script that will be used to reset the device
4844 before it is closed.
4845 It should not normally be necessary, but can
4846 be used for devices that fail to reset themselves properly on close.
4847 .It set help|? Op Ar command
4848 This command gives a summary of available set commands, or if
4849 .Ar command
4850 is specified, the command usage is shown.
4851 .It set ifaddr Oo Ar myaddr Ns
4852 .Op / Ns Ar \&nn
4853 .Oo Ar hisaddr Ns Op / Ns Ar \&nn
4854 .Oo Ar netmask
4855 .Op Ar triggeraddr
4856 .Oc Oc
4857 .Oc
4858 This command specifies the IP addresses that will be used during
4859 IPCP negotiation.
4860 Addresses are specified using the format
4861 .Pp
4862 .Dl a.b.c.d/nn
4863 .Pp
4864 Where
4865 .Dq a.b.c.d
4866 is the preferred IP, but
4867 .Ar nn
4868 specifies how many bits of the address we will insist on.
4869 If
4870 .No / Ns Ar nn
4871 is omitted, it defaults to
4872 .Dq /32
4873 unless the IP address is 0.0.0.0 in which case it defaults to
4874 .Dq /0 .
4875 .Pp
4876 If you wish to assign a dynamic IP number to the peer,
4877 .Ar hisaddr
4878 may also be specified as a range of IP numbers in the format
4879 .Bd -ragged -offset indent
4880 .Ar \&IP Ns Oo \&- Ns Ar \&IP Ns Xo
4881 .Oc Ns Oo , Ns Ar \&IP Ns
4882 .Op \&- Ns Ar \&IP Ns
4883 .Oc Ns ...
4884 .Xc
4885 .Ed
4886 .Pp
4887 for example:
4888 .Pp
4889 .Dl set ifaddr 10.0.0.1 10.0.1.2-10.0.1.10,10.0.1.20
4890 .Pp
4891 will only negotiate
4892 .Dq 10.0.0.1
4893 as the local IP number, but may assign any of the given 10 IP
4894 numbers to the peer.
4895 If the peer requests one of these numbers,
4896 and that number is not already in use,
4897 .Nm
4898 will grant the peers request.
4899 This is useful if the peer wants
4900 to re-establish a link using the same IP number as was previously
4901 allocated (thus maintaining any existing tcp or udp connections).
4902 .Pp
4903 If the peer requests an IP number that's either outside
4904 of this range or is already in use,
4905 .Nm
4906 will suggest a random unused IP number from the range.
4907 .Pp
4908 If
4909 .Ar triggeraddr
4910 is specified, it is used in place of
4911 .Ar myaddr
4912 in the initial IPCP negotiation.
4913 However, only an address in the
4914 .Ar myaddr
4915 range will be accepted.
4916 This is useful when negotiating with some
4917 .Dv PPP
4918 implementations that will not assign an IP number unless their peer
4919 requests
4920 .Dq 0.0.0.0 .
4921 .Pp
4922 It should be noted that in
4923 .Fl auto
4924 mode,
4925 .Nm
4926 will configure the interface immediately upon reading the
4927 .Dq set ifaddr
4928 line in the config file.
4929 In any other mode, these values are just
4930 used for IPCP negotiations, and the interface isn't configured
4931 until the IPCP layer is up.
4932 .Pp
4933 Note that the
4934 .Ar HISADDR
4935 argument may be overridden by the third field in the
4936 .Pa ppp.secret
4937 file once the client has authenticated itself
4938 (if PAP or CHAP are
4939 .Dq enabled ) .
4940 Refer to the
4941 .Sx AUTHENTICATING INCOMING CONNECTIONS
4942 section for details.
4943 .Pp
4944 In all cases, if the interface is already configured,
4945 .Nm
4946 will try to maintain the interface IP numbers so that any existing
4947 bound sockets will remain valid.
4948 .It set ifqueue Ar packets
4949 Set the maximum number of packets that
4950 .Nm
4951 will read from the tunnel interface while data cannot be sent to any of
4952 the available links.
4953 This queue limit is necessary to flow control outgoing data as the tunnel
4954 interface is likely to be far faster than the combined links available to
4955 .Nm .
4956 .Pp
4957 If
4958 .Ar packets
4959 is set to a value less than the number of links,
4960 .Nm
4961 will read up to that value regardless.
4962 This prevents any possible latency problems.
4963 .Pp
4964 The default value for
4965 .Ar packets
4966 is
4967 .Dq 30 .
4968 .It set ccpretry|ccpretries Oo Ar timeout
4969 .Op Ar reqtries Op Ar trmtries
4970 .Oc
4971 .It set chapretry|chapretries Oo Ar timeout
4972 .Op Ar reqtries
4973 .Oc
4974 .It set ipcpretry|ipcpretries Oo Ar timeout
4975 .Op Ar reqtries Op Ar trmtries
4976 .Oc
4977 .It set ipv6cpretry|ipv6cpretries Oo Ar timeout
4978 .Op Ar reqtries Op Ar trmtries
4979 .Oc
4980 .It set lcpretry|lcpretries Oo Ar timeout
4981 .Op Ar reqtries Op Ar trmtries
4982 .Oc
4983 .It set papretry|papretries Oo Ar timeout
4984 .Op Ar reqtries
4985 .Oc
4986 These commands set the number of seconds that
4987 .Nm
4988 will wait before resending Finite State Machine (FSM) Request packets.
4989 The default
4990 .Ar timeout
4991 for all FSMs is 3 seconds (which should suffice in most cases).
4992 .Pp
4993 If
4994 .Ar reqtries
4995 is specified, it tells
4996 .Nm
4997 how many configuration request attempts it should make while receiving
4998 no reply from the peer before giving up.
4999 The default is 5 attempts for
5000 CCP, LCP and IPCP and 3 attempts for PAP and CHAP.
5001 .Pp
5002 If
5003 .Ar trmtries
5004 is specified, it tells
5005 .Nm
5006 how many terminate requests should be sent before giving up waiting for the
5007 peers response.
5008 The default is 3 attempts.
5009 Authentication protocols are
5010 not terminated and it is therefore invalid to specify
5011 .Ar trmtries
5012 for PAP or CHAP.
5013 .Pp
5014 In order to avoid negotiations with the peer that will never converge,
5015 .Nm
5016 will only send at most 3 times the configured number of
5017 .Ar reqtries
5018 in any given negotiation session before giving up and closing that layer.
5019 .It set log Xo
5020 .Op local
5021 .Op +|- Ns
5022 .Ar value Ns No ...
5023 .Xc
5024 This command allows the adjustment of the current log level.
5025 Refer to the Logging Facility section for further details.
5026 .It set login Ar chat-script
5027 This
5028 .Ar chat-script
5029 compliments the dial-script.
5030 If both are specified, the login
5031 script will be executed after the dial script.
5032 Escape sequences available in the dial script are also available here.
5033 .It set logout Ar chat-script
5034 This specifies the chat script that will be used to logout
5035 before the hangup script is called.
5036 It should not normally be necessary.
5037 .It set lqrperiod Ar frequency
5038 This command sets the
5039 .Ar frequency
5040 in seconds at which
5041 .Em LQR
5042 or
5043 .Em ECHO LQR
5044 packets are sent.
5045 The default is 30 seconds.
5046 You must also use the
5047 .Dq enable lqr
5048 command if you wish to send LQR requests to the peer.
5049 .It set mode Ar interactive|auto|ddial|background
5050 This command allows you to change the
5051 .Sq mode
5052 of the specified link.
5053 This is normally only useful in multi-link mode,
5054 but may also be used in uni-link mode.
5055 .Pp
5056 It is not possible to change a link that is
5057 .Sq direct
5058 or
5059 .Sq dedicated .
5060 .Pp
5061 Note: If you issue the command
5062 .Dq set mode auto ,
5063 and have network address translation enabled, it may be useful to
5064 .Dq enable iface-alias
5065 afterwards.
5066 This will allow
5067 .Nm
5068 to do the necessary address translations to enable the process that
5069 triggers the connection to connect once the link is up despite the
5070 peer assigning us a new (dynamic) IP address.
5071 .It set mppe Op 40|56|128|* Op stateless|stateful|*
5072 This option selects the encryption parameters used when negotiation
5073 MPPE.
5074 MPPE can be disabled entirely with the
5075 .Dq disable mppe
5076 command.
5077 If no arguments are given,
5078 .Nm
5079 will attempt to negotiate a stateful link with a 128 bit key, but
5080 will agree to whatever the peer requests (including no encryption
5081 at all).
5082 .Pp
5083 If any arguments are given,
5084 .Nm
5085 will
5086 .Em insist
5087 on using MPPE and will close the link if it's rejected by the peer (Note;
5088 this behaviour can be overridden by a configured RADIUS server).
5089 .Pp
5090 The first argument specifies the number of bits that
5091 .Nm
5092 should insist on during negotiations and the second specifies whether
5093 .Nm
5094 should insist on stateful or stateless mode.
5095 In stateless mode, the
5096 encryption dictionary is re-initialised with every packet according to
5097 an encryption key that is changed with every packet.
5098 In stateful mode,
5099 the encryption dictionary is re-initialised every 256 packets or after
5100 the loss of any data and the key is changed every 256 packets.
5101 Stateless mode is less efficient but is better for unreliable transport
5102 layers.
5103 .It set mrru Op Ar value
5104 Setting this option enables Multi-link PPP negotiations, also known as
5105 Multi-link Protocol or MP.
5106 There is no default MRRU (Maximum Reconstructed Receive Unit) value.
5107 If no argument is given, multi-link mode is disabled.
5108 .It set mru Xo
5109 .Op max Ns Op imum
5110 .Op Ar value
5111 .Xc
5112 The default MRU (Maximum Receive Unit) is 1500.
5113 If it is increased, the other side *may* increase its MTU.
5114 In theory there is no point in decreasing the MRU to below the default as the
5115 .Em PPP
5116 protocol says implementations *must* be able to accept packets of at
5117 least 1500 octets.
5118 .Pp
5119 If the
5120 .Dq maximum
5121 keyword is used,
5122 .Nm
5123 will refuse to negotiate a higher value.
5124 The maximum MRU can be set to 2048 at most.
5125 Setting a maximum of less than 1500 violates the
5126 .Em PPP
5127 rfc, but may sometimes be necessary.
5128 For example,
5129 .Em PPPoE
5130 imposes a maximum of 1492 due to hardware limitations.
5131 .Pp
5132 If no argument is given, 1500 is assumed.
5133 A value must be given when
5134 .Dq maximum
5135 is specified.
5136 .It set mtu Xo
5137 .Op max Ns Op imum
5138 .Op Ar value
5139 .Xc
5140 The default MTU is 1500.
5141 At negotiation time,
5142 .Nm
5143 will accept whatever MRU the peer requests (assuming it's
5144 not less than 296 bytes or greater than the assigned maximum).
5145 If the MTU is set,
5146 .Nm
5147 will not accept MRU values less than
5148 .Ar value .
5149 When negotiations are complete, the MTU is used when writing to the
5150 interface, even if the peer requested a higher value MRU.
5151 This can be useful for
5152 limiting your packet size (giving better bandwidth sharing at the expense
5153 of more header data).
5154 .Pp
5155 If the
5156 .Dq maximum
5157 keyword is used,
5158 .Nm
5159 will refuse to negotiate a higher value.
5160 The maximum MTU can be set to 2048 at most.
5161 .Pp
5162 If no
5163 .Ar value
5164 is given, 1500, or whatever the peer asks for is used.
5165 A value must be given when
5166 .Dq maximum
5167 is specified.
5168 .It set nbns Op Ar x.x.x.x Op Ar y.y.y.y
5169 This option allows the setting of the Microsoft NetBIOS name server
5170 values to be returned at the peers request.
5171 If no values are given,
5172 .Nm
5173 will reject any such requests.
5174 .It set openmode active|passive Op Ar delay
5175 By default,
5176 .Ar openmode
5177 is always
5178 .Ar active
5179 with a one second
5180 .Ar delay .
5181 That is,
5182 .Nm
5183 will always initiate LCP/IPCP/CCP negotiation one second after the line
5184 comes up.
5185 If you want to wait for the peer to initiate negotiations, you
5186 can use the value
5187 .Ar passive .
5188 If you want to initiate negotiations immediately or after more than one
5189 second, the appropriate
5190 .Ar delay
5191 may be specified here in seconds.
5192 .It set parity odd|even|none|mark
5193 This allows the line parity to be set.
5194 The default value is
5195 .Ar none .
5196 .It set phone Ar telno Ns Xo
5197 .Oo \&| Ns Ar backupnumber
5198 .Oc Ns ... Ns Oo : Ns Ar nextnumber
5199 .Oc Ns ...
5200 .Xc
5201 This allows the specification of the phone number to be used in
5202 place of the \\\\T string in the dial and login chat scripts.
5203 Multiple phone numbers may be given separated either by a pipe
5204 .Pq Dq \&|
5205 or a colon
5206 .Pq Dq \&: .
5207 .Pp
5208 Numbers after the pipe are only dialed if the dial or login
5209 script for the previous number failed.
5210 .Pp
5211 Numbers after the colon are tried sequentially, irrespective of
5212 the reason the line was dropped.
5213 .Pp
5214 If multiple numbers are given,
5215 .Nm
5216 will dial them according to these rules until a connection is made, retrying
5217 the maximum number of times specified by
5218 .Dq set redial
5219 below.
5220 In
5221 .Fl background
5222 mode, each number is attempted at most once.
5223 .It set Op proc Ns Xo
5224 .No title Op Ar value
5225 .Xc
5226 The current process title as displayed by
5227 .Xr ps 1
5228 is changed according to
5229 .Ar value .
5230 If
5231 .Ar value
5232 is not specified, the original process title is restored.
5233 All the
5234 word replacements done by the shell commands (see the
5235 .Dq bg
5236 command above) are done here too.
5237 .Pp
5238 Note, if USER is required in the process title, the
5239 .Dq set proctitle
5240 command must appear in
5241 .Pa ppp.linkup ,
5242 as it is not known when the commands in
5243 .Pa ppp.conf
5244 are executed.
5245 .It set radius Op Ar config-file
5246 This command enables RADIUS support (if it's compiled in).
5247 .Ar config-file
5248 refers to the radius client configuration file as described in
5249 .Xr radius.conf 5 .
5250 If PAP, CHAP, MSCHAP or MSCHAPv2 are
5251 .Dq enable Ns No d ,
5252 .Nm
5253 behaves as a
5254 .Em \&N Ns No etwork
5255 .Em \&A Ns No ccess
5256 .Em \&S Ns No erver
5257 and uses the configured RADIUS server to authenticate rather than
5258 authenticating from the
5259 .Pa ppp.secret
5260 file or from the passwd database.
5261 .Pp
5262 If none of PAP, CHAP, MSCHAP or MSCHAPv2 are enabled,
5263 .Dq set radius
5264 will do nothing.
5265 .Pp
5266 .Nm
5267 uses the following attributes from the RADIUS reply:
5268 .Bl -tag -width XXX -offset XXX
5269 .It RAD_FRAMED_IP_ADDRESS
5270 The peer IP address is set to the given value.
5271 .It RAD_FRAMED_IP_NETMASK
5272 The tun interface netmask is set to the given value.
5273 .It RAD_FRAMED_MTU
5274 If the given MTU is less than the peers MRU as agreed during LCP
5275 negotiation, *and* it is less that any configured MTU (see the
5276 .Dq set mru
5277 command), the tun interface MTU is set to the given value.
5278 .It RAD_FRAMED_COMPRESSION
5279 If the received compression type is
5280 .Dq 1 ,
5281 .Nm
5282 will request VJ compression during IPCP negotiations despite any
5283 .Dq disable vj
5284 configuration command.
5285 .It RAD_FILTER_ID
5286 If this attribute is supplied,
5287 .Nm
5288 will attempt to use it as an additional label to load from the
5289 .Pa ppp.linkup
5290 and
5291 .Pa ppp.linkdown
5292 files.
5293 The load will be attempted before (and in addition to) the normal
5294 label search.
5295 If the label doesn't exist, no action is taken and
5296 .Nm
5297 proceeds to the normal load using the current label.
5298 .It RAD_FRAMED_ROUTE
5299 The received string is expected to be in the format
5300 .Ar dest Ns Op / Ns Ar bits
5301 .Ar gw
5302 .Op Ar metrics .
5303 Any specified metrics are ignored.
5304 .Dv MYADDR
5305 and
5306 .Dv HISADDR
5307 are understood as valid values for
5308 .Ar dest
5309 and
5310 .Ar gw ,
5311 .Dq default
5312 can be used for
5313 .Ar dest
5314 to sepcify the default route, and
5315 .Dq 0.0.0.0
5316 is understood to be the same as
5317 .Dq default
5318 for
5319 .Ar dest
5320 and
5321 .Dv HISADDR
5322 for
5323 .Ar gw .
5324 .Pp
5325 For example, a returned value of
5326 .Dq 1.2.3.4/24 0.0.0.0 1 2 -1 3 400
5327 would result in a routing table entry to the 1.2.3.0/24 network via
5328 .Dv HISADDR
5329 and a returned value of
5330 .Dq 0.0.0.0 0.0.0.0
5331 or
5332 .Dq default HISADDR
5333 would result in a default route to
5334 .Dv HISADDR .
5335 .Pp
5336 All RADIUS routes are applied after any sticky routes are applied, making
5337 RADIUS routes override configured routes.
5338 This also applies for RADIUS routes that don't {include} the
5339 .Dv MYADDR
5340 or
5341 .Dv HISADDR
5342 keywords.
5343 .Pp
5344 .It RAD_SESSION_TIMEOUT
5345 If supplied, the client connection is closed after the given number of
5346 seconds.
5347 .It RAD_REPLY_MESSAGE
5348 If supplied, this message is passed back to the peer as the authentication
5349 SUCCESS text.
5350 .It RAD_MICROSOFT_MS_CHAP_ERROR
5351 If this
5352 .Dv RAD_VENDOR_MICROSOFT
5353 vendor specific attribute is supplied, it is passed back to the peer as the
5354 authentication FAILURE text.
5355 .It RAD_MICROSOFT_MS_CHAP2_SUCCESS
5356 If this
5357 .Dv RAD_VENDOR_MICROSOFT
5358 vendor specific attribute is supplied and if MS-CHAPv2 authentication is
5359 being used, it is passed back to the peer as the authentication SUCCESS text.
5360 .It RAD_MICROSOFT_MS_MPPE_ENCRYPTION_POLICY
5361 If this
5362 .Dv RAD_VENDOR_MICROSOFT
5363 vendor specific attribute is supplied and has a value of 2 (Required),
5364 .Nm
5365 will insist that MPPE encryption is used (even if no
5366 .Dq set mppe
5367 configuration command has been given with arguments).
5368 If it is supplied with a value of 1 (Allowed), encryption is made optional
5369 (despite any
5370 .Dq set mppe
5371 configuration commands with arguments).
5372 .It RAD_MICROSOFT_MS_MPPE_ENCRYPTION_TYPES
5373 If this
5374 .Dv RAD_VENDOR_MICROSOFT
5375 vendor specific attribute is supplied, bits 1 and 2 are examined.
5376 If either or both are set, 40 bit and/or 128 bit (respectively) encryption
5377 options are set, overriding any given first argument to the
5378 .Dq set mppe
5379 command.
5380 Note, it is not currently possible for the RADIUS server to specify 56 bit
5381 encryption.
5382 .It RAD_MICROSOFT_MS_MPPE_RECV_KEY
5383 If this
5384 .Dv RAD_VENDOR_MICROSOFT
5385 vendor specific attribute is supplied, it's value is used as the master
5386 key for decryption of incoming data.  When clients are authenticated using
5387 MSCHAPv2, the RADIUS server MUST provide this attribute if inbound MPPE is
5388 to function.
5389 .It RAD_MICROSOFT_MS_MPPE_SEND_KEY
5390 If this
5391 .Dv RAD_VENDOR_MICROSOFT
5392 vendor specific attribute is supplied, it's value is used as the master
5393 key for encryption of outgoing data.  When clients are authenticated using
5394 MSCHAPv2, the RADIUS server MUST provide this attribute if outbound MPPE is
5395 to function.
5396 .El
5397 .Pp
5398 Values received from the RADIUS server may be viewed using
5399 .Dq show bundle .
5400 .It set reconnect Ar timeout ntries
5401 Should the line drop unexpectedly (due to loss of CD or LQR
5402 failure), a connection will be re-established after the given
5403 .Ar timeout .
5404 The line will be re-connected at most
5405 .Ar ntries
5406 times.
5407 .Ar Ntries
5408 defaults to zero.
5409 A value of
5410 .Ar random
5411 for
5412 .Ar timeout
5413 will result in a variable pause, somewhere between 1 and 30 seconds.
5414 .It set recvpipe Op Ar value
5415 This sets the routing table RECVPIPE value.
5416 The optimum value is just over twice the MTU value.
5417 If
5418 .Ar value
5419 is unspecified or zero, the default kernel controlled value is used.
5420 .It set redial Ar secs Ns Xo
5421 .Oo + Ns Ar inc Ns
5422 .Op - Ns Ar max Ns
5423 .Oc Ns Op . Ns Ar next
5424 .Op Ar attempts
5425 .Xc
5426 .Nm
5427 can be instructed to attempt to redial
5428 .Ar attempts
5429 times.
5430 If more than one phone number is specified (see
5431 .Dq set phone
5432 above), a pause of
5433 .Ar next
5434 is taken before dialing each number.
5435 A pause of
5436 .Ar secs
5437 is taken before starting at the first number again.
5438 A literal value of
5439 .Dq Li random
5440 may be used here in place of
5441 .Ar secs
5442 and
5443 .Ar next ,
5444 causing a random delay of between 1 and 30 seconds.
5445 .Pp
5446 If
5447 .Ar inc
5448 is specified, its value is added onto
5449 .Ar secs
5450 each time
5451 .Nm
5452 tries a new number.
5453 .Ar secs
5454 will only be incremented at most
5455 .Ar max
5456 times.
5457 .Ar max
5458 defaults to 10.
5459 .Pp
5460 Note, the
5461 .Ar secs
5462 delay will be effective, even after
5463 .Ar attempts
5464 has been exceeded, so an immediate manual dial may appear to have
5465 done nothing.
5466 If an immediate dial is required, a
5467 .Dq !\&
5468 should immediately follow the
5469 .Dq open
5470 keyword.
5471 See the
5472 .Dq open
5473 description above for further details.
5474 .It set sendpipe Op Ar value
5475 This sets the routing table SENDPIPE value.
5476 The optimum value is just over twice the MTU value.
5477 If
5478 .Ar value
5479 is unspecified or zero, the default kernel controlled value is used.
5480 .It "set server|socket" Ar TcpPort Ns No \&| Ns Xo
5481 .Ar LocalName Ns No |none|open|closed
5482 .Op password Op Ar mask
5483 .Xc
5484 This command tells
5485 .Nm
5486 to listen on the given socket or
5487 .Sq diagnostic port
5488 for incoming command connections.
5489 .Pp
5490 The word
5491 .Dq none
5492 instructs
5493 .Nm
5494 to close any existing socket and clear the socket configuration.
5495 The word
5496 .Dq open
5497 instructs
5498 .Nm
5499 to attempt to re-open the port.
5500 The word
5501 .Dq closed
5502 instructs
5503 .Nm
5504 to close the open port.
5505 .Pp
5506 If you wish to specify a local domain socket,
5507 .Ar LocalName
5508 must be specified as an absolute file name, otherwise it is assumed
5509 to be the name or number of a TCP port.
5510 You may specify the octal umask to be used with a local domain socket.
5511 Refer to
5512 .Xr umask 2
5513 for umask details.
5514 Refer to
5515 .Xr services 5
5516 for details of how to translate TCP port names.
5517 .Pp
5518 You must also specify the password that must be entered by the client
5519 (using the
5520 .Dq passwd
5521 variable above) when connecting to this socket.
5522 If the password is
5523 specified as an empty string, no password is required for connecting clients.
5524 .Pp
5525 When specifying a local domain socket, the first
5526 .Dq %d
5527 sequence found in the socket name will be replaced with the current
5528 interface unit number.
5529 This is useful when you wish to use the same
5530 profile for more than one connection.
5531 .Pp
5532 In a similar manner TCP sockets may be prefixed with the
5533 .Dq +
5534 character, in which case the current interface unit number is added to
5535 the port number.
5536 .Pp
5537 When using
5538 .Nm
5539 with a server socket, the
5540 .Xr pppctl 8
5541 command is the preferred mechanism of communications.
5542 Currently,
5543 .Xr telnet 1
5544 can also be used, but link encryption may be implemented in the future, so
5545 .Xr telnet 1
5546 should be avoided.
5547 .Pp
5548 Note;
5549 .Dv SIGUSR1
5550 and
5551 .Dv SIGUSR2
5552 interact with the diagnostic socket.
5553 .It set speed Ar value
5554 This sets the speed of the serial device.
5555 If speed is specified as
5556 .Dq sync ,
5557 .Nm
5558 treats the device as a synchronous device.
5559 .Pp
5560 Certain device types will know whether they should be specified as
5561 synchronous or asynchronous.
5562 These devices will override incorrect
5563 settings and log a warning to this effect.
5564 .It set stopped Op Ar LCPseconds Op Ar CCPseconds
5565 If this option is set,
5566 .Nm
5567 will time out after the given FSM (Finite State Machine) has been in
5568 the stopped state for the given number of
5569 .Dq seconds .
5570 This option may be useful if the peer sends a terminate request,
5571 but never actually closes the connection despite our sending a terminate
5572 acknowledgement.
5573 This is also useful if you wish to
5574 .Dq set openmode passive
5575 and time out if the peer doesn't send a Configure Request within the
5576 given time.
5577 Use
5578 .Dq set log +lcp +ccp
5579 to make
5580 .Nm
5581 log the appropriate state transitions.
5582 .Pp
5583 The default value is zero, where
5584 .Nm
5585 doesn't time out in the stopped state.
5586 .Pp
5587 This value should not be set to less than the openmode delay (see
5588 .Dq set openmode
5589 above).
5590 .It set timeout Ar idleseconds Op Ar mintimeout
5591 This command allows the setting of the idle timer.
5592 Refer to the section titled
5593 .Sx SETTING THE IDLE TIMER
5594 for further details.
5595 .Pp
5596 If
5597 .Ar mintimeout
5598 is specified,
5599 .Nm
5600 will never idle out before the link has been up for at least that number
5601 of seconds.
5602 .It set urgent Xo
5603 .Op tcp|udp|none
5604 .Oo Op +|- Ns
5605 .Ar port
5606 .Oc No ...
5607 .Xc
5608 This command controls the ports that
5609 .Nm
5610 prioritizes when transmitting data.
5611 The default priority TCP ports
5612 are ports 21 (ftp control), 22 (ssh), 23 (telnet), 513 (login), 514 (shell),
5613 543 (klogin) and 544 (kshell).
5614 There are no priority UDP ports by default.
5615 See
5616 .Xr services 5
5617 for details.
5618 .Pp
5619 If neither
5620 .Dq tcp
5621 or
5622 .Dq udp
5623 are specified,
5624 .Dq tcp
5625 is assumed.
5626 .Pp
5627 If no
5628 .Ar port Ns No s
5629 are given, the priority port lists are cleared (although if
5630 .Dq tcp
5631 or
5632 .Dq udp
5633 is specified, only that list is cleared).
5634 If the first
5635 .Ar port
5636 argument is prefixed with a plus
5637 .Pq Dq \&+
5638 or a minus
5639 .Pq Dq \&- ,
5640 the current list is adjusted, otherwise the list is reassigned.
5641 .Ar port Ns No s
5642 prefixed with a plus or not prefixed at all are added to the list and
5643 .Ar port Ns No s
5644 prefixed with a minus are removed from the list.
5645 .Pp
5646 If
5647 .Dq none
5648 is specified, all priority port lists are disabled and even
5649 .Dv IPTOS_LOWDELAY
5650 packets are not prioritised.
5651 .It set vj slotcomp on|off
5652 This command tells
5653 .Nm
5654 whether it should attempt to negotiate VJ slot compression.
5655 By default, slot compression is turned
5656 .Ar on .
5657 .It set vj slots Ar nslots
5658 This command sets the initial number of slots that
5659 .Nm
5660 will try to negotiate with the peer when VJ compression is enabled (see the
5661 .Sq enable
5662 command above).
5663 It defaults to a value of 16.
5664 .Ar Nslots
5665 must be between
5666 .Ar 4
5667 and
5668 .Ar 16
5669 inclusive.
5670 .El
5671 .Pp
5672 .It shell|! Op Ar command
5673 If
5674 .Ar command
5675 is not specified a shell is invoked according to the
5676 .Dv SHELL
5677 environment variable.
5678 Otherwise, the given
5679 .Ar command
5680 is executed.
5681 Word replacement is done in the same way as for the
5682 .Dq !bg
5683 command as described above.
5684 .Pp
5685 Use of the ! character
5686 requires a following space as with any of the other commands.
5687 You should note that this command is executed in the foreground;
5688 .Nm
5689 will not continue running until this process has exited.
5690 Use the
5691 .Dv bg
5692 command if you wish processing to happen in the background.
5693 .It show Ar var
5694 This command allows the user to examine the following:
5695 .Bl -tag -width 2n
5696 .It show bundle
5697 Show the current bundle settings.
5698 .It show ccp
5699 Show the current CCP compression statistics.
5700 .It show compress
5701 Show the current VJ compression statistics.
5702 .It show escape
5703 Show the current escape characters.
5704 .It show filter Op Ar name
5705 List the current rules for the given filter.
5706 If
5707 .Ar name
5708 is not specified, all filters are shown.
5709 .It show hdlc
5710 Show the current HDLC statistics.
5711 .It show help|?
5712 Give a summary of available show commands.
5713 .It show iface
5714 Show the current interface information
5715 (the same as
5716 .Dq iface show ) .
5717 .It show ipcp
5718 Show the current IPCP statistics.
5719 .It show layers
5720 Show the protocol layers currently in use.
5721 .It show lcp
5722 Show the current LCP statistics.
5723 .It show Op data Ns Xo
5724 .No link
5725 .Xc
5726 Show high level link information.
5727 .It show links
5728 Show a list of available logical links.
5729 .It show log
5730 Show the current log values.
5731 .It show mem
5732 Show current memory statistics.
5733 .It show ncp
5734 Show the current NCP statistics.
5735 .It show physical
5736 Show low level link information.
5737 .It show mp
5738 Show Multi-link information.
5739 .It show proto
5740 Show current protocol totals.
5741 .It show route
5742 Show the current routing tables.
5743 .It show stopped
5744 Show the current stopped timeouts.
5745 .It show timer
5746 Show the active alarm timers.
5747 .It show version
5748 Show the current version number of
5749 .Nm .
5750 .El
5751 .Pp
5752 .It term
5753 Go into terminal mode.
5754 Characters typed at the keyboard are sent to the device.
5755 Characters read from the device are displayed on the screen.
5756 When a remote
5757 .Em PPP
5758 peer is detected,
5759 .Nm
5760 automatically enables Packet Mode and goes back into command mode.
5761 .El
5762 .Sh MORE DETAILS
5763 .Bl -bullet
5764 .It
5765 Read the example configuration files.
5766 They are a good source of information.
5767 .It
5768 Use
5769 .Dq help ,
5770 .Dq nat \&? ,
5771 .Dq enable \&? ,
5772 .Dq set ?\&
5773 and
5774 .Dq show ?\&
5775 to get online information about what's available.
5776 .It
5777 The following URLs contain useful information:
5778 .Bl -bullet -compact
5779 .It
5780 http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/faq/ppp.html
5781 .It
5782 http://www.FreeBSD.org/doc/handbook/userppp.html
5783 .El
5784 .Pp
5785 .El
5786 .Sh FILES
5787 .Nm
5788 refers to four files:
5789 .Pa ppp.conf ,
5790 .Pa ppp.linkup ,
5791 .Pa ppp.linkdown
5792 and
5793 .Pa ppp.secret .
5794 These files are placed in the
5795 .Pa /etc/ppp
5796 directory.
5797 .Bl -tag -width 2n
5798 .It Pa /etc/ppp/ppp.conf
5799 System default configuration file.
5800 .It Pa /etc/ppp/ppp.secret
5801 An authorisation file for each system.
5802 .It Pa /etc/ppp/ppp.linkup
5803 A file to check when
5804 .Nm
5805 establishes a network level connection.
5806 .It Pa /etc/ppp/ppp.linkdown
5807 A file to check when
5808 .Nm
5809 closes a network level connection.
5810 .It Pa /var/log/ppp.log
5811 Logging and debugging information file.
5812 Note, this name is specified in
5813 .Pa /etc/syslog.conf .
5814 See
5815 .Xr syslog.conf 5
5816 for further details.
5817 .It Pa /var/spool/lock/LCK..*
5818 tty port locking file.
5819 Refer to
5820 .Xr uucplock 3
5821 for further details.
5822 .It Pa /var/run/tunN.pid
5823 The process id (pid) of the
5824 .Nm
5825 program connected to the tunN device, where
5826 .Sq N
5827 is the number of the device.
5828 .It Pa /var/run/ttyXX.if
5829 The tun interface used by this port.
5830 Again, this file is only created in
5831 .Fl background ,
5832 .Fl auto
5833 and
5834 .Fl ddial
5835 modes.
5836 .It Pa /etc/services
5837 Get port number if port number is using service name.
5838 .It Pa /var/run/ppp-authname-class-value
5839 In multi-link mode, local domain sockets are created using the peer
5840 authentication name
5841 .Pq Sq authname ,
5842 the peer endpoint discriminator class
5843 .Pq Sq class
5844 and the peer endpoint discriminator value
5845 .Pq Sq value .
5846 As the endpoint discriminator value may be a binary value, it is turned
5847 to HEX to determine the actual file name.
5848 .Pp
5849 This socket is used to pass links between different instances of
5850 .Nm .
5851 .El
5852 .Sh SEE ALSO
5853 .Xr at 1 ,
5854 .Xr ftp 1 ,
5855 .Xr gzip 1 ,
5856 .Xr hostname 1 ,
5857 .Xr login 1 ,
5858 .Xr tcpdump 1 ,
5859 .Xr telnet 1 ,
5860 .Xr kldload 2 ,
5861 ifdef({LOCALNAT},{},{.Xr libalias 3 ,
5862 })dnl
5863 ifdef({LOCALRAD},{},{.Xr libradius 3 ,
5864 })dnl
5865 .Xr syslog 3 ,
5866 .Xr uucplock 3 ,
5867 .Xr netgraph 4 ,
5868 .Xr ng_pppoe 4 ,
5869 .Xr crontab 5 ,
5870 .Xr group 5 ,
5871 .Xr passwd 5 ,
5872 .Xr protocols 5 ,
5873 .Xr radius.conf 5 ,
5874 .Xr resolv.conf 5 ,
5875 .Xr syslog.conf 5 ,
5876 .Xr adduser 8 ,
5877 .Xr chat 8 ,
5878 .Xr getty 8 ,
5879 .Xr inetd 8 ,
5880 .Xr init 8 ,
5881 .Xr isdn 8 ,
5882 .Xr named 8 ,
5883 .Xr ping 8 ,
5884 .Xr pppctl 8 ,
5885 .Xr pppd 8 ,
5886 .Xr pppoe 8 ,
5887 .Xr route 8 ,
5888 .Xr sshd 8 ,
5889 .Xr syslogd 8 ,
5890 .Xr traceroute 8 ,
5891 .Xr vipw 8
5892 .Sh HISTORY
5893 This program was originally written by
5894 .An Toshiharu OHNO Aq tony-o@iij.ad.jp ,
5895 and was submitted to
5896 .Fx 2.0.5
5897 by
5898 .An Atsushi Murai Aq amurai@spec.co.jp .
5899 .Pp
5900 It was substantially modified during 1997 by
5901 .An Brian Somers Aq brian@Awfulhak.org ,
5902 and was ported to
5903 .Ox
5904 in November that year
5905 (just after the 2.2 release).
5906 .Pp
5907 Most of the code was rewritten by
5908 .An Brian Somers
5909 in early 1998 when multi-link ppp support was added.