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