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