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