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