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