new adminmanual
[spider.git] / sgml / adminmanual.sgml
1 <!doctype linuxdoc system>
2
3 <article>
4
5 <!-- Title information -->
6
7 <title>The DXSpider Installation and Administration Manual 
8 <author>Ian Maude, G0VGS, (ianmaude@btinternet.com)
9 <date>Version 1.27 December 2000
10 <abstract>
11 A reference for SysOps of the DXSpider DXCluster program.
12 </abstract>
13
14 <!-- Table of contents -->
15 <toc>
16
17 <!-- Begin the document -->
18
19 <sect>Installation (Original version by Iain Phillips, G0RDI)
20
21 <P>
22 Last modified: 28 December 2000 by Ian Maude, G0VGS
23
24 <sect1>Introduction
25
26 <P>
27 This section describes the installation of DX Spider v1.35 on a 
28 <htmlurl url="http://www.redhat.com" name="RedHat"> Linux Distribution.  
29 I do not intend to try and cover the installation of Linux or the setup 
30 of the AX25 utilities.  If you need help on this then read Iains original 
31 HOWTO on the <htmlurl url="http://www.dxcluster.org" name="DXSpider"> 
32 website.
33
34 <P>
35 I am assuming a general knowledge of Linux and its commands.  You should 
36 know how to use <em>tar</em> and how to edit files using your favourite editor.
37
38 <P>
39 The crucial ingredient for all of this is 
40 <htmlurl url="http://www.perl.org" name="Perl 5.004">.  Now I know Perl 5.005 
41 is out and this will almost certainly work with it, but 
42 <htmlurl url="http://www.redhat.com" name="RedHat 5.1"> comes with 5.004. 
43 <em>Be Warned</em>, earlier versions of 
44 <htmlurl url="http://www.redhat.com" name="RedHat"> <bf>do not</bf> come 
45 with 5.004 as standard, you need to 
46 <htmlurl url="ftp://upgrade.redhat.com" name="upgrade">
47
48 <P>In addition to the standard Red Hat distribution you will require the 
49 following <htmlurl url="http://www.cpan.org/CPAN.html" name="CPAN"> modules: -
50
51 <P>
52 <itemize>
53
54 <item>          MD5-1.7.tar.gz
55 <item>          Data-Dumper-2.10.tar.gz
56 <item>          FreezeThaw-0.3.tar.gz
57 <item>          MLDBM-2.00.tar.gz
58 <item>          TimeDate-1.08.tar.gz
59 <item>          IO-1.20.tar.gz
60 <item>          Net-Telnet-3.02.tar.gz
61 <item>          Curses-1.05.tar.gz
62 <item>          Time-HiRes-01.20.tar.gz
63
64 </itemize>
65
66 <P>
67
68 <em>Do</em> get the latest versions of these packages and install them 
69 but use the above list as the earliest versions usable.
70
71 <sect1>Preparation
72
73 <P>
74 I will assume that you have already downloaded the latest tarball of 
75 the DXSpider software and are ready to install it. I am assuming version 
76 1.35 for this section but of course you would use the latest version.
77
78 <P>
79 Login as root and create a user to run the cluster under.  <bf><it>UNDER 
80 NO CIRCUMSTANCES USE ROOT AS THIS USER!</it></bf>.  I am going to use 
81 the name <em>sysop</em>.  You can call it anything you wish.  Depending 
82 on your security requirements you may wish to use an existing user, 
83 however this is your own choice.
84
85 <P>
86 <tscreen><verb>
87 # adduser -m sysop
88 </verb></tscreen>
89
90 <P>
91 Now set a password for the user ...
92
93 <tscreen><verb>
94 # passwd sysop
95 # New UNIX password:
96 # Retype new UNIX password:
97 passwd: all authentication tokens updated successfully
98 </verb></tscreen>
99
100 <sect1>Installing the software
101
102 <P>
103 Now to unpack the DX Spider distribution, set symbolic links and group 
104 permissions.  Copy the tarball to /home/sysop and do the following.
105
106 <tscreen><verb>
107 # cd ~sysop
108 # tar xvfz spider-1.35.tar.gz
109 # ln -s ~sysop/spider /spider
110 # groupadd -g 251 spider       (or another number)
111 </verb></tscreen>
112
113 If you do not have the command <em>groupadd</em> available to you simply 
114 add a line in /etc/group by hand.
115
116 <tscreen><verb>
117 # vi /etc/group                (or your favorite editor)
118 </verb></tscreen>
119
120 You also need to add some others to the group, including your own callsign 
121 (this will be used as an alias) and root.  The finished line in /etc/group 
122 should look something like this
123
124 <tt>
125 spider:x:251:sysop,g0vgs,root
126 </tt>
127
128 <P>
129 The next step is to set the permissions on the Spider directory tree and files ....
130
131 <tscreen><verb>
132 # chown -R sysop.spider spider
133 # find . -type d -exec chmod 2775 {} \;
134 # find . -type f -exec chmod 775 {} \;
135 </verb></tscreen>
136
137 <P>
138 This last step allows various users of the group <em>spider</em> to have 
139 write access to all the directories.  This is not really needed just yet 
140 but will be useful when web interfaces start to appear.
141
142 <P>
143 Finally, you need to fix the permissions on the ax25_call and netrom_call 
144 programs.  Check where they are with the <em>locate</em> command and alter 
145 the permissions with the <em>chmod</em> command like this ..
146
147 <tscreen><verb>
148 # chown root ax25_call netrom_call
149 # chmod 4775 ax25_call netrom_call
150 </verb></tscreen>
151
152 <sect1>Setting callsigns etc
153
154 <P>
155 Now login to your machine as the user you created earlier.  In my case that 
156 user is called <em>sysop</em>.  Once logged in, issue the following commands ....
157
158 <tscreen><verb>
159 $ cd /spider
160 $ mkdir local
161 $ mkdir local_cmd
162 $ cp perl/DXVars.pm.issue local/DXVars.pm
163 $ cd local
164 $ vi DXVars.pm (or your favourite editor)
165 </verb></tscreen>
166
167 <P>
168 Using the distributed DXVars.pm as a a template, set your cluster callsign, 
169 sysop callsign and other user info to suit your own environment. Note that 
170 this a perl file which will be parsed and executed as part of the cluster. If 
171 you get it wrong then perl will complain when you start the cluster process.  
172 It is important only to alter the text of any section.  Some of the lines look 
173 a little odd.  Take this line for example ....
174
175 <tt>
176 $myemail = "ianmaude\@btinternet.com";
177 </tt>
178
179 <P>
180 There appears to be an extra slash in there.  However this has to be there 
181 for the file to work so leave it in.
182                 
183 <P><bf>PLEASE USE CAPITAL LETTERS FOR CALLSIGNS</bf>
184                 
185 <P>
186 DON'T alter the DXVars.pm (or any other file) in /spider/perl, they are 
187 overwritten with every release. Any files or commands you place in /spider/local 
188 or /spider/local_cmd will automagically be used in preference to the ones in 
189 /spider/perl EVEN while the cluster is running!
190
191 <P>
192 Save the new file and change directory to ../perl ....
193
194 <tscreen><verb>
195 $ cd ../perl
196 </verb></tscreen>
197
198 <P>
199 Now type the following command which creates the basic user file with you as 
200 the sysop.
201
202 <tscreen><verb>
203 $ create_sysop.pl
204 </verb></tscreen>
205
206 <sect1>Starting up for the first time
207
208 <P>
209 We can now bring spider up for the first time and see if all is well or not!  
210 It should look something like this ...
211
212 <tscreen><verb>
213 $ cluster.pl
214 DXSpider DX Cluster Version 1.35
215 Copyright (c) 1998 Dirk Koopman G1TLH
216 loading prefixes ...
217 loading band data ...
218 loading user file system ...
219 starting listener ...
220 reading existing message headers
221 reading cron jobs
222 orft we jolly well go ...
223 </verb></tscreen>
224
225 <P>
226 If all is well then login on another term or console as <em>sysop</em> and 
227 cd to /spider/perl.  Now issue the following command ...
228
229 <tscreen><verb>
230 $ client.pl
231 </verb></tscreen>
232
233 <P>
234 This should log you into the cluster as the sysop under the alias callsign we 
235 set earlier.  In this case the callsign is G0VGS.  The cluster callsign is set 
236 in the DXVars.pm file in /spider/local.  In this case we will assume that this 
237 was set as GB7MBC.  You should therefore see this when you login ....
238
239 <tscreen><verb>
240 G0VGS de GB7MBC 19-Nov-1999 2150Z >
241 </verb></tscreen>
242
243 If you do, congratulations!  If not, look over the instructions again, you 
244 have probably missed something out.  You can shut spider down again with the 
245 command ....
246
247 <tscreen><verb>
248 shutdown
249 </verb></tscreen>
250
251 <P>
252 and both the cluster and the client should return to Linux prompts.
253
254 <sect>The Client program
255
256 <P>
257 In earlier versions of Spider, all the processes were Perl scripts.  This 
258 was fine but with a lot of users your computer memory would soon be used up.  
259 To combat this a new client was written in "C".  This client only works for
260 <em>incoming</em> connects at the moment.  Before you can use it though it 
261 has to be "made".  CD to /spider/src and type <em>make</em>.  You 
262 should see the output on your screen and hopefully now have a small C program 
263 called <em>client</em>.  Leave it in this directory.
264
265 <sect>Configuration
266
267 <sect1>Allowing ax25 connects from users
268
269 <P>
270 As stated previously, the aim of this document is not to tell you how to 
271 configure Linux or the ax25 utilities.  However, you do need to add a line 
272 in your ax25d.conf to allow connections to DXSpider for your users.  For
273 each interface that you wish to allow connections on, use the following format ...
274
275 <tscreen><verb>
276 default  * * * * * *  - sysop /spider/src/client client %u ax25
277 </verb></tscreen>
278
279 <sect1>Allowing telnet connects from users
280
281 <P>
282 Allowing telnet connections is quite simple.  Firstly you need to add a line 
283 in /etc/services to allow connections to a port number, like this ....
284
285 <tscreen><verb>
286 spdlogin   8000/tcp     # spider anonymous login port
287 </verb></tscreen>
288
289 Then add a line in /etc/inetd.conf like this ....
290
291 <tscreen><verb>
292 spdlogin stream tcp nowait root /usr/sbin/tcpd /spider/src/client login telnet
293 </verb></tscreen>
294
295 <P>
296 This needs to be added above the standard services such as ftp, telnet etc.  
297 Once this is done, you need to restart inetd like this ....
298
299 <tscreen><verb>
300 killall -HUP inetd
301 </verb></tscreen>
302
303
304 <P>Now login as <em>sysop</em> and cd spider/perl. You can test that spider 
305 is accepting telnet logins by issuing the following command ....
306
307 <tscreen><verb>
308 client.pl login telnet
309 </verb></tscreen>
310
311 You should get a login prompt and on issuing a callsign, you will be given 
312 access to the cluster.  Note, you will not get a password login.  There seems 
313 no good reason for a password prompt to be given so it is not asked for.
314
315 <P>
316 Assuming all is well, then try a telnet from your linux console ....
317
318 <tscreen><verb>
319 telnet localhost 8000
320 </verb></tscreen>
321
322 <P>
323 You should now get the login prompt and be able to login as before.
324
325 <sect1>Setting up node connects
326
327 <P>
328 In order to allow cluster node connections, spider needs to know that the 
329 connecting callsign is a cluster node.  This is the case whether the connect 
330 is incoming or outgoing.  In spider this is a simple task and can be done in 
331 runtime.
332
333 <P>
334 Later versions of Spider can distinguish different software and treat them
335 differently.  For example, the WCY beacon cannot be handles by AK1A type
336 nodes as AK1A does not know what to do with PC73.  There are 4 different
337 types of node at present and although they may not have any major
338 differences at the moment, it allows for compatibility.  The 4 types are ...
339
340 <tscreen><verb>
341 set/node        (AK1A type)
342 set/spider
343 set/dxnet
344 set/clx
345 </verb></tscreen>
346
347 <P>
348 For now, we will assume that the cluster we are going to connect to is an
349 AK1A type node.
350
351 <P>
352 Start up the cluster as you did before and login as the sysop with client.pl.
353 The cluster node I am wanting to make a connection to is GB7BAA but you would
354 obviously use whatever callsign you required.  At the prompt type ...
355
356 <tscreen><verb>
357 set/node gb7baa
358 </verb></tscreen>
359
360 <P>
361 The case does not matter as long as you have a version of DXSpider later than 
362 1.33.  Earlier versions required the callsign to be in upper case.
363
364 <P>
365 That is now set, it is as simple as that.  To prove it, login on yet another 
366 console as sysop and issue the command ...
367
368 <tscreen><verb>
369 client.pl gb7baa (using the callsign you set as a node)
370 </verb></tscreen>
371
372 <P>
373 You should get an initialisation string from DXSpider like this ...
374
375 <tscreen><verb>
376 client.pl gb7baa
377 PC38^GB7MBC^~
378 </verb></tscreen>
379
380 If the callsign you just set up as a cluster node is for an incoming connect, 
381 this is all that needs to be done.  If the connection is to be outgoing then 
382 a connection script needs to be written.
383
384 <sect1>Connection scripts
385
386 <P>
387 Because DXSpider operates under Linux, connections can be made using just about 
388 any protocol;  AX25, NETRom, tcp/ip, ROSE etc are all possible examples.  
389 Connect scripts live in the /spider/connect directory and are simple ascii files.  
390 Writing a script for connections is therefore relatively simple.  
391
392 <P>
393 The connect scripts consist of lines which start with the following keywords 
394 or symbols:-
395
396 <verb>
397         
398 #               All lines starting with a # are ignored, as are completely 
399                 blank lines.
400
401 timeout         timeout followed by a number is the number of seconds to wait for a 
402                 command to complete. If there is no timeout specified in the script 
403                 then the default is 60 seconds.
404
405 abort           abort is a regular expression containing one or more strings to look 
406                 for to abort a connection. This is a perl regular expression and is 
407                 executed ignoring case.
408
409 connect         connect followed by ax25 or telnet and some type dependent 
410                 information. In the case of a telnet connection, there can be up to 
411                 two parameters.
412                 The first is the ip address or hostname of the computer you wish to 
413                 connect to and the second is the port number you want to use (this 
414                 can be left out if it is a normal telnet session).
415                 In the case of an ax25 session then this would normally be a call to
416                 ax25_call or netrom_call as in the example above. It is your
417                 responsibility to get your node and other ax25 parameters to work 
418                 before going down this route!
419
420 '               ' is the delimiting character for a word or phrase of an expect/send 
421                 line in a chat type script. The words/phrases normally come in pairs,
422                 either can be empty. Each line reads input from the connection until 
423                 it sees the string (or perl regular expression) contained in the
424                 left hand string. If the left hand string is empty then it doesn't 
425                 read or wait for anything. The comparison is done ignoring case.
426                 When the left hand string has found what it is looking for (if it is)
427                 then the right hand string is sent to the connection.
428                 This process is repeated for every line of chat script. 
429
430 client          client starts the connection, put the arguments you would want here 
431                 if you were starting the client program manually. You only need this 
432                 if the script has a different name to the callsign you are trying to 
433                 connect to (i.e. you have a script called other which actually 
434                 connects to GB7DJK-1 [instead of a script called gb7djk-1]).
435 </verb>
436
437
438 There are many possible ways to configure the script but here are two examples, 
439 one for a NETRom/AX25 connect and one for tcp/ip.  
440
441 <tscreen><verb>
442 timeout 60
443 abort (Busy|Sorry|Fail)
444 # don't forget to chmod 4775 netrom_call!
445 connect ax25 /usr/sbin/netrom_call bbs gb7djk g1tlh
446 'Connect' '' 
447 'Connect' 'c np7'
448 'Connect' 'c gb7dxm'
449 # you can leave this out if you call the script 'gb7dxm'
450 client gb7dxm ax25
451 </verb></tscreen>
452
453 <P>
454
455 <tscreen><verb>
456 timeout 15
457 connect telnet dirkl.tobit.co.uk
458 'login' 'gb7djk'
459 'word' 'gb7djk'
460 # tell GB7DJK-1 that it is connected to GB7DJK
461 # you can leave this out if you call this script 'gb7djk'
462 client gb7djk telnet
463 </verb></tscreen>
464
465 <P>
466 Both these examples assume that everything is set up properly at the other end.  
467 You will find other examples in the /spider/examples directory.
468
469 <sect1>Starting the connection
470
471 <P>
472 You start the connection, from within a sysop enabled cluster login, by typing 
473 in the word <em>connect</em> followed by a script name like this ....
474
475 <tscreen><verb>
476 G0VGS de GB7MBC 13-Dec-1998 2041Z >connect gb7djk-1
477 connection to GB7DJK-1 started
478 G0VGS de GB7MBC 13-Dec-1998 2043Z >
479 </verb></tscreen>
480
481 This will start a connection using the script called <em>gb7djk-1</em>.  You can
482 follow the connection by watching the term or console from where you started
483 <em>cluster.pl</em>.  You should see something like this ...
484
485 <tscreen><verb>
486 <- D G1TLH connect gb7djk-1
487 -> D G1TLH connection to GB7DJK-1 started
488 -> D G1TLH G1TLH de GB7DJK 13-Dec-1998 2046Z >
489 timeout set to 15
490 CONNECT sort: telnet command: dirkl.tobit.co.uk
491 CHAT "login" -> "gb7djk"
492 received "
493 Red Hat Linux release 5.1 (Manhattan)
494 Kernel 2.0.35 on an i586
495 "
496 received "login: "
497 sent "gb7djk"
498 CHAT "word" -> "gb7djk"
499 received "gb7djk"
500 received "Password: "
501 sent "gb7djk"
502 Connected to GB7DJK-1, starting normal protocol
503 <- O GB7DJK-1 telnet
504 -> B GB7DJK-1 0
505 GB7DJK-1 channel func  state 0 -> init
506 <- D GB7DJK-1 
507 <- D GB7DJK-1 Last login: Sun Dec 13 17:59:56 from dirk1
508 <- D GB7DJK-1 PC38^GB7DJK-1^~
509 <- D GB7DJK-1 PC18^ 1 nodes, 0 local / 1 total users  Max users 0  Uptime 
510 0 00:00^5447^~
511     etc
512
513 </verb></tscreen>
514
515 <P>
516 With later versions of Spider there is a set/login command for users.  This 
517 tells them when a user or node logs in or out.  If you do not add a line to 
518 your scripts after the final line (or before the client line which should always 
519 be last if needed) then the login/logout information will be sent to users
520 <it>before</it> the login actually completes.  This means if a node is 
521 unreachable, it will continue sending logins and logouts to users even though it 
522 is not actually connecting.  To avoid this use the following line ...
523
524 <tscreen><verb>
525 'connect' ''
526 </verb></tscreen>
527
528 <P>
529 In a script, this might look like ...
530
531 <tscreen><verb>
532 timeout 35 
533 abort (Busy|Sorry|Fail)
534 connect telnet mary 3000
535 'ogin:' 'gb7mbc'
536 '>' 'telnet 44.131.93.96 7305'
537 'connect' ''
538 </verb></tscreen>
539
540 <sect1>Telnet echo
541
542 <P>
543 Cluster links in particular suffer greatly from the presence of telnet echo.  
544 This is caused by the telnet negotiation itself and can create at worst severe 
545 loops.  At best it creates unnecessary bandwidth and large logfiles!  There are
546 things that can be done to limit this problem but will not always work dependent 
547 on the route taken to connect.
548
549 <P>
550 Telnet echo itself should only be a problem if the connection is being made to 
551 the telnet port (23).  This port uses special rules that include echo negotiation.
552 If the connection is to a different port, such as 8000, this negotiation does 
553 not happen and therefore no echo should be present.
554
555 <P>
556 Sometimes it is not possible to make a direct connection to another node and this 
557 can cause problems.  There is a way of trying to suppress the telnet echo but 
558 this will not always work, unfortunately it is difficult to be more specific.  
559 Here is an example of what I mean ...
560
561 <tscreen><verb>
562 timeout 35
563 abort (Busy|Sorry|Fail)
564 connect telnet mary.lancs.ac.uk
565 'ogin:' 'gb7mbc'
566 'word:' 'mypasswd'
567 '\$' 'stty -echo raw'
568 '\$' 'telnet 44.131.93.96'
569 'connect' ''
570 </verb></tscreen>
571
572 So, the first connection is made by Spider.  This is fine as Spider uses the
573 Net_Telnet script from within perl.  This actually uses TCP rather than TELNET 
574 so no negotiation will be done on the first connection.  Once connected to
575 mary.lancs.ac.uk, the command is sent to suppress echo.  Now a telnet is made 
576 to a cluster node that is accepting connections on port 23.  The problem with 
577 this link is that the negotiation is made by the remote machine, therefore you 
578 have no control over it.  The chances are that this link will create echo and 
579 there will be no way you can stop it.
580
581
582 <sect1>Automating things
583
584 <P>
585 Ok, you should now have DXSpider running nicely and allowing connects by cluster
586 nodes or users.  However, it has to be shutdown and restarted manually and if
587 connection scripts fail they have to be started again manually too, not much use 
588 if you are not at the console!  So, in this section we will automate both.  
589 Firstly starting the cluster.
590
591 <sect2>Autostarting the cluster
592
593 <P>
594 This is not only a way to start the cluster automatically, it also works as a
595 watchdog, checking the sanity of DXSpider and respawning it should it crash for 
596 any reason.  Before doing the following, shutdown the cluster as you did earlier.
597
598 <P>
599 Login as root and bring up the /etc/inittab file in your favourite editor.  Add 
600 the following lines to the file near the end ...
601
602 <tscreen><verb>
603 ##Start DXSpider on bootup and respawn it should it crash
604 DX:3:respawn:/bin/su -c "/usr/bin/perl -w /spider/perl/cluster.pl" sysop >/dev/tty7
605 </verb></tscreen>
606
607 <P>
608 This will automatically start DXSpider on tty7 (ALT-F7) on bootup and restart 
609 it should it crash for any reason.
610
611 <P>
612 As root type the command <em>telinit q</em>.  DXSpider should start up 
613 immediately.  You will see the output on tty7 and if you login as <em>sysop</em> 
614 you should find everything running nicely.
615
616 <P>
617 So far so good, now to automate script connections...
618
619 <sect2>The crontab file
620
621 <P>
622 Login as <em>sysop</em> and create a file in /spider/local_cmd called crontab.  
623 Edit it with your favourite editor and add a line like this (I have included 
624 a comment)
625
626 <tscreen><verb>
627 # check every 10 minutes to see if gb7xxx is connected and if not
628 # start a connect job going
629
630 0,10,20,30,40,50 * * * * start_connect('gb7xxx') if !connected('gb7xxx')
631 </verb></tscreen>
632
633 <P>
634 The callsign involved will be the callsign of the cluster node you are 
635 going to connect to.  This will now check every 10 minutes to see if 
636 gb7xxx is connected, if it is then nothing will be done.  If it is not, 
637 then a connect attempt will be started.
638
639 <P>
640 There are probably lots of other things you could use this crontab file for.  
641 If you want to know more about it, look at the
642 <htmlurl url="http://www.dxcluster.org/cron.html" name="DXSpider"> website 
643 at the cron page where it is explained more fully.
644
645 <sect>Hop control
646
647 <P>
648 Starting with version 1.13 there is simple hop control available on a per
649 node basis. Also it is possible to isolate a network completely so that you 
650 get all the benefits of being on that network, but can't pass on information
651 from it to any other networks you may be connected to (or vice versa).
652
653 <sect1>Basic hop control
654
655 <P>
656 In /spider/data you will find a file called hop_table.pl.  This is the file 
657 that controls your hop count settings.  It has a set of default hops on the 
658 various PC frames and also a set for each node you want to alter the hops for.  
659 You may be happy with the default settings of course, but this powerful tool 
660 can help to protect and improve the network.  The file will look something 
661 like this ...
662
663 <tscreen><verb>
664
665 # hop table construction
666
667
668 package DXProt;
669
670 # default hopcount to use
671 $def_hopcount = 5;
672
673 # some variable hop counts based on message type
674 %hopcount = 
675 (
676  11 => 10,
677  16 => 10,
678  17 => 10,
679  19 => 10,
680  21 => 10,
681 );
682
683
684 # the per node hop control thingy
685
686
687 %nodehops = 
688
689  GB7ADX => {            11 => 8,
690                         12 => 8,
691                         16 => 8,
692                         17 => 8,
693                         19 => 8,
694                         21 => 8,
695                    },
696
697  GB7UDX => {            11 => 8,
698                         12 => 8,
699                         16 => 8,
700                         17 => 8,
701                         19 => 8,
702                         21 => 8,
703                    },
704  GB7BAA => {
705                         11 => 5,
706                         12 => 8,
707                         16 => 8,
708                         17 => 8,
709                         19 => 8,
710                         21 => 8,
711                    },
712 };
713 </verb></tscreen>
714
715 <P>
716 Each set of hops is contained within a pair of curly braces and contains a 
717 series of PC frame types.  PC11 for example is a DX spot. The figures here 
718 are not exhaustive but should give you a good idea of how the file works.
719
720 <P>
721 You can alter this file at any time, including whilst the cluster is running.  
722 If you alter the file during runtime, the command <em>load/hops</em> will 
723 bring your changes into effect.
724
725 <sect1>Isolating networks
726
727 <P>
728 It is possible to isolate networks from each other on a "gateway" node using the
729  <em>set/isolate &lt;node_call&gt;</em> command.
730         
731 <P>
732 The effect of this is to partition an isolated network completely from another 
733 nodes connected to your node. Your node will appear on and otherwise behave 
734 normally on every network to which you are connected, but data from an isolated 
735 network will not cross onto any other network or vice versa. However all the 
736 spot, announce and WWV traffic and personal messages will still be handled 
737 locally (because you are a real node on all connected networks), that is locally
738 connected users will appear on all networks and will be able to access and 
739 receive information from all networks transparently.  All routed messages will 
740 be sent as normal, so if a user on one network knows that you are a gateway for 
741 another network, he can still still send a talk/announce etc message via your 
742 node and it will be routed across.
743
744 <P>
745 The only limitation currently is that non-private messages cannot be passed down 
746 isolated links regardless of whether they are generated locally. This will change 
747 when the bulletin routing facility is added.
748
749 <P>
750 If you use isolate on a node connection you will continue to receive all 
751 information from the isolated partner, however you will not pass any information 
752 back to the isolated node.  There are times when you would like to forward only 
753 spots across a link (maybe during a contest for example).  To do this, isolate 
754 the node in the normal way and put in a filter in the /spider/filter/spots 
755 directory to override the isolate.  This filter can be very simple and consists 
756 of just one line ....
757
758 <tscreen><verb>
759 $in = [
760         [ 1, 0, 'd', 0, 3]      # The last figure (3) is the hop count
761 ];
762 </verb></tscreen>
763
764 <P>
765 There is a lot more on filtering in the next section.
766
767 <sect>Filtering (Old Style upto v1.44)
768
769 <P>
770 Filters can be set for spots, announcements and WWV.  You will find the 
771 directories for these under /spider/filter.  You will find some examples in 
772 the directories with the suffix <em>.issue</em>.  There are two types of 
773 filter, one for incoming information and one for outgoing information. 
774 Outgoing filters are in the form <em>CALLSIGN.pl</em> and incoming filters 
775 are in the form <em>in_CALLSIGN.pl</em>.  Filters can be set for both nodes 
776 and users.
777
778 <P>
779 All filters work in basically the same way.  There are several elements 
780 delimited by commas.  There can be many lines in the filter and they are 
781 read from the top by the program.  When writing a filter you need to think 
782 carefully about just what you want to achieve.  You are either going to write 
783 a filter to <em>accept</em> or to <em>reject</em>.  Think of a filter as 
784 having 2 main elements.  For a reject filter, you would have a line or multiple 
785 lines rejecting the things you do not wish to receive and then a default line
786 accepting everything else that is not included in the filter.  Likewise, for an
787 accept filter, you would have a line or multiple lines accepting the things you 
788 wish to receive and a default line rejecting everthing else.
789
790 <P>
791 In the example below, a user requires a filter that would only return SSB spots
792 posted in Europe on the HF bands.  This is achieved by first rejecting the CW 
793 section of each HF band and rejecting all of VHF, UHF etc based on frequency.
794 Secondly, a filter rule is set based on CQ zones to only accept spots posted in
795 Europe.  Lastly, a default filter rule is set to reject anything outside the filter.
796
797 <tscreen><verb>
798 $in = [
799         [ 0, 0, 'r', # reject all CW spots
800                 [
801                 1800.0, 1850.0,
802                 3500.0, 3600.0,
803                 7000.0, 7040.0,
804                 14000.0, 14100.0,
805                 18068.0, 18110.0,
806                 21000.0, 21150.0,
807                 24890.0, 24930.0,
808                 28000.0, 28180.0,
809                 30000.0, 49000000000.0,
810                 ] ,1 ],
811         [ 1, 11, 'n', [ 14, 15, 16, 20, 33, ], 15 ], #accept EU
812         [ 0, 0, 'd', 0, 1 ], # 1 = want, 'd' = everything else
813 ];
814 </verb></tscreen>
815
816 <P>
817 The actual elements of each filter are described more fully in the following
818 sections.
819
820 <sect1>Spots
821
822 <P>
823 The elements of the Spot filter are ....
824
825 <tscreen><verb>
826 [action, field_no, sort, possible_values, hops]
827 </verb></tscreen>
828
829 <P>
830 There are 3 elements here to look at.  Firstly, the action element.  This is 
831 very simple and only 2 possible states exist, accept (1) or drop (0).
832
833 <P>
834 The second element is the field_no.  There are 13 possiblities to choose from 
835 here ....
836
837 <tscreen><verb>
838       0 = frequency
839       1 = call
840       2 = date in unix format
841       3 = comment
842       4 = spotter
843       5 = spotted dxcc country
844       6 = spotter's dxcc country
845       7 = origin
846       8 = spotted itu
847       9 = spotted cq
848       10 = spotter's itu
849       11 = spotter's cq
850       12 = callsign of the channel on which the spot has appeared
851 </verb></tscreen>
852
853 <P>
854 The third element tells us what to expect in the fourth element.  There are 
855 4 possibilities ....
856
857 <tscreen><verb>
858      n - numeric list of numbers e.g. [ 1,2,3 ]
859      r - ranges of pairs of numbers e.g. between 2 and 4 or 10 to 17 - [ 2,4, 10,17 ]
860      a - an alphanumeric regex
861      d - the default rule
862 </verb></tscreen>
863
864 <P>
865 The fifth element is simply the hops to set in this filter.  This would only 
866 be used if the filter was for a node of course and overrides the hop count in
867 hop_table.pl.
868
869 <P>
870 So, let's look at an example spot filter.  It does not matter in the example 
871 who the filter is to be used for.  So, what do we need in the filter?  We need 
872 to filter the spots the user/node requires and also set a default rule for 
873 anything else outside the filter.  Below is a simple filter that stops spots 
874 arriving from outside Europe.
875
876 <tscreen><verb>$in = [
877   [ 0, 4, 'a', '^(K|N|A|W|VE|VA|J)'],  # 0 = drop, 'a' = alphanumeric
878   [ 1, 0, 'd', 0, 1 ],                 # 1 = want, 'd' = everything else
879                      ];
880 </verb></tscreen>
881
882 <P>
883 So the filter is wrapped in between a pair of square brackets.  This tells 
884 Spider to look in between these limits.  Then each line is contained within 
885 its own square brackets and ends with a comma. Lets look carefully at the first 
886 line.  The first element is 0 (drop).  Therefore anything we put on this line 
887 will not be accepted.  The next element is 4.  This means we are filtering by 
888 the spotter.  The third element is the letter "a" which tells the program to 
889 expect an alphanumeric expression in the fourth element.  The fourth element 
890 is a list of letters separated by the pipe symbol.
891
892 <P>
893 What this line does is tell the program to drop any spots posted by anyone in 
894 the USA, Canada or Japan.
895
896 <P>
897 The second line is the default rule for anything else.  The "d" tells us this 
898 and the line simply reads... accept anything else.
899
900 <P>
901 You can add as many lines as you need to complete the filter but if there are 
902 several lines of the same type it is neater to enclose them all as one line.  
903 An example of this is where specific bands are set.  We could write this like 
904 this ....
905
906 <tscreen><verb>
907 [ 0,0,'r',[1800.0, 2000.0], 1],
908 [ 0,0,'r',[10100.0, 10150.0], 1],
909 [ 0,0,'r',[14000.0, 14350.0], 1],
910 [ 0,0,'r',[18000.0, 18200.0], 1],
911 </verb></tscreen>
912
913 <P>
914 But the line below achieves the same thing and is more efficient ....
915
916 <tscreen><verb>
917   [ 0, 0, 'r',
918     [  
919       1800.0, 2000.0,         # top band 
920       10100.0, 10150.0,       # WARC  
921       14000.0, 14350.0,       # 20m
922       18000.0, 18200.0,       # WARC
923     [ ,1 ],
924 </verb></tscreen>
925
926
927 <sect1>Announcements
928
929 <P>
930 <tscreen><verb>
931
932 # This is an example announce or filter allowing only West EU announces
933
934 # The element list is:-
935 # 0 - callsign of announcer
936 # 1 - destination * = all, <callsign> = routed to the node
937 # 2 - text
938 # 3 - * - sysop, <some text> - special list eg 6MUK, ' ', normal announce
939 # 4 - origin
940 # 5 - 0 - announce, 1 - wx
941 # 6 - channel callsign (the interface from which this spot came)
942
943 $in = [
944         [ 1, 0, 'a', '^(P[ABCDE]|DK0WCY|G|M|2|EI|F|ON)' ],
945         [ 0, 0, 'd', 0 ]
946 ];
947 </verb></tscreen>
948
949 In this example, only the prefixes listed will be allowed.  It is possible to 
950 be quite specific.  The Dutch prefix "P" is followed by several secondary 
951 identifiers which are allowed.  So, in the example, "PA" or "PE" would be ok 
952 but not "PG".  It is even possible to allow information from a single callsign.  
953 In the example this is DK0WCY, to allow the posting of his Aurora Beacon.
954
955 <sect1>WWV
956
957 <P>
958 <tscreen><verb>
959
960 # This is an example WWV filter
961
962 # The element list is:-
963 # 0 - nominal unix date of spot (ie the day + hour:13)
964 # 1 - the hour
965 # 2 - SFI
966 # 3 - K
967 # 4 - I
968 # 5 - text
969 # 6 - spotter
970 # 7 - origin
971 # 8 - incoming interface callsign
972
973 # this one doesn't filter, it just sets the hop count to 6 and is
974 # used mainly just to override any isolation from WWV coming from
975 # the internet.
976
977 $in = [
978         [ 1, 0, 'd', 0, 6 ]
979 ];
980
981 </verb></tscreen>
982
983 <P>
984 It should be noted that the filter will start to be used only once a user/node 
985 has logged out and back in again.
986 <P>
987 I am not going to spend any more time on these filters now as they will become 
988 more "comprehensive" in the near future.
989
990 <sect>Filtering (New Style v1.45 and later)
991
992 <sect1>General filter rules
993
994 <P>
995 Upto v1.44 it was not possible for the user to set their own filters.  From 
996 v1.45 though that has all changed.  It is now possible to set filters for just 
997 about anything you wish.  If you have just updated from an older version of 
998 DXSpider you will need to update your new filters.  You do not need to do 
999 anything with your old filters, they will be renamed as you update.
1000
1001 <P>
1002 There are 3 basic commands involved in setting and manipulating filters.  These 
1003 are <em>accept</em>, <em>reject</em> and <em>clear</em>.  First we will look
1004 generally at filtering. There are a number of things you can filter in the 
1005 DXSpider system. They all use the same general mechanism.
1006
1007 <P>
1008 In general terms you can create a 'reject' or an 'accept' filter which can have 
1009 up to 10 lines in it. You do this using, for example ... 
1010
1011 <tscreen><verb> 
1012 accept/spots .....
1013 reject/spots .....
1014 </verb></tscreen>
1015
1016 where ..... are the specific commands for that type of filter. There are filters 
1017 for spots, wwv, announce, wcy and (for sysops) connects. See each different 
1018 accept or reject command reference for more details.
1019
1020 There is also a command to clear out one or more lines in a filter. They are ...
1021
1022 <tscreen><verb>
1023 clear/spots 1
1024 clear/spots all
1025 </verb></tscreen>
1026
1027 There is clear/xxxx command for each type of filter.
1028
1029 <P>
1030 and you can check that your filters have worked by the command ... 
1031
1032 <tscreen><verb>  
1033 show/filter
1034 </verb></tscreen>
1035
1036 <P>
1037 For now we are going to use spots for the examples, but you can apply the same
1038 principles to all types of filter.
1039
1040 <sect1>Types of filter
1041
1042 <P>
1043 There are two main types of filter, <em>accept</em> or <em>reject</em>.  You 
1044 can use either to achieve the result you want dependent on your own preference 
1045 and which is more simple to do.  It is pointless writing 8 lines of reject 
1046 filters when 1 accept filter would do the same thing!  Each filter has 10 
1047 lines (of any length) which are tried in order.  If a line matches then the 
1048 action you have specified is taken (ie reject means ignore it and accept 
1049 means take it)
1050
1051 <P>
1052 If you specify reject filters, then any lines that arrive that match the filter 
1053 will be dumped but all else will be accepted.  If you use an accept filter, 
1054 then ONLY the lines in the filter will be accepted and all else will be dumped.
1055 For example if you have a single line <em>accept</em> filter ...
1056
1057 <tscreen><verb>
1058 accept/spots on vhf and (by_zone 14,15,16 or call_zone 14,15,16)
1059 </verb></tscreen>
1060
1061 then you will <em>ONLY</em> get VHF spots <em>from</em> or <em>to</em> CQ zones 
1062 14, 15 and 16.
1063
1064 <P>
1065 If you set a reject filter like this ...
1066
1067 <tscreen><verb>
1068 reject/spots on hf/cw
1069 </verb></tscreen>
1070
1071 Then you will get everything <em>EXCEPT</em> HF CW spots.  You could make this 
1072 single filter even more flexible.  For example, if you are interested in IOTA 
1073 and will work it even on CW even though normally you are not interested in 
1074 CW, then you could say ...
1075
1076 <tscreen><verb>
1077 reject/spots on hf/cw and not info iota
1078 </verb></tscreen>
1079
1080 But in that case you might only be interested in iota and say:-
1081
1082 <tscreen><verb>
1083 accept/spots not on hf/cw or info iota
1084 </verb></tscreen>
1085
1086 which achieves exactly the same thing. You should choose one or the other 
1087 until you are comfortable with the way it works. You can mix them if you 
1088 wish (actually you can have an accept AND a reject on the same line) but 
1089 don't attempt this until you are sure you know what you are doing!
1090
1091 <P>
1092 You can arrange your filter lines into logical units, either for your own
1093 understanding or simply convenience. Here is an example ...
1094
1095 <tscreen><verb>
1096 reject/spots 1 on hf/cw
1097 reject/spots 2 on 50000/1400000 not (by_zone 14,15,16 or call_zone 14,15,16)  
1098 </verb></tscreen>
1099
1100 What this does is to ignore all HF CW spots and also rejects any spots on VHF 
1101 which don't either originate or spot someone in Europe. 
1102
1103 <P>
1104 This is an example where you would use a line number (1 and 2 in this case), if 
1105 you leave the digit out, the system assumes '1'. Digits '0'-'9' are available.  
1106 This make it easier to see just what filters you have set.  It also makes it 
1107 more simple to remove individual filters, during a contest for example.
1108
1109 <P>
1110 You will notice in the above example that the second line has brackets.  Look 
1111 at the line logically.  You can see there are 2 separate sections to it.  We 
1112 are saying reject spots that are VHF or above <em>APART</em> from those in 
1113 zones 14, 15 and 16 (either spotted there or originated there).  If you did 
1114 not have the brackets to separate the 2 sections, then Spider would read it 
1115 logically from the front and see a different expression entirely ...
1116
1117 <tscreen><verb>
1118 (on 50000/1400000 and by_zone 14,15,16) or call_zone 14,15,16 
1119 </verb></tscreen>
1120
1121 The simple way to remember this is, if you use OR - use brackets. Whilst we are 
1122 here CASE is not important. 'And BY_Zone' is just the same as 'and by_zone'.
1123
1124 As mentioned earlier, setting several filters can be more flexible than 
1125 simply setting one complex one.  Doing it in this way means that if you want 
1126 to alter your filter you can just redefine or remove one or more lines of it or 
1127 one line. For example ...
1128
1129 <tscreen><verb>
1130 reject/spots 1 on hf/ssb
1131 </verb></tscreen>
1132
1133 would redefine our earlier example, or 
1134
1135 <tscreen><verb>
1136 clear/spots 1
1137 </verb></tscreen>
1138
1139 To remove all the filter lines in the spot filter ...
1140
1141 <tscreen><verb>
1142 clear/spots all
1143 </verb></tscreen>
1144
1145 <sect1>Filter options
1146
1147 <P>
1148 You can filter in several different ways.  The options are listed in the
1149 various helpfiles for accept, reject and filter.
1150
1151 <sect1>Default filters
1152
1153 <P>
1154 Sometimes all that is needed is a general rule for node connects.  This can
1155 be done with a node_default filter.  This rule will always be followed, even
1156 if the link is isolated, unless another filter is set specifically.  Default
1157 rules can be set for nodes and users.  They can be set for spots, announces,
1158 WWV and WCY.  They can also be used for hops.  An example might look like 
1159 this ...
1160
1161 <tscreen><verb>
1162 accept/spot node_default by_zone 14,15,16,20,33
1163 set/hops node_default spot 50
1164 </verb></tscreen>
1165
1166 This filter is for spots only, you could set others for announce, WWV and WCY.
1167 This filter would work for ALL nodes unless a specific filter is written to 
1168 override it for a particular node.  You can also set a user_default should
1169 you require.  It is important to note that default filters should be
1170 considered to be "connected".  By this I mean that should you override the
1171 default filter for spots, you need to add a rule for the hops for spots also.
1172
1173 <sect1>Advanced filtering
1174
1175 <P>
1176 Once you are happy with the results you get, you may like to experiment. 
1177
1178 <P>
1179 The previous example that filters hf/cw spots and accepts vhf/uhf spots from EU 
1180 can be written with a mixed filter, for example ... 
1181
1182 <tscreen><verb>
1183 rej/spot on hf/cw
1184 acc/spot on 0/30000
1185 acc/spot 2 on 50000/1400000 and (by_zone 14,15,16 or call_zone 14,15,16)
1186 </verb></tscreen>
1187
1188 Note that the first filter has not been specified with a number.  This will 
1189 automatically be assumed to be number 1.  In this case, we have said <em>reject all
1190 HF spots in the CW section of the bands but accept all others at HF.  Also
1191 accept anything in VHF and above spotted in or by operators in the zones
1192 14, 15 and 16</em>.  Each filter slot actually has a 'reject' slot and 
1193 an 'accept' slot. The reject slot is executed BEFORE the accept slot.
1194
1195 <P>
1196 It was mentioned earlier that after a reject test that doesn't match, the default 
1197 for following tests is 'accept', the reverse is true for 'accept'. In the example 
1198 what happens is that the reject is executed first, any non hf/cw spot is passed 
1199 to the accept line, which lets through everything else on HF.  The next filter line 
1200 lets through just VHF/UHF spots from EU.
1201
1202
1203 <sect>Other filters
1204
1205 <sect1>Filtering Mail
1206
1207 <P>
1208 In the /spider/msg directory you will find a file called badmsg.pl.issue.  Rename
1209 this to badmsg.pl and edit the file.  The original looks something like this ....
1210
1211 <tscreen><verb>
1212
1213 # the list of regexes for messages that we won't store having
1214 # received them (bear in mind that we must receive them fully before
1215 # we can bin them)
1216
1217
1218 # The format of each line is as follows
1219
1220 #     type      source             pattern 
1221 #     P/B/F     T/F/O/S            regex  
1222
1223 # type: P - private, B - bulletin (msg), F - file (ak1a bull)
1224 # source: T - to field, F - from field,  O - origin, S - subject 
1225 # pattern: a perl regex on the field requested
1226
1227 # Currently only type B and P msgs are affected by this code.
1228
1229 # The list is read from the top down, the first pattern that matches
1230 # causes the action to be taken.
1231
1232 # The pattern can be undef or 0 in which case it will always be selected
1233 # for the action specified
1234
1235
1236
1237 package DXMsg;
1238
1239 @badmsg = (
1240 'B',    'T',    'SALE', 
1241 'B',    'T',    'WANTED',
1242 'B',    'S',    'WANTED',
1243 'B',    'S',    'SALE', 
1244 'B',    'S',    'WTB',
1245 'B',    'S',    'WTS',
1246 'B',    'T',    'FS',
1247 );
1248 </verb></tscreen>
1249
1250 <P>
1251 I think this is fairly self explanatory.  It is simply a list of subject 
1252 headers that we do not want to pass on to either the users of the cluster or 
1253 the other cluster nodes that we are linked to.  This is usually because of 
1254 rules and regulations pertaining to items for sale etc in a particular country.
1255
1256 <sect1>Filtering DX callouts
1257
1258 <P>
1259 In the same way as mail, there are some types of spot we do not wish to pass on 
1260 to users or linked cluster nodes.  In the /spider/data directory you will find 
1261 a file called baddx.pl.issue.  Rename this to baddx.pl and edit the file.  The
1262 original looks like this ....
1263
1264 <tscreen><verb>
1265
1266 # the list of dx spot addresses that we don't store and don't pass on
1267
1268
1269 package DXProt;
1270
1271 @baddx = qw 
1272
1273  FROG 
1274  SALE
1275  FORSALE
1276  WANTED
1277  P1RATE
1278  PIRATE
1279  TEST
1280  DXTEST
1281  NIL
1282  NOCALL 
1283 );
1284 </verb></tscreen>
1285
1286 <P>
1287 Again, this is simply a list of names we do not want to see in the spotted 
1288 field of a DX callout.
1289
1290
1291 <sect1>Filtering words from text fields in Announce, Talk and DX spots
1292
1293 <P>
1294 Create a file in /spider/data called <em>badwords</em>.  The format is quite
1295 simple.  Lines beginning with # are ignored so comments can be added.  An
1296 example file is below ...
1297
1298 <tscreen><verb>
1299 # Below is a list of words we do not wish to see on the cluster
1300 grunge grunged grunging
1301 splodge splodger splodging
1302 grince
1303 fluffle
1304 </verb></tscreen>
1305
1306 Multiple words can be used on the same line as shown.  Obviously these
1307 are just examples :-)
1308
1309 <P>
1310 You can reload the file from the cluster prompt as sysop with load/badwords.
1311
1312 <sect>Information, files and useful programs
1313
1314 <sect1>MOTD
1315
1316 <P>
1317 One of the more important things a cluster sysop needs to do is to get 
1318 information to his users.  The simplest way to do this is to have a banner 
1319 that is sent to the user on login.  This is know as a "message of the day" 
1320 or "motd".  To set this up, simply create a file in /spider/data called motd 
1321 and edit it to say whatever you want.  It is purely a text file and will be 
1322 sent automatically to anyone logging in to the cluster.
1323
1324 <sect1>Downtime message
1325
1326 <P>
1327 If for any reason the cluster is down, maybe for upgrade or maintenance but 
1328 the machine is still running, a message can be sent to the user advising them 
1329 of the fact.  This message lives in the /spider/data directory and is called
1330 "offline".  Simply create the file and edit it to say whatever you wish.  
1331 This file will be sent to a user attempting to log into the cluster when
1332 DXSpider is not actually running.
1333
1334 <sect1>Other text messages
1335
1336 <P>
1337 You can set other text messages to be read by the user if they input the file 
1338 name.  This could be for news items or maybe information for new users.  
1339 To set this up, make a directory under /spider called <em>packclus</em>.  
1340 Under this directory you can create files called <em>news</em> or <em>newuser</em>
1341 for example.  In fact you can create files with any names you like.  These can 
1342 be listed by the user with the command ....
1343
1344 <tscreen><verb>
1345 show/files
1346 </verb></tscreen>
1347
1348 They can be read by the user by typing the command ....
1349
1350 <tscreen><verb>
1351 type news
1352 </verb></tscreen>
1353
1354 If the file they want to read is called <em>news</em>.  You could also set 
1355 an alias for this in the Alias file to allow them just to type <em>news</em>
1356
1357 <P>
1358 You can also store other information in this directory, either directly or 
1359 nested under directories.  One use for this would be to store DX bulletins 
1360 such as the OPDX bulletins.  These can be listed and read by the user.  
1361 To keep things tidy, make a directory under /spider/packclus called
1362 <em>bulletins</em>.  Now copy any OPDX or similar bulletins into it.  These 
1363 can be listed by the user in the same way as above using the <em>show/files</em>
1364 command with an extension for the bulletins directory you have just created, 
1365 like this ....
1366
1367 <tscreen><verb>
1368 show/files bulletins
1369 </verb></tscreen>
1370
1371 <P>
1372 An example would look like this ....
1373
1374 <tscreen><verb>
1375 sh/files
1376 bulletins      DIR 20-Dec-1999 1715Z news          1602 14-Dec-1999 1330Z
1377 </verb></tscreen>
1378
1379 You can see that in the files area (basically the packclus directory) there is a 
1380 file called <em>news</em> and a directory called <em>bulletins</em>.  You can 
1381 also see that dates they were created.  In the case of the file <em>news</em>, 
1382 you can also see the time it was last modified, a good clue as to whether the 
1383 file has been updated since you last read it.  To read the file called 
1384 <em>news</em> you would simply issue the command ....
1385
1386 <tscreen><verb>
1387 type news
1388 </verb></tscreen>
1389
1390 To look what is in the bulletins directory you issue the command ....
1391
1392 <tscreen><verb>
1393 show/files bulletins
1394 opdx390      21381 29-Nov-1999 1621Z opdx390.1     1670 29-Nov-1999 1621Z
1395 opdx390.2     2193 29-Nov-1999 1621Z opdx391      25045 29-Nov-1999 1621Z  
1396 opdx392      35969 29-Nov-1999 1621Z opdx393      15023 29-Nov-1999 1621Z  
1397 opdx394      33429 29-Nov-1999 1621Z opdx394.1     3116 29-Nov-1999 1621Z  
1398 opdx395      24319 29-Nov-1999 1621Z opdx396      32647 29-Nov-1999 1621Z
1399 opdx396.1     5537 29-Nov-1999 1621Z opdx396.2     6242 29-Nov-1999 1621Z
1400 opdx397      18433 29-Nov-1999 1621Z opdx398      19961 29-Nov-1999 1621Z  
1401 opdx399      17719 29-Nov-1999 1621Z opdx400      19600 29-Nov-1999 1621Z
1402 opdx401      27738 29-Nov-1999 1621Z opdx402      18698 29-Nov-1999 1621Z
1403 opdx403      24994 29-Nov-1999 1621Z opdx404      15685 29-Nov-1999 1621Z
1404 opdx405      13984 29-Nov-1999 1621Z opdx405.1     4166 29-Nov-1999 1621Z
1405 opdx406      28934 29-Nov-1999 1621Z opdx407      24153 29-Nov-1999 1621Z
1406 opdx408      15081 29-Nov-1999 1621Z opdx409      23234 29-Nov-1999 1621Z
1407 Press Enter to continue, A to abort (16 lines) >
1408 </verb></tscreen>
1409
1410 You can now read any file in this directory using the type command, like this ....
1411
1412 <tscreen><verb>
1413 type bulletins/opdx391
1414 Ohio/Penn DX Bulletin No. 391
1415 The Ohio/Penn Dx PacketCluster
1416 DX Bulletin No. 391
1417 BID: $OPDX.391
1418 January 11, 1999
1419 Editor Tedd Mirgliotta, KB8NW
1420 Provided by BARF-80 BBS Cleveland, Ohio
1421 Online at 440-237-8208 28.8k-1200 Baud 8/N/1 (New Area Code!)
1422 Thanks to the Northern Ohio Amateur Radio Society, Northern Ohio DX
1423 Association, Ohio/Penn PacketCluster Network, K1XN & Golist, WB2RAJ/WB2YQH
1424 & The 59(9) DXReport, W3UR & The Daily DX, K3TEJ, KN4UG, W4DC, NC6J, N6HR,
1425 Press Enter to continue, A to abort (508 lines) >
1426 </verb></tscreen>
1427
1428 The page length will of course depend on what you have it set to!
1429
1430 <sect1>The Aliases file
1431
1432 <P>
1433 You will find a file in /spider/cmd/ called Aliases.  First, copy this file to
1434 /spider/local_cmd/Aliases and edit this file.  You will see something like this ...
1435
1436 <tscreen><verb>
1437
1438 #!/usr/bin/perl
1439
1440 # provide some standard aliases for commands for terminally
1441 # helpless ak1a user (helpless in the sense that they never
1442 # read nor understand help files)
1443
1444 # This file is automagically reloaded if its modification time is 
1445 # later than the one stored in CmdAlias.pm
1446
1447 # PLEASE make this file consistant with reality! (the patterns MUST
1448 # match the filenames!)
1449
1450 # Don't alter this file, copy it into the local_cmd tree and modify it.
1451 # This file will be replaced everytime I issue a new release.
1452
1453 # You only need to put aliases in here for commands that don't work as
1454 # you desire naturally, e.g sh/dx on its own just works as you expect
1455 # so you need not add it as an alias.
1456
1457
1458
1459 package CmdAlias;
1460
1461 %alias = (
1462     '?' => [
1463           '^\?', 'apropos', 'apropos',
1464         ],
1465     'a' => [
1466           '^ann.*/full', 'announce full', 'announce', 
1467           '^ann.*/sysop', 'announce sysop', 'announce',
1468           '^ann.*/(.*)$', 'announce $1', 'announce',
1469         ],
1470         'b' => [
1471         ],
1472         'c' => [
1473         ],
1474         'd' => [
1475           '^del', 'kill', 'kill',
1476           '^del\w*/fu', 'kill full', 'kill',
1477           '^di\w*/a\w*', 'directory all', 'directory',
1478           '^di\w*/b\w*', 'directory bulletins', 'directory',
1479           '^di\w*/n\w*', 'directory new', 'directory',
1480           '^di\w*/o\w*', 'directory own', 'directory',
1481           '^di\w*/s\w*', 'directory subject', 'directory',
1482           '^di\w*/t\w*', 'directory to', 'directory',
1483           '^di\w*/f\w*', 'directory from', 'directory',
1484           '^di\w*/(\d+)', 'directory $1', 'directory',
1485         ],
1486         'e' => [
1487         ],
1488         'f' => [
1489         ],
1490         'g' => [
1491         ],
1492         'h' => [
1493         ],
1494         'i' => [
1495         ],
1496         'j' => [
1497         ],
1498         'k' => [
1499         ],
1500         'l' => [
1501           '^l$', 'directory', 'directory',
1502           '^ll$', 'directory', 'directory',
1503           '^ll/(\d+)', 'directory $1', 'directory',
1504         ],
1505         'm' => [
1506         ],
1507         'n' => [
1508           '^news', 'type news', 'type',
1509         ],
1510         'o' => [
1511         ],
1512         'p' => [
1513         ],
1514         'q' => [
1515           '^q', 'bye', 'bye',
1516         ],
1517         'r' => [        
1518           '^r$', 'read', 'read',
1519           '^rcmd/(\S+)', 'rcmd $1', 'rcmd',
1520         ],
1521         's' => [
1522           '^s/p$', 'send', 'send',
1523           '^sb$', 'send noprivate', 'send',
1524           '^set/home$', 'set/homenode', 'set/homenode',
1525           '^set/nobe', 'unset/beep', 'unset/beep',
1526           '^set/nohe', 'unset/here', 'unset/here',
1527           '^set/noan', 'unset/announce', 'unset/announce',
1528           '^set/nodx', 'unset/dx', 'unset/dx',
1529           '^set/nota', 'unset/talk', 'unset/talk',
1530           '^set/noww', 'unset/wwv', 'unset/wwv',
1531           '^set/nowx', 'unset/wx', 'unset/wx',
1532           '^sh$', 'show', 'show',
1533           '^sh\w*/buck', 'dbshow buck', 'dbshow',
1534           '^sh\w*/bu', 'show/files bulletins', 'show/files',
1535           '^sh\w*/c/n', 'show/configuration nodes', 'show/configuration',
1536           '^sh\w*/c$', 'show/configuration', 'show/configuration',
1537           '^sh\w*/com', 'dbavail', 'dbavail',
1538           '^sh\w*/dx/(\d+)-(\d+)', 'show/dx $1-$2', 'show/dx',
1539           '^sh\w*/dx/(\d+)', 'show/dx $1', 'show/dx',
1540           '^sh\w*/dx/d(\d+)', 'show/dx from $1', 'show/dx',
1541           '^sh\w*/email', 'dbshow email', 'dbshow',
1542           '^sh\w*/hftest', 'dbshow hftest', 'dbshow',
1543           '^sh\w*/vhftest', 'dbshow vhftest', 'dbshow',
1544           '^sh\w*/qsl', 'dbshow qsl', 'dbshow',
1545           '^sh\w*/tnc', 'who', 'who',
1546           '^sh\w*/up', 'show/cluster', 'show/cluster',
1547           '^sh\w*/w\w*/(\d+)-(\d+)', 'show/wwv $1-$2', 'show/wwv',
1548           '^sh\w*/w\w*/(\d+)', 'show/wwv $1', 'show/wwv',
1549           '^sp$', 'send', 'send',
1550         
1551     ],
1552         't' => [
1553           '^ta$', 'talk', 'talk',
1554           '^t$', 'talk', 'talk',
1555         ],
1556         'u' => [
1557         ],
1558         'v' => [
1559         ],
1560         'w' => [
1561           '^wx/full', 'wx full', 'wx',
1562           '^wx/sysop', 'wx sysop', 'wx',
1563         ],
1564         'x' => [
1565         ],
1566         'y' => [
1567         ],
1568         'z' => [
1569         ],
1570 )
1571 </verb></tscreen>
1572
1573 You can create aliases for commands at will.  Beware though, these may not 
1574 always turn out as you think.  Care is needed and you need to test the 
1575 results once you have set an alias.
1576
1577 <sect1>Forward.pl
1578
1579 <P>
1580 DXSpider receives all and any mail sent to it without any alterations needed
1581 in files.  Because personal and bulletin mail are treated differently, there
1582 is no need for a list of accepted bulletin addresses.  It is necessary, however,
1583 to tell the program which links accept which bulletins.  For example, it is
1584 pointless sending bulletins addresses to "UK" to any links other than UK
1585 ones.  The file that does this is called forward.pl and lives in /spider/msg.
1586 At default, like other spider files it is named forward.pl.issue.  Rename it
1587 to forward.pl and edit the file to match your requirements.
1588 The format is below ...
1589
1590 <tscreen><verb>
1591 #
1592 # this is an example message forwarding file for the system
1593 #
1594 # The format of each line is as follows
1595 #
1596 #     type    to/from/at pattern action  destinations
1597 #     P/B/F     T/F/A     regex   I/F    [ call [, call ...] ]
1598 #
1599 # type: P - private, B - bulletin (msg), F - file (ak1a bull)
1600 # to/from/at: T - to field, F - from field, A - home bbs, O - origin 
1601 # pattern: a perl regex on the field requested
1602 # action: I - ignore, F - forward
1603 # destinations: a reference to an array containing node callsigns
1604 #
1605 # if it is non-private and isn't in here then it won't get forwarded 
1606 #
1607 # Currently only type B msgs are affected by this code.
1608
1609 # The list is read from the top down, the first pattern that matches
1610 # causes the action to be taken.
1611 #
1612 # The pattern can be undef or 0 in which case it will always be selected
1613 # for the action specified
1614 #
1615 # If the BBS list is undef or 0 and the action is 'F' (and it matches the
1616 # pattern) then it will always be forwarded to every node that doesn't have 
1617 # it (I strongly recommend you don't use this unless you REALLY mean it, if
1618 # you allow a new link with this on EVERY bull will be forwarded immediately
1619 # on first connection)
1620 #
1621
1622 package DXMsg;
1623
1624 @forward = (
1625 'B',    'T',    'LOCAL',        'F',    [ qw(GB7MBC) ],
1626 'B',    'T',    'ALL',          'F',    [ qw(GB7BAA GB7ADX PA4AB-14) ],
1627 'B',    'T',    'UK',           'F',    [ qw(GB7BAA GB7ADX) ],
1628 'B',    'T',    'QSL',          'F',    [ qw(GB7BAA GB7ADX PA4AB-14) ],
1629 'B',    'T',    'QSLINF',       'F',    [ qw(GB7BAA GB7ADX PA4AB-14) ],
1630 'B',    'T',    'DX',           'F',    [ qw(GB7BAA GB7ADX PA4AB-14) ],
1631 'B',    'T',    'DXINFO',       'F',    [ qw(GB7BAA GB7ADX PA4AB-14) ],
1632 'B',    'T',    'DXNEWS',       'F',    [ qw(GB7BAA GB7ADX PA4AB-14) ],
1633 'B',    'T',    'DXQSL',        'F',    [ qw(GB7BAA GB7ADX PA4AB-14) ],
1634 'B',    'T',    'SYSOP',        'F',    [ qw(GB7BAA GB7ADX) ],
1635 'B',    'T',    '50MHZ',        'F',    [ qw(GB7BAA GB7ADX PA4AB-14) ],
1636 );
1637 </verb></tscreen>
1638
1639 Simply insert a bulletin address and state in the brackets where you wish
1640 that mail to go.  For example, you can see here that mail sent to "UK" will
1641 only be sent to the UK links and not to PA4AB-14.
1642
1643 <P>
1644 To force the cluster to reread the file use load/forward
1645
1646 <sect1>Distribution lists
1647
1648 <P>
1649 Distribution lists are simply a list of users to send certain types of
1650 mail to.  An example of this is mail you only wish to send to other
1651 sysops.  In /spider/msg there is a directory called <em>distro</em>.  You
1652 put any distibution lists in here.  For example, here is a file called
1653 SYSOP.pl that caters for the UK sysops.
1654
1655 <tscreen><verb>
1656 qw(GB7TLH GB7DJK GB7DXM GB7CDX GB7BPQ GB7DXN GB7MBC GB7MBC-6 GB7MDX
1657    GB7NDX GB7SDX GB7TDX GB7UDX GB7YDX GB7ADX GB7BAA GB7DXA GB7DXH 
1658    GB7DXK GB7DXI GB7DXS)
1659 </verb></tscreen>
1660
1661 Any mail sent to "sysop" would only be sent to the callsigns in this list.
1662  
1663 <sect1>Console.pl
1664
1665 <P>
1666 In later versions of Spider a simple console program is provided for the sysop.  
1667 This has a type ahead buffer with line editing facilities and colour for spots,
1668 announces etc.  To use this program, simply use console.pl instead of client.pl.
1669
1670 <P>
1671 To edit the colours, copy /spider/perl/Console.pl to /spider/local and edit the 
1672 file with your favourite editor.
1673
1674 <sect>CVS
1675
1676 <P>
1677 CVS stands for "Concurrent Versions System" and the CVS for DXSpider is held
1678 at <htmlurl url="http://www.sourceforge.net" name="Sourceforge">.  This means
1679 that it is possible to update your DXSpider installation to the latest
1680 sources by using a few simple commands.
1681
1682 <P>
1683 THIS IS NOT FOR THE FAINT HEARTED!!!  ONLY DO THIS IF YOU HAVE A TEST
1684 INSTALLATION OR ARE WILLING TO HAVE YOUR CLUSTER CRASH ON YOU!!!
1685 THIS MUST BE CONSIDERED AT LEAST BETA TESTING AND MAYBE EVEN ALPHA!!
1686 YOU HAVE BEEN WARNED!!!
1687
1688 <P>
1689 DID I MENTION..... ONLY DO THIS IF YOU ARE WILLING TO ACCEPT THE
1690 CONSEQUENCES!!!
1691
1692 <P>
1693 I am of course assuming that you have a machine with both DXSpider and
1694 Internet access running.
1695
1696 <P>
1697 BEFORE YOU EVEN CONSIDER STARTING WITH THIS MAKE A BACKUP OF YOUR
1698 ENTIRE SPIDER TREE!!
1699
1700 <P>
1701 Assuming you are connected to the Internet, you need to login to the
1702 CVS repository and then update your Spider source.  There are several
1703 steps which are listed below ...
1704
1705 <P>
1706 First login as the user <em>sysop</em>.  Next you need to connect to the CVS
1707 repository.  You do this with the command below ...
1708
1709 <verb>
1710 cvs -d:pserver:anonymous@cvs.DXSpider.sourceforge.net:/cvsroot/DXSpider login 
1711 </verb>
1712
1713 You will get a password prompt.  Simply hit return here and your machine should
1714 return to a normal linux prompt.
1715
1716 <P>
1717 What happens next depends on whether you have an existing installation that 
1718 you want to update with the latest and greatest or whether you just want
1719 to see what is there and/or run it on a new machine for testing.
1720 Either way you will want to change directory to a new place, if you want to
1721 update an existing installation then I suggest /tmp, otherwise choose a
1722 suitable place according to the normal installation instructions.
1723
1724 <P>
1725 The next step will create a brand new 'spider' directory in your current
1726 directory.
1727
1728 <verb>
1729 cvs -z3 -d:pserver:anonymous@cvs.DXSpider.sourceforge.net:/cvsroot/DXSpider co spider
1730 </verb>
1731
1732 This command is all on one line.
1733
1734 <P>
1735 Hopefully your screen should show you downloading files.  The -z3 simply compresses
1736 the download to improve speed.
1737 When this has finished, you will have exactly the same as if you had untarred a full 
1738 tarball PLUS some extra directories and files that CVS needs to do the magic that 
1739 it does.
1740
1741 <P>
1742 Now if you are doing a new installation, that's it.  Carry on as if you have
1743 just downloaded and untarred the lastest tarball.
1744
1745 <P>
1746 If you want to upgrade your current installation then do this ...
1747
1748 <tscreen><verb>
1749 tar cvfz /tmp/s.tgz spider
1750 cd /
1751 tar xvfzp /tmp/s.tgz
1752 </verb></tscreen>
1753
1754 This is assuming you downloaded to the /tmp directory of course.
1755
1756 <P>
1757 NOTE:  the 'p' on the end of the 'xvfz' is IMPORTANT!   It keeps the permissions
1758 correct.  YOU WERE LOGGED IN AS THE USER SYSOP WEREN'T YOU?????
1759
1760 Remember to recompile the C client (cd /spider/src; make)
1761
1762 <P>
1763 At this point the files have been upgraded.  You can (usually) restrt the cluster
1764 in your own time.  However, if you attempt to use any new commands or features
1765 expect it to be fatal!  At least your cluster will have been restarted then so it
1766 will be too late to worry about it!
1767
1768 <P>
1769 Now the magic part!  From now on when you want to update, simply connect to the 
1770 Internet and then, as the user <em>sysop</em> ...
1771
1772 <tscreen><verb>
1773 cd /spider
1774 cvs -z3 update -d
1775 </verb></tscreen>
1776
1777 and your files will be updated.  As above, remember to recompile the "C" client 
1778 if it has been updated (CVS will tell you) and restart if any of the perl scripts
1779 have been altered or added, again, CVS will tell you.
1780
1781 <P>
1782 You will find any changes documented in the /spider/Changes file.
1783
1784 <sect>The DXSpider command set
1785
1786 <P>
1787 Below is a complete list of commands available from the cluster prompt.
1788 Most maintenance tasks are automatic but there are some commands that are useful 
1789 for a sysop.  These are listed below in alphabetical order.  The number in 
1790 brackets following the command name is the permissions level needed to use 
1791 the command.
1792
1793 <sect1>accept/announce (0)
1794
1795 <P>
1796 <tt>
1797 <bf>accept/announce &lsqb;0-9&rsqb; &lt;pattern&gt;</bf> Set an accept filter
1798  line for announce
1799 </tt>
1800
1801 <P>
1802 Create an 'accept this announce' line for a filter. 
1803
1804 An accept filter line means that if the announce matches this filter it is
1805 passed onto the user. See HELP FILTERS for more info. Please read this
1806 to understand how filters work - it will save a lot of grief later on.
1807
1808 You can use any of the following things in this line:-
1809
1810 <verb>
1811   info <string>            eg: iota or qsl
1812   by <prefixes>            eg: G,M,2         
1813   origin <prefixes>
1814   origin_dxcc <numbers>    eg: 61,62 (from eg: sh/pre G)
1815   origin_itu <numbers>
1816   origin_zone <numbers>
1817   by_dxcc <numbers>
1818   by_itu <numbers>
1819   by_zone <numbers>
1820   channel <prefixes>
1821   wx 1                     filter WX announces
1822   dest <prefixes>          eg: 6MUK,WDX      (distros)
1823 </verb>
1824
1825 some examples:-
1826
1827 <verb>
1828   acc/ann dest 6MUK
1829   acc/ann 2 by_zone 14,15,16
1830   (this could be all on one line: acc/ann dest 6MUK or by_zone 14,15,16)
1831 </verb>
1832
1833 or
1834
1835 <verb>
1836   acc/ann by G,M,2 
1837 </verb>
1838
1839 This filter would only allow announces that were posted buy UK stations.  
1840 You can use the tag 'all' to accept everything eg:
1841
1842 <verb>
1843   acc/ann all
1844 </verb>
1845
1846 but this probably for advanced users...
1847
1848 <sect1>accept/announce (extended for sysops) (8)
1849
1850 <P>
1851 <tt>
1852 <bf>accept/announce &lt;call&gt; &lsqb;input&rsqb; &lsqb;0-9&rsqb;&lt;pattern&gt;</bf> Announce filter sysop version
1853 </tt>
1854
1855 <P>
1856 This version allows a sysop to set a filter for a callsign as well as the
1857 default for nodes and users eg:-
1858
1859 <verb>
1860   accept/ann by G,M,2
1861   accept/ann input node_default by G,M,2
1862   accept/ann user_default by G,M,2
1863 </verb>
1864
1865 <sect1>accept/spots (0)
1866
1867 <P>
1868 <tt>
1869 <bf>accept/announce &lsqb;0-9&rsqb; &lt;pattern&gt;</bf> Set an accept filter 
1870 line for spots
1871 </tt>
1872
1873 <P>
1874 Create an 'accept this spot' line for a filter.
1875
1876 <P>
1877 An accept filter line means that if the spot matches this filter it is
1878 passed onto the user. See HELP FILTERS for more info. Please read this
1879 to understand how filters work - it will save a lot of grief later on.
1880
1881 You can use any of the following things in this line:-
1882
1883 <verb>
1884   freq <range>           eg: 0/30000 or hf or hf/cw or 6m,4m,2m
1885   on <range>             same as 'freq'
1886   call <prefixes>        eg: G,PA,HB9
1887   info <string>          eg: iota or qsl
1888   by <prefixes>            
1889   call_dxcc <numbers>    eg: 61,62 (from eg: sh/pre G)
1890   call_itu <numbers>
1891   call_zone <numbers>
1892   by_dxcc <numbers>
1893   by_itu <numbers>
1894   by_zone <numbers>
1895   origin <prefixes>
1896   channel <prefixes>
1897 </verb>
1898
1899 <P>
1900 For frequencies, you can use any of the band names defined in
1901 SHOW/BANDS and you can use a subband name like: cw, rtty, data, ssb -
1902 thus: hf/ssb. You can also just have a simple range like: 0/30000 -
1903 this is more efficient than saying simply: freq HF (but don't get
1904 too hung up about that)
1905
1906 some examples:-
1907
1908 <verb>
1909   acc/spot 1 on hf/cw
1910   acc/spot 2 on vhf and (by_zone 14,15,16 or call_zone 14,15,16)
1911 </verb>
1912
1913 You can use the tag 'all' to accept everything, eg:
1914
1915 <verb>
1916   acc/spot 3 all
1917 </verb>
1918
1919 but this probably for advanced users...
1920
1921 <sect1>accept/spots (extended for sysops) (8)
1922
1923 <P>
1924 <tt>
1925 <bf>accept/spots &lt;call&gt; &lsqb;input&rsqb; &lsqb;0-9&rsqb; &lt;pattern&gt;</bf> Spot filter sysop version
1926 </tt>
1927
1928 <P>
1929 This version allows a sysop to set a filter for a callsign as well as the
1930 default for nodes and users eg:-
1931
1932 <verb>
1933   accept/spot db0sue-7 1 by_zone 14,15,16
1934   accept/spot node_default all
1935   set/hops node_default 10
1936
1937   accept/spot user_default by G,M,2
1938 </verb>
1939
1940 <sect1>accept/wcy (0)
1941
1942 <P>
1943 <tt>
1944 <bf>accept/wcy &lsqb;0-9&rsqb; &lt;pattern&gt;</bf> set an accept WCY filter
1945 </tt>
1946
1947 <P>
1948 It is unlikely that you will want to do this, but if you do then you can
1949 filter on the following fields:-
1950
1951 <verb>
1952   by <prefixes>            eg: G,M,2         
1953   origin <prefixes>
1954   origin_dxcc <numbers>    eg: 61,62 (from eg: sh/pre G)
1955   origin_itu <numbers>
1956   origin_zone <numbers>
1957   by_dxcc <numbers>
1958   by_itu <numbers>
1959   by_zone <numbers>
1960   channel <prefixes>
1961 </verb>
1962
1963 <P>
1964 There are no examples because WCY Broadcasts only come from one place and
1965 you either want them or not (see UNSET/WCY if you don't want them).
1966
1967 This command is really provided for future use.
1968
1969 See HELP FILTER for information.
1970
1971 <sect1>accept/wcy (extended for sysops) (8)
1972
1973 <P>
1974 <tt>
1975 <bf>accept/wcy &lt;call&gt; &lsqb;input&rsqb; &lsqb;0-9&rsqb; &lt;pattern&gt;</bf>
1976 WCY filter sysop version
1977 </tt>
1978
1979 <P>
1980 This version allows a sysop to set a filter for a callsign as well as the
1981 default for nodes and users eg:-
1982
1983 <verb>
1984   accept/wcy node_default all
1985   set/hops node_default 10
1986 </verb>
1987
1988 <sect1>accept/wwv (0)
1989
1990 <P>
1991 <tt>
1992 <bf>accept/wwv &lsqb;0-9&rsqb; &lt;pattern&gt;</bf> Set an accept WWV filter
1993 </tt>
1994
1995 <P>
1996 It is unlikely that you will want to do this, but if you do then you can
1997 filter on the following fields:-
1998
1999 <verb>
2000   by <prefixes>            eg: G,M,2         
2001   origin <prefixes>
2002   origin_dxcc <numbers>    eg: 61,62 (from eg: sh/pre G)
2003   origin_itu <numbers>
2004   origin_zone <numbers>
2005   by_dxcc <numbers>
2006   by_itu <numbers>
2007   by_zone <numbers>
2008   channel <prefixes>
2009 </verb>
2010
2011 for example 
2012
2013 <verb>
2014   accept/wwv by_zone 4
2015 </verb>
2016
2017 is probably the only useful thing to do (which will only show WWV broadcasts
2018 by stations in the US).
2019
2020 See HELP FILTER for information.
2021
2022 <sect1>accept/wwv (extended for sysops) (8)
2023
2024 <P>
2025 <tt>
2026 <bf>accept/wwv &lt;call&gt; &lsqb;input&rsqb; &lsqb;0-9&rsqb; &lt;pattern&gt;</bf>
2027 WWV filter sysop version
2028 </tt>
2029
2030 <P>
2031 This version allows a sysop to set a filter for a callsign as well as the
2032 default for nodes and users eg:-
2033
2034 <verb>
2035   accept/wwv db0sue-7 1 by_zone 4
2036   accept/wwv node_default all
2037   set/hops node_default 10
2038
2039   accept/wwv user_default by W,K
2040 </verb>
2041
2042 <sect1>announce (0)
2043
2044 <P>
2045 <tt>
2046 <bf>announce &lt;text&gt;</bf> Send an announcement to local users
2047 </tt>
2048
2049 <P>
2050 Send an announcement to LOCAL users only, where &lt;text&gt; is the text 
2051 of the announcement you wish to broadcast
2052
2053 <sect1>announce full (0)
2054
2055 <P>
2056 <tt>
2057 <bf>announce full &lt;text&gt;</bf> Send an announcement cluster wide
2058 </tt>
2059
2060 <P>
2061 This command will send your announcement across the whole cluster
2062 network.
2063
2064
2065 <sect1>announce sysop (5)
2066
2067 <P>
2068 <tt>
2069 <bf>announce sysop &lt;text&gt;</bf>
2070 </tt>
2071
2072 <P>
2073 Send an announcement to Sysops only
2074
2075 <sect1>apropos (0)
2076
2077 <P>
2078 <tt>
2079 <bf>apropos &lt;string&gt;</bf> Search the help database
2080 </tt>
2081
2082 <P>
2083 Search the help database for &lt;string&gt; (it isn't case sensitive), 
2084 and print the names of all the commands that may be relevant.
2085
2086 <sect1>bye (0)
2087
2088 <P>
2089 <tt>
2090 <bf>bye</bf> Exit from the cluster
2091 </tt>
2092
2093 <P>
2094 This will disconnect you from the cluster
2095
2096 <sect1>catchup (5)
2097
2098 <P>
2099 <tt>
2100 <bf>catchup &lt;node_call&gt; All&verbar;&lsqb;&lt;msgno&gt; ...&rsqb;</bf> 
2101 Mark a message as sent
2102 </tt>
2103
2104 <P>
2105 When you send messages the fact that you have forwarded it to another node 
2106 is remembered so that it isn't sent again. When you have a new partner
2107 node and you add their callsign to your /spider/msg/forward.pl file, all
2108 outstanding non-private messages will be forwarded to them. This may well
2109 be ALL the non-private messages. You can prevent this by using these 
2110 commmands:-
2111
2112 <verb>
2113   catchup GB7DJK all
2114   catchup GB7DJK 300 301 302 303 500-510
2115 </verb>
2116         
2117 and to undo what you have just done:-
2118   
2119 <verb>
2120   uncatchup GB7DJK all
2121   uncatchup GB7DJK 300 301 302 303 500-510
2122 </verb>
2123
2124 which will arrange for them to be forward candidates again.
2125
2126 Order is not important.
2127
2128 <sect1>clear/spots (0)
2129
2130 <P>
2131 <tt>
2132 <bf>clear/spots &lsqb;1&verbar;all&rsqb;</bf> Clear a spot filter line
2133 </tt>
2134
2135 <P>
2136 This command allows you to clear (remove) a line in a spot filter or to 
2137 remove the whole filter.
2138
2139 If you have a filter:-
2140
2141 <verb>
2142   acc/spot 1 on hf/cw
2143   acc/spot 2 on vhf and (by_zone 14,15,16 or call_zone 14,15,16)
2144 </verb>
2145
2146 and you say:-
2147
2148 <verb>
2149   clear/spot 1
2150 </verb>
2151
2152 you will be left with:-
2153
2154 <verb>
2155   acc/spot 2 on vhf and (by_zone 14,15,16 or call_zone 14,15,16)
2156 </verb>
2157
2158 If you do:
2159
2160 <verb>
2161   clear/spot all
2162 </verb>
2163
2164 the filter will be completely removed.
2165
2166
2167 <sect1>connect (5) 
2168
2169 <P>
2170 <tt>
2171 <bf>connect &lt;callsign&gt;</bf> Start a connection to another DX Cluster
2172 </tt>
2173
2174 <P>
2175 Start a connection process that will culminate in a new connection to the
2176 DX cluster &lt;callsign&gt;. This process creates a new 'client' process which will
2177 use the script in /spider/connect/&lt;callsign&gt; to effect the 'chat' exchange
2178 necessary to traverse the network(s) to logon to the cluster &lt;callsign&gt;.
2179
2180 <sect1>dbavail (0)
2181
2182 <P>
2183 <tt>
2184 <bf>dbavail</bf> Show a list of all the databases in the system
2185 </tt>
2186
2187 <P>
2188 The title says it all really, this command lists all the databases defined
2189 in the system. It is also aliased to SHOW/COMMAND.
2190
2191 <sect1>dbcreate (9)
2192
2193 <P>
2194 <tt>
2195 <bf>dbcreate &lt;name&gt;</bf> Create a database entry<newline>
2196 <bf>dbcreate &lt;name&gt; chain &lt;name&gt; [&lt;name&gt;..]</bf> Create a 
2197 chained database entry<newline>
2198 <bf>dbcreate &lt;name&gt; remote &lt;node&gt;</bf> Create a remote database
2199 entry<newline>
2200 </tt>
2201
2202 <P>
2203 DBCREATE allows you to define a database in the system. It doesn't actually
2204 create anything, just defines it.
2205
2206 The databases that are created are simple DB_File hash databases, they are 
2207 therefore already 'indexed'.
2208
2209 You can define a local database with the first form of the command eg:
2210
2211   DBCREATE oblast
2212
2213 You can also chain databases with the addition of the 'chain' keyword. 
2214 This will search each database one after the other. A typical example 
2215 is:
2216
2217   DBCREATE sdx_qsl chain sql_ad
2218
2219 No checking is done to see if the any of the chained databases exist, in
2220 fact it is usually better to do the above statement first then do each of
2221 the chained databases.
2222
2223 Databases can exist offsite. To define a database that lives on another 
2224 node do:
2225
2226   DBCREATE buckmaster remote gb7dxc
2227
2228 Remote databases cannot be chained; however, the last database in a 
2229 a chain can be a remote database eg:
2230
2231   DBCREATE qsl chain gb7dxc
2232
2233 To see what databases have been defined do:
2234
2235   DBAVAIL (or it will have been aliased to SHOW/COMMAND)
2236
2237 It would be normal for you to add an entry into your local Aliases file
2238 to allow people to use the 'SHOW/&lt;dbname&gt;' style syntax. So you would
2239 need to add a line like:-
2240
2241 <tscreen><verb>
2242   's' => [
2243     ..
2244     ..
2245     '^sh\w*/buc', 'dbshow buckmaster', 'dbshow',
2246     ..
2247     ..
2248    ],
2249 </verb></tscreen>
2250
2251 to allow 
2252
2253   SH/BUCK g1tlh
2254
2255 to work as they may be used to.
2256
2257 See DBIMPORT for the importing of existing AK1A format data to databases.
2258 See DBSHOW for generic database enquiry
2259
2260 <sect1>dbimport (9)
2261
2262 <P>
2263 <tt>
2264 <bf>dbimport &lt;dbname&gt;</bf> Import AK1A data into a database
2265 </tt>
2266
2267 <P>
2268 If you want to import or update data in bulk to a database you can use
2269 this command. It will either create or update entries into an existing
2270 database. For example:-
2271
2272   DBIMPORT oblast /tmp/OBLAST.FUL
2273
2274 will import the standard OBLAST database that comes with AK1A into the
2275 oblast database held locally.
2276
2277 <sect1>dbremove (9)
2278
2279 <P>
2280 <tt>
2281 <bf>dbremove &lt;dbname&gt;</bf> Delete a database
2282 </tt>
2283
2284 <P>
2285 DBREMOVE will completely remove a database entry and also delete any data
2286 file that is associated with it. 
2287
2288 There is no warning, no comeback, no safety net. 
2289
2290 For example:
2291
2292   DBREMOVE oblast 
2293
2294 will remove the oblast database from the system and it will also remove
2295 the associated datafile.
2296
2297 I repeat:
2298
2299 There is no warning, no comeback, no safety net.
2300
2301 You have been warned.
2302
2303 <sect1>dbshow (0)
2304
2305 <P>
2306 <tt>
2307 <bf>dbshow &lt;dbname&gt; &lt;key&gt;</bf> Display an entry, if it exists, 
2308 in a database
2309 </tt>
2310
2311 <P>
2312 This is the generic user interface to the database to the database system.
2313 It is expected that the sysop will add an entry to the local Aliases file
2314 so that users can use the more familiar AK1A style of enquiry such as:
2315
2316 <verb>
2317   SH/BUCK G1TLH
2318 </verb>
2319
2320 but if he hasn't and the database really does exist (use DBAVAIL or
2321 SHOW/COMMAND to find out) you can do the same thing with:
2322
2323 <verb>
2324   DBSHOW buck G1TLH
2325 </verb>
2326
2327
2328 <sect1>debug (9)
2329
2330 <P>
2331 <tt>
2332 <bf>debug</bf> Set the cluster program into debug mode
2333 </tt>
2334
2335 <P>
2336 Executing this command will only have an effect if you are running the cluster
2337 in debug mode i.e.
2338
2339 <tscreen><verb>
2340         perl -d cluster.pl
2341 </verb></tscreen>
2342
2343 It will interrupt the cluster just after the debug command has finished.
2344
2345 <sect1>directory (0)
2346
2347 <P>
2348 <tt>
2349 <bf>directory</bf> List messages<newline> 
2350 <bf>directory all</bf> List all messages<newline>
2351 <bf>directory own</bf> List your own messages<newline>
2352 <bf>directory new</bf> List all new messages<newline>
2353 <bf>directory to &lt;call&gt;</bf> List all messages to &lt;call&gt;<newline>
2354 <bf>directory from &lt;call&gt;</bf> List all messages from &lt;call&gt;<newline>
2355 <bf>directory subject &lt;string&gt;</bf> List all messages with &lt;string&gt; 
2356 in subject<newline>
2357 <bf>directory &lt;nn&gt;</bf> List last &lt;nn&gt; messages<newline>
2358 <bf>directory &lt;from&gt;-&lt;to&gt;</bf> List messages &lt;from&gt; message &lt;to&gt; message <newline>
2359 </tt>
2360
2361 <P>
2362 List the messages in the messages directory.
2363
2364 If there is a 'p' one space after the message number then it is a 
2365 personal message. If there is a '-' between the message number and the
2366 'p' then this indicates that the message has been read.
2367
2368 You can use shell escape characters such as '*' and '?' in the &lt;call&gt;
2369 fields.
2370
2371 You can combine some of the various directory commands together eg:-
2372
2373 <verb>
2374    DIR TO G1TLH 5
2375 or 
2376    DIR SUBJECT IOTA 200-250
2377 </verb>
2378
2379 You can abbreviate all the commands to one letter and use ak1a syntax:-
2380
2381 <verb>
2382    DIR/T G1* 10
2383    DIR/S QSL 10-100 5
2384 </verb>
2385
2386
2387 <sect1>directory (extended for sysops) (5)
2388
2389 <P>
2390 Works just like the user command except that sysops can see ALL messages.
2391
2392 <sect1>disconnect (8)
2393
2394 <P>
2395 <tt>
2396 <bf>disconnect &lt;call&gt; [&lt;call&gt; ...]</bf> Disconnect a user or node
2397 </tt>
2398
2399 <P>
2400 Disconnect any &lt;call&gt; connected locally
2401
2402 <sect1>dx (0)
2403
2404 <P>
2405 <tt>
2406 <bf>dx &lsqb;by &lt;call&gt;&rsqb; &lt;freq&gt; &lt;call&gt; &lt;remarks&gt;</bf> Send a DX spot
2407 </tt>
2408
2409 <P>
2410 This is how you send a DX Spot to other users. You can, in fact, now
2411 enter the &lt;freq&gt; and the &lt;call&gt; either way round. 
2412
2413 <verb>
2414    DX FR0G 144.600
2415    DX 144.600 FR0G
2416    DX 144600 FR0G 
2417 </verb>
2418
2419 will all give the same result. You can add some remarks to the end
2420 of the command and they will be added to the spot.
2421
2422 <verb>
2423    DX FR0G 144600 this is a test
2424 </verb>
2425
2426 You can credit someone else by saying:-
2427
2428 <verb>
2429    DX by G1TLH FR0G 144.600 he isn't on the cluster
2430 </verb>
2431
2432 The &lt;freq&gt; is compared against the available bands set up in the 
2433 cluster.  See SHOW/BANDS for more information.
2434
2435 <sect1>export (9)
2436
2437 <P>
2438 <tt>
2439 <bf>export &lt;msgno&gt; &lt;filename&gt;</bf> Export a message to a file
2440 </tt>
2441
2442 <P>
2443 Export a message to a file. This command can only be executed on a local
2444 console with a fully privileged user. The file produced will be in a form
2445 ready to be imported back into the cluster by placing it in the import 
2446 directory (/spider/msg/import).
2447
2448 This command cannot overwrite an existing file. This is to provide some 
2449 measure of security. Any files written will owned by the same user as the 
2450 main cluster, otherwise you can put the new files anywhere the cluster can
2451 access. For example:-
2452
2453   EXPORT 2345 /tmp/a
2454
2455 <sect1>export_users (9)
2456
2457 <P>
2458 <tt>
2459 <bf>export_users &lsqb;&lt;filename&gt;&rsqb;</bf> Export the users database to ascii
2460 </tt>
2461
2462 <P>
2463 Export the users database to a file in ascii format. If no filename
2464 is given then it will export the file to /spider/data/user_asc.
2465
2466 If the file already exists it will be renamed to &lt;filename&gt;.o. In fact
2467 up to 5 generations of the file can be kept each one with an extra 'o' on the
2468 suffix. 
2469
2470 BE WARNED: this will write to any file you have write access to. No check is
2471 made on the filename (if any) that you specify.
2472
2473 <sect1>forward/opername (1)
2474
2475 <P>
2476 <tt>
2477 <bf>forward/opername &lt;call&gt;</bf> Send out information on this &lt;call&gt; 
2478 to all clusters
2479 </tt>
2480
2481 <P>
2482 This command sends out any information held in the user file which can 
2483 be broadcast in PC41 protocol packets. This information is Name, QTH, Location
2484 and Homenode. PC41s are only sent for the information that is available.
2485
2486 <sect1>help (0)
2487
2488 <P>
2489 <tt>
2490 <bf>help &lt;cmd&gt;</bf> Get help on a command
2491 </tt>
2492
2493 <P>
2494 All commands can be abbreviated, so SHOW/DX can be abbreviated
2495 to SH/DX, ANNOUNCE can be shortened to AN and so on.
2496
2497 Look at the APROPOS &lt;string&gt; command which will search the help database
2498 for the &lt;string&gt; you specify and give you a list of likely commands
2499 to look at with HELP.
2500
2501 <sect1>init (5)
2502
2503 <P>
2504 <tt>
2505 <bf>init &lt;node call&gt;</bf> Re-initialise a link to an AK1A compatible node
2506 </tt>
2507
2508 <P>
2509 This command attempts to re-initialise a link to a (usually) AK1A node
2510 that has got confused, usually by a protocol loop of some kind. It may
2511 work - but you usually will be better off simply disconnecting it (or
2512 better, if it is a real AK1A node, doing an RCMD &lt;node&gt; DISC/F &lt;your
2513 node&gt;).
2514
2515 Best of luck - you will need it.
2516
2517 <sect1>kill (0)
2518
2519 <P>
2520 <tt>
2521 <bf>kill &lt;msgno&gt; &lsqb;&lt;msgno&gt; ..&rsqb;</bf> Delete a message 
2522 from the local system
2523 </tt>
2524
2525 <P>
2526 Delete a message from the local system. You will only be able to
2527 delete messages that you have originated or been sent (unless you are
2528 the sysop).
2529
2530 <sect1>kill (5)
2531
2532 <P>
2533 <tt>
2534 <bf>kill &lt;msgno&gt [&lt;msgno&gt; ...]</bf> Remove or erase a message from 
2535 the system<newline>
2536 <bf>kill from &lt;call&gt;</bf> Remove all messages from a callsign<newline>
2537 <bf>kill to &lt;call&gt;</bf> Remove all messages to a callsign<newline>
2538 </tt>
2539
2540 <P>
2541 You can get rid of any message to or originating from your callsign using 
2542 this command. You can remove more than one message at a time.
2543
2544 As a sysop you can kill any message on the system.
2545
2546 <sect1>kill full (5)
2547
2548 <tt>
2549 <bf>kill full &lt;msgno&gt; &lsqb;&lt;msgno&gt;&rsqb;</bf> Delete a message from the 
2550 whole cluster
2551 </tt>
2552
2553 <P>
2554 Delete a message (usually a 'bulletin') from the whole cluster system. 
2555
2556 This uses the subject field, so any messages that have exactly the same subject
2557 will be deleted. Beware!
2558
2559 <sect1>links (0)
2560
2561 <P>
2562 <tt>
2563 <bf>links</bf> Show which nodes are physically connected
2564 </tt>
2565
2566 <P>
2567 This is a quick listing that shows which links are connected and
2568 some information about them. See WHO for a list of all connections.
2569
2570
2571 <sect1>load/aliases (9)
2572
2573 <P>
2574 <tt>
2575 <bf>load/aliases</bf> Reload the command alias table
2576 </tt>
2577
2578 <P>
2579 Reload the /spider/cmd/Aliases file after you have editted it. You will need to
2580 do this if you change this file whilst the cluster is running in order for the
2581 changes to take effect.
2582
2583
2584 <sect1>load/baddx (9)
2585 <tt>
2586 <bf>load/baddx</bf> Reload the bad DX table
2587 </tt>
2588
2589 <P>
2590 Reload the /spider/data/baddx.pl file if you have changed it manually whilst
2591 the cluster is running. This table contains the DX Calls that, if spotted, 
2592 will not be passed on. FR0G and TEST are classic examples.
2593
2594 <sect1>load/badmsg (9)
2595
2596 <P>
2597 <tt>
2598 <bf>load/badmsg</bf> Reload the bad message table
2599 </tt>
2600
2601 <P>
2602 Reload the /spider/msg/badmsg.pl file if you have changed it manually whilst
2603 the cluster is running. This table contains a number of perl regular 
2604 expressions which are searched for in the fields targetted of each message. 
2605 If any of them match then that message is immediately deleted on receipt. 
2606
2607 <sect1>load/badwords (9)
2608
2609 <P>
2610 <tt>
2611 <bf>load/badwords</bf> Reload the badwords file
2612 </tt>
2613
2614 <P>
2615 Reload the /spider/data/badwords file if you have changed it manually whilst
2616 the cluster is running. This file contains a list of words which, if found
2617 on certain text portions of PC protocol, will cause those protocol frames
2618 to be rejected. It will all put out a message if any of these words are
2619 used on the announce, dx and talk commands. The words can be one or 
2620 more on a line, lines starting with '#' are ignored.
2621
2622 <sect1>load/bands (9)
2623
2624 <P>
2625 <tt>
2626 <bf>load/bands</bf> Reload the band limits table
2627 </tt>
2628
2629 <P>
2630 Reload the /spider/data/bands.pl file if you have changed it manually whilst
2631 the cluster is running. 
2632
2633 <sect1>load/cmd_cache (9)
2634
2635 <P>
2636 <tt>
2637 <bf>load/cmd_cache</bf> Reload the automatic command cache
2638 </tt>
2639
2640 <P>
2641 Normally, if you change a command file in the cmd or local_cmd tree it will
2642 automatially be picked up by the cluster program. Sometimes it can get confused
2643 if you are doing a lot of moving commands about or delete a command in the 
2644 local_cmd tree and want to use the normal one again. Execute this command to
2645 reset everything back to the state it was just after a cluster restart.
2646
2647 <sect1>load/forward (9)
2648
2649 <P>
2650 <tt>
2651 <bf>load/forward</bf> Reload the msg forwarding routing table
2652 </tt>
2653
2654 Reload the /spider/msg/forward.pl file if you have changed it
2655 manually whilst the cluster is running.
2656
2657 <sect1>load/messages (9)
2658
2659 <P>
2660 <tt>
2661 <bf>load/messages</bf> Reload the system messages file
2662 </tt>
2663
2664 <P>
2665 If you change the /spider/perl/Messages file (usually whilst fiddling/writing ne
2666 commands) you can have them take effect during a cluster session by executing this
2667 command. You need to do this if get something like :-
2668
2669 unknown message 'xxxx' in lang 'en'
2670
2671 <sect1>load/prefixes (9)
2672
2673 <P>
2674 <tt>
2675 <bf>load/prefixes</bf> Reload the prefix table
2676 </tt>
2677
2678 <P>
2679 Reload the /spider/data/prefix_data.pl file if you have changed it manually 
2680 whilst the cluster is running. 
2681
2682 <sect1>merge (5)
2683
2684 <P>
2685 <tt>
2686 <bf>merge &lt;node&gt; [&lt;no spots&gt;/&lt;no wwv&gt;]</bf> Ask for the 
2687 latest spots and WWV
2688 </tt>
2689
2690 <P>
2691 MERGE allows you to bring your spot and wwv database up to date. By default
2692 it will request the last 10 spots and 5 WWVs from the node you select. The 
2693 node must be connected locally.
2694
2695 You can request any number of spots or wwv and although they will be appended
2696 to your databases they will not duplicate any that have recently been added 
2697 (the last 2 days for spots and last month for WWV data).
2698
2699 <sect1>msg (9)
2700
2701 <P>
2702 <tt>
2703 <bf>msg &lt;cmd&gt; &lt;msgno&gt; [data ...]</bf> Alter various message 
2704 parameters
2705 </tt>
2706
2707 <P>
2708 Alter message parameters like To, From, Subject, whether private or bulletin
2709 or return receipt (RR) is required or whether to keep this message from timing
2710 out.
2711
2712 <tscreen><verb>
2713   MSG TO <msgno> <call>     - change TO callsign to <call>
2714   MSG FRom <msgno> <call>   - change FROM callsign to <call>
2715   MSG PRrivate <msgno>      - set private flag
2716   MSG NOPRrivate <msgno>    - unset private flag
2717   MSG RR <msgno>            - set RR flag
2718   MSG NORR <msgno>          - unset RR flag
2719   MSG KEep <msgno>          - set the keep flag (message won't be deleted ever)
2720   MSG NOKEep <msgno>        - unset the keep flag
2721   MSG SUbject <msgno> <new> - change the subject to <new>
2722   MSG WAittime <msgno>      - remove any waitting time for this message
2723   MSG NOREad <msgno>        - mark message as unread
2724   MSG REad <msgno>          - mark message as read
2725   MSG QUeue                 - queue any outstanding bulletins
2726   MSG QUeue 1               - queue any outstanding private messages
2727 </verb></tscreen>
2728
2729 You can look at the status of a message by using:-
2730
2731   STAT/MSG &lt;msgno&gt;      
2732
2733 This will display more information on the message than DIR does.
2734
2735 <sect1>pc (8)
2736
2737 <P>
2738 <tt>
2739 <bf>pc &lt;call&gt; &lt;text&gt;</bf> Send text (eg PC Protocol) to &lt;call&gt;
2740 </tt>
2741
2742 <P>
2743 Send some arbitrary text to a locally connected callsign. No processing is done on
2744 the text. This command allows you to send PC Protocol to unstick things if problems
2745 arise (messages get stuck etc). eg:-
2746
2747    pc gb7djk PC33^GB7TLH^GB7DJK^400^
2748
2749 You can also use in the same way as a talk command to a connected user but
2750 without any processing, added of "from &lt;blah&gt; to &lt;blah&gt;" or whatever.
2751
2752    pc G1TLH Try doing that properly!!!
2753
2754 <sect1>ping (1)
2755
2756 <P>
2757 <tt>
2758 <bf>ping &lt;node&gt;</bf> Send a ping command to another cluster node
2759 </tt>
2760
2761 <P>
2762 This command is used to estimate the quality of the link to another cluster. 
2763 The time returned is the length of time taken for a PC51 to go to another 
2764 cluster and be returned.
2765
2766 Any visible cluster node can be PINGed.
2767
2768 <sect1>rcmd (1)
2769
2770 <P>
2771 <tt>
2772 <bf>rcmd &lt;node call&gt; &lt;cmd&gt;</bf> Send a command to another DX cluster
2773 </tt>
2774
2775 <P>
2776 This command allows you to send nearly any command to another DX Cluster
2777 node that is connected to the system. 
2778
2779 Whether you get any output is dependant on a) whether the other system knows
2780 that the node callsign of this cluster is in fact a node b) whether the
2781 other system is allowing RCMDs from this node and c) whether you have
2782 permission to send this command at all.
2783
2784 <sect1>read (0)
2785
2786 <P>
2787 <tt>
2788 <bf>read</bf> Read the next unread personal message addressed to you<newline>
2789 <bf>read &lt;msgno&gt;</bf> Read the specified message<newline>
2790 </tt>
2791
2792 <P>
2793 You can read any messages that are sent as 'non-personal' and also any
2794 message either sent by or sent to your callsign.
2795
2796
2797 <sect1>read (extended for sysops) (5) 
2798
2799 <P>
2800 <tt>
2801 <bf>read &lt;msgno&gt;</bf> Read a message on the system
2802 </tt>
2803
2804 <P>
2805 As a sysop you may read any message on the system
2806
2807 <sect1>reject/announce
2808
2809 <P>
2810 <tt>
2811 <bf>reject/announce &lsqb;0-9&rsqb; &lt;pattern&gt;</bf> Set a reject filter
2812 for announce
2813 </tt>
2814
2815 <P>
2816 Create an 'reject this announce' line for a filter. 
2817
2818 An reject filter line means that if the announce matches this filter it is
2819 passed onto the user. See HELP FILTERS for more info. Please read this
2820 to understand how filters work - it will save a lot of grief later on.
2821
2822 You can use any of the following things in this line:-
2823
2824 <verb>
2825   info <string>            eg: iota or qsl
2826   by <prefixes>            eg: G,M,2         
2827   origin <prefixes>
2828   origin_dxcc <numbers>    eg: 61,62 (from eg: sh/pre G)
2829   origin_itu <numbers>
2830   origin_zone <numbers>
2831   by_dxcc <numbers>
2832   by_itu <numbers>
2833   by_zone <numbers>
2834   channel <prefixes>
2835   wx 1                     filter WX announces
2836   dest <prefixes>          eg: 6MUK,WDX      (distros)
2837 </verb>
2838
2839 some examples:-
2840
2841 <verb>
2842   rej/ann by_zone 14,15,16 and not by G,M,2
2843 </verb>
2844  
2845 You can use the tag 'all' to reject everything eg:
2846
2847 <verb>
2848   rej/ann all
2849 </verb>
2850
2851 but this probably for advanced users...
2852
2853 <sect1>reject/announce (extended for sysops) (8)
2854
2855 <P>
2856 <tt>
2857 <bf>reject/announce &lt;call&gt; &lsqb;input&rsqb; &lsqb;0-9&rsqb; &lt;pattern&gt;</bf> Announce filter sysop version
2858 </tt>
2859
2860 <P>
2861 This version allows a sysop to set a filter for a callsign as well as the
2862 default for nodes and users eg:-
2863
2864 <verb>
2865   reject/ann by G,M,2
2866   reject/ann input node_default by G,M,2
2867   reject/ann user_default by G,M,2
2868 </verb>
2869
2870 <sect1>reject/spots (0)
2871
2872 <P>
2873 <tt>
2874 <bf>reject/spots &lsqb;0-9&rsqb; &lt;pattern&gt;</bf> Set a reject filter 
2875 line for spots
2876 </tt>
2877
2878 <P>
2879 Create an 'reject this spot' line for a filter. 
2880
2881 An reject filter line means that if the spot matches this filter it is
2882 dumped (not passed on). See HELP FILTERS for more info. Please read this
2883 to understand how filters work - it will save a lot of grief later on.
2884
2885 You can use any of the following things in this line:-
2886
2887 <verb>
2888   freq <range>           eg: 0/30000 or hf or hf/cw or 6m,4m,2m
2889   on <range>             same as 'freq'
2890   call <prefixes>        eg: G,PA,HB9
2891   info <string>          eg: iota or qsl
2892   by <prefixes>            
2893   call_dxcc <numbers>    eg: 61,62 (from eg: sh/pre G)
2894   call_itu <numbers>
2895   call_zone <numbers>
2896   by_dxcc <numbers>
2897   by_itu <numbers>
2898   by_zone <numbers>
2899   origin <prefixes>
2900   channel <prefixes>
2901 </verb>
2902
2903 For frequencies, you can use any of the band names defined in
2904 SHOW/BANDS and you can use a subband name like: cw, rtty, data, ssb -
2905 thus: hf/ssb. You can also just have a simple range like: 0/30000 -
2906 this is more efficient than saying simply: on HF (but don't get
2907 too hung up about that)
2908
2909 some examples:-
2910
2911 <verb>
2912   rej/spot 1 on hf
2913   rej/spot 2 on vhf and not (by_zone 14,15,16 or call_zone 14,15,16)
2914 </verb>
2915
2916 You can use the tag 'all' to reject everything eg:
2917
2918 <verb>
2919   rej/spot 3 all
2920 </verb>
2921
2922 but this probably for advanced users...
2923
2924 <sect1>reject/spots (extended for sysops) (8)
2925
2926 <P>
2927 <tt>
2928 <bf>reject/spots &lt;call&gt; &lsqb;input&rsqb; &lsqb;0-9&rsqb; &lt;pattern&gt;</bf>
2929  Reject spot filter sysop version 
2930 </tt>
2931
2932 <P>
2933 This version allows a sysop to set a filter for a callsign as well as the
2934 default for nodes and users eg:-
2935
2936 <verb>
2937   reject/spot db0sue-7 1 by_zone 14,15,16
2938   reject/spot node_default all
2939   set/hops node_default 10
2940
2941   reject/spot user_default by G,M,2
2942 </verb>
2943
2944 <sect1>reject/wcy (0)
2945
2946 <P>
2947 <tt>
2948 <bf>reject/wcy &lsqb;0-9&rsqb; &lt;pattern&gt;</bf> Set a reject WCY filter
2949 </tt>
2950
2951 <P>
2952 It is unlikely that you will want to do this, but if you do then you can
2953 filter on the following fields:-
2954
2955 <verb>
2956   by <prefixes>            eg: G,M,2         
2957   origin <prefixes>
2958   origin_dxcc <numbers>    eg: 61,62 (from eg: sh/pre G)
2959   origin_itu <numbers>
2960   origin_zone <numbers>
2961   by_dxcc <numbers>
2962   by_itu <numbers>
2963   by_zone <numbers>
2964   channel <prefixes>
2965 </verb>
2966
2967 There are no examples because WCY Broadcasts only come from one place and
2968 you either want them or not (see UNSET/WCY if you don't want them).
2969
2970 This command is really provided for future use.
2971
2972 See HELP FILTER for information.
2973
2974 <sect1>reject/wcy (extended for sysops) (8)
2975
2976 <P>
2977 <tt>
2978 <bf>reject/wcy &lt;call&gt; &lsqb;input&rsqb; &lsqb;0-9&rsqb; &lt;pattern&gt;</bf>
2979  WCY reject filter sysop version
2980 </tt>
2981
2982 <P>
2983 This version allows a sysop to set a filter for a callsign as well as the
2984 default for nodes and users eg:-
2985
2986   reject/wcy gb7djk all
2987
2988 <sect1>reject/wwv (0)
2989
2990 <P>
2991 <tt>
2992 <bf>reject/wwv &lsqb;0-9&rsqb; &lt;pattern&gt;</bf> Set a reject WWV filter
2993 </tt>
2994
2995 <P>
2996 It is unlikely that you will want to do this, but if you do then you can
2997 filter on the following fields:-
2998
2999 <verb>
3000   by <prefixes>            eg: G,M,2         
3001   origin <prefixes>
3002   origin_dxcc <numbers>    eg: 61,62 (from eg: sh/pre G)
3003   origin_itu <numbers>
3004   origin_zone <numbers>
3005   by_dxcc <numbers>
3006   by_itu <numbers>
3007   by_zone <numbers>
3008   channel <prefixes>
3009 </verb>
3010
3011 for example 
3012
3013 <verb>
3014   reject/wwv by_zone 14,15,16
3015 </verb>
3016
3017 is probably the only useful thing to do (which will only show WWV broadcasts
3018 by stations in the US).
3019
3020 See HELP FILTER for information.
3021
3022 <sect1>reject/wwv (extended for sysops) (8)
3023
3024 <P>
3025 <tt>
3026 <bf>reject/wwv &lt;call&gt; &lsqb;input&rsqb; &lsqb;0-9&rsqb; &lt;pattern&gt;</bf>
3027  WWV reject filter sysop version
3028 </tt>
3029
3030 <P>This version allows a sysop to set a filter for a callsign as well as the
3031 default for nodes and users eg:-
3032
3033 <verb>
3034   reject/wwv db0sue-7 1 by_zone 4
3035   reject/wwv node_default all
3036
3037   reject/wwv user_default by W
3038 </verb>
3039
3040 <sect1>reply (0)
3041
3042 <P>
3043 <tt>
3044 <bf>reply</bf> Reply (privately) to the last message that you have read<newline>
3045 <bf>reply &lt;msgno&gt;</bf> Reply (privately) to the specified message<newline>
3046 <bf>reply B &lt;msgno&gt;</bf> Reply as a Bulletin to the specified message<newline>
3047 <bf>reply NOPrivate &lt;msgno&gt;</bf> Reply as a Bulletin to the specified
3048 message<newline>
3049 <bf>reply RR &lt;msgno&gt;</bf> Reply to the specified message with read 
3050 receipt<newline>
3051 </tt>
3052
3053 <P>
3054 You can reply to a message and the subject will automatically have
3055 "Re:" inserted in front of it, if it isn't already present.
3056
3057 You can also use all the extra qualifiers such as RR, PRIVATE, 
3058 NOPRIVATE, B that you can use with the SEND command (see SEND
3059 for further details)
3060
3061 <sect1>send (0)
3062
3063 <P>
3064 <tt>
3065 <bf>send &lt;call&gt; &lsqb;&lt;call&gt; ...&rsqb;</bf> Send a message to 
3066 one or more callsigns<newline>
3067 <bf>send RR &lt;call&gt;</bf> Send a message and ask for a read receipt<newline>
3068 <bf>send COPY &lt;msgno&gt; &lt;call&gt;</bf> Send a copy of a  message 
3069 to someone<newline>
3070 <bf>send PRIVATE &lt;call&gt;</bf> Send a personal message<newline>
3071 <bf>send NOPRIVATE &lt;call&gt;</bf> Send a message to all stations<newline>
3072 </tt>
3073
3074 <P>
3075 All the SEND commands will create a message which will be sent either to
3076 an individual callsign or to one of the 'bulletin' addresses. 
3077
3078 SEND &lt;call&gt; on its own acts as though you had typed SEND PRIVATE, that is
3079 it will mark the message as personal and send it to the cluster node that
3080 that callsign is connected to.
3081
3082 You can have more than one callsign in all of the SEND commands.
3083
3084 You can have multiple qualifiers so that you can have for example:-
3085
3086 <verb>
3087   SEND RR COPY 123 PRIVATE G1TLH G0RDI
3088 </verb>
3089
3090 which should send a copy of message 123 to G1TLH and G0RDI and you will
3091 receive a read receipt when they have read the message.
3092
3093 SB is an alias for SEND NOPRIVATE (or send a bulletin in BBS speak)
3094 SP is an alias for SEND PRIVATE
3095
3096 <sect1>set/address (0)
3097
3098 <P>
3099 <tt>
3100 <bf>set/address &lt;your_address&gt;</bf> Record your postal address
3101 </tt>
3102
3103 <P>
3104 Literally, record your address details on the cluster.
3105
3106 <sect1>set/announce (0)
3107
3108 <P>
3109 <tt>
3110 <bf>set/announce</bf> Allow announce messages
3111 </tt>
3112
3113 <P>
3114 Allow announce messages to arrive at your terminal.
3115
3116 <sect1>set/arcluster (5)
3117
3118 <P>
3119 <tt>
3120 <bf>set/arcluster &lt;node_call&gt; &lsqb;&lt;node_call&gt; ...&rsqb;</bf> Make
3121 the node_call an AR-Cluster type node
3122 </tt>
3123
3124 <P>
3125 Set the node_call as an AR-Cluster type node
3126
3127 <sect1>set/badnode (6)
3128
3129 <P>
3130 <tt>
3131 <bf>set/badnode &lt;node_call&gt;</bf> Stop spots from this node_call
3132 being propagated
3133 </tt>
3134
3135 <P>
3136 Setting a callsign as a 'badnode' will prevent spots from that node 
3137 going any further. They will not be displayed and they will not be 
3138 sent onto other nodes.
3139
3140 The call can be a full or partial call (or a prefix), eg:-
3141
3142 <verb>
3143   set/badnode K1TTT 
3144 </verb>
3145
3146 will stop anything from K1TTT (including any SSID's)
3147
3148 <verb>
3149   unset/badnode K1TTT
3150 </verb>
3151
3152 will allow spots from him again.
3153
3154 Use with extreme care. This command may well be superceded by FILTERing.
3155
3156 <sect1>set/beep (0)
3157
3158 <P>
3159 <tt>
3160 <bf>set/beep</bf> Add beeps to terminal messages
3161 </tt>
3162
3163 <P>
3164 Add a beep to DX and other terminal messages.
3165
3166 <sect1>set/clx (5)
3167
3168 <P>
3169 <tt>
3170 <bf>set/clx &lt;node_call&gt; &lsqb;&lt;node_call&gt; ...&rsqb;</bf> Make
3171 the node_call a CLX type node
3172 </tt>
3173
3174 <P>
3175 Set the node_call as a CLX type node
3176
3177 <sect1>set/debug (9)
3178
3179 <P>
3180 <tt>
3181 <bf>set/debug &lt;name&gt;</bf> Add a debug level to the debug set
3182 </tt>
3183
3184 <P>
3185 You can remove this level with unset/debug &lt;name&gt;
3186
3187 <sect1>set/dx (0)
3188
3189 <P>
3190 <tt>
3191 <bf>set/dx</bf>Allow DX messages to arrive at your terminal
3192 </tt>
3193
3194 <P>
3195 You can stop DX messages with the <em>unset/dx</em> command
3196
3197 <sect1>set/dxgrid (0)
3198
3199 <P>
3200 <tt>
3201 <bf>set/dxgrid</bf>Allow grid squares on the end of DX messages
3202 </tt>
3203
3204 <P>
3205 Some logging programs do not like the additional information at
3206 the end of a DX spot.  If this is the case, use the <em>unset/dxgrid</em>
3207 command to remove the grid squares.
3208
3209 <sect1>set/dxnet (5)
3210
3211 <P>
3212 <tt>
3213 <bf>set/dxnet &lt;node_call&gt; &lsqb;&lt;node_call&gt; ...&rsqb;</bf> Make
3214 the node_call a DXNet type node
3215 </tt>
3216
3217 <P>
3218 Set the node_call as a DXNet type node
3219
3220 <sect1>set/echo (0)
3221
3222 <P>
3223 <tt>
3224 <bf>set/echo</bf> Make the cluster echo your input
3225 </tt>
3226
3227 <P>
3228 If you are connected via a telnet session, different implimentations
3229 of telnet handle echo differently depending on whether you are 
3230 connected via port 23 or some other port. You can use this command
3231 to change the setting appropriately. 
3232
3233 You can remove the echo with the <em>unset/echo</em> command
3234
3235 The setting is stored in your user profile.
3236
3237 YOU DO NOT NEED TO USE THIS COMMAND IF YOU ARE CONNECTED VIA AX25.
3238
3239 <sect1>set/here (0)
3240
3241 <P>
3242 <tt>
3243 <bf>set/here</bf> Set the here flag
3244 </tt>
3245
3246 <P>
3247 Let others on the cluster know you are here by only displaying your
3248 callsign.  If you are away from your terminal you can use the <em>unset/here</em>
3249 command to let people know you are away.  This simply puts brackets
3250 around your callsign to indicate you are not available.
3251
3252 <sect1>set/homenode (0)
3253
3254 <P>
3255 <tt>
3256 <bf>set/homenode &lt;node_call&gt;</bf> Set your home cluster
3257 </tt>
3258
3259 <P>
3260 Tell the cluster system where you normally connect to. Any Messages sent
3261 to you will normally find their way there should you not be connected.
3262 eg:-
3263
3264 <verb>
3265   SET/HOMENODE gb7djk
3266 </verb>
3267
3268 <sect1>set/hops (8)
3269
3270 <P>
3271 <tt>
3272 <bf>set/hops &lt;node_call&gt; ann&verbar;spots&verbar;wwv&verbar;wcy &lt;n&gt;</bf>
3273 Set hop count
3274 </tt>
3275
3276 <P>
3277 Set the hop count for a particular type of broadcast for a node.
3278
3279 This command allows you to set up special hop counts for a node 
3280 for currently: announce, spots, wwv and wcy broadcasts.
3281
3282 <verb>
3283 eg:
3284   set/hops gb7djk ann 10
3285   set/hops gb7mbc spots 20
3286 </verb>
3287
3288 Set SHOW/HOPS for information on what is already set. This command
3289 creates a filter and works in conjunction with the filter system. 
3290
3291 <sect1>set/isolate (9)
3292
3293 <P>
3294 <tt>
3295 <bf>set/isolate &lt;node call&gt;</bf> Isolate a node from the rest of the network
3296 </tt>
3297
3298 <P>
3299 Connect a node to your system in such a way that you are a full protocol
3300 member of its network and can see all spots on it, but nothing either leaks
3301 out from it nor goes back into from the rest of the nodes connected to you.
3302
3303 You can potentially connect several nodes in this way.
3304
3305 You can see which nodes are isolated with the show/isolate (1) command.
3306
3307 You can remove the isolation with the command unset/isolate.
3308
3309 <sect1>set/language (0)
3310
3311 <P>
3312 <tt>
3313 <bf>set/language &lt;language&gt;</bf> Set the language you wish to use
3314 </tt>
3315
3316 <P>
3317 You can select the language that you want the cluster to use. Currently
3318 the languages available are <em>en</em> (English) and <em>nl</em> (Dutch).
3319
3320 <sect1>set/location (0)
3321
3322 <P>
3323 <tt>
3324 <bf>set/location &lt;lat and long&gt;</bf> Set your latitude and longitude
3325 </tt>
3326
3327 <P>
3328 You can set your latitude and longitude manually or alternatively use the
3329 <em>set/qra</em> command which will do the conversion for you.
3330
3331 <verb>
3332   set/location 54 04 N 2 02 E
3333 </verb>
3334
3335
3336 <sect1>set/sys_location (9)
3337
3338 <P>
3339 <tt>
3340 <bf>set/sys_location &lt;lat & long&gt;</bf> Set your cluster latitude and longitude
3341 </tt>
3342
3343 <P>
3344 In order to get accurate headings and such like you must tell the system
3345 what your latitude and longitude is. If you have not yet done a SET/QRA
3346 then this command will set your QRA locator for you. For example:-
3347
3348 <verb>
3349   SET/LOCATION 52 22 N 0 57 E
3350 </verb>
3351
3352 <sect1>set/logininfo (0)
3353
3354 <P>
3355 <tt>
3356 <bf>set/logininfo</bf> Show logins and logouts of nodes and users
3357 </tt>
3358
3359 <P>
3360 Show users and nodes when they log in and out of the local cluster.  You
3361 can stop these messages by using the <em>unset/logininfo</em> command.
3362
3363
3364 <sect1>set/lockout (9)
3365
3366 <P>
3367 <tt>
3368 <bf>set/lockout &lt;call&gt;</bf> Stop a callsign connecting to the cluster
3369 </tt>
3370
3371 <P>
3372 You can show who is locked out with the <em>show/lockout</em> command.
3373 To allow the user to connect again, use the <em>unset/lockout</em> command.
3374
3375 <sect1>set/name (0)
3376
3377 <P>
3378 <tt>
3379 <bf>set/name &lt;your_name&gt;</bf> Set your name
3380 </tt>
3381
3382 <P>
3383 Tell the cluster what your name is, eg:-
3384
3385 <verb>
3386   set/name Dirk
3387 </verb>
3388
3389 <sect1>set/node (9)
3390
3391 <P>
3392 <tt>
3393 <bf>set/node &lt;call&gt; [&lt;call&gt; ...]</bf> Make the callsign an AK1A cluster
3394 </tt>
3395
3396 <P>
3397 Tell the system that the call(s) are to be treated as AK1A cluster and
3398 fed PC Protocol rather normal user commands.
3399
3400 From version 1.41 you can also set the following types of cluster
3401
3402 <verb>
3403   set/spider
3404   set/dxnet
3405   set/clx
3406   set/arcluster
3407 </verb>
3408
3409 To see what your nodes are set to, use the <em>show/nodes</em> command.
3410
3411 <sect1>set/obscount (9)
3412
3413 <P>
3414 <tt>
3415 <bf>set/obscount &lt;count&gt; &lt;node call&gt;</bf> Set the 'pump-up' 
3416 obsolescence counter
3417 </tt>
3418
3419 <P>
3420 From version 1.35 onwards neighbouring nodes are pinged at regular intervals (see
3421 SET/PINGINTERVAL), usually 300 seconds or 5 minutes. There is a 'pump-up'
3422 counter which is decremented on every outgoing ping and then reset to
3423 the 'obscount' value on every incoming ping. The default value of this
3424 parameter is 2. 
3425
3426 What this means is that a neighbouring node will be pinged twice at 
3427 (default) 300 second intervals and if no reply has been heard just before
3428 what would be the third attempt, that node is disconnected.
3429
3430 If a ping is heard then the obscount is reset to the full value. Using
3431 default values, if a node has not responded to a ping within 15 minutes,
3432 it is disconnected.
3433
3434 <sect1>set/page (0)
3435
3436 <P>
3437 <tt>
3438 <bf>set/page &lt;n&gt;</bf> Set the number of lines per page
3439 </tt>
3440
3441 <P>
3442 Tell the system how many lines you wish on a page when the number of lines
3443 of output from a command is more than this. The default is 20. Setting it
3444 explicitly to 0 will disable paging. 
3445
3446 <verb>
3447   SET/PAGE 30
3448   SET/PAGE 0
3449 </verb>
3450
3451 The setting is stored in your user profile.
3452
3453
3454 <sect1>set/password (9)
3455
3456 <P>
3457 <tt>
3458 <bf>set/password &lt;callsign&gt; &lt;string&gt;</bf> Set a users password
3459 </tt>
3460
3461 <P>
3462 The password for a user can only be set by a full sysop. The string
3463 can contain any characters but any spaces are removed (you can type in
3464 spaces - but they won't appear in the password). You can see the
3465 result with STAT/USER.  The password is the usual 30 character baycom
3466 type password.
3467
3468 <sect1>set/pinginterval (9)
3469
3470 <P>
3471 <tt>
3472 <bf>set/pinginterval &lt;time&gt; &lt;node call&gt;</bf> Set the ping time 
3473 to neighbouring nodes
3474 </tt>
3475
3476 <P>
3477 As from version 1.35 all neighbouring nodes are pinged at regular intervals
3478 in order to determine the rolling quality of the link and, in future, to
3479 affect routing decisions. The default interval is 300 secs or 5 minutes.
3480
3481 You can use this command to set a different interval. Please don't. 
3482
3483 But if you do the value you enter is treated as minutes up 60 and seconds
3484 for numbers greater than that.
3485
3486 This is used also to help determine when a link is down at the far end
3487 (as certain cluster software doesn't always notice), see SET/OBSCOUNT
3488 for more information.
3489
3490 <sect1>set/privilege (9)
3491
3492 <P>
3493 <tt>
3494 <bf>set/privilege &lt;n&gt; &lt;call&gt; [&lt;call&gt; ...]</bf> Set the 
3495 privilege level on a call
3496 </tt>
3497
3498 <P>
3499 Set the privilege level on a callsign. The privilege levels that pertain
3500 to commands are as default:-
3501
3502 <tscreen><verb>
3503   0 - normal user
3504   1 - allow remote nodes normal user RCMDs
3505   5 - various privileged commands (including shutdown, but not disc-
3506       connect), the normal level for another node.
3507   8 - more privileged commands (including disconnect)
3508   9 - local sysop privilege. DO NOT SET ANY REMOTE USER OR NODE TO THIS
3509       LEVEL.
3510 </verb></tscreen>
3511
3512 If you are a sysop and you come in as a normal user on a remote connection
3513 your privilege will automatically be set to 0.
3514
3515 <sect1>set/spider (5)
3516
3517 <P>
3518 <tt>
3519 <bf>set/spider &lt;node_call&gt; &lsqb;&lt;node_call&gt; ...&rsqb;</bf> Make
3520 the node_call a DXSpider type node
3521 </tt>
3522
3523 <P>
3524 Set the node_call as a DXSpider type node
3525
3526 <sect1>set/sys_qra (9)
3527
3528 <P>
3529 <tt>
3530 <bf>set/sys_qra &lt;locator&gt;</bf> Set your cluster QRA locator
3531 </tt>
3532
3533 <sect1>set/qra (0)
3534
3535 <P>
3536 <tt>
3537 <bf>set/qra &lt;locator&gt;</bf> Set your QRA locator
3538 </tt>
3539
3540 <P>
3541 Tell the system what your QRA (or Maidenhead) locator is. If you have not
3542 done a SET/LOCATION then your latitude and longitude will be set roughly
3543 correctly (assuming your locator is correct ;-). For example:-
3544
3545 <verb>
3546   SET/QRA JO02LQ
3547 </verb>
3548
3549 <sect1>set/qth (0)
3550
3551 <P>
3552 <tt>
3553 <bf>set/qth &lt;your QTH&gt;</bf> Set your QTH
3554 </tt>
3555
3556 <P>
3557 Tell the system where your are.  For example:-
3558
3559 <verb>
3560   set/qth East Dereham, Norfolk
3561 </verb>
3562
3563 <sect1>set/talk (0)
3564
3565 <P>
3566 <tt>
3567 <bf>set/talk</bf> Allow talk messages to be seen at your console
3568 </tt>
3569
3570 <P>
3571 Allow talk messages to arrive at your console.  You can switch off
3572 talks with the <em>unset/talk</em> command.
3573
3574 <sect1>set/wcy (0)
3575
3576 <P>
3577 <tt>
3578 <bf>set/wcy</bf> Allow WCY messages to be seen at your console
3579 </tt>
3580
3581 <P>
3582 Allow WCY information to be seen at your console.  You can switch off
3583 WCY messages with the <em>unset/wcy</em> command.
3584
3585 <sect1>set/wwv (0)
3586
3587 <P>
3588 <tt>
3589 <bf>set/wwv</bf> Allow WWV messages to be seen at your console
3590 </tt>
3591
3592 <P>
3593 Allow WWV information to be seen at your console.  You can switch off
3594 WWV messages with the <em>unset/wwv</em> command.
3595
3596 <sect1>set/wx (0)
3597
3598 <P>
3599 <tt>
3600 <bf>set/wx</bf> Allow WX messages to be seen at your console
3601 </tt>
3602
3603 <P>
3604 Allow WX information to be seen at your console.  You can switch off
3605 WX messages with the <em>unset/wx</em> command.
3606
3607 <sect1>show/badnode (6)
3608
3609 <P>
3610 <tt>
3611 <bf>show/badnode</bf> Show all the bad nodes in the system
3612 </tt>
3613
3614 <P>
3615 Display all the bad node callsigns in the system, see SET/BADNODE
3616 for more information.
3617
3618 <sect1>show/date (0)
3619
3620 <P>
3621 <tt>
3622 <bf>show/date &lsqb;&lt;prefix&gt;&verbar;&lt;callsign&gt;&rsqb;</bf> Show
3623 the local time
3624 </tt>
3625
3626 <P>
3627 This is very nearly the same as SHOW/TIME, the only difference the format
3628 of the date string if no arguments are given.
3629
3630 If no prefixes or callsigns are given then this command returns the local
3631 time and UTC as the computer has it right now. If you give some prefixes
3632 then it will show UTC and UTC + the local offset (not including DST) at
3633 the prefixes or callsigns that you specify.
3634
3635 <sect1>show/dx (0)
3636
3637 <P>
3638 <tt>
3639 <bf>show/dx &lsqb;options&rsqb;</bf> interrogate the spot database
3640 </tt>
3641
3642 <P>
3643 If you just type SHOW/DX you will get the last so many spots
3644 (sysop configurable, but usually 10).
3645    
3646 In addition you can add any number of these options in very nearly
3647 any order to the basic SHOW/DX command, they are:-
3648
3649 <verb>   
3650 on &lt;band&gt;       - eg 160m 20m 2m 23cm 6mm
3651 on &lt;region&gt;     - eg hf vhf uhf shf      (see SHOW/BANDS)
3652    
3653 &lt;number&gt;        - the number of spots you want
3654 &lt;from&gt;-&lt;to&gt     - &lt;from&gt; spot no &lt;to&gt; spot no in 
3655                   the selected list
3656    
3657 &lt;prefix&gt;        - for a spotted callsign beginning with &lt;prefix&gt;
3658 *&lt;suffix&gt;       - for a spotted callsign ending in &lt;suffix&gt;
3659 *&lt;string&gt;*      - for a spotted callsign containing &lt;string&gt;
3660    
3661 day &lt;number&gt;    - starting &lt;number&gt; days ago
3662 day &lt;from&gt;-&lt;to&gt; - &lt;from&gt; days &lt;to&gt; days ago
3663    
3664 info &lt;text&gt;     - any spots containing &lt;text&gt; in the info or remarks
3665    
3666 by &lt;call&gt;       - any spots spotted by &lt;call&gt; (spotter &lt;call&gt; 
3667                         is the same).
3668
3669 qsl             - this automatically looks for any qsl info on the call
3670                   held in the spot database.
3671
3672 iota &lsqb;&lt;iota&gt;&rsqb;   - If the iota island number is missing it will 
3673                   look for the string iota and anything which looks like 
3674                   an iota island number. If you specify then it will look 
3675                   for that island.
3676
3677 qra &lsqb;&lt;locator&gt;&rsqb; - this will look for the specific locator if 
3678                   you specify one or else anything that looks like a locator.
3679 </verb>
3680    
3681 e.g. 
3682
3683 <verb>   
3684    SH/DX 9m0
3685    SH/DX on 20m info iota
3686    SH/DX 9a on vhf day 30
3687    SH/DX rf1p qsl
3688    SH/DX iota 
3689    SH/DX iota eu-064
3690    SH/DX qra jn86
3691 </verb>
3692
3693 <sect1>show/dxcc (0)
3694
3695 <P>
3696 <tt>
3697 <bf>show/dxcc &lt;prefix&gt;</bf> Interrogate the spot database by country
3698 </tt>
3699
3700 <P>
3701 This command takes the &lt;prefix&gt; (which can be a full or partial 
3702 callsign if desired), looks up which internal country number it is
3703 and then displays all the spots as per SH/DX for that country.
3704    
3705 The options for SHOW/DX also apply to this command.   
3706 e.g. 
3707
3708 <verb>   
3709    SH/DXCC G
3710    SH/DXCC W on 20m info iota
3711 </verb>
3712
3713 <sect1>show/files (0)
3714
3715 <P>
3716 <tt>
3717 <bf>show/files &lsqb;&lt;filearea&gt; &lsqb;&lt;string&gt;&rsqb;&rsqb;</bf> List
3718 the contents of a filearea
3719 </tt>
3720
3721 <P>
3722 SHOW/FILES on its own will show you a list of the various fileareas
3723 available on the system. To see the contents of a particular file
3724 area type:-
3725
3726 <verb>
3727    SH/FILES &lt;filearea&gt;
3728 </verb>
3729
3730 where &lt;filearea&gt; is the name of the filearea you want to see the 
3731 contents of.
3732
3733 You can also use shell globbing characters like '*' and '?' in a
3734 string to see a selection of files in a filearea eg:-
3735
3736 <verb>
3737    SH/FILES bulletins arld*
3738 </verb>
3739
3740 See also TYPE - to see the contents of a file.
3741
3742 <sect1>show/filter (0)
3743
3744 <P>
3745 <tt>
3746 <bf>show/filter</bf> Show the filters you have set
3747 </tt>
3748
3749 <P>
3750 Show the contents of all the filters that are set by you. This command 
3751 displays all the filters set - for all the various categories.
3752
3753 <sect1>show/filter (extended for sysops) (5)
3754
3755 <P>
3756 <tt>
3757 <bf>show/filter &lt;callsign&gt;</bf> Show the filters set by &lt;callsign&gt;
3758 </tt>
3759
3760 <P>
3761 A sysop can look at any filters that have been set.
3762
3763 <sect1>show/hops (8)
3764
3765 <P>
3766 <tt>
3767 <bf>show/hops &lt;node_call&gt; &lsqb;ann&verbar;spots&verbar;wcy&verbar;wwv&verbar;&rsqb;</bf> Show the hop 
3768 counts for a node
3769 </tt>
3770
3771 <P>
3772 This command shows the hop counts set up for a node. You can specify
3773 which category you want to see. If you leave the category out then 
3774 all the categories will be listed.
3775
3776 <sect1>show/isolate (1)
3777
3778 <P>
3779 <tt>
3780 <bf>show/isolate</bf> Show a list of isolated nodes
3781 </tt>
3782
3783 <P>
3784 Show which nodes are currently set to be isolated.
3785
3786 <sect1>show/lockout (9)
3787
3788 <P>
3789 <tt>
3790 <bf>show/lockout</bf> Show a list of excluded callsigns
3791 </tt>
3792
3793 <P>
3794 Show a list of callsigns that have been excluded (locked out) of the
3795 cluster locally with the <em>set/lockout</em> command
3796
3797 <sect1>show/moon (0)
3798
3799 <P>
3800 <tt>
3801 <bf>show/moon &lsqb;&lt;prefix&gt;&verbar;&lt;callsign&gt;&rsqb;</bf> Show moon
3802 rise and set times
3803 </tt>
3804
3805 <P>
3806 Show the Moon rise and set times for a (list of) prefixes or callsigns, 
3807 together with the azimuth and elevation of the sun currently at those
3808 locations.
3809
3810 If you don't specify any prefixes or callsigns, it will show the times for
3811 your QTH (assuming you have set it with either SET/LOCATION or SET/QRA),
3812 together with the current azimuth and elevation.
3813
3814 In addition, it will show the gain or loss dB relative to the nominal 
3815 distance of 385,000Km due to the ellipsoidal nature of the orbit.
3816
3817 If all else fails it will show the Moonrise and set times for the node
3818 that you are connected to. 
3819
3820 For example:-
3821
3822 <verb>
3823   SH/MOON
3824   SH/MOON G1TLH W5UN
3825 </verb>
3826
3827 <sect1>show/muf (0)
3828
3829 <P>
3830 <tt>
3831 <bf>show/muf &lt;prefix&gt; &lsqb;&lt;hours&gt;&rsqb;&lsqb;long&rsqb;</bf> Show
3832 the likely propagation to &lt;prefix&gt;
3833 </tt>
3834
3835 <P>
3836 This command allow you to estimate the likelihood of you contacting
3837 a station with the prefix you have specified. The output assumes a modest
3838 power of 20dBW and receiver sensitivity of -123dBm (about 0.15muV/10dB SINAD)
3839
3840 The result predicts the most likely operating frequencies and signal
3841 levels for high frequency (shortwave) radio propagation paths on
3842 specified days of the year and hours of the day. It is most useful for
3843 paths between 250 km and 6000 km, but can be used with reduced accuracy
3844 for paths shorter or longer than this.
3845
3846 The command uses a routine MINIMUF 3.5 developed by the U.S. Navy and
3847 used to predict the MUF given the predicted flux, day of the year,
3848 hour of the day and geographic coordinates of the transmitter and
3849 receiver. This routine is reasonably accurate for the purposes here,
3850 with a claimed RMS error of 3.8 MHz, but much smaller and less complex
3851 than the programs used by major shortwave broadcasting organizations,
3852 such as the Voice of America.
3853
3854 The command will display some header information detailing its
3855 assumptions, together with the locations, latitude and longitudes and
3856 bearings. It will then show UTC (UT), local time at the other end
3857 (LT), calculate the MUFs, Sun zenith angle at the midpoint of the path
3858 (Zen) and the likely signal strengths. Then for each frequency for which
3859 the system thinks there is a likelihood of a circuit it prints a value.
3860
3861 The value is currently a likely S meter reading based on the conventional
3862 6dB / S point scale. If the value has a '+' appended it means that it is
3863 1/2 an S point stronger. If the value is preceeded by an 'm' it means that
3864 there is likely to be much fading and by an 's' that the signal is likely
3865 to be noisy.  
3866
3867 By default SHOW/MUF will show the next two hours worth of data. You
3868 can specify anything up to 24 hours worth of data by appending the no of
3869 hours required after the prefix. For example:-
3870
3871 <verb>
3872   SH/MUF W
3873 </verb>
3874
3875 produces:
3876
3877 <verb>
3878   RxSens: -123 dBM SFI: 159   R: 193   Month: 10   Day: 21
3879   Power :   20 dBW    Distance:  6283 km    Delay: 22.4 ms
3880   Location                       Lat / Long           Azim
3881   East Dereham, Norfolk          52 41 N 0 57 E         47
3882   United-States-W                43 0 N 87 54 W        299
3883   UT LT  MUF Zen  1.8  3.5  7.0 10.1 14.0 18.1 21.0 24.9 28.0 50.0
3884   18 23 11.5 -35  mS0+ mS2   S3
3885   19  0 11.2 -41  mS0+ mS2   S3
3886 </verb>
3887
3888 indicating that you will have weak, fading circuits on top band and 
3889 80m but usable signals on 40m (about S3).
3890
3891 inputing:-
3892
3893 <verb>
3894   SH/MUF W 24
3895 </verb>
3896
3897 will get you the above display, but with the next 24 hours worth of
3898 propagation data.
3899
3900 <verb>
3901   SH/MUF W L 24
3902   SH/MUF W 24 Long
3903 </verb>
3904
3905 Gives you an estimate of the long path propagation characterics. It
3906 should be noted that the figures will probably not be very useful, nor
3907 terrible accurate, but it is included for completeness.
3908
3909 <sect1>show/node (1)
3910
3911 <P>
3912 <tt>
3913 <bf>show/node &lsqb;&lt;node_call&gt; ...&rsqb;</bf> Show the type and version
3914 number of nodes
3915 </tt>
3916
3917 <P>
3918 Show the type and version (if connected) of the nodes specified on the
3919 command line. If no callsigns are specified then a sorted list of all
3920 the non-user callsigns known to the system will be displayed.
3921
3922 <sect1>show/prefix (0)
3923
3924 <P>
3925 <tt>
3926 <bf>show/prefix &lt;callsign&gt;</bf> Interrogate the prefix database
3927 </tt>
3928
3929 <P>
3930 This command takes the &lt;callsign&gt; (which can be a full or partial 
3931 callsign or a prefix), looks up which internal country number 
3932 it is and then displays all the relevant prefixes for that country
3933 together with the internal country no, the CQ and ITU regions. 
3934
3935 See also SHOW/DXCC
3936
3937
3938 <sect1>show/program (5)
3939
3940 <P>
3941 <tt>
3942 <bf>show/program</bf> Show the locations of all the included program modules
3943 </tt>
3944
3945 <P>
3946 Show the name and location where every program module was load from. This
3947 is useful for checking where you think you have loaded a .pm file from.
3948
3949 <sect1>show/qra (0)
3950
3951 <P>
3952 <tt>
3953 <bf>show/qra &lt;locator&gt &lsqb;&lt;locator&gt;&rsqb;</bf> Show the distance
3954 between locators<newline>
3955 <bf>show/qra &lt;lat&gt; &lt;long&gt;</bf> Convert latitude and longitude to 
3956 a locator
3957 </tt>
3958
3959 <P>
3960 This is a multipurpose command that allows you either to calculate the
3961 distance and bearing between two locators or (if only one locator is
3962 given on the command line) the distance and beraing from your station
3963 to the locator. For example:-
3964
3965 <verb>
3966 SH/QRA IO92QL 
3967 SH/QRA JN06 IN73
3968 </verb>
3969
3970 The first example will show the distance and bearing to the locator from
3971 yourself, the second example will calculate the distance and bearing from
3972 the first locator to the second. You can use 4 or 6 character locators.
3973
3974 It is also possible to convert a latitude and longitude to a locator by 
3975 using this command with a latitude and longitude as an argument, for
3976 example:-
3977
3978 <verb>
3979 SH/QRA 52 41 N 0 58 E
3980 </verb>
3981
3982 <sect1>show/qrz (0)
3983
3984 <P>
3985 <tt>
3986 <bf>show/qrz &lt;callsign&gt;</bf> Show any callbook details on a callsign
3987 </tt>
3988
3989 <P>
3990 This command queries the QRZ callbook server on the internet
3991 and returns any information available for that callsign. This service
3992 is provided for users of this software by http://www.qrz.com 
3993
3994 <sect1>show/satellite (0)
3995
3996 <P>
3997 <tt>
3998 <bf>show/satellite &lt;name&gt; &lsqb;&lt;hours&gt; &lt;interval&gt;&rsqb;</bf>
3999 Show satellite tracking data
4000 </tt>
4001
4002 <P>
4003 Show the tracking data from your location to the satellite of your choice
4004 from now on for the next few hours.
4005
4006 If you use this command without a satellite name it will display a list
4007 of all the satellites known currently to the system. 
4008
4009 If you give a name then you can obtain tracking data of all the passes
4010 that start and finish 5 degrees below the horizon. As default it will
4011 give information for the next three hours for every five minute period.
4012
4013 You can alter the number of hours and the step size, within certain 
4014 limits. 
4015
4016 Each pass in a period is separated with a row of '-----' characters
4017
4018 So for example:-
4019
4020 <verb>
4021 SH/SAT AO-10 
4022 SH/SAT FENGYUN1 12 2
4023 </verb>
4024
4025 <sect1>show/sun (0)
4026
4027 <P>
4028 <tt>
4029 <bf>show/sun &lsqb;&lt;prefix&gt;&verbar;&lt;callsign&gt;&rsqb;</bf> Show
4030 sun rise and set times
4031 </tt>
4032
4033 <P>
4034 Show the sun rise and set times for a (list of) prefixes or callsigns, 
4035 together with the azimuth and elevation of the sun currently at those
4036 locations.
4037
4038 If you don't specify any prefixes or callsigns, it will show the times for
4039 your QTH (assuming you have set it with either SET/LOCATION or SET/QRA),
4040 together with the current azimuth and elevation.
4041
4042 If all else fails it will show the sunrise and set times for the node
4043 that you are connected to. 
4044
4045 For example:-
4046
4047 <verb>
4048   SH/SUN
4049   SH/SUN G1TLH K9CW ZS
4050 </verb>
4051
4052 <sect1>show/time (0)
4053
4054 <P>
4055 <tt>
4056 <bf>show/time &lsqb;&lt;prefix&gt;&verbar;&lt;callsign&gt;&rsqb;</bf> Show
4057 the local time
4058 </tt>
4059
4060 <P>
4061 If no prefixes or callsigns are given then this command returns the local
4062 time and UTC as the computer has it right now. If you give some prefixes
4063 then it will show UTC and UTC + the local offset (not including DST) at
4064 the prefixes or callsigns that you specify.
4065
4066 <sect1>show/wcy (0)
4067
4068 <P>
4069 <tt>
4070 <bf>show/wcy</bf> Show the last 10 WCY broadcasts<newline>
4071 <bf>show/wcy &lt;n&gt;</bf> Show the last &lt;n&gt; WCY broadcasts
4072 </tt>
4073
4074 <P>
4075 Display the most recent WCY information that has been received by the system
4076
4077 <sect1>show/wwv (0)
4078
4079 <P>
4080 <tt>
4081 <bf>show/wwv</bf> Show the last 10 WWV broadcasts<newline>
4082 <bf>show/wwv &lt;n&gt;</bf> Show the last &lt;n&gt; WWV broadcasts
4083 </tt>
4084
4085 <P>
4086 Display the most recent WWV information that has been received by the system
4087
4088
4089 <sect1>shutdown (5)
4090
4091 <P>
4092 <tt>
4093 <bf>shutdown</bf> Shutdown the cluster
4094 </tt>
4095
4096 <P>
4097 Shutdown the cluster and disconnect all the users.  If you have Spider
4098 set to respawn in /etc/inittab it will of course restart.
4099
4100 <sect1>spoof (9)
4101
4102 <P>
4103 <tt>
4104 <bf>spoof &lt;callsign&gt; &lt;command&gt;</bf> Run commands as another user
4105 </tt>
4106
4107 <P>
4108 This is a very simple yet powerful command for the sysop.  It allows you to
4109 issue commands as if you were a different user.  This is very useful for the
4110 kind of things that users seem to always get wrong.. like home_node for
4111 example.
4112
4113 <sect1>stat/db (5)
4114
4115 <P>
4116 <tt>
4117 <bf>stat/db &lt;dbname&gt;</bf> Show the status of a database
4118 </tt>
4119
4120 <P>
4121 Show the internal status of a database descriptor.
4122
4123 Depending on your privilege level you will see more or less information. 
4124 This command is unlikely to be of much use to anyone other than a sysop.
4125
4126 <sect1>stat/channel (5)
4127
4128 <P>
4129 <tt>
4130 <bf>stat/channel &lt;callsign&gt;</bf> Show the status of a channel on the cluster
4131 </tt>
4132
4133 <P>
4134 Show the internal status of the channel object either for the channel that 
4135 you are on or else for the callsign that you asked for.
4136
4137 Only the fields that are defined (in perl term) will be displayed.
4138
4139 <sect1>stat/msg (5)
4140
4141 <P>
4142 <tt>
4143 <bf>stat/msg &lt;msgno&gt;</bf> Show the status of a message
4144 </tt>
4145
4146 <P>
4147 This command shows the internal status of a message and includes information
4148 such as to whom it has been forwarded, its size, origin etc etc.
4149
4150 <sect1>stat/user (5)
4151
4152 <P>
4153 <tt>
4154 <bf>stat/user &lt;callsign&gt;</bf> Show the full status of a user
4155 </tt>
4156
4157 <P>
4158 Shows the full contents of a user record including all the secret flags
4159 and stuff.
4160
4161 Only the fields that are defined (in perl term) will be displayed.
4162
4163 <sect1>sysop (0)
4164
4165 <P>
4166 <tt>
4167 <bf>sysop</bf> Regain your privileges if you login remotely
4168 </tt>
4169
4170 <P>
4171 The system automatically reduces your privilege level to that of a
4172 normal user if you login in remotely. This command allows you to
4173 regain your normal privilege level. It uses the normal system: five
4174 numbers are returned that are indexes into the character array that is
4175 your assigned password (see SET/PASSWORD). The indexes start from
4176 zero.
4177
4178 You are expected to return a string which contains the characters
4179 required in the correct order. You may intersperse those characters
4180 with others to obscure your reply for any watchers. For example (and
4181 these values are for explanation :-):
4182
4183 <verb>
4184   password = 012345678901234567890123456789
4185   > sysop
4186   22 10 15 17 3
4187 </verb>
4188
4189 you type:-
4190
4191 <verb>
4192  aa2bbbb0ccc5ddd7xxx3n
4193  or 2 0 5 7 3
4194  or 20573
4195 </verb>
4196
4197 They will all match. If there is no password you will still be offered
4198 numbers but nothing will happen when you input a string. Any match is
4199 case sensitive.
4200
4201 <sect1>talk (0)
4202
4203 <P>
4204 <tt>
4205 <bf>talk &lt;callsign&gt;</bf> Enter talk mode with &lt;callsign&gt;<newline>
4206 <bf>talk &lt;callsign&gt; &lt;text&gt;</bf> Send a text message to &lt;callsign&gt;<newline>
4207 <bf>talk &lt;callsign&gt; &gt; &lt;node_call&gt; &lsqb;&lt;text&gt;&rsqb;</bf>
4208 Send a text message to &lt;callsign&gt; via &lt;node_call&gt;
4209 </tt>
4210
4211 <P>
4212 Send a short message to any other station that is visible on the cluster
4213 system. You can send it to anyone you can see with a SHOW/CONFIGURATION 
4214 command, they don't have to be connected locally.
4215
4216 The second form of TALK is used when other cluster nodes are connected
4217 with restricted information. This usually means that they don't send 
4218 the user information usually associated with logging on and off the cluster.
4219
4220 If you know that G3JNB is likely to be present on GB7TLH, but you can only
4221 see GB7TLH in the SH/C list but with no users, then you would use the
4222 second form of the talk message.
4223
4224 If you want to have a ragchew with someone you can leave the text message
4225 out and the system will go into 'Talk' mode. What this means is that a
4226 short message is sent to the recipient telling them that you are in a 'Talking' 
4227 frame of mind and then you just type - everything you send will go to the 
4228 station that you asked for. 
4229
4230 All the usual announcements, spots and so on will still come out on your
4231 terminal.
4232
4233 If you want to do something (such as send a spot) you precede the normal 
4234 command with a '/' character, eg:-
4235
4236 <verb>
4237    /DX 14001 G1TLH What's a B class licensee doing on 20m CW?
4238    /HELP talk
4239 </verb>
4240
4241 To leave talk mode type:
4242    
4243 <verb>
4244    /EX
4245 </verb>
4246
4247 <sect1>type (0)
4248
4249 <P>
4250 <tt>
4251 <bf>type &lt;filearea&gt;/&lt;name&gt;</bf> Look at a file in one of the fileareas
4252 </tt>
4253
4254 <P>
4255 Type out the contents of a file in a filearea. So, for example, in 
4256 filearea 'bulletins' you want to look at file 'arld051' you would 
4257 enter:-
4258
4259 <verb>
4260    TYPE bulletins/arld051
4261 </verb>
4262
4263 See also SHOW/FILES to see what fileareas are available and a 
4264 list of content.
4265
4266 <sect1>who (0)
4267
4268 <P>
4269 <tt>
4270 <bf>who</bf> Show who is physically connected locally
4271 </tt>
4272
4273 <P>
4274 This is a quick listing that shows which callsigns are connected and
4275 what sort of connection they have
4276
4277 <sect1>wx (0)
4278
4279 <P>
4280 <tt>
4281 <bf>wx &lt;text&gt;</bf> Send a weather message to local users<newline>
4282 <bf>wx full &lt;text&gt; </bf> Send a weather message to all cluster users
4283 </tt>
4284
4285 <P>
4286 Weather messages can sometimes be useful if you are experiencing an extreme
4287 that may indicate enhanced conditions
4288
4289 <sect1>wx (enhanced for sysops) (5)
4290
4291 <P>
4292 <tt>
4293 <bf>wx sysop &lt;text&gt;</bf> Send a weather message to other clusters only
4294 </tt>
4295
4296 <P>
4297 Send a weather message only to other cluster nodes and not to general users.
4298
4299
4300
4301 </article>