Home » Archimedes archive » Acorn User » AU 1994-07.adf » !Networks_networks » Internet/!TCPIPhelp/Config

Internet/!TCPIPhelp/Config

This website contains an archive of files for the Acorn Electron, BBC Micro, Acorn Archimedes, Commodore 16 and Commodore 64 computers, which Dominic Ford has rescued from his private collection of floppy disks and cassettes.

Some of these files were originally commercial releases in the 1980s and 1990s, but they are now widely available online. I assume that copyright over them is no longer being asserted. If you own the copyright and would like files to be removed, please contact me.

Tape/disk: Home » Archimedes archive » Acorn User » AU 1994-07.adf » !Networks_networks
Filename: Internet/!TCPIPhelp/Config
Read OK:
File size: 0D84 bytes
Load address: 0000
Exec address: 0000
File contents
# This is an annotated version of the Config file for KA9Q.
# On versions of KA9Q pre-1.31, this file did not exist, and was
# all part of the AutoExec file.
#
# All lines starting with a �#� sign are comments, including some
# instructions which have been �commented out�.
#
#mem debug on
#
# The �window� command tells KA9Q whether to use its own internal window
# or pipe output to a window on a terminal program like Hearsay. My advice
# is to use the internal one � it's quite adequate.
#
#window terminal external pipeb
window terminal internal
#
# Uncommenting the next line gives a rather flash display in the windows.
#window scale on
#
# IMPORTANT: change this to your hostname and IP address, as allocated by demon.
# You will get both of these on your first call.
#
hostname acornusr.demon.co.uk
ip address [158.152.11.240]
#
# The �attach� command sets up the configuration of your serial link:
# �asy� stands for asynchronous, and should not be changed.
# �internal 0� selects the internal serial port. Some expansion cards
# provide alternative, faster serial ports � �sp_dual 0� or �sp_dual 1�
# would select the Serial Port serial ports, and �II_dual 0� or �II_dual 1�
# the Intelligent Interfaces ones.
# �slip� gives the transfer protocol, and should not be changed.
# �ax0� is a label, and should only be changed if you know what you
# are doing.
# �2048� is the buffer size, is ignored, but must be present in most
# versions of KA9Q, including 1.31.
# �576� is the maximum packet size, which is now standard for Demon and should 
# not be changed unless you know what you are doing.
# �19200� is the baud rate. Set this to the same speed as your dialup
# program, or you will have problems. Alternatively � probably better � set it
# to zero, and KA9Q will use whatever rate was already set.
#
attach asy internal 0 slip ax0 2048 576 19200
#attach asy sp_dual 0 slip ax0 8192 576 0
#
# This sends all packets out of the connection to the Demon packet router. You
# shouldn't need to change this.
#
route add default ax0 [158.152.1.71] 1
#
# This gives the �time to live� for IP packets � the maximum number of sites
# that they can be allowed to pass through. This value of 64 should not need
# changing.
#
ip ttl 64
#
#window cursor off
#
# This is the maximum tcp packet size, which must be 40 less than the maximum 
# packet size set in the attach line.
#
tcp mss 536
#
# This is the initial round trip time, which KA9Q uses as a �first guess� as
# to how long packets should take to be transmitted and received. The first
# guess needs to be fairly high, otherwise KA9Q will assume that initial
# packets have gone missing, and re-send them.
#
tcp irtt 30000
#
# This is the buffer size, and should be around ten times the maximum tcp packet
# size.
#
tcp window 5360
#
# This causes KA9Q to check the TCP connections every 15 seconds. It hangs up
# the phone if three successive checks are clear. Note - this should NOT be
# relied upon to hang up the phone if KA9Q is left unattended.
#
tcp hangup 15 3
#
# All one word sitenames will have the domain suffix apended by KA9Q.
# If you are using demon, the following line should be left alone.
#
domain suffix demon.co.uk
#
# KA9Q will keep a log of events such as mail transfer in the
# logfile, if the next line is present.
#
log <TCPIP$Dir>.logfile
#
# These lines start the various servers used by KA9Q.
#
start echo
start discard
start ftp
start smtp
start finger
start telnet
#
00000000  23 20 54 68 69 73 20 69  73 20 61 6e 20 61 6e 6e  |# This is an ann|
00000010  6f 74 61 74 65 64 20 76  65 72 73 69 6f 6e 20 6f  |otated version o|
00000020  66 20 74 68 65 20 43 6f  6e 66 69 67 20 66 69 6c  |f the Config fil|
00000030  65 20 66 6f 72 20 4b 41  39 51 2e 0a 23 20 4f 6e  |e for KA9Q..# On|
00000040  20 76 65 72 73 69 6f 6e  73 20 6f 66 20 4b 41 39  | versions of KA9|
00000050  51 20 70 72 65 2d 31 2e  33 31 2c 20 74 68 69 73  |Q pre-1.31, this|
00000060  20 66 69 6c 65 20 64 69  64 20 6e 6f 74 20 65 78  | file did not ex|
00000070  69 73 74 2c 20 61 6e 64  20 77 61 73 0a 23 20 61  |ist, and was.# a|
00000080  6c 6c 20 70 61 72 74 20  6f 66 20 74 68 65 20 41  |ll part of the A|
00000090  75 74 6f 45 78 65 63 20  66 69 6c 65 2e 0a 23 0a  |utoExec file..#.|
000000a0  23 20 41 6c 6c 20 6c 69  6e 65 73 20 73 74 61 72  |# All lines star|
000000b0  74 69 6e 67 20 77 69 74  68 20 61 20 90 23 91 20  |ting with a .#. |
000000c0  73 69 67 6e 20 61 72 65  20 63 6f 6d 6d 65 6e 74  |sign are comment|
000000d0  73 2c 20 69 6e 63 6c 75  64 69 6e 67 20 73 6f 6d  |s, including som|
000000e0  65 0a 23 20 69 6e 73 74  72 75 63 74 69 6f 6e 73  |e.# instructions|
000000f0  20 77 68 69 63 68 20 68  61 76 65 20 62 65 65 6e  | which have been|
00000100  20 90 63 6f 6d 6d 65 6e  74 65 64 20 6f 75 74 91  | .commented out.|
00000110  2e 0a 23 0a 23 6d 65 6d  20 64 65 62 75 67 20 6f  |..#.#mem debug o|
00000120  6e 0a 23 0a 23 20 54 68  65 20 90 77 69 6e 64 6f  |n.#.# The .windo|
00000130  77 91 20 63 6f 6d 6d 61  6e 64 20 74 65 6c 6c 73  |w. command tells|
00000140  20 4b 41 39 51 20 77 68  65 74 68 65 72 20 74 6f  | KA9Q whether to|
00000150  20 75 73 65 20 69 74 73  20 6f 77 6e 20 69 6e 74  | use its own int|
00000160  65 72 6e 61 6c 20 77 69  6e 64 6f 77 0a 23 20 6f  |ernal window.# o|
00000170  72 20 70 69 70 65 20 6f  75 74 70 75 74 20 74 6f  |r pipe output to|
00000180  20 61 20 77 69 6e 64 6f  77 20 6f 6e 20 61 20 74  | a window on a t|
00000190  65 72 6d 69 6e 61 6c 20  70 72 6f 67 72 61 6d 20  |erminal program |
000001a0  6c 69 6b 65 20 48 65 61  72 73 61 79 2e 20 4d 79  |like Hearsay. My|
000001b0  20 61 64 76 69 63 65 0a  23 20 69 73 20 74 6f 20  | advice.# is to |
000001c0  75 73 65 20 74 68 65 20  69 6e 74 65 72 6e 61 6c  |use the internal|
000001d0  20 6f 6e 65 20 98 20 69  74 27 73 20 71 75 69 74  | one . it's quit|
000001e0  65 20 61 64 65 71 75 61  74 65 2e 0a 23 0a 23 77  |e adequate..#.#w|
000001f0  69 6e 64 6f 77 20 74 65  72 6d 69 6e 61 6c 20 65  |indow terminal e|
00000200  78 74 65 72 6e 61 6c 20  70 69 70 65 62 0a 77 69  |xternal pipeb.wi|
00000210  6e 64 6f 77 20 74 65 72  6d 69 6e 61 6c 20 69 6e  |ndow terminal in|
00000220  74 65 72 6e 61 6c 0a 23  0a 23 20 55 6e 63 6f 6d  |ternal.#.# Uncom|
00000230  6d 65 6e 74 69 6e 67 20  74 68 65 20 6e 65 78 74  |menting the next|
00000240  20 6c 69 6e 65 20 67 69  76 65 73 20 61 20 72 61  | line gives a ra|
00000250  74 68 65 72 20 66 6c 61  73 68 20 64 69 73 70 6c  |ther flash displ|
00000260  61 79 20 69 6e 20 74 68  65 20 77 69 6e 64 6f 77  |ay in the window|
00000270  73 2e 0a 23 77 69 6e 64  6f 77 20 73 63 61 6c 65  |s..#window scale|
00000280  20 6f 6e 0a 23 0a 23 20  49 4d 50 4f 52 54 41 4e  | on.#.# IMPORTAN|
00000290  54 3a 20 63 68 61 6e 67  65 20 74 68 69 73 20 74  |T: change this t|
000002a0  6f 20 79 6f 75 72 20 68  6f 73 74 6e 61 6d 65 20  |o your hostname |
000002b0  61 6e 64 20 49 50 20 61  64 64 72 65 73 73 2c 20  |and IP address, |
000002c0  61 73 20 61 6c 6c 6f 63  61 74 65 64 20 62 79 20  |as allocated by |
000002d0  64 65 6d 6f 6e 2e 0a 23  20 59 6f 75 20 77 69 6c  |demon..# You wil|
000002e0  6c 20 67 65 74 20 62 6f  74 68 20 6f 66 20 74 68  |l get both of th|
000002f0  65 73 65 20 6f 6e 20 79  6f 75 72 20 66 69 72 73  |ese on your firs|
00000300  74 20 63 61 6c 6c 2e 0a  23 0a 68 6f 73 74 6e 61  |t call..#.hostna|
00000310  6d 65 20 61 63 6f 72 6e  75 73 72 2e 64 65 6d 6f  |me acornusr.demo|
00000320  6e 2e 63 6f 2e 75 6b 0a  69 70 20 61 64 64 72 65  |n.co.uk.ip addre|
00000330  73 73 20 5b 31 35 38 2e  31 35 32 2e 31 31 2e 32  |ss [158.152.11.2|
00000340  34 30 5d 0a 23 0a 23 20  54 68 65 20 90 61 74 74  |40].#.# The .att|
00000350  61 63 68 91 20 63 6f 6d  6d 61 6e 64 20 73 65 74  |ach. command set|
00000360  73 20 75 70 20 74 68 65  20 63 6f 6e 66 69 67 75  |s up the configu|
00000370  72 61 74 69 6f 6e 20 6f  66 20 79 6f 75 72 20 73  |ration of your s|
00000380  65 72 69 61 6c 20 6c 69  6e 6b 3a 0a 23 20 90 61  |erial link:.# .a|
00000390  73 79 91 20 73 74 61 6e  64 73 20 66 6f 72 20 61  |sy. stands for a|
000003a0  73 79 6e 63 68 72 6f 6e  6f 75 73 2c 20 61 6e 64  |synchronous, and|
000003b0  20 73 68 6f 75 6c 64 20  6e 6f 74 20 62 65 20 63  | should not be c|
000003c0  68 61 6e 67 65 64 2e 0a  23 20 90 69 6e 74 65 72  |hanged..# .inter|
000003d0  6e 61 6c 20 30 91 20 73  65 6c 65 63 74 73 20 74  |nal 0. selects t|
000003e0  68 65 20 69 6e 74 65 72  6e 61 6c 20 73 65 72 69  |he internal seri|
000003f0  61 6c 20 70 6f 72 74 2e  20 53 6f 6d 65 20 65 78  |al port. Some ex|
00000400  70 61 6e 73 69 6f 6e 20  63 61 72 64 73 0a 23 20  |pansion cards.# |
00000410  70 72 6f 76 69 64 65 20  61 6c 74 65 72 6e 61 74  |provide alternat|
00000420  69 76 65 2c 20 66 61 73  74 65 72 20 73 65 72 69  |ive, faster seri|
00000430  61 6c 20 70 6f 72 74 73  20 98 20 90 73 70 5f 64  |al ports . .sp_d|
00000440  75 61 6c 20 30 91 20 6f  72 20 90 73 70 5f 64 75  |ual 0. or .sp_du|
00000450  61 6c 20 31 91 0a 23 20  77 6f 75 6c 64 20 73 65  |al 1..# would se|
00000460  6c 65 63 74 20 74 68 65  20 53 65 72 69 61 6c 20  |lect the Serial |
00000470  50 6f 72 74 20 73 65 72  69 61 6c 20 70 6f 72 74  |Port serial port|
00000480  73 2c 20 61 6e 64 20 90  49 49 5f 64 75 61 6c 20  |s, and .II_dual |
00000490  30 91 20 6f 72 20 90 49  49 5f 64 75 61 6c 20 31  |0. or .II_dual 1|
000004a0  91 0a 23 20 74 68 65 20  49 6e 74 65 6c 6c 69 67  |..# the Intellig|
000004b0  65 6e 74 20 49 6e 74 65  72 66 61 63 65 73 20 6f  |ent Interfaces o|
000004c0  6e 65 73 2e 0a 23 20 90  73 6c 69 70 91 20 67 69  |nes..# .slip. gi|
000004d0  76 65 73 20 74 68 65 20  74 72 61 6e 73 66 65 72  |ves the transfer|
000004e0  20 70 72 6f 74 6f 63 6f  6c 2c 20 61 6e 64 20 73  | protocol, and s|
000004f0  68 6f 75 6c 64 20 6e 6f  74 20 62 65 20 63 68 61  |hould not be cha|
00000500  6e 67 65 64 2e 0a 23 20  90 61 78 30 91 20 69 73  |nged..# .ax0. is|
00000510  20 61 20 6c 61 62 65 6c  2c 20 61 6e 64 20 73 68  | a label, and sh|
00000520  6f 75 6c 64 20 6f 6e 6c  79 20 62 65 20 63 68 61  |ould only be cha|
00000530  6e 67 65 64 20 69 66 20  79 6f 75 20 6b 6e 6f 77  |nged if you know|
00000540  20 77 68 61 74 20 79 6f  75 0a 23 20 61 72 65 20  | what you.# are |
00000550  64 6f 69 6e 67 2e 0a 23  20 90 32 30 34 38 91 20  |doing..# .2048. |
00000560  69 73 20 74 68 65 20 62  75 66 66 65 72 20 73 69  |is the buffer si|
00000570  7a 65 2c 20 69 73 20 69  67 6e 6f 72 65 64 2c 20  |ze, is ignored, |
00000580  62 75 74 20 6d 75 73 74  20 62 65 20 70 72 65 73  |but must be pres|
00000590  65 6e 74 20 69 6e 20 6d  6f 73 74 0a 23 20 76 65  |ent in most.# ve|
000005a0  72 73 69 6f 6e 73 20 6f  66 20 4b 41 39 51 2c 20  |rsions of KA9Q, |
000005b0  69 6e 63 6c 75 64 69 6e  67 20 31 2e 33 31 2e 0a  |including 1.31..|
000005c0  23 20 90 35 37 36 91 20  69 73 20 74 68 65 20 6d  |# .576. is the m|
000005d0  61 78 69 6d 75 6d 20 70  61 63 6b 65 74 20 73 69  |aximum packet si|
000005e0  7a 65 2c 20 77 68 69 63  68 20 69 73 20 6e 6f 77  |ze, which is now|
000005f0  20 73 74 61 6e 64 61 72  64 20 66 6f 72 20 44 65  | standard for De|
00000600  6d 6f 6e 20 61 6e 64 20  73 68 6f 75 6c 64 20 0a  |mon and should .|
00000610  23 20 6e 6f 74 20 62 65  20 63 68 61 6e 67 65 64  |# not be changed|
00000620  20 75 6e 6c 65 73 73 20  79 6f 75 20 6b 6e 6f 77  | unless you know|
00000630  20 77 68 61 74 20 79 6f  75 20 61 72 65 20 64 6f  | what you are do|
00000640  69 6e 67 2e 0a 23 20 90  31 39 32 30 30 91 20 69  |ing..# .19200. i|
00000650  73 20 74 68 65 20 62 61  75 64 20 72 61 74 65 2e  |s the baud rate.|
00000660  20 53 65 74 20 74 68 69  73 20 74 6f 20 74 68 65  | Set this to the|
00000670  20 73 61 6d 65 20 73 70  65 65 64 20 61 73 20 79  | same speed as y|
00000680  6f 75 72 20 64 69 61 6c  75 70 0a 23 20 70 72 6f  |our dialup.# pro|
00000690  67 72 61 6d 2c 20 6f 72  20 79 6f 75 20 77 69 6c  |gram, or you wil|
000006a0  6c 20 68 61 76 65 20 70  72 6f 62 6c 65 6d 73 2e  |l have problems.|
000006b0  20 41 6c 74 65 72 6e 61  74 69 76 65 6c 79 20 98  | Alternatively .|
000006c0  20 70 72 6f 62 61 62 6c  79 20 62 65 74 74 65 72  | probably better|
000006d0  20 98 20 73 65 74 20 69  74 0a 23 20 74 6f 20 7a  | . set it.# to z|
000006e0  65 72 6f 2c 20 61 6e 64  20 4b 41 39 51 20 77 69  |ero, and KA9Q wi|
000006f0  6c 6c 20 75 73 65 20 77  68 61 74 65 76 65 72 20  |ll use whatever |
00000700  72 61 74 65 20 77 61 73  20 61 6c 72 65 61 64 79  |rate was already|
00000710  20 73 65 74 2e 0a 23 0a  61 74 74 61 63 68 20 61  | set..#.attach a|
00000720  73 79 20 69 6e 74 65 72  6e 61 6c 20 30 20 73 6c  |sy internal 0 sl|
00000730  69 70 20 61 78 30 20 32  30 34 38 20 35 37 36 20  |ip ax0 2048 576 |
00000740  31 39 32 30 30 0a 23 61  74 74 61 63 68 20 61 73  |19200.#attach as|
00000750  79 20 73 70 5f 64 75 61  6c 20 30 20 73 6c 69 70  |y sp_dual 0 slip|
00000760  20 61 78 30 20 38 31 39  32 20 35 37 36 20 30 0a  | ax0 8192 576 0.|
00000770  23 0a 23 20 54 68 69 73  20 73 65 6e 64 73 20 61  |#.# This sends a|
00000780  6c 6c 20 70 61 63 6b 65  74 73 20 6f 75 74 20 6f  |ll packets out o|
00000790  66 20 74 68 65 20 63 6f  6e 6e 65 63 74 69 6f 6e  |f the connection|
000007a0  20 74 6f 20 74 68 65 20  44 65 6d 6f 6e 20 70 61  | to the Demon pa|
000007b0  63 6b 65 74 20 72 6f 75  74 65 72 2e 20 59 6f 75  |cket router. You|
000007c0  0a 23 20 73 68 6f 75 6c  64 6e 27 74 20 6e 65 65  |.# shouldn't nee|
000007d0  64 20 74 6f 20 63 68 61  6e 67 65 20 74 68 69 73  |d to change this|
000007e0  2e 0a 23 0a 72 6f 75 74  65 20 61 64 64 20 64 65  |..#.route add de|
000007f0  66 61 75 6c 74 20 61 78  30 20 5b 31 35 38 2e 31  |fault ax0 [158.1|
00000800  35 32 2e 31 2e 37 31 5d  20 31 0a 23 0a 23 20 54  |52.1.71] 1.#.# T|
00000810  68 69 73 20 67 69 76 65  73 20 74 68 65 20 90 74  |his gives the .t|
00000820  69 6d 65 20 74 6f 20 6c  69 76 65 91 20 66 6f 72  |ime to live. for|
00000830  20 49 50 20 70 61 63 6b  65 74 73 20 98 20 74 68  | IP packets . th|
00000840  65 20 6d 61 78 69 6d 75  6d 20 6e 75 6d 62 65 72  |e maximum number|
00000850  20 6f 66 20 73 69 74 65  73 0a 23 20 74 68 61 74  | of sites.# that|
00000860  20 74 68 65 79 20 63 61  6e 20 62 65 20 61 6c 6c  | they can be all|
00000870  6f 77 65 64 20 74 6f 20  70 61 73 73 20 74 68 72  |owed to pass thr|
00000880  6f 75 67 68 2e 20 54 68  69 73 20 76 61 6c 75 65  |ough. This value|
00000890  20 6f 66 20 36 34 20 73  68 6f 75 6c 64 20 6e 6f  | of 64 should no|
000008a0  74 20 6e 65 65 64 0a 23  20 63 68 61 6e 67 69 6e  |t need.# changin|
000008b0  67 2e 0a 23 0a 69 70 20  74 74 6c 20 36 34 0a 23  |g..#.ip ttl 64.#|
000008c0  0a 23 77 69 6e 64 6f 77  20 63 75 72 73 6f 72 20  |.#window cursor |
000008d0  6f 66 66 0a 23 0a 23 20  54 68 69 73 20 69 73 20  |off.#.# This is |
000008e0  74 68 65 20 6d 61 78 69  6d 75 6d 20 74 63 70 20  |the maximum tcp |
000008f0  70 61 63 6b 65 74 20 73  69 7a 65 2c 20 77 68 69  |packet size, whi|
00000900  63 68 20 6d 75 73 74 20  62 65 20 34 30 20 6c 65  |ch must be 40 le|
00000910  73 73 20 74 68 61 6e 20  74 68 65 20 6d 61 78 69  |ss than the maxi|
00000920  6d 75 6d 20 0a 23 20 70  61 63 6b 65 74 20 73 69  |mum .# packet si|
00000930  7a 65 20 73 65 74 20 69  6e 20 74 68 65 20 61 74  |ze set in the at|
00000940  74 61 63 68 20 6c 69 6e  65 2e 0a 23 0a 74 63 70  |tach line..#.tcp|
00000950  20 6d 73 73 20 35 33 36  0a 23 0a 23 20 54 68 69  | mss 536.#.# Thi|
00000960  73 20 69 73 20 74 68 65  20 69 6e 69 74 69 61 6c  |s is the initial|
00000970  20 72 6f 75 6e 64 20 74  72 69 70 20 74 69 6d 65  | round trip time|
00000980  2c 20 77 68 69 63 68 20  4b 41 39 51 20 75 73 65  |, which KA9Q use|
00000990  73 20 61 73 20 61 20 90  66 69 72 73 74 20 67 75  |s as a .first gu|
000009a0  65 73 73 91 20 61 73 0a  23 20 74 6f 20 68 6f 77  |ess. as.# to how|
000009b0  20 6c 6f 6e 67 20 70 61  63 6b 65 74 73 20 73 68  | long packets sh|
000009c0  6f 75 6c 64 20 74 61 6b  65 20 74 6f 20 62 65 20  |ould take to be |
000009d0  74 72 61 6e 73 6d 69 74  74 65 64 20 61 6e 64 20  |transmitted and |
000009e0  72 65 63 65 69 76 65 64  2e 20 54 68 65 20 66 69  |received. The fi|
000009f0  72 73 74 0a 23 20 67 75  65 73 73 20 6e 65 65 64  |rst.# guess need|
00000a00  73 20 74 6f 20 62 65 20  66 61 69 72 6c 79 20 68  |s to be fairly h|
00000a10  69 67 68 2c 20 6f 74 68  65 72 77 69 73 65 20 4b  |igh, otherwise K|
00000a20  41 39 51 20 77 69 6c 6c  20 61 73 73 75 6d 65 20  |A9Q will assume |
00000a30  74 68 61 74 20 69 6e 69  74 69 61 6c 0a 23 20 70  |that initial.# p|
00000a40  61 63 6b 65 74 73 20 68  61 76 65 20 67 6f 6e 65  |ackets have gone|
00000a50  20 6d 69 73 73 69 6e 67  2c 20 61 6e 64 20 72 65  | missing, and re|
00000a60  2d 73 65 6e 64 20 74 68  65 6d 2e 0a 23 0a 74 63  |-send them..#.tc|
00000a70  70 20 69 72 74 74 20 33  30 30 30 30 0a 23 0a 23  |p irtt 30000.#.#|
00000a80  20 54 68 69 73 20 69 73  20 74 68 65 20 62 75 66  | This is the buf|
00000a90  66 65 72 20 73 69 7a 65  2c 20 61 6e 64 20 73 68  |fer size, and sh|
00000aa0  6f 75 6c 64 20 62 65 20  61 72 6f 75 6e 64 20 74  |ould be around t|
00000ab0  65 6e 20 74 69 6d 65 73  20 74 68 65 20 6d 61 78  |en times the max|
00000ac0  69 6d 75 6d 20 74 63 70  20 70 61 63 6b 65 74 0a  |imum tcp packet.|
00000ad0  23 20 73 69 7a 65 2e 0a  23 0a 74 63 70 20 77 69  |# size..#.tcp wi|
00000ae0  6e 64 6f 77 20 35 33 36  30 0a 23 0a 23 20 54 68  |ndow 5360.#.# Th|
00000af0  69 73 20 63 61 75 73 65  73 20 4b 41 39 51 20 74  |is causes KA9Q t|
00000b00  6f 20 63 68 65 63 6b 20  74 68 65 20 54 43 50 20  |o check the TCP |
00000b10  63 6f 6e 6e 65 63 74 69  6f 6e 73 20 65 76 65 72  |connections ever|
00000b20  79 20 31 35 20 73 65 63  6f 6e 64 73 2e 20 49 74  |y 15 seconds. It|
00000b30  20 68 61 6e 67 73 20 75  70 0a 23 20 74 68 65 20  | hangs up.# the |
00000b40  70 68 6f 6e 65 20 69 66  20 74 68 72 65 65 20 73  |phone if three s|
00000b50  75 63 63 65 73 73 69 76  65 20 63 68 65 63 6b 73  |uccessive checks|
00000b60  20 61 72 65 20 63 6c 65  61 72 2e 20 4e 6f 74 65  | are clear. Note|
00000b70  20 2d 20 74 68 69 73 20  73 68 6f 75 6c 64 20 4e  | - this should N|
00000b80  4f 54 20 62 65 0a 23 20  72 65 6c 69 65 64 20 75  |OT be.# relied u|
00000b90  70 6f 6e 20 74 6f 20 68  61 6e 67 20 75 70 20 74  |pon to hang up t|
00000ba0  68 65 20 70 68 6f 6e 65  20 69 66 20 4b 41 39 51  |he phone if KA9Q|
00000bb0  20 69 73 20 6c 65 66 74  20 75 6e 61 74 74 65 6e  | is left unatten|
00000bc0  64 65 64 2e 0a 23 0a 74  63 70 20 68 61 6e 67 75  |ded..#.tcp hangu|
00000bd0  70 20 31 35 20 33 0a 23  0a 23 20 41 6c 6c 20 6f  |p 15 3.#.# All o|
00000be0  6e 65 20 77 6f 72 64 20  73 69 74 65 6e 61 6d 65  |ne word sitename|
00000bf0  73 20 77 69 6c 6c 20 68  61 76 65 20 74 68 65 20  |s will have the |
00000c00  64 6f 6d 61 69 6e 20 73  75 66 66 69 78 20 61 70  |domain suffix ap|
00000c10  65 6e 64 65 64 20 62 79  20 4b 41 39 51 2e 0a 23  |ended by KA9Q..#|
00000c20  20 49 66 20 79 6f 75 20  61 72 65 20 75 73 69 6e  | If you are usin|
00000c30  67 20 64 65 6d 6f 6e 2c  20 74 68 65 20 66 6f 6c  |g demon, the fol|
00000c40  6c 6f 77 69 6e 67 20 6c  69 6e 65 20 73 68 6f 75  |lowing line shou|
00000c50  6c 64 20 62 65 20 6c 65  66 74 20 61 6c 6f 6e 65  |ld be left alone|
00000c60  2e 0a 23 0a 64 6f 6d 61  69 6e 20 73 75 66 66 69  |..#.domain suffi|
00000c70  78 20 64 65 6d 6f 6e 2e  63 6f 2e 75 6b 0a 23 0a  |x demon.co.uk.#.|
00000c80  23 20 4b 41 39 51 20 77  69 6c 6c 20 6b 65 65 70  |# KA9Q will keep|
00000c90  20 61 20 6c 6f 67 20 6f  66 20 65 76 65 6e 74 73  | a log of events|
00000ca0  20 73 75 63 68 20 61 73  20 6d 61 69 6c 20 74 72  | such as mail tr|
00000cb0  61 6e 73 66 65 72 20 69  6e 20 74 68 65 0a 23 20  |ansfer in the.# |
00000cc0  6c 6f 67 66 69 6c 65 2c  20 69 66 20 74 68 65 20  |logfile, if the |
00000cd0  6e 65 78 74 20 6c 69 6e  65 20 69 73 20 70 72 65  |next line is pre|
00000ce0  73 65 6e 74 2e 0a 23 0a  6c 6f 67 20 3c 54 43 50  |sent..#.log <TCP|
00000cf0  49 50 24 44 69 72 3e 2e  6c 6f 67 66 69 6c 65 0a  |IP$Dir>.logfile.|
00000d00  23 0a 23 20 54 68 65 73  65 20 6c 69 6e 65 73 20  |#.# These lines |
00000d10  73 74 61 72 74 20 74 68  65 20 76 61 72 69 6f 75  |start the variou|
00000d20  73 20 73 65 72 76 65 72  73 20 75 73 65 64 20 62  |s servers used b|
00000d30  79 20 4b 41 39 51 2e 0a  23 0a 73 74 61 72 74 20  |y KA9Q..#.start |
00000d40  65 63 68 6f 0a 73 74 61  72 74 20 64 69 73 63 61  |echo.start disca|
00000d50  72 64 0a 73 74 61 72 74  20 66 74 70 0a 73 74 61  |rd.start ftp.sta|
00000d60  72 74 20 73 6d 74 70 0a  73 74 61 72 74 20 66 69  |rt smtp.start fi|
00000d70  6e 67 65 72 0a 73 74 61  72 74 20 74 65 6c 6e 65  |nger.start telne|
00000d80  74 0a 23 0a                                       |t.#.|
00000d84