chiark / gitweb /
server: Use the new kdata system.
[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 "\-tunnel " tunnel
368 Use the named tunnel driver, rather than the default.
369 .\"-opts
370 .RE
371 .SP
372 .BI "ADDR " peer
373 Emits an
374 .B INFO
375 line reporting the IP address and port number stored for
376 .IR peer .
377 .SP
378 .BI "ALGS \fR[" peer \fR]
379 Emits information about the cryptographic algorithms in use, in
380 key-value form.  If a
381 .I peer
382 is given, then describe the algorithms used in the association with that
383 peer; otherwise describe the default algorithms.
384 .RS
385 .PP
386 The keys are as follows.
387 .TP
388 .B kx-group
389 Type of key-exchange group in use, currently either
390 .B ec
391 or
392 .BR prime .
393 .TP
394 .B kx-group-order-bits
395 Length of the group order, in bits.  This gives an approximate measure
396 of the group strength.
397 .TP
398 .B kx-group-elt-bits
399 Length of a group element, in bits.  This may be useful when analyzing
400 protocol traces.
401 .TP
402 .B hash
403 The hash function in use, e.g.,
404 .BR sha256 .
405 .TP
406 .B mgf
407 The mask-generating function in use, e.g.,
408 .BR whirlpool-mgf .
409 .TP
410 .B hashsz
411 The size of the hash function's output, in octets.
412 .TP
413 .B cipher
414 The name of the bulk data cipher in use, e.g.,
415 .BR blowfish-cbc .
416 .TP
417 .B cipher-keysz
418 The length of key used by the bulk data cipher, in octets.
419 .TP
420 .B cipher-blksz
421 The block size of the bulk data cipher, or zero if it's not based on a
422 block cipher.
423 .TP
424 .B cipher-data-limit
425 The maximum amount of data to be encrypted using a single key.  (A new
426 key exchange is instigated well before the limit is reached, in order to
427 allow for a seamless changeover of keys.)
428 .TP
429 .B mac
430 The message authentication algorithm in use, e.g.,
431 .BR ripemd160-hmac ..
432 .TP
433 .B mac-keysz
434 The length of the key used by the message authentication algorithm, in
435 octets.
436 .TP
437 .B mac-tagsz
438 The length of the message authentication tag, in octets.
439 .PP
440 The various sizes are useful, for example, when computing the MTU for a
441 tunnel interface.  If
442 .I MTU
443 is the MTU of the path to the peer, then the tunnel MTU should be
444 .IP
445 .I MTU
446 \- 33 \-
447 .I cipher-blksz
448 \-
449 .I mac-tagsz
450 .PP
451 allowing 20 bytes of IP header, 8 bytes of UDP header, a packet type
452 octet, a four-octet sequence number, an IV, and a MAC tag.
453 .RE
454 .SP
455 .BI "BGCANCEL " tag
456 Cancels the background job with the named
457 .IR tag .
458 .SP
459 .BI "CHECKCHAL " challenge
460 Verifies a challenge as being one earlier issued by
461 .B GETCHAL
462 and not previously either passed to
463 .B CHECKCHAL
464 or in a greeting message.
465 .SP
466 .B "DAEMON"
467 Causes the server to disassociate itself from its terminal and become a
468 background task.  This only works once.  A warning is issued.
469 .SP
470 .BI "EPING \fR[" options "\fR] " peer
471 Sends an encrypted ping to the peer, and expects an encrypted response.
472 This checks that the peer is running (and not being impersonated), and
473 that it can encrypt and decrypt packets correctly.  Options and
474 responses are the same as for the
475 .B PING
476 command.
477 .SP
478 .BI "FORCEKX " peer
479 Requests the server to begin a new key exchange with
480 .I peer
481 immediately.
482 .SP
483 .B "GETCHAL"
484 Requests a challenge.  The challenge is returned in an
485 .B INFO
486 line, as a base64-encoded string.  See
487 .BR CHECKCHAL .
488 .SP
489 .BI "GREET " peer " " challenge
490 Sends a greeting packet containing the
491 .I challenge
492 (base-64 encoded) to the named
493 .IR peer .
494 The expectation is that this will cause the peer to recognize us and
495 begin a key-exchange.
496 .SP
497 .B "HELP"
498 Causes the server to emit an
499 .B INFO
500 line for each command it supports.  Each line lists the command name,
501 followed by the names of the arguments.  This may be helpful as a memory
502 aid for interactive use, or for program clients probing for features.
503 .SP
504 .BI "IFNAME " peer
505 Emits an
506 .B INFO
507 line containing the name of the network interface used to collect IP
508 packets which are to be encrypted and sent to
509 .IR peer .
510 Used by configuration scripts so that they can set up routing tables
511 appropriately after adding new peers.
512 .SP
513 .B "JOBS"
514 Emits an
515 .B INFO
516 line giving the tag for each outstanding background job.
517 .SP
518 .BI "KILL " peer
519 Causes the server to forget all about
520 .IR peer .
521 All keys are destroyed, and no more packets are sent.  No notification
522 is sent to the peer: if it's important that the peer be notified, you
523 must think of a way to do that yourself.
524 .SP
525 .B "LIST"
526 For each currently-known peer, an
527 .B INFO
528 line is written containing the peer's name, as given to
529 .BR ADD .
530 .SP
531 .BI "NOTIFY " tokens\fR...
532 Issues a
533 .B USER
534 notification to all interested administration clients.
535 .SP
536 .BI "PEERINFO " peer
537 Returns information about a peer, in key-value form.  The following keys
538 are returned.
539 .RS
540 .TP
541 .B tunnel
542 The tunnel driver used for this peer.
543 .TP
544 .B keepalive
545 The keepalive interval, in seconds, or zero if no keepalives are to be
546 sent.
547 .TP
548 .B key
549 The key tag being used for the peer, as passed to the
550 .B ADD
551 command.  (You don't get a full key-id, since that might change while
552 the daemon's running.)
553 .RE
554 .SP
555 .BI "PING \fR[" options "\fR] " peer
556 Send a transport-level ping to the peer.  The ping and its response are
557 not encrypted or authenticated.  This command, possibly in conjunction
558 with tracing, is useful for ensuring that UDP packets are actually
559 flowing in both directions.  See also the
560 .B EPING
561 command.
562 .IP
563 An
564 .B INFO
565 line is printed describing the outcome:
566 .RS
567 .TP
568 .BI "ping-ok " millis
569 A response was received
570 .I millis
571 after the ping was sent.
572 .TP
573 .BI "ping-timeout"
574 No response was received within the time allowed.
575 .TP
576 .BI "ping-peer-died"
577 The peer was killed (probably by another admin connection) before a
578 response was received.
579 .RE
580 .IP
581 Options recognized for this command are:
582 .RS
583 .\"+opts
584 .TP
585 .BI "\-background " tag
586 Run the command in the background, using the given
587 .IR tag .
588 .TP
589 .BI "\-timeout " time
590 Wait for
591 .I time
592 seconds before giving up on a response.  The default is 5 seconds.  The
593 .I time
594 is expressed as a nonnegative integer followed optionally by
595 .BR d ,
596 .BR h ,
597 .BR m ,
598 or
599 .BR s
600 for days, hours, minutes, or seconds respectively; if no suffix is
601 given, seconds are assumed.
602 .\"-opts
603 .RE
604 .SP
605 .B "PORT"
606 Emits an
607 .B INFO
608 line containing just the number of the UDP port used by the
609 .B tripe
610 server.  If you've allowed your server to allocate a port dynamically,
611 this is how to find out which one it chose.
612 .SP
613 .B "RELOAD"
614 Instructs the server to recheck its keyring files.  The server checks
615 these periodically anyway but it may be necessary to force a recheck,
616 for example after adding a new peer key.
617 .SP
618 .B "QUIT"
619 Instructs the server to exit immediately.  A warning is sent.
620 .SP
621 .B "SERVINFO"
622 Returns information about the server, in the form of key-value pairs.
623 The following keys are used.
624 .RS
625 .TP
626 .B implementation
627 A keyword naming the implementation of the
628 .BR tripe (8)
629 server.  The current implementation is called
630 .BR edgeware-tripe .
631 .TP
632 .B version
633 The server's version number, as reported by
634 .BR VERSION .
635 .TP
636 .B daemon
637 Either
638 .B t
639 or
640 .BR nil ,
641 if the server has or hasn't (respectively) become a daemon.
642 .RE
643 .SP
644 .BI "SETIFNAME " peer " " new-name
645 Informs the server that the
646 .IR peer 's
647 tunnel-interface name has been changed to
648 .IR new-name .
649 This is useful if firewalling decisions are made based on interface
650 names: a setup script for a particular peer can change the name, and
651 then update the server's records so that they're accurate.
652 .SP
653 .BI "SVCCLAIM " service " " version
654 Attempts to claim the named
655 .IR service ,
656 offering the given
657 .IR version .
658 The claim is successful if the service is currently unclaimed, or if
659 a version earlier than
660 .I version
661 is provided; otherwise the command fails with the error
662 .BR "service-exists" .
663 .SP
664 .BI "SVCENSURE " service " \fR[" version \fR]
665 Ensure that
666 .I service
667 is provided, and (if specified) to at least the given
668 .IR version .
669 An error is reported if these conditions are not met; otherwise the
670 command succeeds silently.
671 .SP
672 .BI "SVCFAIL " jobid " " tokens \fR...
673 Send a
674 .B FAIL
675 (or
676 .BR BGFAIL )
677 response to the service job with the given
678 .IR jobid ,
679 passing the
680 .I tokens
681 as the reason for failure.  The job is closed.
682 .SP
683 .BI "SVCINFO " jobid " " tokens \fR...
684 Send an
685 .B INFO
686 (or
687 .BR BGINFO )
688 response to the service job with the given
689 .IR jobid ,
690 passing the
691 .I tokens
692 as the info message.  The job remains open.
693 .SP
694 .B "SVCLIST"
695 Output a line of the form
696 .RS
697 .IP
698 .B INFO
699 .I service
700 .I version
701 .PP
702 for each service currently provided.
703 .RE
704 .SP
705 .BI "SVCOK " jobid
706 Send an
707 .B OK
708 (or
709 .BR BGINFO )
710 response to the service job with the given
711 .IR jobid .
712 The job is closed.
713 .SP
714 .BI "SVCQUERY " service
715 Emits a number of
716 .B info
717 lines in key-value format, describing the named
718 .IR service.
719 The following keys are used.
720 .RS
721 .TP
722 .B name
723 The service's name.
724 .TP
725 .B version
726 The service's version string.
727 .RE
728 .SP
729 .BI "SVCRELEASE " service
730 Announce that the client no longer wishes to provide the named
731 .IR service .
732 .SP
733 .BI "SVCSUBMIT \fR[" options "\fR] " service " " command " " arguments \fR...
734 Submit a job to the provider of the given
735 .IR service ,
736 passing it the named
737 .I command
738 and the given
739 .IR arguments .
740 The following options are accepted.
741 .RS
742 .\"+opts
743 .TP
744 .BI "\-background " tag
745 Run the command in the background, using the given
746 .IR tag .
747 .TP
748 .BI "\-version " version
749 Ensure that at least the given
750 .I version
751 of the service is available before submitting the job.
752 .RE
753 .\"-opts
754 .SP
755 .BI "STATS " peer
756 Emits a number of
757 .B INFO
758 lines, each containing one or more statistics in the form
759 .IB name = value \fR.
760 The statistics-gathering is experimental and subject to change.
761 .SP
762 .BR "TRACE " [\fIoptions\fP]
763 Selects trace outputs: see
764 .B "Trace lists"
765 above.  Message types provided are:
766 .RS
767 .PP
768 Currently, the following tracing options are supported:
769 .TP
770 .B t
771 Tunnel events: reception of packets to be encrypted, and injection of
772 successfully-decrypted packets.
773 .TP
774 .B r
775 Peer management events: creation and destruction of peer attachments,
776 and arrival of messages.
777 .TP
778 .B a
779 Administration interface: acceptance of new connections, and handling of
780 the backgroud name-resolution required by the
781 .B ADD
782 command.
783 .TP
784 .B s
785 Handling of symmetric keysets: creation and expiry of keysets, and
786 encryption and decryption of messages.
787 .TP
788 .B x
789 Key exchange: reception, parsing and emission of key exchange messages.
790 .TP
791 .B m
792 Key management: loading keys and checking for file modifications.
793 .TP
794 .B l
795 Display information about challenge issuing and verification.
796 .TP
797 .B p
798 Display contents of packets sent and received by the tunnel and/or peer
799 modules.
800 .TP
801 .B c
802 Display inputs, outputs and intermediate results of cryptographic
803 operations.  This includes plaintext and key material.  Use with
804 caution.
805 .TP
806 .B A
807 All of the above.
808 .PP
809 Note that the
810 .B p
811 (packet contents)
812 and
813 .B c
814 (crypto details)
815 outputs provide extra detail for other outputs.  Specifying
816 .B p
817 without
818 .BR r
819 or
820 .B t
821 isn't useful; neither is specifying
822 .B c
823 without one of
824 .BR s ,
825 .BR l ,
826 .B x
827 or
828 .BR m .
829 .RE
830 .SP
831 .B "TUNNELS"
832 For each available tunnel driver, an
833 .B INFO
834 line is printed giving its name.
835 .SP
836 .B "VERSION"
837 Causes the server to emit an
838 .B INFO
839 line stating its software version, as two tokens: the server name, and
840 its version string.  The server name
841 .B tripe
842 is reserved to the Straylight/Edgeware implementation.
843 .SP
844 .BR "WATCH " [\fIoptions\fP]
845 Enables or disables asynchronous broadcasts
846 .IR "for the current connection only" .
847 See
848 .B "Trace lists"
849 above.  The default watch state for the connection the server opens
850 automatically on stdin/stdout is to show warnings and trace messages;
851 other connections show no asynchronous broadcast messages.  (This is
852 done in order to guarantee that a program reading the server's stdout
853 does not miss any warnings.)
854 .RS
855 .PP
856 Message types provided are:
857 .TP
858 .B t
859 .B TRACE
860 messages.
861 .TP
862 .B n
863 .B NOTE
864 messages.
865 .TP
866 .B w
867 .B WARN
868 messages.
869 .TP
870 .B A
871 All of the above.
872 .RE
873 .SP
874 .BI "WARN " tokens\fR...
875 Issues a
876 .B USER
877 warning to all interested administration clients.
878 .
879 .\"--------------------------------------------------------------------------
880 .SH "ERROR MESSAGES"
881 .
882 .\"* 20 Error messages (FAIL codes)
883 The following
884 .B FAIL
885 (or
886 .BR BGFAIL )
887 messages are sent to clients as a result of errors during command
888 processing.
889 .SP
890 .BI "already-daemon"
891 (For
892 .BR DAEMON .)
893 The
894 .B tripe
895 server is already running as a daemon.
896 .SP
897 .BI "bad-addr-syntax " message
898 (For commands accepting socket addresses.)  The address couldn't be
899 understood.
900 .SP
901 .BI "bad-syntax " cmd " " message
902 (For any command.)  The command couldn't be understood: e.g., the number
903 of arguments was wrong.
904 .SP
905 .BI "bad-time-spec " token
906 The
907 .I token
908 is not a valid time interval specification.  Acceptable time
909 specifications are nonnegative integers followed optionally by
910 .BR d ,
911 .BR h ,
912 .BR m ,
913 or
914 .BR s ,
915 for days, hours, minutes, or seconds, respectively.
916 .SP
917 .BI "bad-trace-option " char
918 (For
919 .BR TRACE .)
920 An unknown trace option was requested.
921 .SP
922 .BI "bad-watch-option " char
923 (For
924 .BR WATCH .)
925 An unknown watch option was requested.
926 .SP
927 .BI "daemon-error " ecode " " message
928 (For
929 .BR DAEMON .)
930 An error occurred during the attempt to become a daemon, as reported by
931 .IR message .
932 .SP
933 .BI "invalid-port " number
934 (For
935 .BR ADD .)
936 The given port number is out of range.
937 .SP
938 .BI "not-service-provider " service
939 (For
940 .BR SVCRELEASE .)
941 The invoking client is not the current provider of the named
942 .IR service ,
943 and is therefore not allowed to release it.
944 .SP
945 .BI "peer-create-fail " peer
946 (For
947 .BR ADD .)
948 Adding
949 .I peer
950 failed for some reason.  A warning should have been emitted explaining
951 why.
952 .SP
953 .BI "peer-addr-exists " address\fR...
954 (For
955 .BR ADD .)
956 There is already a peer with the given
957 .IR address .
958 .SP
959 .BI "peer-exists " peer
960 (For
961 .BR ADD .)
962 There is already a peer named
963 .IR peer .
964 .SP
965 .B "ping-send-failed"
966 The attempt to send a ping packet failed, probably due to lack of
967 encryption keys.
968 .SP
969 .BI "resolve-error " hostname
970 (For
971 .BR ADD .)
972 The DNS name
973 .I hostname
974 could not be resolved.
975 .SP
976 .BI "resolver-timeout " hostname
977 (For
978 .BR ADD .)
979 The DNS name
980 .I hostname
981 took too long to resolve.
982 .SP
983 .BI "service-exists " service " " version
984 (For
985 .BR SVCCLAIM .)
986 Another client is already providing the stated
987 .I version
988 of the
989 .IR service .
990 .SP
991 .BI "service-too-old " service " " version
992 (For
993 .B SVCENSURE
994 and
995 .BR SVCSUBMIT .)
996 Only the given
997 .I version
998 of the requested
999 .I service
1000 is available, which does not meet the stated requirements.
1001 .SP
1002 .BI "tag-exists " tag
1003 (For long-running commands.)  The named
1004 .I tag
1005 is already the tag of an outstanding job.
1006 .SP
1007 .BI "unknown-command " token
1008 The command
1009 .I token
1010 was not recognized.
1011 .SP
1012 .BI "unknown-jobid " jobid
1013 (For
1014 .BR SVCOK ,
1015 .BR SVCFAIL ,
1016 and
1017 .BR SVCINFO .)
1018 The token
1019 .I jobid
1020 is not recognized as identifying an outstanding job.  It may have just
1021 been cancelled.
1022 .SP
1023 .BI "unknown-peer " name
1024 (For
1025 .BR ADDR ,
1026 .BR IFNAME ,
1027 .BR KILL ,
1028 .BR SETIFNAME ,
1029 and
1030 .BR STATS .)
1031 There is no peer called
1032 .IR name .
1033 .SP
1034 .BI "unknown-port " port
1035 (For
1036 .BR ADD .)
1037 The port name
1038 .I port
1039 couldn't be found in
1040 .BR /etc/services .
1041 .TP
1042 .BI "unknown-service " service
1043 (For
1044 .BR SVCENSURE ,
1045 .BR SVCQUERY ,
1046 .BR SVCRELEASE ,
1047 and
1048 .BR SVCSUBMIT .)
1049 The token
1050 .I service
1051 is not recognized as the name of a client-provided service.
1052 .TP
1053 .BI "unknown-tag " tag
1054 (For
1055 .BR BGCANCEL .)
1056 The given
1057 .I tag
1058 is not the tag for any outstanding background job.  It may have just
1059 finished.
1060 .
1061 .\"--------------------------------------------------------------------------
1062 .SH "NOTIFICATIONS"
1063 .
1064 .\"* 30 Notification broadcasts (NOTE codes)
1065 The following notifications are sent to clients who request them.
1066 .SP
1067 .BI "ADD " peer " " ifname " " address \fR...
1068 A new peer has been added.  The peer's name is
1069 .IR peer ,
1070 its tunnel is network interface
1071 .IR ifname ,
1072 and its network address is
1073 .IR address .
1074 .SP
1075 .BI "DAEMON"
1076 The server has forked off into the sunset and become a daemon.
1077 .SP
1078 .BI "GREET " challenge " " address \fR...
1079 A valid greeting was received, with the given challenge (exactly as it
1080 was returned by
1081 .B GETCHAL
1082 earlier).
1083 .SP
1084 .BI "KILL " peer
1085 The peer
1086 .I peer
1087 has been killed.
1088 .SP
1089 .BI "KXDONE " peer
1090 Key exchange with
1091 .I peer
1092 finished successfully.
1093 .SP
1094 .BI "KXSTART " peer
1095 Key exchange with
1096 .I peer
1097 has begun or restarted.  If key exchange keeps failing, this message
1098 will be repeated periodically.
1099 .SP
1100 .BI "NEWADDR " peer " " address
1101 The given mobile
1102 .IR peer 's
1103 IP address has been changed to
1104 .IR address .
1105 .SP
1106 .BI "NEWIFNAME " peer " " old-name " " new-name
1107 The given
1108 .IR peer 's
1109 tunnel interface name has been changed from
1110 .I old-name
1111 to
1112 .IR new-name ,
1113 as a result of a
1114 .B SETIFNAME
1115 command.
1116 .SP
1117 .BI "SVCCLAIM " service " " version
1118 The named
1119 .I service
1120 is now available, at the stated
1121 .IR version .
1122 .SP
1123 .BI "SVCRELEASE " service
1124 The named
1125 .I service
1126 is no longer available.
1127 .SP
1128 .BI "USER " tokens\fR...
1129 An administration client issued a notification using the
1130 .B NOTIFY
1131 command.
1132 .
1133 .\"--------------------------------------------------------------------------
1134 .SH "WARNINGS"
1135 .
1136 .\"* 40 Warning broadcasts (WARN codes)
1137 .\"+sep
1138 There are many possible warnings.  They are categorized according to
1139 their first tokens.
1140 .PP
1141 Many of these warnings report system errors.  These are reported as a
1142 pair of tokens, described below as
1143 .I ecode
1144 and
1145 .IR message .
1146 The
1147 .I ecode
1148 is a string of the form
1149 .BI E number
1150 giving the
1151 .BR errno (3)
1152 value of the error; the
1153 .I message
1154 is the `human-readable' form of the message, as reported by
1155 .BR strerror (3).
1156 .SS "ABORT warnings"
1157 These all indicate that the
1158 .B tripe
1159 server has become unable to continue.  If enabled, the server will dump
1160 core in its configuration directory.
1161 .SP
1162 .BI "ABORT repeated-select-errors"
1163 The main event loop is repeatedly failing.  If the server doesn't quit,
1164 it will probably waste all available CPU doing nothing.
1165 .SS "ADMIN warnings"
1166 These indicate a problem with the administration socket interface.
1167 .SP
1168 .BI "ADMIN accept-error " ecode " " message
1169 There was an error while attempting to accept a connection from a new
1170 client.
1171 .SP
1172 .BI "ADMIN client-write-error " ecode " " message
1173 There was an error sending data to a client.  The connection to the
1174 client has been closed.
1175 .SS "CHAL warnings"
1176 These indicate errors in challenges, either in the
1177 .B CHECKCHAL
1178 command or in greeting packets.
1179 .SP
1180 .B "CHAL impossible-challenge"
1181 The server hasn't issued any challenges yet.  Quite how anyone else
1182 thought he could make one up is hard to imagine.
1183 .SP
1184 .B "CHAL incorrect-tag"
1185 Challenge received contained the wrong authentication data.  It might be
1186 very stale, or a forgery.
1187 .SP
1188 .B "CHAL invalid-challenge"
1189 Challenge received was the wrong length.  We might have changed MAC
1190 algorithms since the challenge was issued, or it might just be rubbish.
1191 .SP
1192 .B "CHAL replay duplicated-sequence"
1193 Challenge received was a definite replay of an old challenge.  Someone's
1194 up to something!
1195 .SP
1196 .B "CHAL replay old-sequence"
1197 Challenge received was old, but maybe not actually a replay.  Try again.
1198 .SS "KEYMGMT warnings"
1199 These indicate a problem with the keyring files, or the keys stored in
1200 them.  The first token is either
1201 .B private-keyring
1202 or
1203 .B public-keyring
1204 (notated
1205 .IB which -keyring
1206 in the descriptions below) indicating which keyring file is problematic,
1207 and the second token is the filename of the keyring.  Frequently a key
1208 tag may be given next, preceded by the token
1209 .BR key .
1210 .SP
1211 .BI "KEYMGMT public-keyring " file " key " tag " algorithm-mismatch"
1212 A peer's public key doesn't request the same algorithms as our private
1213 key.
1214 .SP
1215 .BI "KEYMGMT " which "-keyring " file " key " tag " bad-tag-length " len
1216 The key attributes specify the length of MAC tag as
1217 .I len
1218 but this is an invalid value \(en either too large or not a multiple of
1219 eight.
1220 .SP
1221 .BI "KEYMGMT " which "-keyring " file " key " tag " bad-tag-length-string " str
1222 The key attributes contain
1223 .I str
1224 where a MAC tag length was expected.  The key was generated wrongly.
1225 .SP
1226 .BI "KEYMGMT private-keyring " file " key " tag " changed-group"
1227 The private keyring has been changed, but the new private key can't be
1228 used because it uses a different group for Diffie\(enHellman key
1229 exchange.
1230 .SP
1231 .BI "KEYMGMT " which "-keyring " file " io-error " ecode " " message
1232 A system error occurred while opening or reading the keyring file.
1233 .SP
1234 .BI "KEYMGMT " which "-keyring " file " key " tag " unknown-cipher " cipher
1235 The key specifies the use of an unknown symmetric encryption algorithm
1236 .IR cipher .
1237 Maybe the key was generated wrongly, or maybe the version of
1238 Catacomb installed is too old.
1239 .SP
1240 .BI "KEYMGMT " which "-keyring " file " key " tag " unknown-group-type " type
1241 The key specifies the use of a Diffie\(enHellman group of an unknown
1242 .IR type .
1243 Maybe the key was generated wrongly, or maybe the version of
1244 .BR tripe (8)
1245 is too old.
1246 .SP
1247 .BI "KEYMGMT " which "-keyring " file " key " tag " unknown-hash " hash
1248 The key specifies the use of an unknown hash function
1249 .IR hash .
1250 Maybe the key was generated wrongly, or maybe the version of Catacomb
1251 installed is too old.
1252 .SP
1253 .BI "KEYMGMT " which "-keyring " file " key " tag " unknown-mac " mac
1254 The key specifies the use of an unknown message authentication code
1255 .IR mac .
1256 Maybe the key was generated wrongly, or maybe the version of Catacomb
1257 installed is too old.
1258 .SP
1259 .BI "KEYMGMT " which "-keyring " file " key " tag " unknown-mgf-cipher " mgf
1260 The key specifies the use of an unknown symmetric encryption function
1261 .I mgf
1262 for mask generation.  Maybe the key was generated wrongly, or maybe the
1263 version of Catacomb installed is too old.
1264 .SP
1265 .BI "KEYMGMT " which "-keyring " file " key " tag " no-hmac-for-hash " hash
1266 No message authentication code was given explicitly, and there's no
1267 implementation of HMAC for the selected hash function
1268 .IR hash .
1269 .SP
1270 .BI "KEYMGMT " which "-keyring " file " key " tag " " alg " " name " no-key-size " hashsz
1271 The
1272 .I alg
1273 token is either
1274 .B cipher
1275 or
1276 .BR mac .
1277 The named algorithm requires more key material than the hash function
1278 can provide.  You must change either the hash function, or the cipher or
1279 MAC.
1280 .SP
1281 .BI "KEYMGMT " which "-keyring " file " key " tag " mgf " mgf " restrictive-key-schedule"
1282 The cipher selected for mask-generation is unsuitable because it can't
1283 accept arbitrary-sized keys.
1284 .SP
1285 .BI "KEYMGMT " which "-keyring " file " key-not-found " tag
1286 A key named
1287 .I tag
1288 couldn't be found in the keyring.
1289 .SP
1290 .BI "KEYMGMT " which "-keyring " file " line " line " " message
1291 The contents of the keyring file are invalid.  There may well be a bug
1292 in the
1293 .BR key (1)
1294 program.
1295 .SS "KX warnings"
1296 These indicate problems during key-exchange.  Many indicate either a bug
1297 in the server (either yours or the remote one), or some kind of attack
1298 in progress.  All name a
1299 .I peer
1300 as the second token: this is the peer the packet is apparently from,
1301 though it may have been sent by an attacker instead.
1302 .PP
1303 In the descriptions below,
1304 .I msgtoken
1305 is one of the tokens
1306 .BR pre-challenge ,
1307 .BR cookie ,
1308 .BR challenge ,
1309 .BR reply ,
1310 .BR switch-rq ,
1311 or
1312 .BR switch-ok .
1313 .SP
1314 .BI "KX " peer " algorithms-mismatch local-private-key " privtag " peer-public-key " pubtag
1315 The algorithms specified in the peer's public key
1316 .I pubtag
1317 don't match the ones described in the private key
1318 .IR privtag .
1319 .SP
1320 .BI "KX " peer " bad-expected-reply-log"
1321 The challenges
1322 .B tripe
1323 uses in its protocol contain a check value which proves that the
1324 challenge is honest.  This message indicates that the check value
1325 supplied is wrong: someone is attempting to use bogus challenges to
1326 persuade your
1327 .B tripe
1328 server to leak private key information.  No chance!
1329 .SP
1330 .BI "KX " peer " decrypt-failed reply\fR|\fBswitch-ok"
1331 A symmetrically-encrypted portion of a key-exchange message failed to
1332 decrypt.
1333 .SP
1334 .BI "KX " peer " invalid " msgtoken
1335 A key-exchange message was malformed.  This almost certainly indicates a
1336 bug somewhere.
1337 .SP
1338 .BI "KX " peer " incorrect cookie\fR|\fBswitch-rq\fR|\fBswitch-ok"
1339 A message didn't contain the right magic data.  This may be a replay of
1340 some old exchange, or random packets being sent in an attempt to waste
1341 CPU.
1342 .SP
1343 .BI "KX " peer " " which "-key-expired"
1344 The local private key or the peer's public key (distinguished by
1345 .IR which )
1346 has expired.  Either you or the peer's maintainer should have arranged
1347 for a replacement before now.
1348 .SP
1349 .BI "KX " peer " sending-cookie"
1350 We've received too many bogus pre-challenge messages.  Someone is trying
1351 to flood us with key-exchange messages and make us waste CPU on doing
1352 hard asymmetric crypto sums.
1353 .SP
1354 .BI "KX " peer " unexpected " msgtoken
1355 The message received wasn't appropriate for this stage of the key
1356 exchange process.  This may mean that one of our previous packets got
1357 lost.  For
1358 .BR pre-challenge ,
1359 it may simply mean that the peer has recently restarted.
1360 .SP
1361 .BI "KX " peer " unknown-challenge"
1362 The peer is asking for an answer to a challenge which we don't know
1363 about.  This may mean that we've been inundated with challenges from
1364 some malicious source
1365 .I who can read our messages
1366 and discarded the valid one.
1367 .SP
1368 .BI "KX " peer " unknown-message 0x" nn
1369 An unknown key-exchange message arrived.
1370 .SS "PEER warnings"
1371 These are largely concerned with management of peers and the low-level
1372 details of the network protocol.  The second token is usually the name of
1373 a peer, or
1374 .RB ` \- '
1375 if none is relevant.
1376 .SP
1377 .BI "PEER " peer " bad-packet no-type"
1378 An empty packet arrived.  This is very strange.
1379 .SP
1380 .BI "PEER " peer " bad-packet unknown-category 0x" nn
1381 The message category
1382 .I nn
1383 (in hex) isn't understood.  Probably a strange random packet from
1384 somewhere; could be an unlikely bug.
1385 .SP
1386 .BI "PEER " peer " bad-packet unknown-type 0x" nn
1387 The message type
1388 .I nn
1389 (in hex) isn't understood.  Probably a strange random packet from
1390 somewhere; could be an unlikely bug.
1391 .SP
1392 .BI "PEER " peer " corrupt-encrypted-ping"
1393 The peer sent a ping response which matches an outstanding ping, but its
1394 payload is wrong.  There's definitely a bug somewhere.
1395 .SP
1396 .BI "PEER " peer " corrupt-transport-ping"
1397 The peer (apparently) sent a ping response which matches an outstanding
1398 ping, but its payload is wrong.  Either there's a bug, or the bad guys
1399 are playing tricks on you.
1400 .SP
1401 .BI "PEER " peer " decrypt-failed"
1402 An encrypted IP packet failed to decrypt.  It may have been mangled in
1403 transit, or may be a very old packet from an expired previous session
1404 key.  There is usually a considerable overlap in the validity periods of
1405 successive session keys, so this shouldn't occur unless the key exchange
1406 takes ages or fails.
1407 .SP
1408 .BI "PEER " peer " malformed-encrypted-ping"
1409 The peer sent a ping response which is hopelessly invalid.  There's
1410 definitely a bug somewhere.
1411 .SP
1412 .BI "PEER " peer " malformed-transport-ping"
1413 The peer (apparently) sent a ping response which is hopelessly invalid.
1414 Either there's a bug, or the bad guys are playing tricks on you.
1415 .SP
1416 .BI "PEER " peer " packet-build-failed"
1417 There wasn't enough space in our buffer to put the packet we wanted to
1418 send.  Shouldn't happen.
1419 .SP
1420 .BI "PEER \- socket-read-error " ecode " " message
1421 An error occurred trying to read an incoming packet.
1422 .SP
1423 .BI "PEER " peer " socket-write-error " ecode " " message
1424 An error occurred attempting to send a network packet.  We lost that
1425 one.
1426 .SP
1427 .BI "PEER " peer " unexpected-encrypted-ping 0x" id
1428 The peer sent an encrypted ping response whose id doesn't match any
1429 outstanding ping.  Maybe it was delayed for longer than the server was
1430 willing to wait, or maybe the peer has gone mad.
1431 .SP
1432 .BI "PEER \- unexpected-source " address\fR...
1433 A packet arrived from
1434 .I address
1435 (a network address \(en see above), but no peer is known at that
1436 address.  This may indicate a misconfiguration, or simply be a result of
1437 one end of a connection being set up before the other.
1438 .SP
1439 .BI "PEER " peer " unexpected-transport-ping 0x" id
1440 The peer (apparently) sent a transport ping response whose id doesn't
1441 match any outstanding ping.  Maybe it was delayed for longer than the
1442 server was willing to wait, or maybe the peer has gone mad; or maybe
1443 there are bad people trying to confuse you.
1444 .SS "SERVER warnings"
1445 These indicate problems concerning the server process as a whole.
1446 .SP
1447 .BI "SERVER ignore signal " name
1448 A signal arrived, but the server ignored it.  Currently this happens for
1449 .B SIGHUP
1450 because that's a popular way of telling daemons to re-read their
1451 configuration files.  Since
1452 .B tripe
1453 re-reads its keyrings automatically and has no other configuration
1454 files, it's not relevant, but it seemed better to ignore the signal than
1455 let the server die.
1456 .SP
1457 .BI "SERVER quit signal " \fR[\fInn\fR|\fIname\fR]
1458 A signal arrived and
1459 .B tripe
1460 is going to quit.
1461 .SP
1462 .BI "SERVER quit admin-request"
1463 A client of the administration interface issued a
1464 .B QUIT
1465 command.
1466 .SP
1467 .BI "SERVER quit foreground-eof"
1468 The server is running in foreground mode (the
1469 .B \-F
1470 option), and encountered end-of-file on standard input.
1471 .SP
1472 .BI "SERVER select-error " ecode " " message
1473 An error occurred in the server's main event loop.  This is bad: if it
1474 happens too many times, the server will abort.
1475 .SS "SYMM warnings"
1476 These are concerned with the symmetric encryption and decryption
1477 process.
1478 .SP
1479 .BI "SYMM replay old-sequence"
1480 A packet was received with an old sequence number.  It may just have
1481 been delayed or duplicated, or it may have been an attempt at a replay
1482 attack.
1483 .SP
1484 .BI "SYMM replay duplicated-sequence"
1485 A packet was received with a sequence number we've definitely seen
1486 before.  It may be an accidental duplication because the 'net is like
1487 that, or a deliberate attempt at a replay.
1488 .SS "TUN warnings"
1489 These concern the workings of the system-specific tunnel driver.  The
1490 second token is the name of the tunnel interface in question, or
1491 .RB ` \- '
1492 if none.
1493 .SP
1494 .BI "TUN \- bsd no-tunnel-devices"
1495 The driver couldn't find an available tunnel device.  Maybe if you
1496 create some more
1497 .BI /dev/tun nn
1498 files, it will work.
1499 .SP
1500 .BI "TUN \- " tun-name " open-error " device " " ecode " " message
1501 An attempt to open the tunnel device file
1502 .I device
1503 failed.
1504 .SP
1505 .BI "TUN \- linux config-error " ecode " " message
1506 Configuring the Linux TUN/TAP interface failed.
1507 .SP
1508 .BI "TUN " ifname " " tun-name " read-error " ecode " " message
1509 Reading from the tunnel device failed.
1510 .SP
1511 .BI "TUN " ifname " " tun-name " write-error " ecode " " message
1512 Writing from the tunnel device failed.
1513 .SP
1514 .BI "TUN " ifname " slip bad-escape"
1515 The SLIP driver encountered a escaped byte it wasn't expecting to see.
1516 The erroneous packet will be ignored.
1517 .SP
1518 .BI "TUN " ifname " slip eof"
1519 The SLIP driver encountered end-of-file on its input descriptor.
1520 Pending data is discarded, and no attempt is made to read any more data
1521 from that interface ever.
1522 .SP
1523 .BI "TUN " ifname " slip escape-end"
1524 The SLIP driver encountered an escaped `end' marker.  This probably
1525 means that someone's been sending it junk.  The erroneous packet is
1526 discarded, and we hope that we've rediscovered synchronization.
1527 .SP
1528 .BI "TUN \- slip fork-error " ecode " " message
1529 The SLIP driver encountered an error forking a child process while
1530 allocating a new dynamic interface.
1531 .SP
1532 .BI "TUN \- slip no-slip-interfaces"
1533 The driver ran out of static SLIP interfaces.  Either preallocate more,
1534 or use dynamic SLIP interface allocation.
1535 .SP
1536 .BI "TUN " ifname " slip overflow"
1537 The SLIP driver gave up reading a packet because it got too large.
1538 .SP
1539 .BI "TUN \- slip pipe-error " ecode " " message
1540 The SLIP driver encountered an error creating pipes while allocating a
1541 new dynamic interface.
1542 .SP
1543 .BI "TUN \- slip read-ifname-failed " ecode " " message
1544 The SLIP driver encountered an error reading the name of a dynamically
1545 allocated interface.  Maybe the allocation script is broken.
1546 .SP
1547 .BI "TUN \- unet config-error " ecode " " message
1548 Configuring the Linux Unet interface failed.  Unet is obsolete and
1549 shouldn't be used any more.
1550 .SP
1551 .BI "TUN \- unet getinfo-error " ecode " " message
1552 Reading information about the Unet interface failed.  Unet is obsolete
1553 and shouldn't be used any more.
1554 .SS "USER warnings"
1555 These are issued by administration clients using the
1556 .B WARN
1557 command.
1558 .SP
1559 .BI "USER " tokens\fR...
1560 An administration client issued a warning.
1561 .\"-sep
1562 .
1563 .\"--------------------------------------------------------------------------
1564 .SH "SUMMARY"
1565 .
1566 .SS "Command responses"
1567 .nf
1568 .BI "BGDETACH " tag
1569 .BI "BGFAIL " tag " " tokens \fR...
1570 .BI "BGINFO " tag " " tokens \fR...
1571 .BI "BGOK " tag
1572 .BI "FAIL " tokens \fR...
1573 .BI "INFO " tokens \fR...
1574 .B OK
1575 .fi
1576 .\"= summary
1577 .
1578 .\"--------------------------------------------------------------------------
1579 .SH "SEE ALSO"
1580 .
1581 .BR tripectl (1),
1582 .BR tripe (8).
1583 .PP
1584 .IR "The Trivial IP Encryption Protocol" .
1585 .
1586 .\"--------------------------------------------------------------------------
1587 .SH "AUTHOR"
1588 .
1589 Mark Wooding, <mdw@distorted.org.uk>
1590 .
1591 .\"----- That's all, folks --------------------------------------------------