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