]> Cypherpunks.ru repositories - nncp.git/blob - doc/cmds.texi
Merge branch 'develop'
[nncp.git] / doc / cmds.texi
1 @node Commands
2 @unnumbered Commands
3
4 Nearly all commands have the following common options:
5
6 @table @option
7 @item -cfg
8     Path to configuration file. May be overridden by @env{NNCPCFG}
9     environment variable. If file file is an encrypted @ref{EBlob,
10     eblob}, then ask for passphrase to decrypt it first.
11 @item -debug
12     Print debug messages. Normally this option should not be used.
13 @item -minsize
14     @anchor{OptMinSize}
15     Minimal required resulting packet size, in KiBs. For example if you
16     send 2 KiB file and set @option{-minsize 4}, then resulting packet
17     will be 4 KiB (containing file itself and some junk).
18 @item -nice
19     Set desired outgoing packet @ref{Niceness, niceness level}.
20 @item -replynice
21     Set desired reply packet @ref{Niceness, niceness level}. Only freq
22     and exec packets look at that niceness level.
23 @item -via
24     Override @ref{CfgVia, via} configuration option for destination node.
25     Specified nodes must be separated with comma: @verb{|NODE1,NODE2|}.
26     With @verb{|-via -|} you can disable relaying at all.
27 @item -spool
28     Override path to spool directory. May be specified by
29     @env{NNCPSPOOL} environment variable.
30 @item -log
31     Override path to logfile. May be specified by @env{NNCPLOG}
32     environment variable.
33 @item -quiet
34     Print only errors, omit simple informational messages. In any case
35     those messages are logged, so you can reread them using
36     @ref{nncp-log} command.
37 @item -progress, -noprogress
38     Either force progress showing, or disable it.
39 @item -version
40     Print version information.
41 @item -warranty
42     Print warranty information (no warranty).
43 @end table
44
45 @node nncp-bundle
46 @section nncp-bundle
47
48 @example
49 $ nncp-bundle [options] -tx [-delete] NODE [NODE ...] > ...
50 $ nncp-bundle [options] -rx -delete [-dryrun] [NODE ...] < ...
51 $ nncp-bundle [options] -rx [-check] [-dryrun] [NODE ...] < ...
52 @end example
53
54 With @option{-tx} option, this command creates @ref{Bundles, bundle} of
55 @ref{Encrypted, encrypted packets} from the spool directory and writes
56 it to @code{stdout}.
57
58 With @option{-rx} option, this command takes bundle from @code{stdin}
59 and copies all found packets for our node to the spool directory. Pay
60 attention that @strong{no} integrity checking is done by default. Modern
61 tape drives could easily provide too much throughput your CPU won't be
62 able to verify on the fly. So if you won't @ref{nncp-toss, toss}
63 received packets at the place, it is advisable either to run
64 @ref{nncp-check} utility for packets integrity verification, or to use
65 @option{-check} option to enable on the fly integrity check.
66
67 You can specify multiple @option{NODE} arguments, telling for what nodes
68 you want to create the stream, or take it from. If no nodes are
69 specified for @option{-rx} mode, then all packets aimed at us will be
70 processed.
71
72 When packets are sent through the stream, they are still kept in the
73 spool directory, because there is no assurance that they are transferred
74 to the media (media (CD-ROM, tape drive, raw hard drive) can end). If
75 you want to forcefully delete them (after they are successfully flushed
76 to @code{stdout}) anyway, use @option{-delete} option.
77
78 But you can verify produced stream after, by digesting it by yourself
79 with @option{-rx} and @option{-delete} options -- in that mode, stream
80 packets integrity will be checked and they will be deleted from the
81 spool if everything is good. So it is advisable to recheck your streams:
82
83 @example
84 $ nncp-bundle -tx ALICE BOB WHATEVER | cdrecord -tao -
85 $ dd if=/dev/cd0 bs=2048 | nncp-bundle -rx -delete
86 @end example
87
88 @option{-dryrun} option prevents any writes to the spool. This is
89 useful when you need to see what packets will pass by and possibly check
90 their integrity.
91
92 @node nncp-call
93 @section nncp-call
94
95 @example
96 $ nncp-call [options]
97     [-onlinedeadline INT]
98     [-maxonlinetime INT]
99     [-rx|-tx]
100     [-list]
101     [-pkts PKT,PKT,...]
102     [-rxrate INT]
103     [-txrate INT]
104     [-autotoss*]
105     NODE[:ADDR] [FORCEADDR]
106 @end example
107
108 Call (connect to) specified @option{NODE} and run @ref{Sync,
109 synchronization} protocol with the @ref{nncp-daemon, daemon} on the
110 remote side. Normally this command could be run any time you wish to
111 either check for incoming packets, or to send out queued ones.
112 Synchronization protocol allows resuming and bidirectional packets
113 transfer.
114
115 If @option{-rx} option is specified then only inbound packets
116 transmission is performed. If @option{-tx} option is specified, then
117 only outbound transmission is performed. @option{-onlinedeadline}
118 overrides @ref{CfgOnlineDeadline, @emph{onlinedeadline}}.
119 @option{-maxonlinetime} overrides @ref{CfgMaxOnlineTime,
120 @emph{maxonlinetime}}. @option{-rxrate}/@option{-txrate} override
121 @ref{CfgXxRate, rxrate/txrate}. @option{-list} option allows you to list
122 packets of remote node, without any transmission.
123
124 You can specify what packets your want to download, by specifying
125 @option{-pkts} option with comma-separated list of packets identifiers.
126
127 Each @option{NODE} can contain several uniquely identified
128 @option{ADDR}esses in @ref{CfgAddrs, configuration} file. If you do
129 not specify the exact one, then all will be tried until the first
130 success. Optionally you can force @option{FORCEADDR} address usage,
131 instead of addresses taken from configuration file. You can specify both
132 @verb{|host:port|} and @verb{#|some command#} formats.
133
134 Pay attention that this command runs integrity check for each completely
135 received packet in the background. This can be time consuming.
136 Connection could be lost during that check and remote node won't be
137 notified that file is done. But after successful integrity check that
138 file is renamed from @file{.part} one and when you rerun
139 @command{nncp-call} again, remote node will receive completion
140 notification.
141
142 @option{-autotoss} option runs tosser on node's spool every second
143 during the call. All @option{-autotoss-*} options is the same as in
144 @ref{nncp-toss} command.
145
146 @node nncp-caller
147 @section nncp-caller
148
149 @example
150 $ nncp-caller [options] [NODE ...]
151 @end example
152
153 Croned daemon that calls remote nodes from time to time, according to
154 their @ref{CfgCalls, @emph{calls}} configuration field.
155
156 Optional number of @option{NODE}s tells to ignore other ones.
157 Otherwise all nodes with specified @emph{calls} configuration
158 field will be called.
159
160 Look at @ref{nncp-call} for more information.
161
162 @node nncp-cfgenc
163 @section nncp-cfgenc
164
165 @example
166 $ nncp-cfgenc [options] [-s INT] [-t INT] [-p INT] cfg.hjson > cfg.hjson.eblob
167 $ nncp-cfgenc [options] -d cfg.hjson.eblob > cfg.hjson
168 @end example
169
170 This command allows you to encrypt provided @file{cfg.hjson} file with
171 the passphrase, producing @ref{EBlob, eblob}, to safely keep your
172 configuration file with private keys. This utility was written for users
173 who do not want (or can not) to use either @url{https://gnupg.org/,
174 GnuPG} or similar tools. That @file{eblob} file can be used directly in
175 @option{-cfg} option of nearly all commands.
176
177 @option{-s}, @option{-t}, @option{-p} are used to tune @file{eblob}'s
178 password strengthening function. Space memory cost (@option{-s}),
179 specified in number of BLAKE2b-256 blocks (32 bytes), tells how many
180 memory must be used for hashing -- bigger values are better, but slower.
181 Time cost (@option{-t}) tells how many rounds/iterations must be
182 performed -- bigger is better, but slower. Number of parallel jobs
183 (@option{-p}) tells how many computation processes will be run: this is
184 the same as running that number of independent hashers and then joining
185 their result together.
186
187 When invoked for encryption, passphrase is entered manually twice. When
188 invoked for decryption (@option{-d} option), it is asked once and exits
189 if passphrase can not decrypt @file{eblob}.
190
191 @option{-dump} options parses @file{eblob} and prints parameters used
192 during its creation. For example:
193 @example
194 $ nncp-cfgenc -dump /usr/local/etc/nncp.hjson.eblob
195 Strengthening function: Balloon with BLAKE2b-256
196 Memory space cost: 1048576 bytes
197 Number of rounds: 16
198 Number of parallel jobs: 2
199 Blob size: 2494
200 @end example
201
202 @node nncp-cfgmin
203 @section nncp-cfgmin
204
205 @example
206 $ nncp-cfgmin [options] > stripped.hjson
207 @end example
208
209 Print out stripped configuration version: only path to @ref{Spool,
210 spool}, path to log file, neighbours public keys are stayed. This is
211 useful mainly for usage with @ref{nncp-xfer} that has to know only
212 neighbours, without private keys involving.
213
214 @node nncp-cfgnew
215 @section nncp-cfgnew
216
217 @example
218 $ nncp-cfgnew [options] [-nocomments] > new.hjson
219 @end example
220
221 Generate new node configuration: private keys, example configuration
222 file and print it to @code{stdout}. You must use this command when you
223 setup the new node. @option{-nocomments} will create configuration file
224 without descriptive huge comments -- useful for advanced users.
225
226 Pay attention that private keys generation consumes an entropy from your
227 operating system.
228
229 @node nncp-check
230 @section nncp-check
231
232 @example
233 $ nncp-check [options]
234 @end example
235
236 Perform @ref{Spool, spool} directory integrity check. Read all files
237 that has Base32-encoded filenames and compare it with recalculated
238 BLAKE2b hash output of their contents. That supplementary command is
239 not used often in practice, if ever.
240
241 @node nncp-cronexpr
242 @section nncp-cronexpr
243
244 @example
245 $ nncp-cronexpr -num 12 "*/1 * * * * SAT,SUN 2021"
246 @end example
247
248 Check validity of specified @ref{CronExpr, cron expression} and print 12
249 next time entities.
250
251 @node nncp-daemon
252 @section nncp-daemon
253
254 @example
255 $ nncp-daemon [options] [-maxconn INT] [-bind ADDR] [-inetd] [-autotoss*]
256 @end example
257
258 Start listening TCP daemon, wait for incoming connections and run
259 @ref{Sync, synchronization protocol} with each of them. You can run
260 @ref{nncp-toss} utility in background to process inbound packets from
261 time to time.
262
263 @option{-maxconn} option specifies how many simultaneous clients daemon
264 can handle. @option{-bind} option specifies @option{addr:port} it must
265 bind to and listen.
266
267 It could be run as @command{inetd} service, by specifying
268 @option{-inetd} option. Pay attention that because it uses
269 @code{stdin}/@code{stdout}, it can not effectively work with IO timeouts
270 and connection closing can propagate up to 5 minutes in practice.
271 Example inetd-entry:
272
273 @verbatim
274 uucp    stream  tcp6    nowait  nncpuser        /usr/local/bin/nncp-daemon      nncp-daemon -quiet -inetd
275 @end verbatim
276
277 @option{-autotoss} option runs tosser on node's spool every second
278 during the call. All @option{-autotoss-*} options is the same as in
279 @ref{nncp-toss} command.
280
281 @node nncp-exec
282 @section nncp-exec
283
284 @example
285 $ nncp-exec [options] [-use-tmp] [-nocompress] NODE HANDLE [ARG0 ARG1 ...]
286 @end example
287
288 Send execution command to @option{NODE} for specified @option{HANDLE}.
289 Body is read from @code{stdin} into memory and compressed (unless
290 @option{-nocompress} is specified). After receiving, remote side will
291 execute specified @ref{CfgExec, handle} command with @option{ARG*}
292 appended and decompressed body fed to command's @code{stdin}.
293
294 If @option{-use-tmp} option is specified, then @code{stdin} data is read
295 into temporary file first, requiring twice more disk space, but no
296 memory requirements. @ref{StdinTmpFile, Same temporary file} rules
297 applies as with @ref{nncp-file, nncp-file -} command.
298
299 For example, if remote side has following configuration file for your
300 node:
301
302 @verbatim
303 exec: {
304   sendmail: [/usr/sbin/sendmail, "-t"]
305   appender: ["/bin/sh", "-c", "cat >> /append"]
306 }
307 @end verbatim
308
309 then executing @verb{|echo My message | nncp-exec -replynice 123 REMOTE
310 sendmail root@localhost|} will lead to execution of:
311
312 @example
313 echo My message |
314     NNCP_SELF=REMOTE \
315     NNCP_SENDER=OurNodeId \
316     NNCP_NICE=123 \
317     /usr/sbin/sendmail -t root@@localhost
318 @end example
319
320 If @ref{CfgNotify, notification} is enabled on the remote side for exec
321 handles, then it will sent simple letter after successful command
322 execution with its output in message body.
323
324 @strong{Pay attention} that packet generated with this command won't be
325 be chunked.
326
327 @node nncp-file
328 @section nncp-file
329
330 @example
331 $ nncp-file [options] [-chunked INT] SRC NODE:[DST]
332 @end example
333
334 Send @file{SRC} file to remote @option{NODE}. @file{DST} specifies
335 destination file name in remote's @ref{CfgIncoming, incoming}
336 directory. If this file already exists there, then counter will be
337 appended to it.
338
339 This command queues file in @ref{Spool, spool} directory immediately
340 (through the temporary file of course) -- so pay attention that sending
341 2 GiB file will create 2 GiB outbound encrypted packet.
342
343 @anchor{StdinTmpFile}
344 If @file{SRC} equals to @file{-}, then create an encrypted temporary
345 file and copy everything taken from @code{stdin} to it and use for outbound
346 packet creation. Pay attention that if you want to send 1 GiB of data
347 taken from @code{stdin}, then you have to have more than 2 GiB of disk space
348 for that temporary file and resulting encrypted packet. You can control
349 temporary file location directory with @env{TMPDIR} environment
350 variable. Encryption is performed in AEAD mode with
351 @url{https://cr.yp.to/chacha.html, ChaCha20}-@url{https://en.wikipedia.org/wiki/Poly1305, Poly1305}
352 algorithms. Data is splitted on 128 KiB blocks. Each block is encrypted
353 with increasing nonce counter. File is deletes immediately after
354 creation, so even if program crashes -- disk space will be reclaimed, no
355 need in cleaning it up later.
356
357 If @file{SRC} points to directory, then
358 @url{https://pubs.opengroup.org/onlinepubs/9699919799/utilities/pax.html#tag_20_92_13_01, pax archive}
359 will be created on the fly with directory contents and destination
360 filename @file{.tar} appended. It @strong{won't} contain any entities
361 metainformation, but modification time with the names. UID/GID are set
362 to zero. Directories have 777 permissions, files have 666, for being
363 friendly with @command{umask}. Also each entity will have comment like
364 @verb{|Autogenerated by NNCP version X.Y.Z built with goXXX|}.
365
366 If @option{-chunked} is specified, then source file will be split
367 @ref{Chunked, on chunks}. @option{INT} is the desired chunk size in
368 KiBs. This mode is more CPU hungry. Pay attention that chunk is saved in
369 spool directory immediately and it is not deleted if any error occurs.
370 @option{-minsize} option is applied per each chunk. Do not forget about
371 @ref{ChunkedZFS, possible} ZFS deduplication issues. Zero
372 @option{-chunked} disables chunked transmission.
373
374 If @ref{CfgNotify, notification} is enabled on the remote side for
375 file transmissions, then it will sent simple letter after successful
376 file receiving.
377
378 @node nncp-freq
379 @section nncp-freq
380
381 @example
382 $ nncp-freq [options] NODE:SRC [DST]
383 @end example
384
385 Send file request to @option{NODE}, asking it to send its @file{SRC}
386 file from @ref{CfgFreq, freq.path} directory to our node under @file{DST}
387 filename in our @ref{CfgIncoming, incoming} one. If @file{DST} is not
388 specified, then last element of @file{SRC} will be used.
389
390 If @ref{CfgNotify, notification} is enabled on the remote side for
391 file request, then it will sent simple letter after successful file
392 queuing.
393
394 @node nncp-log
395 @section nncp-log
396
397 @example
398 $ nncp-log [options]
399 @end example
400
401 Parse @ref{Log, log} file and print out its records in short
402 human-readable form.
403
404 @node nncp-pkt
405 @section nncp-pkt
406
407 @example
408 $ nncp-pkt [options] < pkt
409 $ nncp-pkt [options] [-decompress] -dump < pkt > payload
410 $ nncp-pkt -overheads
411 @end example
412
413 Low level packet parser. Normally it should not be used, but can help in
414 debugging.
415
416 By default it will print packet's type, for example:
417 @example
418 Packet type: encrypted
419 Niceness: 64
420 Sender: 2WHBV3TPZHDOZGUJEH563ZEK7M33J4UESRFO4PDKWD5KZNPROABQ
421 @end example
422
423 If you specify @option{-dump} option and provide an @ref{Encrypted,
424 encrypted} packet, then it will verify and decrypt it to @code{stdout}.
425 Encrypted packets contain @ref{Plain, plain} ones, that also can be fed
426 to @command{nncp-pkt}:
427
428 @example
429 Packet type: plain
430 Payload type: transitional
431 Path: VHMTRWDOXPLK7BR55ICZ5N32ZJUMRKZEMFNGGCEAXV66GG43PEBQ
432
433 Packet type: plain
434 Payload type: mail
435 Path: stargrave@@stargrave.org
436 @end example
437
438 And with the @option{-dump} option it will give you the actual payload
439 (the whole file, mail message, and so on). @option{-decompress} option
440 tries to zstd-decompress the data from plain packet (useful for mail
441 packets).
442
443 @option{-overheads} options print encrypted, plain and size header overheads.
444
445 @node nncp-reass
446 @section nncp-reass
447
448 @example
449 $ nncp-reass [options] [-dryrun] [-keep] [-dump] [-stdout] FILE.nncp.meta
450 $ nncp-reass [options] [-dryrun] [-keep] @{-all | -node NODE@}
451 @end example
452
453 Reassemble @ref{Chunked, chunked file} after @ref{nncp-toss, tossing}.
454
455 When called with @option{FILE} option, this command will reassemble only
456 it. When called with @option{-node} option, this command will try to
457 reassemble all @file{.nncp.meta} files found in @option{NODE}'s
458 @ref{CfgIncoming, incoming} directory. When called with @option{-all}
459 option, then cycle through all known nodes to do the same.
460
461 Reassembling process does the following:
462
463 @enumerate
464 @item Parses @ref{Chunked, @file{.nncp.meta}} file.
465 @item Checks existence and size of every @file{.nncp.chunkXXX}.
466 @item Verifies integrity of every chunk.
467 @item Concatenates all chunks, simultaneously removing them from filesystem.
468 @end enumerate
469
470 That process reads the whole data twice. Be sure to have free disk
471 space for at least one chunk. Decrypted chunk files as a rule are saved
472 in pseudo-random order, so removing them during reassembly process will
473 likely lead to filesystem fragmentation. Reassembly process on
474 filesystems with deduplication capability should be rather lightweight.
475
476 If @option{-dryrun} option is specified, then only existence and
477 integrity checking are performed.
478
479 If @option{-keep} option is specified, then no
480 @file{.nncp.meta}/@file{.nncp.chunkXXX} files are deleted during
481 reassembly process.
482
483 @option{-stdout} option outputs reassembled file to @code{stdout},
484 instead of saving to temporary file with renaming after. This could be
485 useful for reassembling on separate filesystem to lower fragmentation
486 effect, and/or separate storage device for higher performance.
487
488 @option{-dump} option prints meta-file contents in human-friendly form.
489 It is useful mainly for debugging purposes. For example:
490 @example
491 Original filename: testfile
492 File size: 3.8 MiB (3987795 bytes)
493 Chunk size: 1.0 MiB (1048576 bytes)
494 Number of chunks: 4
495 Checksums:
496     0: eac60d819edf40b8ecdacd0b9a5a8c62de2d15eef3c8ca719eafa0be9b894017
497     1: 013a07e659f2e353d0e4339c3375c96c7fffaa2fa00875635f440bbc4631052a
498     2: f4f883975a663f2252328707a30e71b2678f933b2f3103db8475b03293e4316e
499     3: 0e9e229501bf0ca42d4aa07393d19406d40b179f3922a3986ef12b41019b45a3
500 @end example
501
502  Do not forget about @ref{ChunkedZFS, possible} ZFS deduplication issues.
503
504 @node nncp-rm
505 @section nncp-rm
506
507 @example
508 $ nncp-rm [options] -tmp
509 $ nncp-rm [options] -lock
510 $ nncp-rm [options] -node NODE -part
511 $ nncp-rm [options] -node NODE -seen
512 $ nncp-rm [options] -node NODE [-rx] [-tx]
513 $ nncp-rm [options] -node NODE -pkt PKT
514 @end example
515
516 This command is aimed to delete various files from your spool directory:
517
518 @itemize
519
520 @item If @option{-tmp} option is specified, then it will delete all
521 temporary files in @file{spool/tmp} directory. Files may stay in it when
522 commands like @ref{nncp-file} fail for some reason.
523
524 @item If @option{-lock} option is specified, then all @file{.lock} files
525 will be deleted in your spool directory.
526
527 @item If @option{-pkt} option is specified, then @file{PKT} packet (its
528 Base32 name) will be deleted. This is useful when you see some packet
529 failing to be processed.
530
531 @item When either @option{-rx} or @option{-tx} options are specified
532 (maybe both of them), then delete all packets from that given queues. If
533 @option{-part} is given, then delete only @file{.part}ly downloaded
534 ones. If @option{-seen} option is specified, then delete only
535 @file{.seen} files.
536
537 @item @option{-dryrun} option just prints what will be deleted.
538
539 @item You can also select files that only have modification date older
540 than specified @option{-older} time units (@code{10s} (10 seconds),
541 @code{5m} (5 minutes), @code{12h} (12 hours), @code{2d} (2 days)).
542
543 @end itemize
544
545 @node nncp-stat
546 @section nncp-stat
547
548 @example
549 $ nncp-stat [options] [-pkt] [-node NODE]
550 @end example
551
552 Print current @ref{Spool, spool} statistics about unsent and unprocessed
553 packets. For each node (unless @option{-node} specified) and each
554 niceness level there will be printed how many packets (with the total
555 size) are in inbound (Rx) and outbound (Tx) queues. @option{-pkt} option
556 show information about each packet.
557
558 @node nncp-toss
559 @section nncp-toss
560
561 @example
562 $ nncp-toss [options]
563     [-node NODE]
564     [-dryrun]
565     [-cycle INT]
566     [-seen]
567     [-nofile]
568     [-nofreq]
569     [-noexec]
570     [-notrns]
571 @end example
572
573 Perform "tossing" operation on all inbound packets. This is the tool
574 that decrypts all packets and processes all payload packets in them:
575 copies files, sends mails, sends out file requests and relays transition
576 packets. It should be run after each online/offline exchange.
577
578 @option{-dryrun} option does not perform any writing and sending, just
579 tells what it will do.
580
581 @option{-cycle} option tells not to quit, but to repeat tossing every
582 @option{INT} seconds in an infinite loop. That can be useful when
583 running this command as a daemon.
584
585 @option{-seen} option creates empty @file{XXX.seen} file after
586 successful tossing of @file{XXX} packet. @ref{nncp-xfer},
587 @ref{nncp-bundle}, @ref{nncp-daemon} and @ref{nncp-call} commands skip
588 inbound packets that has been already seen, processed and tossed. This
589 is helpful to prevent duplicates.
590
591 @option{-nofile}, @option{-nofreq}, @option{-noexec}, @option{-notrns}
592 options allow to disable any kind of packet types processing.
593
594 @node nncp-xfer
595 @section nncp-xfer
596
597 @example
598 $ nncp-xfer [options] [-node NODE] [-mkdir] [-keep] [-rx|-tx] DIR
599 @end example
600
601 Search for directory in @file{DIR} containing inbound packets for us and
602 move them to local @ref{Spool, spool} directory. Also search for known
603 neighbours directories and move locally queued outbound packets to them.
604 This command is used for offline packets transmission.
605
606 If @option{-mkdir} option is specified, then outbound neighbour(s)
607 directories will be created. This is useful for the first time usage,
608 when storage device does not have any directories tree.
609
610 If @option{-keep} option is specified, then keep copied files, do not
611 remove them.
612
613 @option{-rx} option tells only to move inbound packets addressed to us.
614 @option{-tx} option tells exactly the opposite: move only outbound packets.
615
616 @ref{nncp-cfgmin} could be useful for creating stripped minimalistic
617 configuration file version without any private keys.
618
619 @file{DIR} directory has the following structure:
620 @file{RECIPIENT/SENDER/PACKET}, where @file{RECIPIENT} is Base32 encoded
621 destination node, @file{SENDER} is Base32 encoded sender node.
622
623 Also look for @ref{nncp-bundle}, especially if you deal with CD-ROM and
624 tape drives.