chiark / gitweb /
server/keymgmt.c: Fix warning message to match documentation.
[tripe] / server / tripe-admin.5.in
1 .\" -*-nroff-*-
2 .\".
3 .\" Manual for the administration protocol
4 .\"
5 .\" (c) 2008 Straylight/Edgeware
6 .\"
7 .
8 .\"----- Licensing notice ---------------------------------------------------
9 .\"
10 .\" This file is part of Trivial IP Encryption (TrIPE).
11 .\"
12 .\" TrIPE is free software; you can redistribute it and/or modify
13 .\" it under the terms of the GNU General Public License as published by
14 .\" the Free Software Foundation; either version 2 of the License, or
15 .\" (at your option) any later version.
16 .\"
17 .\" TrIPE is distributed in the hope that it will be useful,
18 .\" but WITHOUT ANY WARRANTY; without even the implied warranty of
19 .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 .\" GNU General Public License for more details.
21 .\"
22 .\" You should have received a copy of the GNU General Public License
23 .\" along with TrIPE; if not, write to the Free Software Foundation,
24 .\" Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25 .
26 .\"--------------------------------------------------------------------------
27 .so ../common/defs.man \" @@@PRE@@@
28 .
29 .\"--------------------------------------------------------------------------
30 .TH tripe-admin 5 "18 February 2001" "Straylight/Edgeware" "TrIPE: Trivial IP Encryption"
31 .
32 .\"--------------------------------------------------------------------------
33 .SH "NAME"
34 .
35 tripe-admin \- administrator commands for TrIPE
36 .
37 .\"--------------------------------------------------------------------------
38 .SH "DESCRIPTION"
39 .
40 This manual page describes the administration interface provided by the
41 .BR tripe (8)
42 daemon.
43 .PP
44 The
45 .BR tripectl (8)
46 program can be used either interactively or in scripts to communicate
47 with the server using this interface.  Alternatively, simple custom
48 clients can be written in scripting languages such as Perl, Python or
49 Tcl, or more advanced clients such as GUI monitors can be written in C
50 with little difficulty.
51 .PP
52 Administration commands use a textual protocol.  Each client command or
53 server response consists of a line of ASCII text terminated by a single
54 linefeed character.  No command may be longer than 255 characters.
55 .SS "General structure"
56 Each command or response line consists of a sequence of
57 whitespace-separated tokens.  The number and nature of whitespace
58 characters separating two tokens in a client command is not significant;
59 the server always uses a single space character.  The first token in a
60 line is a
61 .I keyword
62 identifying the type of command or response contained.  Keywords in
63 client commands are not case-sensitive; the server always uses uppercase
64 for its keywords.
65 .PP
66 In order to allow tokens to contain internal whitespace, a quoting
67 mechanism is provided.  Whitespace within matched pairs of quotes \(en
68 either single
69 .RB ` ' '
70 or double
71 .RB ` """" '
72 \(en is considered to be internal.  Any character (other than newline)
73 may be escaped by preceding it with a backslash
74 .RB ` \e ':
75 in particular, this can be used to include quote characters.  It is
76 impossible for a token to contain a newline character.
77 .PP
78 On output, the server will use double quotes when necessary.
79 .SS "Simple commands"
80 For simple client command, the server responds with zero or more
81 .B INFO
82 lines, followed by either an
83 .B OK
84 line or a
85 .B FAIL
86 line.  Each
87 .B INFO
88 provides information requested in the command.  An
89 .B OK
90 response contains no further data.  A
91 .B FAIL
92 code is followed by a machine-readable explanation of why the command
93 failed.
94 .PP
95 Simple command processing is strictly synchronous: the server reads a
96 command, processes it, and responds, before reading the next command.
97 All commands can be run as simple commands.  Long-running commands
98 (e.g.,
99 .B ADD
100 and
101 .BR PING )
102 block the client until they finish, but the rest of the server continues
103 running.  See
104 .B "Background commands"
105 to find out how to issue long-running commands without blocking.
106 .SS "Asynchronous broadcasts"
107 There are three types of asynchronous broadcast messages which aren't
108 associated with any particular command.  Clients can select which
109 broadcast messages they're interested in using the
110 .B WATCH
111 command.
112 .PP
113 The
114 .B WARN
115 message contains a machine-readable message warning of an error
116 encountered while processing a command, unexpected or unusual behaviour
117 by a peer, or a possible attack by an adversary.  Under normal
118 conditions, the server shouldn't emit any warnings.
119 .PP
120 The
121 .B TRACE
122 message contains a human-readable tracing message containing diagnostic
123 information.  Trace messages are controlled using the
124 .B \-T
125 command-line option to the server, or the
126 .B TRACE
127 administration command (see below).  Support for tracing can be disabled
128 when the package is being configured, and may not be available in your
129 version.
130 .PP
131 Finally, the
132 .B NOTE
133 message is a machine-readable notification about some routine but
134 interesting event such as creation or destruction of peers.
135 .SS "Background commands"
136 Some commands (e.g.,
137 .B ADD
138 and
139 .BR PING )
140 take a long time to complete.  To prevent these long-running commands
141 from tying up a server connection, they can be run in the background.
142 Not all commands can be run like this: the ones that can provide a
143 .B \-background
144 option, which must be supplied with a
145 .IR tag .
146 .PP
147 A command may fail before it starts running in the background.  In this
148 case, the server emits a
149 .B FAIL
150 response, as usual.  To indicate that a command has started running in
151 the background, the server emits a response of the form
152 .BI "BGDETACH " tag \fR,
153 where
154 .I tag
155 is the value passed to the
156 .B \-background
157 option.  From this point on, the server is ready to process more
158 commands and reply to them.
159 .PP
160 Responses to background commands are indicated by a line beginning with
161 one of the tokens
162 .BR BGOK ,
163 .BR BGFAIL ,
164 or
165 .BR BGINFO ,
166 followed by the command tag.  These correspond to the
167 .BR OK ,
168 .BR FAIL ,
169 and
170 .B INFO
171 responses for simple commands:
172 .B BGINFO
173 indicates information from a background command which has not completed
174 yet; and
175 .B BGOK
176 and
177 .B BGFAIL
178 indicates that a background command succeeded or failed, respectively.
179 .PP
180 A background command will never issue an
181 .B OK
182 or
183 .B INFO
184 response: it will always detach and then issue any
185 .B BGINFO
186 lines followed by
187 .B BGOK
188 response.
189 .SS "Client-provided services"
190 .\"* 25 Service-related messages
191 An administration client can provide services to other clients.
192 Services are given names and versions.  A client can attempt to
193 .I claim
194 a particular service by issuing the
195 .B SVCCLAIM
196 command.  This may fail, for example, if some other client already
197 provides the same or later version of the service.
198 .PP
199 Other clients can issue
200 .I "service commands"
201 using the
202 .B "SVCSUBMIT"
203 command; the service provider is expected to handle these commands and
204 reply to them.
205 .PP
206 There are three important asynchronous messages which will be sent to
207 service providers.
208 .SP
209 .BI "SVCCANCEL " jobid
210 The named job has been cancelled, either because the issuing client has
211 disconnected or explicitly cancelled the job using the
212 .B BGCANCEL
213 command.
214 .SP
215 .BI "SVCCLAIM " service " " version
216 Another client has claimed a later version of the named
217 .IR service .
218 The recipient is no longer the provider of this service.
219 .SP
220 .BI "SVCJOB " jobid " " service " " command " " args \fR...
221 Announces the arrival of a new job.  The
222 .I jobid
223 is a simple token consisting of alphanumeric characters which
224 .B tripe
225 uses to identify this job.
226 .PP
227 The service provider can reply to the job using the commands
228 .BR SVCINFO ,
229 .B SVCOK
230 and
231 .BR SVCFAIL .
232 The first of these sends an
233 .B INFO
234 response and leaves the job active; the other two send an
235 .B OK
236 or
237 .B FAIL
238 response respectively, and mark the job as being complete.
239 .PP
240 (Since
241 .B SVCSUBMIT
242 is a potentially long-running command, it can be run in the background.
243 This detail is hidden from service providers:
244 .B tripe
245 will issue the corresponding
246 .BR BG ...
247 responses when appropriate.)
248 .SS "Network addresses"
249 A network address is a sequence of tokens.  The first is a token
250 identifying the network address family.  The length of an address and
251 the meanings of the subsequent tokens depend on the address family.
252 Address family tokens are not case-sensitive on input; on output, they
253 are always in upper-case.
254 .PP
255 At present, only one address family is understood.
256 .TP
257 .BI "INET " address " \fR[" port \fR]
258 An Internet socket, naming an IPv4 address and UDP port.  On output, the
259 address is always in numeric dotted-quad form, and the port is given as
260 a plain number.  On input, DNS hostnames and symbolic port names are
261 permitted; if omitted, the default port 4070 is used.  Name resolution
262 does not block the main server, but will block the requesting client,
263 unless the command is run in the background.
264 .PP
265 If, on input, no recognized address family token is found, the following
266 tokens are assumed to represent an
267 .B INET
268 address.  Addresses output by the server always have an address family
269 token.
270 .SS "Key-value output"
271 Some commands (e.g.,
272 .B STATS
273 and
274 .BR SERVINFO )
275 produce output in the form of
276 .IB key = value
277 pairs, one per token.  Neither the
278 .I key
279 nor the
280 .I value
281 contain spaces.
282 .SS "Trace lists"
283 Commands which enable or disable kinds of output (e.g.,
284 .B TRACE
285 and
286 .BR WATCH )
287 work in similar ways.  They take a single optional argument, which
288 consists of a string of letters selecting message types, optionally
289 interspersed with
290 .RB ` + '
291 to enable, or
292 .RB ` \- '
293 to disable, the subsequently listed types.
294 .PP
295 If the argument is omitted, the available message types are displayed,
296 one to an
297 .B INFO
298 line, in a fixed-column format.  Column zero contains the key letter for
299 selecting that message type; column one contains either a space or a
300 .RB ` + '
301 sign, if the message type is disabled or enabled respectively; and a
302 textual description of the message type begins at column 3 and continues
303 to the end of the line.
304 .PP
305 Lowercase key letters control individual message types.  Uppercase key
306 letters control collections of message types.
307 .
308 .\"--------------------------------------------------------------------------
309 .SH "COMMAND REFERENCE"
310 .
311 .\"* 10 Commands
312 The commands provided are:
313 .SP
314 .BI "ADD \fR[" options "\fR] " peer " " address "\fR..."
315 Adds a new peer.  The peer is given the name
316 .IR peer ;
317 the peer's public key is assumed to be in the file
318 .B keyring.pub
319 (or whatever alternative file was specified in the
320 .B \-K
321 option on the command line).  The
322 .I address
323 is the network address (see above for the format) at which the peer can
324 be contacted.  The following options are recognized.
325 .RS
326 .\"+opts
327 .TP
328 .BI "\-background " tag
329 Run the command in the background, using the given
330 .IR tag .
331 .TP
332 .B "\-cork"
333 Don't send an immediate challenge to the peer; instead, wait until it
334 sends us something before responding.
335 .TP
336 .BI "\-keepalive " time
337 Send a no-op packet if we've not sent a packet to the peer in the last
338 .I time
339 interval.  This is useful for persuading port-translating firewalls to
340 believe that the `connection' is still active.  The
341 .I time
342 is expressed as a nonnegative integer followed optionally by
343 .BR d ,
344 .BR h ,
345 .BR m ,
346 or
347 .BR s
348 for days, hours, minutes, or seconds respectively; if no suffix is
349 given, seconds are assumed.
350 .TP
351 .BI "\-key " tag
352 Use the public key
353 .I tag
354 to authenticate the peer.  The default is to use the key tagged
355 .IR peer .
356 .TP
357 .B "\-mobile"
358 The peer is a mobile device, and is likely to change address rapidly.
359 If a packet arrives from an unknown address, the server's usual response
360 is to log a warning and discard it.  If the server knows of any mobile
361 peers, however, it will attempt to decrypt the packet using their keys,
362 and if one succeeds, the server will update its idea of the peer's
363 address and emit an
364 .B NEWADDR
365 notification.
366 .TP
367 .BI "\-priv " tag
368 Use the private key
369 .I tag
370 to authenticate to the peer.  The default is to use the key named in the
371 .RB ` \-t '
372 command-line option, or a key with type
373 .B tripe
374 or
375 .BR tripe-dh :
376 see
377 .BR tripe (8)
378 for the details.
379 .TP
380 .BI "\-tunnel " tunnel
381 Use the named tunnel driver, rather than the default.
382 .\"-opts
383 .RE
384 .SP
385 .BI "ADDR " peer
386 Emits an
387 .B INFO
388 line reporting the IP address and port number stored for
389 .IR peer .
390 .SP
391 .BI "ALGS \fR[" peer \fR]
392 Emits information about the cryptographic algorithms in use, in
393 key-value form.  If a
394 .I peer
395 is given, then describe the algorithms used in the association with that
396 peer; otherwise describe the default algorithms.
397 .RS
398 .PP
399 The keys are as follows.
400 .TP
401 .B kx-group
402 Type of key-exchange group in use, currently either
403 .B ec
404 or
405 .BR prime .
406 .TP
407 .B kx-group-order-bits
408 Length of the group order, in bits.  This gives an approximate measure
409 of the group strength.
410 .TP
411 .B kx-group-elt-bits
412 Length of a group element, in bits.  This may be useful when analyzing
413 protocol traces.
414 .TP
415 .B hash
416 The hash function in use, e.g.,
417 .BR sha256 .
418 .TP
419 .B mgf
420 The mask-generating function in use, e.g.,
421 .BR whirlpool-mgf .
422 .TP
423 .B hashsz
424 The size of the hash function's output, in octets.
425 .TP
426 .B cipher
427 The name of the bulk data cipher in use, e.g.,
428 .BR blowfish-cbc .
429 .TP
430 .B cipher-keysz
431 The length of key used by the bulk data cipher, in octets.
432 .TP
433 .B cipher-blksz
434 The block size of the bulk data cipher, or zero if it's not based on a
435 block cipher.
436 .TP
437 .B cipher-data-limit
438 The maximum amount of data to be encrypted using a single key.  (A new
439 key exchange is instigated well before the limit is reached, in order to
440 allow for a seamless changeover of keys.)
441 .TP
442 .B mac
443 The message authentication algorithm in use, e.g.,
444 .BR ripemd160-hmac ..
445 .TP
446 .B mac-keysz
447 The length of the key used by the message authentication algorithm, in
448 octets.
449 .TP
450 .B mac-tagsz
451 The length of the message authentication tag, in octets.
452 .PP
453 The various sizes are useful, for example, when computing the MTU for a
454 tunnel interface.  If
455 .I MTU
456 is the MTU of the path to the peer, then the tunnel MTU should be
457 .IP
458 .I MTU
459 \- 33 \-
460 .I cipher-blksz
461 \-
462 .I mac-tagsz
463 .PP
464 allowing 20 bytes of IP header, 8 bytes of UDP header, a packet type
465 octet, a four-octet sequence number, an IV, and a MAC tag.
466 .RE
467 .SP
468 .BI "BGCANCEL " tag
469 Cancels the background job with the named
470 .IR tag .
471 .SP
472 .BI "CHECKCHAL " challenge
473 Verifies a challenge as being one earlier issued by
474 .B GETCHAL
475 and not previously either passed to
476 .B CHECKCHAL
477 or in a greeting message.
478 .SP
479 .B "DAEMON"
480 Causes the server to disassociate itself from its terminal and become a
481 background task.  This only works once.  A warning is issued.
482 .SP
483 .BI "EPING \fR[" options "\fR] " peer
484 Sends an encrypted ping to the peer, and expects an encrypted response.
485 This checks that the peer is running (and not being impersonated), and
486 that it can encrypt and decrypt packets correctly.  Options and
487 responses are the same as for the
488 .B PING
489 command.
490 .SP
491 .BI "FORCEKX " peer
492 Requests the server to begin a new key exchange with
493 .I peer
494 immediately.
495 .SP
496 .B "GETCHAL"
497 Requests a challenge.  The challenge is returned in an
498 .B INFO
499 line, as a base64-encoded string.  See
500 .BR CHECKCHAL .
501 .SP
502 .BI "GREET " peer " " challenge
503 Sends a greeting packet containing the
504 .I challenge
505 (base-64 encoded) to the named
506 .IR peer .
507 The expectation is that this will cause the peer to recognize us and
508 begin a key-exchange.
509 .SP
510 .B "HELP"
511 Causes the server to emit an
512 .B INFO
513 line for each command it supports.  Each line lists the command name,
514 followed by the names of the arguments.  This may be helpful as a memory
515 aid for interactive use, or for program clients probing for features.
516 .SP
517 .BI "IFNAME " peer
518 Emits an
519 .B INFO
520 line containing the name of the network interface used to collect IP
521 packets which are to be encrypted and sent to
522 .IR peer .
523 Used by configuration scripts so that they can set up routing tables
524 appropriately after adding new peers.
525 .SP
526 .B "JOBS"
527 Emits an
528 .B INFO
529 line giving the tag for each outstanding background job.
530 .SP
531 .BI "KILL " peer
532 Causes the server to forget all about
533 .IR peer .
534 All keys are destroyed, and no more packets are sent.  No notification
535 is sent to the peer: if it's important that the peer be notified, you
536 must think of a way to do that yourself.
537 .SP
538 .B "LIST"
539 For each currently-known peer, an
540 .B INFO
541 line is written containing the peer's name, as given to
542 .BR ADD .
543 .SP
544 .BI "NOTIFY " tokens\fR...
545 Issues a
546 .B USER
547 notification to all interested administration clients.
548 .SP
549 .BI "PEERINFO " peer
550 Returns information about a peer, in key-value form.  The following keys
551 are returned.
552 .RS
553 .TP
554 .B tunnel
555 The tunnel driver used for this peer.
556 .TP
557 .B keepalive
558 The keepalive interval, in seconds, or zero if no keepalives are to be
559 sent.
560 .TP
561 .B key
562 The (short) key tag being used for the peer, as passed to the
563 .B ADD
564 command.
565 .TP
566 .B current-key
567 The full key tag of the peer's public key currently being used.  This
568 may change during the life of the association.
569 .TP
570 .B private-key
571 The private key tag being used for the peer, as passed to the
572 .B ADD
573 command.
574 .TP
575 .B current-private-key
576 The full key tag of the private key currently being used for this
577 association.  This may change during the life of the association.
578 .RE
579 .SP
580 .BI "PING \fR[" options "\fR] " peer
581 Send a transport-level ping to the peer.  The ping and its response are
582 not encrypted or authenticated.  This command, possibly in conjunction
583 with tracing, is useful for ensuring that UDP packets are actually
584 flowing in both directions.  See also the
585 .B EPING
586 command.
587 .IP
588 An
589 .B INFO
590 line is printed describing the outcome:
591 .RS
592 .TP
593 .BI "ping-ok " millis
594 A response was received
595 .I millis
596 after the ping was sent.
597 .TP
598 .BI "ping-timeout"
599 No response was received within the time allowed.
600 .TP
601 .BI "ping-peer-died"
602 The peer was killed (probably by another admin connection) before a
603 response was received.
604 .RE
605 .IP
606 Options recognized for this command are:
607 .RS
608 .\"+opts
609 .TP
610 .BI "\-background " tag
611 Run the command in the background, using the given
612 .IR tag .
613 .TP
614 .BI "\-timeout " time
615 Wait for
616 .I time
617 seconds before giving up on a response.  The default is 5 seconds.  The
618 .I time
619 is expressed as a nonnegative integer followed optionally by
620 .BR d ,
621 .BR h ,
622 .BR m ,
623 or
624 .BR s
625 for days, hours, minutes, or seconds respectively; if no suffix is
626 given, seconds are assumed.
627 .\"-opts
628 .RE
629 .SP
630 .B "PORT"
631 Emits an
632 .B INFO
633 line containing just the number of the UDP port used by the
634 .B tripe
635 server.  If you've allowed your server to allocate a port dynamically,
636 this is how to find out which one it chose.
637 .SP
638 .B "RELOAD"
639 Instructs the server to recheck its keyring files.  The server checks
640 these periodically anyway but it may be necessary to force a recheck,
641 for example after adding a new peer key.
642 .SP
643 .B "QUIT"
644 Instructs the server to exit immediately.  A warning is sent.
645 .SP
646 .B "SERVINFO"
647 Returns information about the server, in the form of key-value pairs.
648 The following keys are used.
649 .RS
650 .TP
651 .B implementation
652 A keyword naming the implementation of the
653 .BR tripe (8)
654 server.  The current implementation is called
655 .BR edgeware-tripe .
656 .TP
657 .B version
658 The server's version number, as reported by
659 .BR VERSION .
660 .TP
661 .B daemon
662 Either
663 .B t
664 or
665 .BR nil ,
666 if the server has or hasn't (respectively) become a daemon.
667 .RE
668 .SP
669 .BI "SETIFNAME " peer " " new-name
670 Informs the server that the
671 .IR peer 's
672 tunnel-interface name has been changed to
673 .IR new-name .
674 This is useful if firewalling decisions are made based on interface
675 names: a setup script for a particular peer can change the name, and
676 then update the server's records so that they're accurate.
677 .SP
678 .BI "SVCCLAIM " service " " version
679 Attempts to claim the named
680 .IR service ,
681 offering the given
682 .IR version .
683 The claim is successful if the service is currently unclaimed, or if
684 a version earlier than
685 .I version
686 is provided; otherwise the command fails with the error
687 .BR "service-exists" .
688 .SP
689 .BI "SVCENSURE " service " \fR[" version \fR]
690 Ensure that
691 .I service
692 is provided, and (if specified) to at least the given
693 .IR version .
694 An error is reported if these conditions are not met; otherwise the
695 command succeeds silently.
696 .SP
697 .BI "SVCFAIL " jobid " " tokens \fR...
698 Send a
699 .B FAIL
700 (or
701 .BR BGFAIL )
702 response to the service job with the given
703 .IR jobid ,
704 passing the
705 .I tokens
706 as the reason for failure.  The job is closed.
707 .SP
708 .BI "SVCINFO " jobid " " tokens \fR...
709 Send an
710 .B INFO
711 (or
712 .BR BGINFO )
713 response to the service job with the given
714 .IR jobid ,
715 passing the
716 .I tokens
717 as the info message.  The job remains open.
718 .SP
719 .B "SVCLIST"
720 Output a line of the form
721 .RS
722 .IP
723 .B INFO
724 .I service
725 .I version
726 .PP
727 for each service currently provided.
728 .RE
729 .SP
730 .BI "SVCOK " jobid
731 Send an
732 .B OK
733 (or
734 .BR BGINFO )
735 response to the service job with the given
736 .IR jobid .
737 The job is closed.
738 .SP
739 .BI "SVCQUERY " service
740 Emits a number of
741 .B info
742 lines in key-value format, describing the named
743 .IR service.
744 The following keys are used.
745 .RS
746 .TP
747 .B name
748 The service's name.
749 .TP
750 .B version
751 The service's version string.
752 .RE
753 .SP
754 .BI "SVCRELEASE " service
755 Announce that the client no longer wishes to provide the named
756 .IR service .
757 .SP
758 .BI "SVCSUBMIT \fR[" options "\fR] " service " " command " " arguments \fR...
759 Submit a job to the provider of the given
760 .IR service ,
761 passing it the named
762 .I command
763 and the given
764 .IR arguments .
765 The following options are accepted.
766 .RS
767 .\"+opts
768 .TP
769 .BI "\-background " tag
770 Run the command in the background, using the given
771 .IR tag .
772 .TP
773 .BI "\-version " version
774 Ensure that at least the given
775 .I version
776 of the service is available before submitting the job.
777 .RE
778 .\"-opts
779 .SP
780 .BI "STATS " peer
781 Emits a number of
782 .B INFO
783 lines, each containing one or more statistics in the form
784 .IB name = value \fR.
785 The statistics-gathering is experimental and subject to change.
786 .SP
787 .BR "TRACE " [\fIoptions\fP]
788 Selects trace outputs: see
789 .B "Trace lists"
790 above.  Message types provided are:
791 .RS
792 .PP
793 Currently, the following tracing options are supported:
794 .TP
795 .B t
796 Tunnel events: reception of packets to be encrypted, and injection of
797 successfully-decrypted packets.
798 .TP
799 .B r
800 Peer management events: creation and destruction of peer attachments,
801 and arrival of messages.
802 .TP
803 .B a
804 Administration interface: acceptance of new connections, and handling of
805 the backgroud name-resolution required by the
806 .B ADD
807 command.
808 .TP
809 .B s
810 Handling of symmetric keysets: creation and expiry of keysets, and
811 encryption and decryption of messages.
812 .TP
813 .B x
814 Key exchange: reception, parsing and emission of key exchange messages.
815 .TP
816 .B m
817 Key management: loading keys and checking for file modifications.
818 .TP
819 .B l
820 Display information about challenge issuing and verification.
821 .TP
822 .B p
823 Display contents of packets sent and received by the tunnel and/or peer
824 modules.
825 .TP
826 .B c
827 Display inputs, outputs and intermediate results of cryptographic
828 operations.  This includes plaintext and key material.  Use with
829 caution.
830 .TP
831 .B A
832 All of the above.
833 .PP
834 Note that the
835 .B p
836 (packet contents)
837 and
838 .B c
839 (crypto details)
840 outputs provide extra detail for other outputs.  Specifying
841 .B p
842 without
843 .BR r
844 or
845 .B t
846 isn't useful; neither is specifying
847 .B c
848 without one of
849 .BR s ,
850 .BR l ,
851 .B x
852 or
853 .BR m .
854 .RE
855 .SP
856 .B "TUNNELS"
857 For each available tunnel driver, an
858 .B INFO
859 line is printed giving its name.
860 .SP
861 .B "VERSION"
862 Causes the server to emit an
863 .B INFO
864 line stating its software version, as two tokens: the server name, and
865 its version string.  The server name
866 .B tripe
867 is reserved to the Straylight/Edgeware implementation.
868 .SP
869 .BR "WATCH " [\fIoptions\fP]
870 Enables or disables asynchronous broadcasts
871 .IR "for the current connection only" .
872 See
873 .B "Trace lists"
874 above.  The default watch state for the connection the server opens
875 automatically on stdin/stdout is to show warnings and trace messages;
876 other connections show no asynchronous broadcast messages.  (This is
877 done in order to guarantee that a program reading the server's stdout
878 does not miss any warnings.)
879 .RS
880 .PP
881 Message types provided are:
882 .TP
883 .B t
884 .B TRACE
885 messages.
886 .TP
887 .B n
888 .B NOTE
889 messages.
890 .TP
891 .B w
892 .B WARN
893 messages.
894 .TP
895 .B A
896 All of the above.
897 .RE
898 .SP
899 .BI "WARN " tokens\fR...
900 Issues a
901 .B USER
902 warning to all interested administration clients.
903 .
904 .\"--------------------------------------------------------------------------
905 .SH "ERROR MESSAGES"
906 .
907 .\"* 20 Error messages (FAIL codes)
908 The following
909 .B FAIL
910 (or
911 .BR BGFAIL )
912 messages are sent to clients as a result of errors during command
913 processing.
914 .SP
915 .BI "already-daemon"
916 (For
917 .BR DAEMON .)
918 The
919 .B tripe
920 server is already running as a daemon.
921 .SP
922 .BI "bad-addr-syntax " message
923 (For commands accepting socket addresses.)  The address couldn't be
924 understood.
925 .SP
926 .BI "bad-syntax " cmd " " message
927 (For any command.)  The command couldn't be understood: e.g., the number
928 of arguments was wrong.
929 .SP
930 .BI "bad-time-spec " token
931 The
932 .I token
933 is not a valid time interval specification.  Acceptable time
934 specifications are nonnegative integers followed optionally by
935 .BR d ,
936 .BR h ,
937 .BR m ,
938 or
939 .BR s ,
940 for days, hours, minutes, or seconds, respectively.
941 .SP
942 .BI "bad-trace-option " char
943 (For
944 .BR TRACE .)
945 An unknown trace option was requested.
946 .SP
947 .BI "bad-watch-option " char
948 (For
949 .BR WATCH .)
950 An unknown watch option was requested.
951 .SP
952 .BI "daemon-error " ecode " " message
953 (For
954 .BR DAEMON .)
955 An error occurred during the attempt to become a daemon, as reported by
956 .IR message .
957 .SP
958 .BI "invalid-port " number
959 (For
960 .BR ADD .)
961 The given port number is out of range.
962 .SP
963 .BI "not-service-provider " service
964 (For
965 .BR SVCRELEASE .)
966 The invoking client is not the current provider of the named
967 .IR service ,
968 and is therefore not allowed to release it.
969 .SP
970 .BI "peer-create-fail " peer
971 (For
972 .BR ADD .)
973 Adding
974 .I peer
975 failed for some reason.  A warning should have been emitted explaining
976 why.
977 .SP
978 .BI "peer-addr-exists " address\fR...
979 (For
980 .BR ADD .)
981 There is already a peer with the given
982 .IR address .
983 .SP
984 .BI "peer-exists " peer
985 (For
986 .BR ADD .)
987 There is already a peer named
988 .IR peer .
989 .SP
990 .B "ping-send-failed"
991 The attempt to send a ping packet failed, probably due to lack of
992 encryption keys.
993 .SP
994 .BI "resolve-error " hostname
995 (For
996 .BR ADD .)
997 The DNS name
998 .I hostname
999 could not be resolved.
1000 .SP
1001 .BI "resolver-timeout " hostname
1002 (For
1003 .BR ADD .)
1004 The DNS name
1005 .I hostname
1006 took too long to resolve.
1007 .SP
1008 .BI "service-exists " service " " version
1009 (For
1010 .BR SVCCLAIM .)
1011 Another client is already providing the stated
1012 .I version
1013 of the
1014 .IR service .
1015 .SP
1016 .BI "service-too-old " service " " version
1017 (For
1018 .B SVCENSURE
1019 and
1020 .BR SVCSUBMIT .)
1021 Only the given
1022 .I version
1023 of the requested
1024 .I service
1025 is available, which does not meet the stated requirements.
1026 .SP
1027 .BI "tag-exists " tag
1028 (For long-running commands.)  The named
1029 .I tag
1030 is already the tag of an outstanding job.
1031 .SP
1032 .BI "unknown-command " token
1033 The command
1034 .I token
1035 was not recognized.
1036 .SP
1037 .BI "unknown-jobid " jobid
1038 (For
1039 .BR SVCOK ,
1040 .BR SVCFAIL ,
1041 and
1042 .BR SVCINFO .)
1043 The token
1044 .I jobid
1045 is not recognized as identifying an outstanding job.  It may have just
1046 been cancelled.
1047 .SP
1048 .BI "unknown-peer " name
1049 (For
1050 .BR ADDR ,
1051 .BR IFNAME ,
1052 .BR KILL ,
1053 .BR SETIFNAME ,
1054 and
1055 .BR STATS .)
1056 There is no peer called
1057 .IR name .
1058 .SP
1059 .BI "unknown-port " port
1060 (For
1061 .BR ADD .)
1062 The port name
1063 .I port
1064 couldn't be found in
1065 .BR /etc/services .
1066 .TP
1067 .BI "unknown-service " service
1068 (For
1069 .BR SVCENSURE ,
1070 .BR SVCQUERY ,
1071 .BR SVCRELEASE ,
1072 and
1073 .BR SVCSUBMIT .)
1074 The token
1075 .I service
1076 is not recognized as the name of a client-provided service.
1077 .TP
1078 .BI "unknown-tag " tag
1079 (For
1080 .BR BGCANCEL .)
1081 The given
1082 .I tag
1083 is not the tag for any outstanding background job.  It may have just
1084 finished.
1085 .
1086 .\"--------------------------------------------------------------------------
1087 .SH "NOTIFICATIONS"
1088 .
1089 .\"* 30 Notification broadcasts (NOTE codes)
1090 The following notifications are sent to clients who request them.
1091 .SP
1092 .BI "ADD " peer " " ifname " " address \fR...
1093 A new peer has been added.  The peer's name is
1094 .IR peer ,
1095 its tunnel is network interface
1096 .IR ifname ,
1097 and its network address is
1098 .IR address .
1099 .SP
1100 .BI "DAEMON"
1101 The server has forked off into the sunset and become a daemon.
1102 .SP
1103 .BI "GREET " challenge " " address \fR...
1104 A valid greeting was received, with the given challenge (exactly as it
1105 was returned by
1106 .B GETCHAL
1107 earlier).
1108 .SP
1109 .BI "KILL " peer
1110 The peer
1111 .I peer
1112 has been killed.
1113 .SP
1114 .BI "KXDONE " peer
1115 Key exchange with
1116 .I peer
1117 finished successfully.
1118 .SP
1119 .BI "KXSTART " peer
1120 Key exchange with
1121 .I peer
1122 has begun or restarted.  If key exchange keeps failing, this message
1123 will be repeated periodically.
1124 .SP
1125 .BI "NEWADDR " peer " " address
1126 The given mobile
1127 .IR peer 's
1128 IP address has been changed to
1129 .IR address .
1130 .SP
1131 .BI "NEWIFNAME " peer " " old-name " " new-name
1132 The given
1133 .IR peer 's
1134 tunnel interface name has been changed from
1135 .I old-name
1136 to
1137 .IR new-name ,
1138 as a result of a
1139 .B SETIFNAME
1140 command.
1141 .SP
1142 .BI "SVCCLAIM " service " " version
1143 The named
1144 .I service
1145 is now available, at the stated
1146 .IR version .
1147 .SP
1148 .BI "SVCRELEASE " service
1149 The named
1150 .I service
1151 is no longer available.
1152 .SP
1153 .BI "USER " tokens\fR...
1154 An administration client issued a notification using the
1155 .B NOTIFY
1156 command.
1157 .
1158 .\"--------------------------------------------------------------------------
1159 .SH "WARNINGS"
1160 .
1161 .\"* 40 Warning broadcasts (WARN codes)
1162 .\"+sep
1163 There are many possible warnings.  They are categorized according to
1164 their first tokens.
1165 .PP
1166 Many of these warnings report system errors.  These are reported as a
1167 pair of tokens, described below as
1168 .I ecode
1169 and
1170 .IR message .
1171 The
1172 .I ecode
1173 is a string of the form
1174 .BI E number
1175 giving the
1176 .BR errno (3)
1177 value of the error; the
1178 .I message
1179 is the `human-readable' form of the message, as reported by
1180 .BR strerror (3).
1181 .SS "ABORT warnings"
1182 These all indicate that the
1183 .B tripe
1184 server has become unable to continue.  If enabled, the server will dump
1185 core in its configuration directory.
1186 .SP
1187 .BI "ABORT repeated-select-errors"
1188 The main event loop is repeatedly failing.  If the server doesn't quit,
1189 it will probably waste all available CPU doing nothing.
1190 .SS "ADMIN warnings"
1191 These indicate a problem with the administration socket interface.
1192 .SP
1193 .BI "ADMIN accept-error " ecode " " message
1194 There was an error while attempting to accept a connection from a new
1195 client.
1196 .SP
1197 .BI "ADMIN client-write-error " ecode " " message
1198 There was an error sending data to a client.  The connection to the
1199 client has been closed.
1200 .SS "CHAL warnings"
1201 These indicate errors in challenges, either in the
1202 .B CHECKCHAL
1203 command or in greeting packets.
1204 .SP
1205 .B "CHAL impossible-challenge"
1206 The server hasn't issued any challenges yet.  Quite how anyone else
1207 thought he could make one up is hard to imagine.
1208 .SP
1209 .B "CHAL incorrect-tag"
1210 Challenge received contained the wrong authentication data.  It might be
1211 very stale, or a forgery.
1212 .SP
1213 .B "CHAL invalid-challenge"
1214 Challenge received was the wrong length.  We might have changed MAC
1215 algorithms since the challenge was issued, or it might just be rubbish.
1216 .SP
1217 .B "CHAL replay duplicated-sequence"
1218 Challenge received was a definite replay of an old challenge.  Someone's
1219 up to something!
1220 .SP
1221 .B "CHAL replay old-sequence"
1222 Challenge received was old, but maybe not actually a replay.  Try again.
1223 .SS "KEYMGMT warnings"
1224 These indicate a problem with the keyring files, or the keys stored in
1225 them.  The first token is either
1226 .B private-keyring
1227 or
1228 .B public-keyring
1229 (notated
1230 .IB which -keyring
1231 in the descriptions below) indicating which keyring file is problematic,
1232 and the second token is the filename of the keyring.  Frequently a key
1233 tag may be given next, preceded by the token
1234 .BR key .
1235 .SP
1236 .BI "KEYMGMT public-keyring " file " key " tag " algorithm-mismatch"
1237 A peer's public key doesn't request the same algorithms as our private
1238 key.
1239 .SP
1240 .BI "KEYMGMT " which "-keyring " file " key " tag " bad-tag-length " len
1241 The key attributes specify the length of MAC tag as
1242 .I len
1243 but this is an invalid value \(en either too large or not a multiple of
1244 eight.
1245 .SP
1246 .BI "KEYMGMT " which "-keyring " file " key " tag " bad-tag-length-string " str
1247 The key attributes contain
1248 .I str
1249 where a MAC tag length was expected.  The key was generated wrongly.
1250 .SP
1251 .BI "KEYMGMT private-keyring " file " key " tag " changed-group"
1252 The private keyring has been changed, but the new private key can't be
1253 used because it uses a different group for Diffie\(enHellman key
1254 exchange.
1255 .SP
1256 .BI "KEYMGMT " which "-keyring " file " io-error " ecode " " message
1257 A system error occurred while opening or reading the keyring file.
1258 .SP
1259 .BI "KEYMGMT " which "-keyring " file " key " tag " unknown-cipher " cipher
1260 The key specifies the use of an unknown symmetric encryption algorithm
1261 .IR cipher .
1262 Maybe the key was generated wrongly, or maybe the version of
1263 Catacomb installed is too old.
1264 .SP
1265 .BI "KEYMGMT " which "-keyring " file " key " tag " unknown-group-type " type
1266 The key specifies the use of a Diffie\(enHellman group of an unknown
1267 .IR type .
1268 Maybe the key was generated wrongly, or maybe the version of
1269 .BR tripe (8)
1270 is too old.
1271 .SP
1272 .BI "KEYMGMT " which "-keyring " file " key " tag " unknown-hash " hash
1273 The key specifies the use of an unknown hash function
1274 .IR hash .
1275 Maybe the key was generated wrongly, or maybe the version of Catacomb
1276 installed is too old.
1277 .SP
1278 .BI "KEYMGMT " which "-keyring " file " key " tag " unknown-mac " mac
1279 The key specifies the use of an unknown message authentication code
1280 .IR mac .
1281 Maybe the key was generated wrongly, or maybe the version of Catacomb
1282 installed is too old.
1283 .SP
1284 .BI "KEYMGMT " which "-keyring " file " key " tag " unknown-mgf-cipher " mgf
1285 The key specifies the use of an unknown symmetric encryption function
1286 .I mgf
1287 for mask generation.  Maybe the key was generated wrongly, or maybe the
1288 version of Catacomb installed is too old.
1289 .SP
1290 .BI "KEYMGMT " which "-keyring " file " key " tag " no-hmac-for-hash " hash
1291 No message authentication code was given explicitly, and there's no
1292 implementation of HMAC for the selected hash function
1293 .IR hash .
1294 .SP
1295 .BI "KEYMGMT " which "-keyring " file " key " tag " " alg " " name " no-key-size " hashsz
1296 The
1297 .I alg
1298 token is either
1299 .B cipher
1300 or
1301 .BR mac .
1302 The named algorithm requires more key material than the hash function
1303 can provide.  You must change either the hash function, or the cipher or
1304 MAC.
1305 .SP
1306 .BI "KEYMGMT " which "-keyring " file " key " tag " mgf " mgf " restrictive-key-schedule"
1307 The cipher selected for mask-generation is unsuitable because it can't
1308 accept arbitrary-sized keys.
1309 .SP
1310 .BI "KEYMGMT " which "-keyring " file " key-not-found " tag
1311 A key named
1312 .I tag
1313 couldn't be found in the keyring.
1314 .SP
1315 .BI "KEYMGMT " which "-keyring " file " line " line " " message
1316 The contents of the keyring file are invalid.  There may well be a bug
1317 in the
1318 .BR key (1)
1319 program.
1320 .SS "KX warnings"
1321 These indicate problems during key-exchange.  Many indicate either a bug
1322 in the server (either yours or the remote one), or some kind of attack
1323 in progress.  All name a
1324 .I peer
1325 as the second token: this is the peer the packet is apparently from,
1326 though it may have been sent by an attacker instead.
1327 .PP
1328 In the descriptions below,
1329 .I msgtoken
1330 is one of the tokens
1331 .BR pre-challenge ,
1332 .BR cookie ,
1333 .BR challenge ,
1334 .BR reply ,
1335 .BR switch-rq ,
1336 or
1337 .BR switch-ok .
1338 .SP
1339 .BI "KX " peer " algorithms-mismatch local-private-key " privtag " peer-public-key " pubtag
1340 The algorithms specified in the peer's public key
1341 .I pubtag
1342 don't match the ones described in the private key
1343 .IR privtag .
1344 .SP
1345 .BI "KX " peer " bad-expected-reply-log"
1346 The challenges
1347 .B tripe
1348 uses in its protocol contain a check value which proves that the
1349 challenge is honest.  This message indicates that the check value
1350 supplied is wrong: someone is attempting to use bogus challenges to
1351 persuade your
1352 .B tripe
1353 server to leak private key information.  No chance!
1354 .SP
1355 .BI "KX " peer " decrypt-failed reply\fR|\fBswitch-ok"
1356 A symmetrically-encrypted portion of a key-exchange message failed to
1357 decrypt.
1358 .SP
1359 .BI "KX " peer " invalid " msgtoken
1360 A key-exchange message was malformed.  This almost certainly indicates a
1361 bug somewhere.
1362 .SP
1363 .BI "KX " peer " incorrect cookie\fR|\fBswitch-rq\fR|\fBswitch-ok"
1364 A message didn't contain the right magic data.  This may be a replay of
1365 some old exchange, or random packets being sent in an attempt to waste
1366 CPU.
1367 .SP
1368 .BI "KX " peer " " which "-key-expired"
1369 The local private key or the peer's public key (distinguished by
1370 .IR which )
1371 has expired.  Either you or the peer's maintainer should have arranged
1372 for a replacement before now.
1373 .SP
1374 .BI "KX " peer " sending-cookie"
1375 We've received too many bogus pre-challenge messages.  Someone is trying
1376 to flood us with key-exchange messages and make us waste CPU on doing
1377 hard asymmetric crypto sums.
1378 .SP
1379 .BI "KX " peer " unexpected " msgtoken
1380 The message received wasn't appropriate for this stage of the key
1381 exchange process.  This may mean that one of our previous packets got
1382 lost.  For
1383 .BR pre-challenge ,
1384 it may simply mean that the peer has recently restarted.
1385 .SP
1386 .BI "KX " peer " unknown-challenge"
1387 The peer is asking for an answer to a challenge which we don't know
1388 about.  This may mean that we've been inundated with challenges from
1389 some malicious source
1390 .I who can read our messages
1391 and discarded the valid one.
1392 .SP
1393 .BI "KX " peer " unknown-message 0x" nn
1394 An unknown key-exchange message arrived.
1395 .SS "PEER warnings"
1396 These are largely concerned with management of peers and the low-level
1397 details of the network protocol.  The second token is usually the name of
1398 a peer, or
1399 .RB ` \- '
1400 if none is relevant.
1401 .SP
1402 .BI "PEER " peer " bad-packet no-type"
1403 An empty packet arrived.  This is very strange.
1404 .SP
1405 .BI "PEER " peer " bad-packet unknown-category 0x" nn
1406 The message category
1407 .I nn
1408 (in hex) isn't understood.  Probably a strange random packet from
1409 somewhere; could be an unlikely bug.
1410 .SP
1411 .BI "PEER " peer " bad-packet unknown-type 0x" nn
1412 The message type
1413 .I nn
1414 (in hex) isn't understood.  Probably a strange random packet from
1415 somewhere; could be an unlikely bug.
1416 .SP
1417 .BI "PEER " peer " corrupt-encrypted-ping"
1418 The peer sent a ping response which matches an outstanding ping, but its
1419 payload is wrong.  There's definitely a bug somewhere.
1420 .SP
1421 .BI "PEER " peer " corrupt-transport-ping"
1422 The peer (apparently) sent a ping response which matches an outstanding
1423 ping, but its payload is wrong.  Either there's a bug, or the bad guys
1424 are playing tricks on you.
1425 .SP
1426 .BI "PEER " peer " decrypt-failed"
1427 An encrypted IP packet failed to decrypt.  It may have been mangled in
1428 transit, or may be a very old packet from an expired previous session
1429 key.  There is usually a considerable overlap in the validity periods of
1430 successive session keys, so this shouldn't occur unless the key exchange
1431 takes ages or fails.
1432 .SP
1433 .BI "PEER " peer " malformed-encrypted-ping"
1434 The peer sent a ping response which is hopelessly invalid.  There's
1435 definitely a bug somewhere.
1436 .SP
1437 .BI "PEER " peer " malformed-transport-ping"
1438 The peer (apparently) sent a ping response which is hopelessly invalid.
1439 Either there's a bug, or the bad guys are playing tricks on you.
1440 .SP
1441 .BI "PEER " peer " packet-build-failed"
1442 There wasn't enough space in our buffer to put the packet we wanted to
1443 send.  Shouldn't happen.
1444 .SP
1445 .BI "PEER \- socket-read-error " ecode " " message
1446 An error occurred trying to read an incoming packet.
1447 .SP
1448 .BI "PEER " peer " socket-write-error " ecode " " message
1449 An error occurred attempting to send a network packet.  We lost that
1450 one.
1451 .SP
1452 .BI "PEER " peer " unexpected-encrypted-ping 0x" id
1453 The peer sent an encrypted ping response whose id doesn't match any
1454 outstanding ping.  Maybe it was delayed for longer than the server was
1455 willing to wait, or maybe the peer has gone mad.
1456 .SP
1457 .BI "PEER \- unexpected-source " address\fR...
1458 A packet arrived from
1459 .I address
1460 (a network address \(en see above), but no peer is known at that
1461 address.  This may indicate a misconfiguration, or simply be a result of
1462 one end of a connection being set up before the other.
1463 .SP
1464 .BI "PEER " peer " unexpected-transport-ping 0x" id
1465 The peer (apparently) sent a transport ping response whose id doesn't
1466 match any outstanding ping.  Maybe it was delayed for longer than the
1467 server was willing to wait, or maybe the peer has gone mad; or maybe
1468 there are bad people trying to confuse you.
1469 .SS "SERVER warnings"
1470 These indicate problems concerning the server process as a whole.
1471 .SP
1472 .BI "SERVER ignore signal " name
1473 A signal arrived, but the server ignored it.  Currently this happens for
1474 .B SIGHUP
1475 because that's a popular way of telling daemons to re-read their
1476 configuration files.  Since
1477 .B tripe
1478 re-reads its keyrings automatically and has no other configuration
1479 files, it's not relevant, but it seemed better to ignore the signal than
1480 let the server die.
1481 .SP
1482 .BI "SERVER quit signal " \fR[\fInn\fR|\fIname\fR]
1483 A signal arrived and
1484 .B tripe
1485 is going to quit.
1486 .SP
1487 .BI "SERVER quit admin-request"
1488 A client of the administration interface issued a
1489 .B QUIT
1490 command.
1491 .SP
1492 .BI "SERVER quit foreground-eof"
1493 The server is running in foreground mode (the
1494 .B \-F
1495 option), and encountered end-of-file on standard input.
1496 .SP
1497 .BI "SERVER select-error " ecode " " message
1498 An error occurred in the server's main event loop.  This is bad: if it
1499 happens too many times, the server will abort.
1500 .SS "SYMM warnings"
1501 These are concerned with the symmetric encryption and decryption
1502 process.
1503 .SP
1504 .BI "SYMM replay old-sequence"
1505 A packet was received with an old sequence number.  It may just have
1506 been delayed or duplicated, or it may have been an attempt at a replay
1507 attack.
1508 .SP
1509 .BI "SYMM replay duplicated-sequence"
1510 A packet was received with a sequence number we've definitely seen
1511 before.  It may be an accidental duplication because the 'net is like
1512 that, or a deliberate attempt at a replay.
1513 .SS "TUN warnings"
1514 These concern the workings of the system-specific tunnel driver.  The
1515 second token is the name of the tunnel interface in question, or
1516 .RB ` \- '
1517 if none.
1518 .SP
1519 .BI "TUN \- bsd no-tunnel-devices"
1520 The driver couldn't find an available tunnel device.  Maybe if you
1521 create some more
1522 .BI /dev/tun nn
1523 files, it will work.
1524 .SP
1525 .BI "TUN \- " tun-name " open-error " device " " ecode " " message
1526 An attempt to open the tunnel device file
1527 .I device
1528 failed.
1529 .SP
1530 .BI "TUN \- linux config-error " ecode " " message
1531 Configuring the Linux TUN/TAP interface failed.
1532 .SP
1533 .BI "TUN " ifname " " tun-name " read-error " ecode " " message
1534 Reading from the tunnel device failed.
1535 .SP
1536 .BI "TUN " ifname " " tun-name " write-error " ecode " " message
1537 Writing from the tunnel device failed.
1538 .SP
1539 .BI "TUN " ifname " slip bad-escape"
1540 The SLIP driver encountered a escaped byte it wasn't expecting to see.
1541 The erroneous packet will be ignored.
1542 .SP
1543 .BI "TUN " ifname " slip eof"
1544 The SLIP driver encountered end-of-file on its input descriptor.
1545 Pending data is discarded, and no attempt is made to read any more data
1546 from that interface ever.
1547 .SP
1548 .BI "TUN " ifname " slip escape-end"
1549 The SLIP driver encountered an escaped `end' marker.  This probably
1550 means that someone's been sending it junk.  The erroneous packet is
1551 discarded, and we hope that we've rediscovered synchronization.
1552 .SP
1553 .BI "TUN \- slip fork-error " ecode " " message
1554 The SLIP driver encountered an error forking a child process while
1555 allocating a new dynamic interface.
1556 .SP
1557 .BI "TUN \- slip no-slip-interfaces"
1558 The driver ran out of static SLIP interfaces.  Either preallocate more,
1559 or use dynamic SLIP interface allocation.
1560 .SP
1561 .BI "TUN " ifname " slip overflow"
1562 The SLIP driver gave up reading a packet because it got too large.
1563 .SP
1564 .BI "TUN \- slip pipe-error " ecode " " message
1565 The SLIP driver encountered an error creating pipes while allocating a
1566 new dynamic interface.
1567 .SP
1568 .BI "TUN \- slip read-ifname-failed " ecode " " message
1569 The SLIP driver encountered an error reading the name of a dynamically
1570 allocated interface.  Maybe the allocation script is broken.
1571 .SP
1572 .BI "TUN \- unet config-error " ecode " " message
1573 Configuring the Linux Unet interface failed.  Unet is obsolete and
1574 shouldn't be used any more.
1575 .SP
1576 .BI "TUN \- unet getinfo-error " ecode " " message
1577 Reading information about the Unet interface failed.  Unet is obsolete
1578 and shouldn't be used any more.
1579 .SS "USER warnings"
1580 These are issued by administration clients using the
1581 .B WARN
1582 command.
1583 .SP
1584 .BI "USER " tokens\fR...
1585 An administration client issued a warning.
1586 .\"-sep
1587 .
1588 .\"--------------------------------------------------------------------------
1589 .SH "SUMMARY"
1590 .
1591 .SS "Command responses"
1592 .nf
1593 .BI "BGDETACH " tag
1594 .BI "BGFAIL " tag " " tokens \fR...
1595 .BI "BGINFO " tag " " tokens \fR...
1596 .BI "BGOK " tag
1597 .BI "FAIL " tokens \fR...
1598 .BI "INFO " tokens \fR...
1599 .B OK
1600 .fi
1601 .\"= summary
1602 .
1603 .\"--------------------------------------------------------------------------
1604 .SH "SEE ALSO"
1605 .
1606 .BR tripectl (1),
1607 .BR tripe (8).
1608 .PP
1609 .IR "The Trivial IP Encryption Protocol" .
1610 .
1611 .\"--------------------------------------------------------------------------
1612 .SH "AUTHOR"
1613 .
1614 Mark Wooding, <mdw@distorted.org.uk>
1615 .
1616 .\"----- That's all, folks --------------------------------------------------