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