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