aboutsummaryrefslogtreecommitdiff
path: root/doc/INSTALL.info
blob: c74be27c351cde042e62218b22fee818d9ff5d8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
This is Info file INSTALL.info, produced by Makeinfo-1.55 from the
input file /tmp/sgml2info3035tmp2.

   \input texinfo


File: INSTALL.info,  Node: Top,  Next: Installing IRC-,  Prev: (DIR),  Up: (DIR)

Installing IRC - The Internet Relay Chat Program
************************************************

     SGML version by Christophe Kalt
     $Id: INSTALL.info,v 1.38 1999/08/13 17:22:12 kalt Exp $

   This document describes how to install, and configure IRC 2.10.3.

* Menu:

* Installing IRC-::
* The config-h file::
* Editing the Makefile and compiling::
* The ircd-conf file::
* Related resources::
* Reporting a bug::


File: INSTALL.info,  Node: Installing IRC-,  Next: The config-h file,  Prev: Top,  Up: Top

Installing IRC-
***************

* Menu:

* The configure script::
* Notes for Cygwin32 users::
* Notes concerning IPv6 support::


File: INSTALL.info,  Node: The configure script,  Next: Notes for Cygwin32 users,  Up: Installing IRC-

The configure script
====================

   This package uses a GNU configure script for its configuration.  You
simply need to untar the distribution and run the "configure" script.
This will run configure which will probe your system for any
peculiarities it has and setup the Makefile and a file of default
#define's ($arch/setup.h).

   There are a few options to "configure" to help it out, or change the
default behaviour:
`--prefix=DIR'
     changes the default directory into which ircd will install using
     "make install".  This defaults to /usr/local

`--sbindir=DIR'
     changes the default directory where the system admin executable
     files will go. It is important to set this properly. (default is
     prefix/sbin)

`--logdir=DIR'
     changes the default directory where the irc log files will go.
     (default is prefix/var/log/ircd)

`--sysconfdir=DIR'
     changes the default directory where the irc server configuration
     files will go. (default is prefix/etc)

`--localstatedir=DIR'
     changes the default directory where the irc server state files
     will go. (default is prefix/var/run)

`--resconf=FILE'
     defines the file to be used by ircd to initialize its resolver.
     (default is /etc/resolv.conf)

`--zlib-include=DIR'
     specifies in which directory the include file from the zlib is
     located.

`--zlib-library=DIR'
     specifies in which directory the zlib library is located.

`--zlib-prefix=DIR'
     specifies the prefix for zlib location.  It overrides the 2
     previous options.  (The include directory is supposed to be in
     prefix/include, and the library in prefix/lib).

`--with-zlib'
     is the default.  "configure" looks on your system to find the
     zlib.  If found, ircd will be linked using it.  This does NOT mean
     you can use server link compression, for this you also need to
     define ZIP_LINKS (see section below).

`--without-zlib'
     tells "configure" not to look for the zlib.  Defining this will
     keep you from using server link compression.

`--enable-ip6'
     Enable IPv6 support (See notes below)

`--enable-dsm'
     Enable Dynamically Shared Modules support for iauth


File: INSTALL.info,  Node: Notes for Cygwin32 users,  Next: Notes concerning IPv6 support,  Prev: The configure script,  Up: Installing IRC-

Notes for Cygwin32 users
========================

   The daemon of 2.10.3 release compiles properly on W32 systems which
have the GNU-Win32 environment () setup.  At the time of the release,
tests were made using the version b20.1 of the Cygwin32 library.

   When compiling on such system, you want to make sure that you have
carefully followed the Cygwin32 installation notes.  In particular, you
will need to make sure that the following files exist: `/bin/cp.exe',
`/bin/mv.exe', `/bin/rm.exe' and `/bin/sh.exe'.

   Also, the IRC server needs a `resolv.conf' file in order to
initialize the resolver.  This file can be anywhere (see configure
options), and is typically in `/etc' on UNIX systems.

   Finally, iauth is automatically disabled.  Even though the iauth
program compiles properly, extra work is required to have a working
communication channel between the IRC server and the iauth program.


File: INSTALL.info,  Node: Notes concerning IPv6 support,  Prev: Notes for Cygwin32 users,  Up: Installing IRC-

Notes concerning IPv6 support
=============================

   The only part of the software that doesn't use IPv6 is the server
internal resolver.  It relies on the name servers defined in
"/etc/resolv.conf" to be IPv4 addresses.

   This version was tested on the following IPv6 systems: BSD/OS+KAME,
Digital Unix, FreeBSD+KAME, Linux, NetBSD+INRIA.

   Because IPv6 numeric addresses contain ":" characters, `the
separator for the server configuration file was changed to "%"'.


File: INSTALL.info,  Node: The config-h file,  Next: Editing the Makefile and compiling,  Prev: Installing IRC-,  Up: Top

The config-h file
*****************

   The second step consists of defining options before the compilation.
This is done by editing the "config.h" file and changing the various
#DEFINE's.

* Menu:

* Define what type of UNIX your machine uses-::
* DEBUGMODE::
* CPATH MPATH LPATH PPATH TPATH QPATH OPATH::
* CACHED_MOTD::
* CHROOTDIR::
* ENABLE_SUMMON ENABLE_USERS::
* SHOW_INVISIBLE_LUSERS NO_DEFAULT_INVISIBLE::
* OPER_KILL OPER_REHASH OPER_RESTART LOCAL_KILL_ONLY::
* ZIP_LINKS ZIP_LEVEL::
* SLOW_ACCEPT::
* CLONE_CHECK::
* Other #define's::


File: INSTALL.info,  Node: Define what type of UNIX your machine uses-,  Next: DEBUGMODE,  Up: The config-h file

Define what type of UNIX your machine uses-
===========================================

   Pick the machine type which best describes your machine and change
the #undef to #define (if needed).Some flavours of Unix require no
#define and in such cases all others should be #undef'd.


File: INSTALL.info,  Node: DEBUGMODE,  Next: CPATH MPATH LPATH PPATH TPATH QPATH OPATH,  Prev: Define what type of UNIX your machine uses-,  Up: The config-h file

DEBUGMODE
=========

   Define DEBUGMODE if you want to see the ircd debugging information
as the daemon is running. Normally this function will be undefined as
ircd produces a considerable amount of output.  DEBUGMODE must be
defined for either of -t or -x command line options to work.  Defining
this induces a large overhead for the server as it does a large amount
of self diagnostics whilst running.

   `This should only be defined for test purposes, and never used on a
production server.'


File: INSTALL.info,  Node: CPATH MPATH LPATH PPATH TPATH QPATH OPATH,  Next: CACHED_MOTD,  Prev: DEBUGMODE,  Up: The config-h file

CPATH MPATH LPATH PPATH TPATH QPATH OPATH
=========================================

   Define CPATH to be the directory path to the "ircd.conf" file. This
path is usually /usr/local/lib/ircd/ircd.conf. The format of this file
will be discussed later.

   The LPATH #define should be set to "/dev/null" unless you plan to
debug the ircd program.  Note that the logfile grows very quickly.

   Define MPATH to be the path to the "motd" (message of the day) file
for the server.  Keep in mind this is automatically displayed whenever
anyone signs on to your server.

   The PPATH is optional, but if defined, should point to a file which
either doesn't exist (but is creatable) or a previously used PPATH
file.  It is used for storing the server's PID so a ps(1) isn't
necessary.

   Define QPATH to be the directory path to the "iauth.conf" file. This
path is usually /usr/local/lib/ircd/iauth.conf.  The format of this
file is described by a manual page.

   The OPATH #define should be set to "/dev/null" unless you plan to
debug the iauth program.  Note that the logfile grows very quickly.


File: INSTALL.info,  Node: CACHED_MOTD,  Next: CHROOTDIR,  Prev: CPATH MPATH LPATH PPATH TPATH QPATH OPATH,  Up: The config-h file

CACHED_MOTD
===========

   The server sends the "motd" to every client connecting.  Every time,
it reads it from the disk.  This is quite intensive and can be
undesirable for busy servers.

   Defining CACHED_MOTD will make the server store the "motd" in
memory, and only read it again from the disk when rehashing if the file
has changed.


File: INSTALL.info,  Node: CHROOTDIR,  Next: ENABLE_SUMMON ENABLE_USERS,  Prev: CACHED_MOTD,  Up: The config-h file

CHROOTDIR
=========

   To use the CHROOTDIR feature, make sure it is #define'd and that the
server is being run as root.  The server will chroot to the directory
name provded by "IRCDDIR" (in Makefile).


File: INSTALL.info,  Node: ENABLE_SUMMON ENABLE_USERS,  Next: SHOW_INVISIBLE_LUSERS NO_DEFAULT_INVISIBLE,  Prev: CHROOTDIR,  Up: The config-h file

ENABLE_SUMMON ENABLE_USERS
==========================

   For security conscious server admins, they may wish to leave
ENABLE_USERS undefined, disabling the USERS command which can be used
to glean information the same as finger can.  ENABLE_SUMMON toggles
whether the server will attempt to summon local users to irc by writing
a message similar to that from talk(1) to a user's tty.


File: INSTALL.info,  Node: SHOW_INVISIBLE_LUSERS NO_DEFAULT_INVISIBLE,  Next: OPER_KILL OPER_REHASH OPER_RESTART LOCAL_KILL_ONLY,  Prev: ENABLE_SUMMON ENABLE_USERS,  Up: The config-h file

SHOW_INVISIBLE_LUSERS NO_DEFAULT_INVISIBLE
==========================================

   On large IRC networks, the number of invisible users is likely to be
large and reporting that number cause no pain.  To aid and effect this,
SHOW_INVISIBLE_LUSERS is provided to cause the LUSERS command to report
the number of invisible users to all people and not just operators.  The
NO_DEFAULT_INVISIBLE define is used to toggle whether clients are
automatically made invisible when they register.


File: INSTALL.info,  Node: OPER_KILL OPER_REHASH OPER_RESTART LOCAL_KILL_ONLY,  Next: ZIP_LINKS ZIP_LEVEL,  Prev: SHOW_INVISIBLE_LUSERS NO_DEFAULT_INVISIBLE,  Up: The config-h file

OPER_KILL OPER_REHASH OPER_RESTART LOCAL_KILL_ONLY
==================================================

   The three operator only commands, KILL, REHASH and RESTART, may all
be disabled to ensure that an operator who does not have the correct
privilidges does not have the power to cause untoward things to occur.
To further curb the actions of guest operators, LOCAL_KILL_ONLY can be
defined to only allow locally connected clients to be KILLed.


File: INSTALL.info,  Node: ZIP_LINKS ZIP_LEVEL,  Next: SLOW_ACCEPT,  Prev: OPER_KILL OPER_REHASH OPER_RESTART LOCAL_KILL_ONLY,  Up: The config-h file

ZIP_LINKS ZIP_LEVEL
===================

   As of the 2.9.3 version of the server, server-server connections may
be compressed using the zlib.  In order to compile the server with this
feature, you MUST have the zlib package (version 1.0 or higher) already
compiled and define ZIP_LINKS in the config.h file. Compression use for
server-server connections is separately configured in the ircd.conf
file for each server-server link.  ZIP_LEVEL allows you to control the
compression level that will be used.  Values above 5 will noticeably
increase the CPU used by the server.

   The zlib package may be found at . The data format used by the zlib
library is described by RFCs (Request for Comments) 1950 to 1952 in the
files  (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip
format). These documents are also available in other formats from


File: INSTALL.info,  Node: SLOW_ACCEPT,  Next: CLONE_CHECK,  Prev: ZIP_LINKS ZIP_LEVEL,  Up: The config-h file

SLOW_ACCEPT
===========

   This option is defined by default and is needed on some OSes.  It
creates an artificial delay in processing incoming connections.  On a
given port, no more than 1 connection per 2 seconds will be processed.

   Undefining this will let the server process connections as fast as
it can which can cause problems on some OSes (such as SunOS) and be
abused (fast massive join of clonebots..), for these reasons, if you
decide to undefine SLOW_ACCEPT you MUST define CLONE_CHECK.


File: INSTALL.info,  Node: CLONE_CHECK,  Next: Other #define's,  Prev: SLOW_ACCEPT,  Up: The config-h file

CLONE_CHECK
===========

   This option acts as a wrapper, by checking incoming connections
early before starting ident query.  By default, the server will not
accept more than 2 connections from the same host within 10 seconds.


File: INSTALL.info,  Node: Other #define's,  Prev: CLONE_CHECK,  Up: The config-h file

Other #define's
===============

   The rest of the user changable #define's should be pretty much self
explanatory in the config.h file.  It is *NOT* recommended that any of
the file undef the line with "STOP STOP" in it be changed.


File: INSTALL.info,  Node: Editing the Makefile and compiling,  Next: The ircd-conf file,  Prev: The config-h file,  Up: Top

Editing the Makefile and compiling
**********************************

   This package now uses GNU autoconf to probe your system and generate
the correct Makefile.  However you need to edit it to specify specific
information, such as "prefix", "irc_mode", "ircd_mode" and "ircd_dir".

   Now to build the package, type "make all".  If everything goes will,
you can then install it by typing "make install".

   If you have trouble compiling ircd, copy Makefile.in to Makefile and
edit Makefile as appropriate.


File: INSTALL.info,  Node: The ircd-conf file,  Next: Related resources,  Prev: Editing the Makefile and compiling,  Up: Top

The ircd-conf file
******************

   After installing the ircd and irc programs, edit the ircd.conf file
as per the instructions in this section and install it in the location
you specified in the config.h file.  There is a sample conf file called
example.conf in the doc/ directory.

   Appendix A (See INSTALL.appendix) describes the differences between
IP addresses and host names.  If you are unfamiliar with this, you
should probably scan through it before proceeding.

   The ircd.conf file contains various records that specify
configuration options.  The record types are as follows:
  1. Machine information     (M)

  2. Administrative info     (A)

  3. Port connections        (P)

  4. Connection Classes      (Y)

  5. Client connections      (I,i)

  6. Operator privileges     (O)

  7. Restrict lines          (R)

  8. Excluded accounts       (K,k)

  9. Server connections      (C,c,N)

 10. Deny auto-connections   (D)

 11. Hub connections         (H)

 12. Leaf connections        (L)

 13. Version limitations     (V)

 14. Excluded machines       (Q)

 15. Service connections     (S)

 16. Bounce server           (B)

 17. Default local server    (U)

   Except for types "M" and "A", you are allowed to have multiple
records of the same type.  In some cases, you can have concurrent
records.  `It is important to note that the last matching record will
be used'.  This is especially useful when setting up I records (client
connections).

* Menu:

* Machine information::
* Administrative info::
* Port connections::
* Connection Classes::
* Client connections::
* Operator priviliges::
* Restrict connections::
* Excluded accounts::
* Server connections::
* Deny auto-connections::
* Hub connections::
* Leaf connections::
* Version limitations::
* Excluded machines::
* Service connections::
* Bounce server::
* Default local server (for local clients) `*OBSOLETED*'::


File: INSTALL.info,  Node: Machine information,  Next: Administrative info,  Up: The ircd-conf file

Machine information
===================

`Introduction'
     IRC needs to know a few things about your UNIX site, and the "M"
     command specifies this information for IRC.  The fomat of this
     command is:

`Format'
     M:<Server NAME>:<YOUR Internet IP#>:<Geographic Location>:<Port>

`M'
     "M" specifies a Machine description line

`Server NAME'
     The name of YOUR server adding any Internet DOMAINNAME that might
     also be present. If this hostname can be resolved, the IP# found
     will be used to for outgoing connections.  Otherwise the default
     interface address of the host is used.  The server name may not be
     FQDN of another host.  (This means all outgoing connections will
     be done from the same IP#, even if your host has several IP#).

`YOUR Internet IP#'
     If the machine on which you run the server has several IP
     addresses, you can define which IP# to use for outgoing
     connections.  This overrides overrides the "Server NAME".

     See Also the "Port Connections" section.

`Geographic Location'
     Geographic Location is used to say WHERE YOUR SERVER is, and gives
     people in other parts of the world a good idea of where you are!
     If your server is in the USA, it is usually best to say: <CITY>
     <STATE>, USA.  Like for Denver I say: "Denver Colorado, USA".
     Finnish sites (like tolsun.oulu.fi generally say something like
     "Oulu, Finland".

`Port'
     Defines the port on which your server will listen for UDP pings
     from other servers.  This should be the port were other servers
     are set to autoconnect.  (Also see the port field description in
     connect lines).

`Example:'
     M:tolsun.oulu.fi::Oulu, Finland:6667:

     This line reads: My Host's name is "tolsun.oulu.fi" and my site is
     located in "Oulu, Finland".

     M:orion.cair.du.edu::Denver Colorado, USA:6667:

     This line reads: My Hosts name is "orion.cair.du.edu" and my site
     is located in "Denver Colorado, USA".


File: INSTALL.info,  Node: Administrative info,  Next: Port connections,  Prev: Machine information,  Up: The ircd-conf file

Administrative info
===================

`Introduction'
     The "A" line is used for administrative information about a site.
     The e-mail address of the person running the server should be
     included here in case problems arise.

`Format'
     A:<Your Name/Location>:<Your Electronic Mailing Addr>:<other>::

`A'
     This specifies an Admin record.

`Your Name & Location'
     Use this field to say tell your FULL NAME and where in the world
     your machine is.  Be sure to add your City, State/Province and
     Country.

`Your Electronix Mailing Addr'
     Use this field to specify your Electronic Mailing Address
     preferably your Internet Mailing Address.  If you have a UUCP or
     ARAPnet address - please add that as well.  Be sure to add any
     extra DOMAIN information that is needed, for example "mail
     jtrim@orion" probably won't work as a mail address to me if you
     happen to be in Alaska.  But "mail jtrim@orion.cair.du.edu" would
     work because you know that "orion" is part of the DOMAIN
     "cair.du.edu".  So be sure to add your DOMAINNAMES to your mailing
     addresses.

`Other'
     This is really an OTHER field - you can add what you want here.

`Example'
     (the line is just one line in the confuration file, here it is cut
     into two lines to make it clearer to read):

     A:Jeff Trim -  Denver Colorado, USA:INET jtrim@orion.cair.du.edu
     UUCP {hao,isis}!udenva!jtrim:Terve! Heippa!  Have you said hello
     in Finnish today?;)::

     Would look like this when printed out with the /admin command:

     Jeff Trim -  Denver Colorado, USA INET jtrim@orion.cair.du.edu
     UUCP {hao,isis}!udenva!jtrim Terve! Hei! Heippa!  Have you said
     hello in Finnish today? ;)

     Note that the A record cannot be split across multiple lines; it
     will typically be longer than 80 characters and will therefore
     wrap around the screen.


File: INSTALL.info,  Node: Port connections,  Next: Connection Classes,  Prev: Administrative info,  Up: The ircd-conf file

Port connections
================

`Introduction'
     The port line adds flexibility to the server's ability to accept
     connections. By use of this line in the ircd.conf file, it is easy
     to setup both Unix Domain ports for the server to accept
     connections on as well as extra internet ports.

`Format'
     P:<Internet IP#>:<*>:<Internet IP Mask>:<Port>:
     P:<Directory>:<*>:<*>:<Port>:

   * Internet Ports
    `Internet IP#'
          If the host on which the server runs has several IP
          addresses, you can define for which IP address connections
          will be accepted. If no is defined here, server will bind to
          all interfaces (INADDR_ANY).  See also MACHINE CONFIGURATION
          section to properly configure outgoing connections.

          P:192.168.1.194:::6664:

    `Internet IP# Mask'
          This defines where connections may come from and be accepted.
          The IP mask uses either *'s or 0's as wildcards. The
          following two lines are the same:

          P:::128.2.*:6664: P:::128.2.0.0:6664:

          The incoming isn't matched against the mask, rather the ip#
          string is decoded and compared segment by segment. Thus

          P:::128.2*.1.2:6664:

          will not match 128.20.1.2.

    `Port'
          The port number field tells the server which port number it
          should listen on for incoming connections.

   *  Unix Socket Ports.
    `Directory'
          The path set in this field should be the directory name in
          which to create the unix socket for later listening to. The
          server will attempt to create the directory before creating
          the unix socket.

    `Port'
          The port field when used in combination with a pathname in a
          P-line is the filename created in the directory set in the
          first field.

    `Example'
          P:/tmp/.ircd:::6667:

          Creates a unix socket in the /tmp/.ircd directory called
          "6667". The unix socket (file) must be a numerical.

`Note'
     You need at least one P line.


File: INSTALL.info,  Node: Connection Classes,  Next: Client connections,  Prev: Port connections,  Up: The ircd-conf file

Connection Classes
==================

`Introduction'
     To enable more efficient use of MAXIMUM_LINKS, connection classes
     were implemented.  All clients belong to a connection class.

     Each line for a server should have the same number as the sixth
     field.  If it is absent, the server deaults it to 0, using the
     defaults from the config.h file.

     To define a connection class, you need to include a Y: line in the
     ircd.conf file.  This enables you to define the ping frequency,
     connection frequency (for servers) and maximum number of links
     that class should have.

     Currently, the Y: line `MUST' appear in the ircd.conf file
     `BEFORE' it is used in any other way.

`Format'
     Y:<Class>:<Ping Frequency>:<Connect freq>:<Max
     Links>:<SendQ>:<Local Limit>:<Global Limit>

`Y'
     This specifies a Class record.

`Class'
     This is the class number which gains the following attributes and
     should match that which is on the end of the C/c/N/I/O/S line.

`Ping Frequency'
     This field defines how long the server will let the connection
     remain "silent" before sending a PING message to make sure it is
     still alive.  Unless you are sure of what you are doing, use the
     default value which is in your config.h file.

`Connect Frequency'
     By changing this number, you change how often your server checks
     to see if it can connect to this server. If you want to check very
     occasionally, use a large value, but if it is an important
     connection, you might want a smaller value so that you connect to
     it as soon as possible.

`Max Links'
     This field defines the maximum number of links this class will
     allow from automatic connections (C lines).  Using /CONNECT
     overrides this feature.  Also defines the maximum number of users
     in this class for I/O lines per I/O line.

`SendQ'
     This field defines the "SendQ" value for this class.  If this
     field is not present, the default (from config.h) is assigned.

`Local limit'
     This field is used to limit the number of local concurrent
     connections.  The format is <x>.<y>
        *  x: defines the maximum number of clients from the same host
          (IP) will be allowed.

        *  y: defines the maximum number of clients from the same
          user@host (IP) will be allowed.  Read note below.

     Only x or y may be set, any unset value defaults to zero.

`Global limit'
     This field has the same use as the "Local limit" field.  But, the
     connection counts are done for all clients present on the net
     instead of only counting local clients.

`Note'
     leaving any of the fields (except SendQ) out means their value is
     0 (ZERO)!!  The SendQ field default value is dynamically
     determined.

`Note'
     If you plan to use the local user@host limit, please read the
     following very carefully.  The "user" value is the ident reply for
     the connection.  If no reply was given then it defaults to
     "unknown" and thus the effective limit will be per host, not per
     user@host. Also, some ident servers return encrypted data which
     changes for every connection making the limit void.

`Note'
     Only the local limitation is accurate.

`Note'
     If you define a gobal limit, you should also define a local limit
     (same or lower) as it won't take more CPU and will make the global
     limit more accurate.

`Note'
     The local and global limits only affect users (I lines), not
     servers nor services.

`Example'
     Y:23:120:300:5:100000:0:0: (server class)

     This defines class 23 to allow 5 auto-connections, which are
     checked every 300 seconds.  The connection is allowed to remain
     silent for 120 seconds before a PING is sent.  NOTE: fields 3 & 4
     are in seconds.  The SendQ is set to 100000 bytes.

     Another feature of connection class is the ability to do automatic
     routing by using the class as a "priority".  If you are connected
     to a server which has a class lower than one of the servers that
     is "behind" it, the server will disconnect the lower class one and
     schedule a "new" connection for the higher class server.

     Y:1:60:0:50:20000:2:5: (client class)

     In case of a client class, the fields are interpreted a bit
     differently.  This class (number 1) can be used by up to 50 users.
     The connections are allowed to remain silent for 60 seconds
     before a PING is set.  The SendQ is set to 20000 bytes.  A new
     connection in this class will only be allowed if there aren't more
     than 2 other local connections from the same IP address, or more
     than 5 other connections on the net from the same hostname.

     Y:2:60:0:50:20000:2.1:5: (client class)

     In case of a client class, the fields are interpreted a bit
     differently.  This class (number 1) can be used by up to 50 users.
     The connections are allowed to remain silent for 60 seconds
     before a PING is set.  The SendQ is set to 20000 bytes.  A new
     connection in this class will only be allowed if there aren't more
     than 2 other local connections from the same IP address, 1 other
     local connection from the same user from the same IP address, or
     more than 5 other connections on the net from the same hostname.


File: INSTALL.info,  Node: Client connections,  Next: Operator priviliges,  Prev: Connection Classes,  Up: The ircd-conf file

Client connections
==================

   How to let clients connect to your IRCD.
`Introduction'
     A client is a program that connects to the ircd daemon (ircd).
     There are clients written in C, GNU Emacs Lisp and many other
     languages.  The "irc" program is the C client.  Each person that
     talks via IRC is running their own client.

     The ircd.conf files contains entries that specify which clients
     are allowed to connect to your irc daemon.  Obviously you want to
     allow your own machine's clients to connect.  You may want to
     allow clients from other sites to connect.  These remote clients
     will use your server as a connection point.  All messages sent by
     these clients will pass through your machine.

`Format'
     I:<TARGET Host Addr>:<Password>:<TARGET Hosts NAME>:<Port>:<Class>
     i:<TARGET Host Addr>:<Password>:<TARGET Hosts NAME>:<Port>:<Class>

`TARGET Host Addr'
     Specifies the IP address(es) of the machine(s) that are allowed to
     connect.  If "user@" prefixes the actual IP address the server
     will require that the remote username returned by the ident server
     be the same as the one given before the "@".  Wildcards are
     permitted unless using a bitmask (e.g. 1.2.3.0/24).

`Password'
     The password that must be given by the client to be allowed on the
     server.

`TARGET Host NAME'
     Specifies the host name(s) of the machines allowed to connect to
     the server.  If "user@" prefixes the actual IP address the server
     will require that the remote username returned by the ident server
     be the same as the one given before the "@".  Wildcards are
     permitted.

     This field can be empty, it then has a special meaning.  See Below.

`Port'
     Specifies the port number for which this configuration line is
     valid.  An empty field, or "0" matches all ports.

`Class'
     This field should refer to an existing class.  Connections classes
     are usefull to limit the number of users allowed on the server.

`Note'
     The server first checks if the client hostname (or any aliases)
     matches the `TARGET Host NAME' field.  If a match is found, the
     client is accepted.  If not, the server checks if the IP address
     of the client matches the `TARGET Host Addr' field.  The matching
     field is used to set the name of the client: for example, if the
     client matches the `TARGET Host Addr' field, it will show on IRC
     with a numerical address (even if this address is resolvable).  If
     the `TARGET Host NAME' field is empty, then the host name is
     always used (when available).

`Examples'
     For example, if you were installing IRC on tolsun.oulu.fi and you
     wanted to allow examples sake let us assume you were making this
     file for tolsun and you wanted to let your own clients to connect
     to your server, you would add this entry to the file:

     I:x::tolsun.oulu.fi::1

     If you wanted to let remote clients connect, you could add the
     following lines:

     I:x::*.du.edu::1

     Allow any clients from machines whose names end in ".du.edu" to
     connect with no password.

     I:128.214.6.100::nic.funet.fi::1

     Allow clients from a machine with that IP number to connect.
     Numeric match is enough, name is not required anymore.

     I:x:secret:*.tut.fi::1

     Allow clients from machines matching "*.tut.fi" to connect with
     the password "secret".

     I:*::*::1

     Allow anyone from anywhere to connect your server.

     This is the easiest way, but it also allows people to for example
     dump files to your server, or connect 1000 (or how many open
     sockets per process your OS allows) clients to your machine and
     take your network ports. Of course the same things can be done by
     simply telnetting to your machine's SMTP port (for example).

     I:x::*.fi:6667:1

     Allow clients from machines matching "*.fi" to connect on the port
     6667.

     I:135.11.35.*::*.net::1

     Allows clients from machines which host name matches "*.net" or
     which IP address matches "135.11.35.*" to connect to the server.
     If the host name does not match "*.net" then the IP address is
     used for these clients, even if the host name is known.

     I:135.11.35.*::::1

     Allows clients from machines which IP address matches
     "135.11.35.*" to connect to the server.  If the host name is
     known, is it used as address for these clients.

`NEW!!!'
     As of the 2.7.2d version of the server, the server is able to
     accept connections on multiple ports. I-lines are required for
     each P-line to allow connections to be accepted. For unix sockets,
     this means either adding I:/path/port::/path/port or some variation
     (wildcards are recognised here). For internet ports, there must be
     an I-line which allows the host access as normal, but the port
     field of the I-line must match that of the port of the socket
     accepting the connectiion. A port number of 0 is a wildcard
     (matches all ports).

`NEW!!!'
     As of the 2.9.1 version of the server, i lines are introduced.
     They work the same way as I lines, but the clients matching an i
     line will have a restricted connection. (no nick/mode change, no
     kick). Such users will have their username prefixed by +, = or -
     depending on the ident reply.


File: INSTALL.info,  Node: Operator priviliges,  Next: Restrict connections,  Prev: Client connections,  Up: The ircd-conf file

Operator priviliges
===================

   How to become the IRC administrator on your site
`Introduction'
     To become an IRC Administrator, IRC must know who is authorized to
     become an operator and what their "Nickname" and "Password" is.

`Format'
     O:<TARGET Host NAME>:<Password>:<Nickname>:<Port>:<Class>

`O'
     Speficies Operator record. If you use capital letter ("O") in it,
     it specifies a global operator. Small letter ("o") specifies a
     local operator. Local operator has basically the same rights
     except global operator with some restrictions.

`TARGET Host NAME'
     Tells IRC which host you have the privileges FROM.  This means
     that you should be logged into this host when you ask for the
     priviliges.  If you specify "tolsun.oulu.fi" then IRC will expect
     your CLIENT to be connected at "tolsun.oulu.fi" - when you ask for
     OPERATOR privileges from "tolsun.oulu.fi".  You cannot be logged in
     at any other host and be able to use your OPERATOR privileges at
     tolsun, only when you are connected at TOLSUN will this work -
     this is a safeguard against unauthorized sites.

`Password'
     If your AUTHORIZATION Password - this is the password that let's
     IRC know you are who you say you are!  Never tell anyone your
     password and always keep the "ircd.conf" file protected from all
     of the other users.

`Nickname'
     The Nickname you usually go by - but you can make this what you
     want.

`Port'
     Unused.

`Class'
     The class field should refer to an existing class (preferably
     having a lower number than that for the relevant I-line) and
     determines the maximum number of simultaneous uses of the O-line
     allowable through the max. links field in the Y-line.

`Example'
     O:orion.cair.du.edu:pyunxc:Jeff::1

     There is an OPERATOR at "orion.cair.du.edu" that can get Operator
     priviliges if he specifies a password of "pyunxc" and uses a
     NICKNAME of "Jeff".


File: INSTALL.info,  Node: Restrict connections,  Next: Excluded accounts,  Prev: Operator priviliges,  Up: The ircd-conf file

Restrict connections
====================

   Let an external program decide if a client should be allowed or not.
`Introduction'
     R lines provide a convenient way to handle user access to the
     server with an external program.  The outside program given three
     parameters: the client's username (set by the USER command), the
     client's hostname, and the client's ident reply ("unknown" if
     none).

     It is expected to return a reply line where the first word is
     either "Y" or "N" meaning `Yes Let them in" or "No don't let them
     in".  If the first word begins with neither "Y" or "N" the default
     is to let the person on.

`Format'
     R:<Target Host Name>:<Program>:<User>:::

`R'
     This specifies a restrict record.

`Target Host Name'
     In this field you specify the Hostname that the user is connecting
     from.  If you wanted to restrict connects to IRC from
     "orion.cair.du.edu" then you would want to enter
     "orion.cair.du.edu".

`Program'
     This is the external program to run to know if the user is allowed
     on your server.

`User'
     The Username of the user you want removed from IRC.  For example
     "root".


File: INSTALL.info,  Node: Excluded accounts,  Next: Server connections,  Prev: Restrict connections,  Up: The ircd-conf file

Excluded accounts
=================

   Remove an errant user from IRC on your site.
`Introduction'
     Obviously it is hoped that you wouldn't have to use this command.
     Unfortunately sometimes a user can become unmanageable and this is
     your only recourse - the KILL USER command.  THIS COMMAND ONLY
     AFFECTS YOUR SERVER - If this user can connect to another SERVER
     somewhere else in the IRC-Network then you would have to talk to
     the administrator on that site to disable his access from that
     IRCD Server as well.

`Format'
     K:<Host Name>:<time interval(s)|comment>:<User>:<port>:

`Format'
     k:<Host Name>:<time interval(s)|comment>:<Auth>:<port>:

`K'
     "K" tells the IRCD that you are making a KILL USER command entry.

`Host Name'
     In this field you specify the Hostname or the IP address (Single
     IP, Wildcard notation or bitmask notation) that the user is
     connecting from.  If you wanted to REMOVE connects to IRC from
     "orion.cair.du.edu" then you would want to enter
     "orion.cair.du.edu".  If you want to REMOVE ALL HOSTS access you
     can use "*" (Wild Card notation) and no matter what host the
     USERNAME (specified in Field 4) connects from s/he will be denied
     access. Removing all hosts isn't very smart thing to do though,
     why would you run an ircd if you allow nobody to connect to it
     anyways ?

     If you specify an IP address, IP mask, or an IP bitmask, it will
     match clients connecting from the matching addresses, no matter if
     they resolve or not.

     You can prefix an IP address, an IP mask, or IP bitmask by "=" in
     which case only non resolving matching hosts will be banned.

`time interval(s)|comment'
     Either leave this field empty or put a comment, then the line
     active continuously for the specified user/host machine.  You may
     also specify intervals during the line should be active, see
     examples below.

`User'
     The USERNAME of the user you want removed from IRC.  For example
     "root".

`Auth'
     If the user's ident server replies with the OTHER type (as opposed
     to the UNIX type), the reply is not used to set the user's
     username.  (lowercase) k lines can be used in these case to reject
     users based on their ident reply.

     This field will be matched against the ident server reply.  It is
     important to note that OTHER replies are prefixed with a "-" by
     the ircd, while UNIX replies are not.

`Port'
     The port on which the Kill line will be effective. 0 means all
     ports.

`Examples'
     K:orion.cair.du.edu::jtrim:0:

     If user "jtrim" connects to IRC from host "orion.cair.du.edu" then
     IMMEDIATELY REMOVE HIM from my IRCD.

     k:*.stealth.net::-43589:0:

     If a user connects from any host that has the suffix "stealth.net"
     and if that host ident server returns "-43589" - then IMMEDIATELY
     REMOVE THEM from my IRCD.

     K:*.cair.du.edu::root:0:

     If user "root" connects to IRC from any host that has the suffix
     "cair.du.edu" - then IMMEDIATELY REMOVE THEM from my IRCD.

     K:*::vijay:0:

     This line reads "I don't care WHAT HOST user "vijay" is on, I will
     NEVER allow username "vijay" to login to my IRCD."

     K:*.oulu.fi:0800-1200,1400-1900:*:0:

     This disallows all users from hosts with enddomain "oulu.fi"
     access to your server between 8 and 12am, 2 and 7pm. Users get
     kicked off if they're already signed on when the line becomes
     active (they'll get a warning 5 minutes before).

     K:192.11.35.*::*:0:

     This line disallows all hosts whose IP address matches
     "192.11.35.*" to login to the ircd.

     K:=192.11.35.*::*:0:

     This line disallows all hosts whose IP address matches
     "192.11.35.*" and which didn't resolve to login to the ircd.


File: INSTALL.info,  Node: Server connections,  Next: Deny auto-connections,  Prev: Excluded accounts,  Up: The ircd-conf file

Server connections
==================

   How to connect to other servers, How other servers can connect to you

   `WARNING:' The hostnames used as examples are really only examples
and not meant to be used (simply because they don't work) in real life.

   Now you must decide WHICH hosts you want to connect to and WHAT
ORDER you want to connect to them in.  For my example let us assume I
am on the machine "rieska.oulu.fi" and I want to connect to irc daemons
on 3 other machines:
   * "garfield.mit.edu"        - Tertiary Connection

   * "irc.nada.kth.se"         - Secondary Connection

   * "nic.funet.fi"            - Primary Connection

   And I prefer to connect to them in that order, meaning I first want
to try connecting to "nic.funet.fi", then to "irc.nada.kth.edu", and
finally to "garfield.mit.edu".  So if "nic.funet.fi" is down or
unreachable, the program will try to connect to "irc.nada.kth.se". If
irc.nada.kth.se is down it will try to connect to garfield and so forth.

   PLEASE limit the number of hosts you will attempt to connect to down
to 3. This is because of two main reasons:
  1.  to save your server from causing extra load and delays to users

  2.  to save internet from extra network traffic (remember the old
     rwho program with traffic problems when the number of machines
     increased).

`Format'
     C:<TARGET Host Addr>:<Password>:<TARGET Host NAME>:<TARGET
     PORT>:<Class>

     for example:

     C:nic.funet.fi:passwd:nic.funet.fi:6667:1

     - or -

     C:128.214.6.100:passwd:nic.funet.fi:6667:1

     - or -

     C:root@nic.funet.fi:passwd:nic.funet.fi:6667:1

     Each field is separated with a ":" charcter:

`C'
     This field tells the IRC program which option is being configured.
     "C" corresponds to a server Connect option.

`TARGET Host Addr'
     Specifies the host name or IP address of the machine to connect
     to.  If "user@" prefixes the actual hostname or IP address the
     server will require that the remote username returned by the ident
     server be the same as the one given before the "@".

`Password'
     The password of the other host.  A password must always be present
     for the line to be recognized.

`TARGET Host NAME'
     The full hostname of the target machine. This is the name that the
     TARGET server will identify itself with when you connect to it.
     If you were connecting to nic.funet.fi you would receive
     "nic.funet.fi" and that is what you should place in this field.

`TARGET PORT'
     The INTERNET Port that you want to connect to on the TARGET
     machine. Most of the time this will be set to "6667".  If this
     field is left blank, then no connections will be attempted to the
     TARGET host, and your host will accept connections FROM the TARGET
     host instead.  The port field can contain 2 ports, separated by a
     . In this case, the first port is used when auto-connecting, the
     second port is used for the UDP pings to the targer server.

`Class'
     The class field should refer to an existing class and determines
     the maximum number of simultaneous uses of the C-line allowable
     through the max. links field in the Y-line.

`NEW!!!'
     As of the 2.9.3 version of the server, server connections can be
     compressed with the zlib library.  To define a compressed
     connection, you must have compiled the server with ZIP_LINKS
     defined (cf 2.h), and use a _lowercase_ C line.

   Some examples:
   * C:nic.funet.fi::nic.funet.fi:6667:1 This reads: Connect to host
     "nic.funet.fi", with no password and expect this server to
     identify itself to you as "nic.funet.fi". Your machine will
     connect to this host to port 6667.

   * C:18.72.0.252:Jeff:garfield.mit.edu:6667:1 This reads: Connect to
     a host at address "18.72.0.252", using a password of "Jeff".  The
     TARGET server should identify itself as "garfield.mit.edu".  You
     will connect to Internet Port 6667 on this host.

   * C:irc.nada.kth.se::irc.nada.kth.se:1 This reads: do not attempt to
     connect to "irc.nada.kth.se", if "irc.nada.kth.se" requests a
     connection, allow it to connect.

   Now back to our original problem, we wanted OUR server CONNECT to 3
hosts,  "nic.funet.fi", "irc.nada.kth.se" and "garfield.mit.edu" in
that order.  So as we enter these entries into the file they must be
done in `reverse' order of how we could want to connect to them.

   Here's how it would look if we connected "nic.funet.fi" first:

   C:garfield.mit.edu::garfield.mit.edu:6667:1
C:irc.nada.kth.se::irc.nada.kth.se:6667:1
C:nic.funet.fi::nic.funet.fi:6667:1

   Ircd will attempt to connect to nic.funet.fi first, then to irc.nada
and finally to garfield.

   `Reciprocal entries:' Each "C" entry requires a corresponding "N"
entry that specifies connection priviliges to other hosts.  The "N"
entry contains the password, if any, that you require other hosts to
have before they can connect to you.  These entries are of the same
format as the "C" entries.

`Format'
     The format for the NOCONNECT entry in the "ircd.conf" is:
     N:<TARGET Host Addr>:<Password>:<TARGET Host NAME>:<Domain
     Mask>:<Class>

     Let us assume that "garfield.mit.edu" connects to your server and
     you want to place password authorization authorization on
     garfield. The "N" entry would be:

     N:garfield.mit.edu:golden:garfield.mit.edu::

     This line says: expect a connection from host "garfield.mit.edu",
     and expect a login password of "golden", and expect the host to
     identify itself as "garfield.mit.edu".

     N:18.72.0.252::garfield.mit.edu::

     This line says: expect a Connection from host "18.72.0.252", and
     don't expect login password.  The connecting host should identify
     itself as "garfield.mit.edu".

`N'
     "N" corresponds to a server Noconnect option.

`TARGET Host Addr'
     Specifies the host name or IP address of the machine to connect
     to.  If "user@" prefixes the actual hostname or IP address the
     server will require that the remote username returned by the ident
     server be the same as the one given before the "@".

`Password'
     The password of the other host.  A password must always be present
     for the line to be recognized. If CRYPT_LINK_PASSWORD is defined
     in config.h, this password must be crypted.

`TARGET Host NAME'
     The full hostname of the target machine. This is the name that the
     TARGET server will identify itself with when you connect to it.
     If you were connecting to nic.funet.fi you would receive
     "nic.funet.fi" and that is what you should place in this field.

`Domain Mask'
     Domain masking, see below.

`Class'
     The class field should refer to an existing class.

`Wildcards domains'
     To reduce the great amount of servers in IRCnet wildcard DOMAINS
     were introduced in 2.6. To explain the usage of wildcard domains
     we take an example of such:

     *.de  - a domain name matching all machines in Germany.

     Wildcard domains are useful in that ALL SERVERS in Germany (or any
     other domain area) can be shown as one to the rest of the world.
     Imagine 100 servers in Germany, it would be incredible waste of
     netwotk bandwidth to broadcast all of them to all servers around
     the world.

     So wildcard domains are a great help, but how to use them ?

     They can be defined in the N-line for a given connection, in place
     of "Domain Mask" you write a magic number called wildcard count.

     Wildcard count tells you HOW MANY PARTS of your server's name
     should be replaced by a wildcard. For example, your server's name
     is "tolsun.oulu.fi" and you want to represent it as "*.oulu.fi" to
     "nic.funet.fi". In this case the wildcard count is 1, because only
     one word (tolsun) is replaced by a wildcard.

     If the wildcard count would be 2, then the wildcard domain would
     be "*.fi". Note that with wildcard name "*.fi" you could NOT
     connect to "nic.funet.fi" because that would result in a server
     name `collision' (*.fi matches nic.funet.fi).

     I advice you to not to use wildcard servers before you know for
     sure how they are used, they are mostly beneficial for backbones
     of countries and other large areas with common domain.


File: INSTALL.info,  Node: Deny auto-connections,  Next: Hub connections,  Prev: Server connections,  Up: The ircd-conf file

Deny auto-connections
=====================

`Introduction'
     D lines were implemented to give server administrators more
     control on how auto connections are done.  This will most likely
     only be useful for big networks which have complex configurations.

`Format'
     D:<Denied Server Mask>:Denied Class:<Server Name>:Server Class:

`Denied Server Mask'
     This field is matched against all servers currently present on the
     network.

`Denied Class'
     If this field contains a class number, it will match if any server
     in that class is currently present on the network.  Note that this
     can be true for any server, even the ones not directly connected.

`Server Mask'
     This field is matched against the server name that the server
     wants to auto connect to.

`Server Class'
     This field is used to match against the class to which belong the
     servers for which an autoconnect is set.

`Examples'
     D:*.edu::*.fi::

     Don't auto-connect to any "*.fi" server if any server present on
     the network matches "*.edu".

     D::2:eff.org:3:

     Do now auto-connect to "eff.org", or any server in class "3" if a
     server defined to be in class "2" is currently present on the
     network.


File: INSTALL.info,  Node: Hub connections,  Next: Leaf connections,  Prev: Deny auto-connections,  Up: The ircd-conf file

Hub connections
===============

`Introduction'
     In direct contrast to L-lines, the server also implements H-lines
     to determine which servers may act as a hub and what they may "hub
     for".  If a server is only going to supply its own name (ie act as
     a solitary leaf) then no H-line is required for, else a H-line
     must be added.

`Format'
     H:<Server Mask>:*:<Server Name>::

`Server Mask'
     All servers that are allowed via this H-line must match the mask
     given in this field.

`Server Name'
     This field is used to match exactly against a server name,
     wildcards being treated as literal characters.

`Examples'
     H:*.edu::*.bu.edu::

     Allows a server named "*.bu.edu" to introduce only servers that
     match the "*.edu" name mask.

     H:*::eff.org::

     Allows "eff.org" to introduce (and act as a hub for) any server.

`Note'
     It is possible to have and use multiple H-lines (or L-lines) for
     the one server.  eg:

     H:*.edu:*:*.bu.edu:: H:*.au:*:*.bu.edu::

     is allowed as is

     L:*.edu:*:*.au:: L:*.com:*:*.au::


File: INSTALL.info,  Node: Leaf connections,  Next: Version limitations,  Prev: Hub connections,  Up: The ircd-conf file

Leaf connections
================

`Introduction'
     To stop servers which should only act as leaves from hubs becoming
     hubs accidently, the L line was introduced so that hubs can be
     aware of which servers should and shouldnt be treated as leaves. A
     leaf server is supposed to remain a node for the entirity of its
     life whilst connected to the IRC server network.  It is quite easy,
     however for a leaf server to be incorrectly setup and create
     problems by becoming a node of 2 or more servers, ending its life
     as a leaf. The L line enables the administrator of an IRC "Hub
     server" to "stop" a server which is meant to act as a leaf trying
     to make itself a hub.  If, for example, the leaf server connects
     to another server which doesnt have an L-line for it, the one
     which does will drop the connection, once again making the server
     a leaf.

`Format'
     L:<Server Mask>:*:<Server Name>:<Max Depth>:

`Server Mask'
     Mask of which servers the leaf-like attributes are used on when
     the server receives SERVER messages.  The wildcards * and ? may be
     used within this field for matching purposes.  If this field is
     empty, it acts the same as if it were a single * (ie matches
     everything).

`Server Name'
     The name of the server connected to you that for which you want to
     enforce leaf-like attributes upon.

`Max Depth'
     Maximum depth allowed on that leaf and if not specified, a value
     of 1 is assumed.  The depth is checked each time a SERVER message
     is received by the server, the hops to the server being the field
     checked against this max depth and if greater, the connection to
     the server that made its leaf too deep has its connection dropped.
     For the L-line to come into effect, both fields, 2 and 4, must
     match up with the new server being introduced and the server which
     is responsible for introducing this new server.


File: INSTALL.info,  Node: Version limitations,  Next: Excluded machines,  Prev: Leaf connections,  Up: The ircd-conf file

Version limitations
===================

`Introduction'
     V-lines are used to restrict server connecting to you based on
     their version and on compile time options.

`Format'
     V:<Version Mask>:<Flags>:<Server Mask>::

`Version Mask'
     The matching version number strings will be rejected.

`Flags'
     If any flag specified in this field is found in the peer's flags
     string, it will be rejected.

`Server Mask'
     This field is used to match server names.  The V line will be used
     for servers matching the mask given in this field.

`Server Type'
     Both the `Version Mask' and the `Flags' should be prefixed with
     the server type identification.  This implementation uses the id
     "`IRC"' (starting with version 2.10).

`Examples'
     V:IRC/021001*::*::

     Disallows any "IRC" server which version is 2.10.1* to connect.

     V:IRC/021001*:IRC/D:*::

     Disallows any "IRC" server which version is 2.10.1* or which has
     been compiled with DEBUGMODE defined to connect.

     V:*/0209*::::

     Disallows any server using the 2.9 protocol to connect.

`Note'
     It is possible to have and use multiple V-lines for the one server
     mask.

     V:IRC/021001*::*::

     V:IRC/021002*::*::

     is allowed.

`Protocol Version'
     Only the 4 first digit of the `Version Number' are standard: they
     define the protocol version.  The remaining of the string is
     implementation dependant; matches on this part should be used with
     particular identification.

`Flags'
     are not standard.  Therefore, this field `should always' contain a
     specific identification.


File: INSTALL.info,  Node: Excluded machines,  Next: Service connections,  Prev: Version limitations,  Up: The ircd-conf file

Excluded machines
=================

   Disallowing SERVERS in your irc net.
`Introduction'
     In some cases people run into difficulties in net administration.
     For one reason or another you do not want a certain server to be
     in your net (for example because of the security holes it opens for
     every server if it's not secured carefully). In that case you
     should use Q-lines in your server. When you specify a server name
     in Q-line, everytime some server link tries to introduce you a
     server (remember, all server names are broadcast around the net),
     that name is checked if it matches the Q-lines in your server. If
     it matches, then `your server' disconnects the link. Note that just
     placing Q-lines to your server probably results in `your server'
     being left alone, unless other servers have agreed to have the
     same Q-line in their ircd configuration files as well.

`Example'
     Q::of the security holes:foo.bar.baz::

     This command excludes a server named "foo.bar.baz", the reason is
     given to be security holes (you should give a reason, it is
     polite). The first field is unused, so leave it empty.


File: INSTALL.info,  Node: Service connections,  Next: Bounce server,  Prev: Excluded machines,  Up: The ircd-conf file

Service connections
===================

`Introduction'
     The Service is a special kind of IRC client. It does not have the
     full abilities of a normal user but can behave in a more active
     manner than a normal client.

     Services are not intended for interactive usage, and are better
     suited for automated clients.

`Format'
     S:<TARGET Host Mask>:<Password>:<Service Name>:<Service
     Type>:<Class>

`TARGET Host Mask'
     The host mask should be set to match the host(s) from which the
     service will be connecting from. This may be either an IP# or full
     name (prefered).

`Password'
     This is the password which must be passed in the SERVICE command.

`Service Name'
     The name used by the service. Services don't have nicknames, but a
     static name defined by the S line.

`Service Type'
     The type of service. It defines the priviledges given to the
     service. Be very careful in the types you allow.  The types can be
     found in include/service.h

`Class'
     The class field should refer to an existing class.

`Notes'
     A service is not a very useful sort of client, it cannot join
     channels or issue certain commands although most are available to
     it. Services are rejected upon sending an unknown or unallowed
     command. Services however, are not affected by flood control and
     can be granted special privileges. It is therefore `wise to
     oversee the use of S-lines with much care.'


File: INSTALL.info,  Node: Bounce server,  Next: Default local server (for local clients) `*OBSOLETED*',  Prev: Service connections,  Up: The ircd-conf file

Bounce server
=============

`Introduction'
     This provides you a way to bounce clients to another server.  This
     information is provided to clients which are denied connection,
     either because their connection class is full, or the server is
     full, or they are not authorized to connect.

`Format'
     B:<Class|Host Mask>::<Server Name>:<Port>:

`B'
     This specifies a Bounce record.

`Class|Host Mask'
     This field specifies to which client this configuration line
     applies to.  It can be either a connection class number, a host
     mask to be matched against the client's hostname, or an IP
     address/mask/bitmask to be matched against the client's IP address.

     When the server is completely full, it rejects clients with the
     "All connections in use" message.  In this case, the server
     doesn't process the connections at all, and has no knowledge of
     the client's host name, or class number.  For these cases, this
     field must be empty.

`Server Name'
     This specifies the IRC server hostname that the client should use.

`Port'
     This specifies the IRC server port that the client should connect
     to.

`Example'
     B:2::irc.stealth.net:6660:

     Rejected clients in class 2 are advised to use "irc.stealth.net"
     on port 6660.

     B:*.fi::irc.funet.fi:6667:

     Finnish client should use irc.funet.fi when they cannot be taken
     anymore.

     B:::irc2.stealth.net:6667:

     When the server is completely full, clients should use the
     secondary server.


File: INSTALL.info,  Node: Default local server (for local clients) `*OBSOLETED*',  Prev: Bounce server,  Up: The ircd-conf file

Default local server (for local clients) `*OBSOLETED*'
======================================================

`Introduction'
     This defines the default connection for the irc client.  If you
     are running an ircd server on the same machine, you will want to
     define this command to connect to your own host.  If your site is
     not running a server then this command should contain the TARGET
     host's connection information and password (if any).

`Format'
     U:<TARGET Host addr>:<Password>:<TARGET Host NAME>:<Internet Port>

`Examples'
     U:tolsun.oulu.fi::tolsun.oulu.fi:6667

     U:128.214.5.6::tolsun.oulu.fi:6667

     U:tolsun.oulu.fi::tolsun.oulu.fi

     If the port number is omitted, irc will default to using 6667.


File: INSTALL.info,  Node: Related resources,  Next: Reporting a bug,  Prev: The ircd-conf file,  Up: Top

Related resources
*****************

`Mailing list'
     A list is dedicated to the people using ircd. If you have trouble
     running ircd, or wish to discuss the future, you can subscribe by
     sending an email to , with "`subscribe ircd-users"' in the body.

     If you just have a question and don't want to subscribe to the
     list, mail to .  Be sure to indicate which version you are using.

`Development'
     Technical discussions and development are carried on
     ircd-dev@irc.org.  People interested in very early testing, and/or
     working on the source code are welcome.  This is done by sending
     an email to , with "`subscribe ircd-dev"' in the body.

`FAQ'
     It can be found on the WWW, at .

`WWW 2.9'
     Vesa Ruokonen has also put serveral pages related to the 2.9
     servers on the WWW: .


File: INSTALL.info,  Node: Reporting a bug,  Prev: Related resources,  Up: Top

Reporting a bug
***************

   If you encounter a bug in the software, here is how and where to
report it.

* Menu:

* How to report a bug::
* Where to send a bug report::


File: INSTALL.info,  Node: How to report a bug,  Next: Where to send a bug report,  Up: Reporting a bug

How to report a bug
===================

   To save everyone time, make sure that your e-mail contains all the
information related to your problem.  In particular, we need to know:
`Package version'
     The IRC software version you are using: please include the output
     obtained by running "irc -v" for the client, and/or "ircd -v" for
     the server.

     Also, let us know if you have applied any patch to the package or
     if it is the vanilla version.

`OS'
     Please, indicate which OS version you are running.

`Configuration'
     If it is related to a configuration problem with the server,
     include the relevant parts of the configuration file.

`Backtrace'
     If the bug results in a crash, please include the backtrace.
     (This can be done, for example, by running "gdb" on the core file,
     and typing "where").

`Fix'
     If you have a fix, don't forget to include it.


File: INSTALL.info,  Node: Where to send a bug report,  Prev: How to report a bug,  Up: Reporting a bug

Where to send a bug report
==========================

   Reports should be sent to .  Your report will be reviewed and
forwarded to the appropriate mailing list.



Tag Table:
Node: Top122
Node: Installing IRC-630
Node: The configure script855
Node: Notes for Cygwin32 users3143
Node: Notes concerning IPv6 support4196
Node: The config-h file4794
Node: Define what type of UNIX your machine uses-5466
Node: DEBUGMODE5866
Node: CPATH MPATH LPATH PPATH TPATH QPATH OPATH6530
Node: CACHED_MOTD7758
Node: CHROOTDIR8234
Node: ENABLE_SUMMON ENABLE_USERS8558
Node: SHOW_INVISIBLE_LUSERS NO_DEFAULT_INVISIBLE9094
Node: OPER_KILL OPER_REHASH OPER_RESTART LOCAL_KILL_ONLY9777
Node: ZIP_LINKS ZIP_LEVEL10409
Node: SLOW_ACCEPT11420
Node: CLONE_CHECK12038
Node: Other #define's12378
Node: Editing the Makefile and compiling12703
Node: The ircd-conf file13343
Node: Machine information15375
Node: Administrative info17471
Node: Port connections19506
Node: Connection Classes21716
Node: Client connections27167
Node: Operator priviliges32680
Node: Restrict connections34800
Node: Excluded accounts36115
Node: Server connections40081
Node: Deny auto-connections48520
Node: Hub connections49893
Node: Leaf connections51109
Node: Version limitations53192
Node: Excluded machines54949
Node: Service connections56256
Node: Bounce server57849
Node: Default local server (for local clients) `*OBSOLETED*'59551
Node: Related resources60434
Node: Reporting a bug61372
Node: How to report a bug61632
Node: Where to send a bug report62645

End Tag Table