ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/doc/reference.conf
Revision: 1552
Committed: Sun Oct 7 10:08:16 2012 UTC (12 years, 10 months ago) by michael
Original Path: ircd-hybrid-8/doc/example.conf
File size: 33791 byte(s)
Log Message:
- example.conf: add some words about the service{} block

File Contents

# User Rev Content
1 michael 1336 /* doc/example.conf - ircd-hybrid-8 Example configuration file
2 michael 1334 * Copyright (C) 2000-2012 Hybrid Development Team
3 db 897 *
4     * Written by ejb, wcampbel, db, leeh and others
5     * Other example configurations can be found in the source dir under
6 michael 1524 * doc/.
7 db 897 *
8     * $Id$
9     */
10    
11     /* IMPORTANT NOTES:
12     *
13     * auth {} blocks MUST be specified in order of precedence. The first one
14     * that matches a user will be used. So place spoofs first, then specials,
15     * then general access.
16     *
17     * Shell style (#), C++ style (//) and C style comments are supported.
18     *
19     * Files may be included by either:
20     * .include "filename"
21     * .include <filename>
22     *
23     * Times/durations are written as:
24     * 12 hours 30 minutes 1 second
25     *
26     * Valid units of time:
27     * month, week, day, hour, minute, second
28     *
29     * Valid units of size:
30     * megabyte/mbyte/mb, kilobyte/kbyte/kb, byte
31     *
32     * Sizes and times may be singular or plural.
33     */
34    
35     /* EFNET NOTE:
36     *
37     * This config file is NOT suitable for EFNet. EFNet admins should use
38     * example.efnet.conf
39     */
40    
41     /*
42 michael 1336 * serverinfo {}: contains information about the server
43 db 897 */
44     serverinfo {
45     /*
46 michael 1070 * name: the name of this server. This cannot be changed at runtime.
47 db 897 */
48     name = "hades.arpa";
49    
50     /*
51     * sid: a server's unique ID. This is three characters long and must
52     * be in the form [0-9][A-Z0-9][A-Z0-9]. The first character must be
53     * a digit, followed by 2 alpha-numerical letters.
54     * NOTE: The letters must be capitalized. This cannot be changed at runtime.
55     */
56     sid = "_CHANGE_ME_";
57    
58     /*
59 michael 1533 * description: the description of the server.
60 db 897 */
61 michael 1534 description = "ircd-hybrid test server";
62 db 897
63     /*
64     * network info: the name and description of the network this server
65     * is on. Shown in the 005 reply and used with serverhiding.
66     */
67     network_name = "MyNet";
68     network_desc = "This is My Network";
69    
70     /*
71     * hub: allow this server to act as a hub and have multiple servers
72     * connected to it.
73     */
74     hub = no;
75    
76     /*
77     * vhost: the IP to bind to when we connect outward to ipv4 servers.
78 michael 959 * This should be an ipv4 IP only, or "*" for INADDR_ANY.
79 db 897 */
80     #vhost = "192.169.0.1";
81    
82     /*
83     * vhost6: the IP to bind to when we connect outward to ipv6 servers.
84 michael 959 * This should be an ipv6 IP only, or "*" for INADDR_ANY.
85 db 897 */
86     #vhost6 = "3ffe:80e8:546::2";
87    
88     /* max_clients: the maximum number of clients allowed to connect */
89     max_clients = 512;
90    
91     /*
92 michael 951 * rsa_private_key_file: the path to the file containing our
93     * rsa key for cryptlink.
94 db 897 *
95     * Example command to store a 2048 bit RSA keypair in
96     * rsa.key, and the public key in rsa.pub:
97     *
98 michael 1229 * openssl genrsa -out rsa.key 2048
99 db 897 * openssl rsa -in rsa.key -pubout -out rsa.pub
100     * chown <ircd-user>.<ircd.group> rsa.key rsa.pub
101     * chmod 0600 rsa.key
102     * chmod 0644 rsa.pub
103     */
104     #rsa_private_key_file = "/usr/local/ircd/etc/rsa.key";
105    
106     /*
107 michael 951 * ssl_certificate_file: the path to the file containing our
108 michael 1070 * ssl certificate for encrypted client connection.
109 db 897 *
110     * This assumes your private RSA key is stored in rsa.key. You
111     * MUST have an RSA key in order to generate the certificate
112     *
113     * openssl req -new -days 365 -x509 -key rsa.key -out cert.pem
114     *
115     * See http://www.openssl.org/docs/HOWTO/certificates.txt
116     *
117     * Please use the following values when generating the cert
118     *
119     * Organization Name: Network Name
120     * Organization Unit Name: changme.someirc.net
121     * Common Name: irc.someirc.net
122     * E-mail: you@domain.com
123     */
124     #ssl_certificate_file = "/usr/local/ircd/etc/cert.pem";
125 michael 967
126 michael 1351 /*
127     * ssl_dh_param_file:
128     *
129     * Path to the PEM encoded Diffie-Hellman parameter file.
130     * DH parameters are strictly required when using ciphers
131     * with EDH (ephemeral Diffie-Hellman) key exchange.
132     *
133     * A DH parameter file can be created by running:
134     *
135     * openssl dhparam -out dhparam.pem 1024
136     *
137 michael 1523 * Prime size must be at least 1024 bits. Further information
138     * regarding specific OpenSSL dhparam command-line options
139     * can be found in the OpenSSL manual.
140 michael 1351 */
141 michael 1306 #ssl_dh_param_file = "/usr/local/ircd/etc/dhparam.pem";
142    
143 michael 967 /*
144 michael 1306 * ssl_cipher_list:
145     *
146 michael 1524 * List of ciphers that are supported by _this_ server. Can be used to
147     * enforce specific ciphers for incoming SSL/TLS connections.
148     * If a client (which also includes incoming server connections) isn't
149     * capable of any cipher listed below, the connection will simply be
150     * rejected.
151 michael 1550 *
152 michael 1306 * A list of supported ciphers can be obtained by running:
153     *
154     * openssl ciphers -ssl3 -tls1 -v
155     *
156 michael 1524 * Multiple ciphers are separated by colons. The order of preference is
157     * from left to right.
158 michael 1306 */
159     #ssl_cipher_list = "DHE-RSA-AES256-SHA:AES256-SHA";
160    
161     /*
162 michael 1351 * ssl_server_method:
163     * ssl_client_method:
164     *
165 michael 1412 * SSL/TLS methods we provide for incoming (server method) and
166     * outgoing (client method) SSL/TLS connections.
167 michael 967 * This can be either sslv3 for SSLv3, and/or tlsv1 for TLSv1.
168     */
169 michael 1316 #ssl_server_method = tlsv1, sslv3;
170     #ssl_client_method = tlsv1;
171 db 897 };
172    
173     /*
174 michael 1229 * admin {}: contains admin information about the server
175 db 897 */
176     admin {
177     name = "Smurf target";
178     description = "Main Server Administrator";
179     email = "<syn@packets.r.us>";
180     };
181    
182     /*
183 michael 1229 * class {}: contains information about classes for users
184 db 897 */
185     class {
186 michael 1522 /* name: the name of the class */
187 db 897 name = "users";
188    
189     /*
190     * ping_time: how often a client must reply to a PING from the
191     * server before they are dropped.
192     */
193     ping_time = 90 seconds;
194    
195     /*
196     * number_per_ip: how many local users are allowed to connect
197     * from one IP (optional)
198     */
199     number_per_ip = 2;
200    
201     /*
202     * max_local: how many local users are allowed to connect
203     * from one ident@host (optional)
204     */
205     max_local = 2;
206    
207     /*
208     * max_global: network-wide limit of users per ident@host (optional)
209     */
210     max_global = 10;
211    
212     /*
213     * max_number: the maximum number of users allowed in this class (optional)
214     */
215     max_number = 100;
216    
217     /*
218     * the following lines are optional and allow you to define
219     * how many users can connect from one /NN subnet
220     */
221     cidr_bitlen_ipv4 = 24;
222     cidr_bitlen_ipv6 = 120;
223     number_per_cidr = 16;
224    
225     /*
226 michael 1541 * sendq: the amount of data allowed in a clients send queue before
227 db 897 * they are dropped.
228     */
229     sendq = 100 kbytes;
230 michael 1516
231     /*
232 michael 1541 * recvq: maximum amount of data in a clients receive queue before
233     * they are dropped for flooding. Defaults to 2560 if the chosen
234 michael 1516 * value isn't within the range of 512 to 8000.
235     */
236     recvq = 2560 bytes;
237 db 897 };
238    
239     class {
240     name = "opers";
241     ping_time = 90 seconds;
242     number_per_ip = 10;
243     max_number = 100;
244 michael 1428 sendq = 100 kbytes;
245 db 897 };
246    
247     class {
248     name = "server";
249     ping_time = 90 seconds;
250    
251     /*
252     * ping_warning: how fast a server must reply to a PING before
253     * a warning to opers is generated.
254     */
255     ping_warning = 15 seconds;
256    
257     /*
258     * connectfreq: only used in server classes. Specifies the delay
259     * between autoconnecting to servers.
260     */
261     connectfreq = 5 minutes;
262    
263     /* max number: the amount of servers to autoconnect to */
264     max_number = 1;
265    
266     /* sendq: servers need a higher sendq as they send more data */
267     sendq = 2 megabytes;
268     };
269    
270     /*
271 michael 1229 * listen {}: contains information about the ports ircd listens on
272 db 897 */
273     listen {
274     /*
275     * port: the specific port to listen on. If no host is specified
276     * before, it will listen on all available IPs.
277     *
278     * Ports are separated via a comma, a range may be specified using ".."
279     */
280    
281     /* port: listen on all available IPs, ports 6665 to 6669 */
282     port = 6665 .. 6669;
283    
284     /*
285     * Listen on 192.168.0.1/6697 with ssl enabled and hidden from STATS P
286     * unless you are an administrator.
287     *
288     * NOTE: The "flags" directive has to come before "port". Always!
289 michael 951 *
290     * Currently available flags are:
291     *
292     * ssl - Port is for SSL client connections only
293     * server - Only server connections are permitted
294 michael 1229 * hidden - Port is hidden from /stats P, unless you're an admin
295 db 897 */
296     flags = hidden, ssl;
297     host = "192.168.0.1";
298     port = 6697;
299    
300     /*
301     * host: set a specific IP/host the ports after the line will listen
302     * on. This may be ipv4 or ipv6.
303     */
304     host = "1.2.3.4";
305     port = 7000, 7001;
306    
307     host = "3ffe:1234:a:b:c::d";
308     port = 7002;
309     };
310    
311     /*
312 michael 1229 * auth {}: allow users to connect to the ircd
313 db 897 */
314     auth {
315     /*
316 michael 1541 * user: the user@host allowed to connect. Multiple user
317 db 897 * lines are permitted per auth block.
318     */
319     user = "*@172.16.0.0/12";
320     user = "*test@123D:B567:*";
321    
322     /* password: an optional password that is required to use this block */
323     password = "letmein";
324    
325     /*
326     * encrypted: controls whether the auth password above has been
327     * encrypted.
328     */
329     encrypted = yes;
330    
331     /*
332     * spoof: fake the users host to this. This is free-form,
333     * just do everyone a favor and don't abuse it. ('=' prefix on /stats I)
334     */
335     spoof = "I.still.hate.packets";
336    
337     /* class: the class the user is placed in */
338     class = "opers";
339    
340     /*
341 michael 1229 * need_password - don't allow users who haven't supplied the correct
342     * password to connect using another auth{} block
343     * ('&' prefix on /stats I if disabled)
344     * need_ident - require the user to have identd to connect ('+' prefix on /stats I)
345     * spoof_notice - enable spoofing notification to admins
346     * exceed_limit - allow a user to exceed class limits ('>' prefix on /stats I)
347     * kline_exempt - exempt this user from k/glines ('^' prefix on /stats I)
348     * gline_exempt - exempt this user from glines ('_' prefix on /stats I)
349     * resv_exempt - exempt this user from resvs ('$' prefix on /stats I)
350     * no_tilde - remove ~ from a user with no ident ('-' prefix on /stats I)
351     * can_flood - allow this user to exceed flood limits ('|' prefix on /stats I)
352 db 897 */
353     flags = need_password, spoof_notice, exceed_limit, kline_exempt,
354 michael 1176 gline_exempt, resv_exempt, no_tilde, can_flood;
355 db 897 };
356    
357     auth {
358     /*
359     * redirect: the server and port to redirect a user to. A user does
360     * not have to obey the redirection, the ircd just suggests an alternative
361     * server for them.
362     */
363     redirserv = "this.is.not.a.real.server";
364     redirport = 6667;
365    
366     user = "*.server";
367    
368     /* class: a class is required even though it is not used */
369     class = "users";
370     };
371    
372     auth {
373     user = "*@*";
374     class = "users";
375     flags = need_ident;
376     };
377    
378     /*
379 michael 1229 * operator {}: defines ircd operators
380 db 897 *
381     * ircd-hybrid no longer supports local operators, privileges are
382     * controlled via flags.
383     */
384     operator {
385     /* name: the name of the oper */
386 michael 1537 name = "sheep";
387 db 897
388     /*
389 michael 1285 * user: the user@host required for this operator. Multiple
390 michael 1336 * user="" lines are supported.
391 db 897 */
392 michael 1537 user = "*sheep@192.168.0.0/16";
393 michael 1285 user = "*@127.0.0.0/8";
394 db 897
395     /*
396     * password: the password required to oper. By default this will
397 michael 1070 * need to be encrypted by using the provided mkpasswd tool.
398     * Several password hash algorithms are available depending
399     * on your system's crypt() implementation. For example, a modern
400     * glibc already has support for SHA-256/512, and MD5 encryption
401     * algorithms.
402 db 897 */
403 michael 1070 password = "$5$x5zof8qe.Yc7/bPp$5zIg1Le2Lsgd4CvOjaD20pr5PmcfD7ha/9b2.TaUyG4";
404 db 897
405     /*
406     * encrypted: controls whether the oper password above has been
407 michael 1070 * encrypted.
408 db 897 */
409     encrypted = yes;
410    
411     /*
412     * rsa_public_key_file: the public key for this oper when using Challenge.
413     * A password should not be defined when this is used, see
414     * doc/challenge.txt for more information.
415     */
416     # rsa_public_key_file = "/usr/local/ircd/etc/oper.pub";
417    
418     /* class: the class the oper joins when they successfully /oper */
419     class = "opers";
420    
421     /*
422     * umodes: default usermodes opers get when they /oper. If defined,
423     * it will override oper_umodes settings in general {}.
424     * Available usermodes:
425     *
426     * +b - bots - See bot and drone flooding notices
427     * +c - cconn - Client connection/quit notices
428 michael 951 * +C - cconn_full - Client connection/quit notices full
429 db 897 * +D - deaf - Don't receive channel messages
430     * +d - debug - See debugging notices
431 michael 1426 * +f - full - See auth{} block full notices
432 db 897 * +G - softcallerid - Server Side Ignore for users not on your channels
433     * +g - callerid - Server Side Ignore (for privmsgs etc)
434 michael 1294 * +H - hidden - Hides operator status to other users
435 db 897 * +i - invisible - Not shown in NAMES or WHO unless you share a
436     * a channel
437 michael 1290 * +j - rej - See rejected client notices
438 db 897 * +k - skill - See server generated KILL messages
439     * +l - locops - See LOCOPS messages
440     * +n - nchange - See client nick changes
441     * +s - servnotice - See general server notices
442     * +u - unauth - See unauthorized client notices
443     * +w - wallop - See server generated WALLOPS
444     * +x - external - See remote server connection and split notices
445     * +y - spy - See LINKS, STATS, TRACE notices etc.
446     * +z - operwall - See oper generated WALLOPS
447     */
448     # umodes = locops, servnotice, operwall, wallop;
449    
450     /*
451     * privileges: controls the activities and commands an oper is
452 michael 1228 * allowed to do on the server. All options default to no.
453 db 897 * Available options:
454     *
455 michael 1441 * module - allows MODULE
456 michael 1229 * global_kill - allows remote users to be /KILL'd
457     * remote - allows remote SQUIT and CONNECT
458     * remoteban - allows remote KLINE/UNKLINE
459 michael 1301 * dline - allows DLINE
460     * undline - allows UNDLINE
461     * kline - allows KILL and KLINE
462     * unkline - allows UNKLINE
463 michael 1229 * gline - allows GLINE
464     * xline - allows XLINE
465     * globops - allows GLOBOPS
466     * operwall - allows OPERWALL
467     * nick_changes - allows oper to see nickchanges via usermode +n
468     * rehash - allows oper to REHASH config
469     * die - allows DIE
470     * restart - allows RESTART
471 michael 1460 * set - allows SET
472 michael 1229 * admin - gives admin privileges. admins for example,
473     * may see the real IP addresses of servers.
474 db 897 */
475 michael 1228 flags = global_kill, remote, kline, unkline, xline, globops, restart,
476     die, rehash, nick_changes, admin, operwall, module;
477 db 897 };
478    
479 michael 1552 /*
480     * service {}: specifies what server may act as a network service
481     *
482     * NOTE: it is absolutely important that every single server on the network
483     * has the same service{} block.
484     */
485 michael 1157 service {
486     name = "service.someserver";
487 michael 1302 name = "stats.someserver";
488 michael 1157 };
489    
490 db 897 /*
491 michael 1229 * connect {}: controls servers we connect to
492 db 897 */
493     connect {
494     /* name: the name of the server */
495     name = "irc.uplink.com";
496    
497     /*
498     * host: the host or IP to connect to. If a hostname is used it
499     * must match the reverse dns of the server.
500     */
501     host = "192.168.0.1";
502    
503     /*
504     * vhost: the IP to bind to when we connect outward to servers.
505     * serverinfo::vhost and serverinfo::vhost6 will be overridden
506     * by this directive.
507     */
508     vhost = "192.168.0.2";
509    
510     /*
511     * passwords: the passwords we send (OLD C:) and accept (OLD N:).
512     * The remote server will have these passwords reversed.
513     */
514     send_password = "password";
515     accept_password = "anotherpassword";
516    
517     /*
518     * encrypted: controls whether the accept_password above has been
519 michael 1070 * encrypted.
520 db 897 */
521     encrypted = no;
522    
523     /* port: the port to connect to this server on */
524     port = 6666;
525    
526     /*
527     * hub_mask: the mask of servers that this server may hub. Multiple
528     * entries are permitted
529     */
530     hub_mask = "*";
531    
532     /*
533     * leaf_mask: the mask of servers this server may not hub. Multiple
534     * entries are permitted. Useful for forbidding EU -> US -> EU routes.
535     */
536     # leaf_mask = "*.uk";
537    
538     /* class: the class this server is in */
539     class = "server";
540    
541 michael 1524 /*
542     * ssl_cipher_list:
543     *
544     * List of ciphers that the server we are connecting to must support.
545     * If the server isn't capable of any cipher listed below, the
546     * connection will simply be rejected.
547     * Can be used to enforce stronger ciphers, even though this option
548     * is not necessarily required to establish a SSL/TLS connection.
549     *
550     * Multiple ciphers are separated by colons. The order of preference
551     * is from left to right.
552     */
553 michael 1306 #ssl_cipher_list = "DHE-RSA-AES256-SHA:AES256-SHA";
554    
555 db 897 /*
556 michael 1229 * autoconn - controls whether we autoconnect to this server or not,
557     * dependent on class limits. By default, this is disabled.
558 michael 1303 * ssl - Initiates a TLS/SSL connection.
559 db 897 */
560 michael 1519 # flags = autoconn, ssl;
561 db 897 };
562    
563     connect {
564 michael 1285 name = "ipv6.some.server";
565 db 897 host = "3ffd:dead:beef::1";
566     send_password = "password";
567     accept_password = "password";
568     port = 6666;
569    
570     /*
571     * aftype: controls whether the connection uses "ipv4" or "ipv6".
572     * Default is ipv4.
573     */
574     aftype = ipv6;
575     class = "server";
576     };
577    
578     /*
579     * cluster {}: servers that share klines/unkline/xline/unxline/resv/unresv/locops
580 michael 1229 * automatically
581 db 897 */
582     cluster {
583     /*
584     * name: the server to share with, this can take wildcards
585     *
586     * NOTE: only local actions will be clustered, meaning if
587     * the server receives a shared kline/unkline/etc, it
588     * will not be propagated to clustered servers.
589     *
590     * Remote servers are not necessarily required to accept
591     * clustered lines, they need a shared{} for *THIS* server
592     * in order to accept them.
593     */
594     name = "*.arpa";
595    
596     /*
597     * type: list of what to share, options are as follows:
598 michael 1301 * dline - share dlines
599     * undline - share undlines
600 michael 1336 * kline - share klines
601     * unkline - share unklines
602     * xline - share xlines
603     * unxline - share unxlines
604     * resv - share resvs
605     * unresv - share unresvs
606     * locops - share locops
607     * all - share all of the above (default)
608 db 897 */
609     type = kline, unkline, locops, xline, resv;
610     };
611    
612     /*
613 michael 1229 * shared {}: users that are allowed to remote kline
614 db 897 *
615     * NOTE: This can be effectively used for remote klines.
616     * Please note that there is no password authentication
617     * for users setting remote klines. You must also be
618     * /oper'd in order to issue a remote kline.
619     */
620     shared {
621     /*
622     * name: the server the user must be on to set klines. If this is not
623     * specified, the user will be allowed to kline from all servers.
624     */
625     name = "irc2.some.server";
626    
627     /*
628     * user: the user@host mask that is allowed to set klines. If this is
629     * not specified, all users on the server above will be allowed to set
630     * a remote kline.
631     */
632     user = "oper@my.host.is.spoofed";
633    
634     /*
635     * type: list of what to share, options are as follows:
636 michael 1301 * dline - allow oper/server to dline
637     * undline - allow oper/server to undline
638 michael 1336 * kline - allow oper/server to kline
639     * unkline - allow oper/server to unkline
640     * xline - allow oper/server to xline
641     * unxline - allow oper/server to unxline
642     * resv - allow oper/server to resv
643     * unresv - allow oper/server to unresv
644 db 897 * locops - allow oper/server to locops - only used for servers that cluster
645 michael 1336 * all - allow oper/server to do all of the above (default)
646 db 897 */
647     type = kline, unkline, resv;
648     };
649    
650     /*
651 michael 1229 * kill {}: users that are not allowed to connect
652 db 897 * Oper issued klines will be added to the specified kline config
653     */
654     kill {
655     user = "bad@*.hacked.edu";
656     reason = "Obviously hacked account";
657     };
658    
659     kill {
660 michael 951 user = "^O[[:alpha:]]?[[:digit:]]+(x\.o|\.xo)$@^[[:alnum:]]{4}\.evilnet.tld$";
661    
662     /*
663     * NOTE: You have to set type=regex; when using a regular expression
664     * based user entry
665     */
666 db 897 type = regex;
667     };
668    
669     /*
670     * deny {}: IPs that are not allowed to connect (before DNS/ident lookup)
671     * Oper issued dlines will be added to the specified dline config
672     */
673     deny {
674     ip = "10.0.1.0/24";
675     reason = "Reconnecting vhosted bots";
676     };
677    
678     /*
679 michael 1229 * exempt {}: IPs that are exempt from deny {} and Dlines
680 db 897 */
681     exempt {
682     ip = "192.168.0.0/16";
683     };
684    
685     /*
686 michael 1229 * resv {}: nicks and channels users may not use/join
687 db 897 */
688     resv {
689     /* reason: the reason for the proceeding resv's */
690 michael 1157 reason = "Reserved for services";
691 db 897
692     /* resv: the nicks and channels users may not join/use */
693 michael 1217 nick = "Global";
694     nick = "DevNull";
695 michael 1475 nick = "BotServ";
696 michael 1217 nick = "Services";
697     nick = "StatServ";
698 michael 1475 nick = "HelpServ";
699 michael 1217 nick = "HostServ";
700 michael 1157 nick = "NickServ";
701     nick = "ChanServ";
702     nick = "MemoServ";
703     nick = "OperServ";
704 db 897 channel = "#services";
705    
706     /* resv: wildcard masks are also supported in nicks only */
707     reason = "Clone bots";
708     nick = "clone*";
709     };
710    
711     /*
712     * gecos {}: The X: replacement, used for banning users based on
713     * their "realname".
714     */
715     gecos {
716     name = "*sex*";
717     reason = "Possible spambot";
718     };
719    
720     gecos {
721     name = "sub7server";
722     reason = "Trojan drone";
723     };
724    
725     gecos {
726     name = "*http*";
727     reason = "Spambot";
728     };
729    
730     gecos {
731     name = "^\[J[0o]hn Do[3e]\]-[0-9]{2,5}$";
732 michael 951
733     /*
734     * NOTE: You have to set type=regex; when using a regular expression
735     * based name entry
736     */
737 db 897 type = regex;
738     };
739    
740     /*
741     * channel {}: The channel block contains options pertaining to channels
742     */
743     channel {
744     /*
745     * disable_fake_channels: this option, if set to 'yes', will
746     * disallow clients to create or join channels that have one
747     * of the following ASCII characters in their name:
748     *
749     * 2 | bold
750     * 3 | mirc color
751 michael 951 * 15 | plain text
752 db 897 * 22 | reverse
753 michael 1424 * 29 | italic
754 db 897 * 31 | underline
755     * 160 | non-breaking space
756     */
757     disable_fake_channels = yes;
758    
759     /*
760     * restrict_channels: reverse channel RESVs logic, only reserved
761     * channels are allowed
762     */
763     restrict_channels = no;
764    
765     /*
766     * knock_delay: The amount of time a user must wait between issuing
767     * the knock command.
768     */
769 michael 951 knock_delay = 5 minutes;
770 db 897
771     /*
772     * knock_delay_channel: How often a knock to any specific channel
773     * is permitted, regardless of the user sending the knock.
774     */
775     knock_delay_channel = 1 minute;
776    
777     /*
778     * max_chans_per_user: The maximum number of channels a user can
779     * join/be on.
780     */
781     max_chans_per_user = 25;
782    
783 michael 1432 /*
784     * max_chans_per_oper: The maximum number of channels an oper can
785     * join/be on.
786     */
787     max_chans_per_oper = 50;
788    
789 db 897 /* quiet_on_ban: stop banned people talking in channels. */
790     quiet_on_ban = yes;
791    
792     /* max_bans: maximum number of +b/e/I modes in a channel */
793 michael 1522 max_bans = 100;
794 db 897
795     /*
796     * how many joins in how many seconds constitute a flood, use 0 to
797     * disable. +b opers will be notified (changeable via /set)
798     */
799     join_flood_count = 16;
800     join_flood_time = 8 seconds;
801    
802     /*
803     * splitcode: The ircd will now check splitmode every few seconds.
804     *
805     * Either split users or split servers can activate splitmode, but
806     * both conditions must be met for the ircd to deactivate splitmode.
807     *
808     * You may force splitmode to be permanent by /quote set splitmode on
809     */
810    
811     /*
812     * default_split_user_count: when the usercount is lower than this level,
813     * consider ourselves split. This must be set for automatic splitmode.
814     */
815     default_split_user_count = 0;
816    
817     /*
818     * default_split_server_count: when the servercount is lower than this,
819     * consider ourselves split. This must be set for automatic splitmode.
820     */
821     default_split_server_count = 0;
822    
823 michael 959 /* no_create_on_split: disallow users creating channels on split. */
824 db 897 no_create_on_split = yes;
825    
826 michael 959 /* no_join_on_split: disallow users joining channels at all on a split. */
827 db 897 no_join_on_split = no;
828     };
829    
830     /*
831     * serverhide {}: The serverhide block contains the options regarding
832     * serverhiding
833     */
834     serverhide {
835     /*
836     * flatten_links: this option will show all servers in /links appear
837     * that they are linked to this current server
838     */
839     flatten_links = no;
840    
841     /*
842     * links_delay: how often to update the links file when it is
843     * flattened.
844     */
845     links_delay = 5 minutes;
846    
847     /*
848     * hidden: hide this server from a /links output on servers that
849     * support it. This allows hub servers to be hidden etc.
850     */
851     hidden = no;
852    
853     /*
854     * hide_servers: hide remote servernames everywhere and instead use
855     * hidden_name and network_desc.
856     */
857     hide_servers = no;
858    
859     /*
860     * Use this as the servername users see if hide_servers = yes.
861     */
862     hidden_name = "*.hidden.com";
863    
864     /*
865 michael 951 * hide_server_ips: If this is disabled, opers will be unable to see
866     * servers ips and will be shown a masked ip, admins will be shown the
867     * real ip.
868 db 897 *
869 michael 951 * If this is enabled, nobody can see a servers ip. *This is a kludge*,
870     * it has the side effect of hiding the ips everywhere, including
871     * logfiles.
872 db 897 *
873     * We recommend you leave this disabled, and just take care with who you
874     * give admin=yes; to.
875     */
876     hide_server_ips = no;
877     };
878    
879     /*
880     * general {}: The general block contains many of the options that were once
881     * compiled in options in config.h. The general block is read at start time.
882     */
883     general {
884 michael 1157 /* services_name: servername of nick/channel services */
885     services_name = "service.someserver";
886    
887 michael 951 /* max_watch: maximum WATCH entries a client can have. */
888 michael 1070 max_watch = 60;
889 db 897
890 michael 1459 /* gline_enable: enable glines, network wide temp klines */
891     gline_enable = yes;
892    
893 db 897 /*
894 michael 1459 * gline_duration: the amount of time a gline will remain on your
895     * server before expiring
896     */
897     gline_duration = 1 day;
898    
899     /*
900     * gline_request_duration: how long a pending G-line can be around.
901     * 10 minutes should be plenty
902     */
903     gline_request_duration = 10 minutes;
904    
905     /*
906 db 897 * gline_min_cidr: the minimum required length of a CIDR bitmask
907     * for IPv4 based glines
908     */
909     gline_min_cidr = 16;
910    
911     /*
912     * gline_min_cidr6: the minimum required length of a CIDR bitmask
913     * for IPv6 based glines
914     */
915     gline_min_cidr6 = 48;
916    
917     /*
918     * Whether to automatically set mode +i on connecting users.
919     */
920     invisible_on_connect = yes;
921    
922     /*
923     * Max time from the nickname change that still causes KILL
924 michael 1074 * automatically to switch for the current nick of that user.
925 db 897 */
926 michael 1074 kill_chase_time_limit = 90 seconds;
927 db 897
928     /*
929 michael 1228 * If hide_spoof_ips is disabled, opers will be allowed to see the real
930     * IP of spoofed users in /trace etc. If this is defined they will be
931     * shown a masked IP.
932 db 897 */
933     hide_spoof_ips = yes;
934    
935     /*
936     * Ignore bogus timestamps from other servers. Yes, this will desync
937     * the network, but it will allow chanops to resync with a valid non TS 0
938     *
939     * This should be enabled network wide, or not at all.
940     */
941     ignore_bogus_ts = no;
942    
943     /*
944     * disable_auth: completely disable ident lookups; if you enable this,
945     * be careful of what you set need_ident to in your auth {} blocks
946     */
947     disable_auth = no;
948    
949     /* disable_remote_commands: disable users doing commands on remote servers */
950     disable_remote_commands = no;
951    
952     /*
953     * tkline_expire_notices: enables or disables temporary kline/xline
954     * expire notices.
955     */
956     tkline_expire_notices = no;
957    
958     /*
959     * default_floodcount: the default value of floodcount that is configurable
960     * via /quote set floodcount. This is the amount of lines a user
961     * may send to any other user/channel in one second.
962     */
963     default_floodcount = 10;
964    
965     /*
966     * failed_oper_notice: send a notice to all opers on the server when
967     * someone tries to OPER and uses the wrong password, host or ident.
968     */
969     failed_oper_notice = yes;
970    
971     /*
972     * dots_in_ident: the amount of '.' characters permitted in an ident
973     * reply before the user is rejected.
974     */
975     dots_in_ident = 2;
976    
977     /*
978     * min_nonwildcard: the minimum non wildcard characters in k/d/g lines
979     * placed via the server. klines hand placed are exempt from limits.
980     * wildcard chars: '.' ':' '*' '?' '@' '!' '#'
981     */
982     min_nonwildcard = 4;
983    
984     /*
985     * min_nonwildcard_simple: the minimum non wildcard characters in
986     * gecos bans. wildcard chars: '*' '?' '#'
987     */
988     min_nonwildcard_simple = 3;
989    
990     /* max_accept: maximum allowed /accept's for +g usermode */
991     max_accept = 20;
992    
993     /* anti_nick_flood: enable the nickflood control code */
994     anti_nick_flood = yes;
995    
996     /* nick flood: the nick changes allowed in the specified period */
997     max_nick_time = 20 seconds;
998     max_nick_changes = 5;
999    
1000     /*
1001     * anti_spam_exit_message_time: the minimum time a user must be connected
1002     * before custom quit messages are allowed.
1003     */
1004     anti_spam_exit_message_time = 5 minutes;
1005    
1006     /*
1007     * ts delta: the time delta allowed between server clocks before
1008     * a warning is given, or before the link is dropped. all servers
1009     * should run ntpdate/rdate to keep clocks in sync
1010     */
1011     ts_warn_delta = 30 seconds;
1012     ts_max_delta = 5 minutes;
1013    
1014     /*
1015     * warn_no_nline: warn opers about servers that try to connect but
1016     * we don't have a connect {} block for. Twits with misconfigured
1017     * servers can get really annoying with this enabled.
1018     */
1019     warn_no_nline = yes;
1020    
1021     /*
1022     * stats_e_disabled: set this to 'yes' to disable "STATS e" for both
1023     * operators and administrators. Doing so is a good idea in case
1024     * there are any exempted (exempt{}) server IPs you don't want to
1025     * see leaked.
1026     */
1027     stats_e_disabled = no;
1028    
1029     /* stats_o_oper only: make stats o (opers) oper only */
1030     stats_o_oper_only = yes;
1031    
1032     /* stats_P_oper_only: make stats P (ports) oper only */
1033     stats_P_oper_only = yes;
1034    
1035     /*
1036     * stats i oper only: make stats i (auth {}) oper only. set to:
1037     * yes: show users no auth blocks, made oper only.
1038     * masked: show users first matching auth block
1039     * no: show users all auth blocks.
1040     */
1041     stats_i_oper_only = yes;
1042    
1043     /*
1044     * stats_k_oper_only: make stats k/K (klines) oper only. set to:
1045     * yes: show users no auth blocks, made oper only
1046     * masked: show users first matching auth block
1047     * no: show users all auth blocks.
1048     */
1049     stats_k_oper_only = yes;
1050    
1051     /*
1052     * caller_id_wait: time between notifying a +g user that somebody
1053     * is messaging them.
1054     */
1055     caller_id_wait = 1 minute;
1056    
1057     /*
1058     * opers_bypass_callerid: allows operators to bypass +g and message
1059     * anyone who has it set (useful if you use services).
1060     */
1061     opers_bypass_callerid = no;
1062    
1063     /*
1064     * pace_wait_simple: time between use of less intensive commands
1065     * (ADMIN, HELP, (L)USERS, VERSION, remote WHOIS)
1066     */
1067     pace_wait_simple = 1 second;
1068    
1069     /*
1070     * pace_wait: time between more intensive commands
1071 michael 1488 * (AWAY, INFO, LINKS, MAP, MOTD, STATS, WHO, wildcard WHOIS, WHOWAS)
1072 db 897 */
1073     pace_wait = 10 seconds;
1074    
1075     /*
1076     * short_motd: send clients a notice telling them to read the motd
1077     * instead of forcing a motd to clients who may simply ignore it.
1078     */
1079     short_motd = no;
1080    
1081     /*
1082     * ping_cookie: require clients to respond exactly to a ping command,
1083     * can help block certain types of drones and FTP PASV mode spoofing.
1084     */
1085     ping_cookie = no;
1086    
1087     /* no_oper_flood: increase flood limits for opers. */
1088     no_oper_flood = yes;
1089    
1090     /*
1091     * true_no_oper_flood: completely eliminate flood limits for opers
1092     * and for clients with can_flood = yes in their auth {} blocks
1093     */
1094     true_no_oper_flood = yes;
1095    
1096     /* oper_pass_resv: allow opers to over-ride RESVs on nicks/channels */
1097     oper_pass_resv = yes;
1098    
1099     /* REMOVE ME. The following line checks you've been reading. */
1100     havent_read_conf = 1;
1101    
1102     /*
1103     * max_targets: the maximum amount of targets in a single
1104     * PRIVMSG/NOTICE. Set to 999 NOT 0 for unlimited.
1105     */
1106     max_targets = 4;
1107    
1108     /*
1109     * message_locale: the default message locale
1110     * Use "standard" for the compiled in defaults.
1111     * To install the translated messages, go into messages/ in the
1112     * source directory and run `make install'.
1113     */
1114     message_locale = "standard";
1115    
1116     /*
1117     * usermodes configurable: a list of usermodes for the options below
1118     *
1119     * +b - bots - See bot and drone flooding notices
1120     * +c - cconn - Client connection/quit notices
1121 michael 959 * +C - cconn_full - Client connection/quit notices full
1122 db 897 * +D - deaf - Don't receive channel messages
1123     * +d - debug - See debugging notices
1124 michael 1426 * +f - full - See auth{} block full notices
1125 db 897 * +G - softcallerid - Server Side Ignore for users not on your channels
1126     * +g - callerid - Server Side Ignore (for privmsgs etc)
1127 michael 1294 * +H - hidden - Hides operator status to other users
1128 db 897 * +i - invisible - Not shown in NAMES or WHO unless you share a
1129     * a channel
1130 michael 1290 * +j - rej - See rejected client notices
1131 db 897 * +k - skill - See server generated KILL messages
1132     * +l - locops - See LOCOPS messages
1133     * +n - nchange - See client nick changes
1134     * +s - servnotice - See general server notices
1135     * +u - unauth - See unauthorized client notices
1136     * +w - wallop - See server generated WALLOPS
1137     * +x - external - See remote server connection and split notices
1138     * +y - spy - See LINKS, STATS, TRACE notices etc.
1139     * +z - operwall - See oper generated WALLOPS
1140     */
1141    
1142     /* oper_only_umodes: usermodes only opers may set */
1143 michael 1294 oper_only_umodes = bots, cconn, cconn_full, debug, full, hidden, skill,
1144 db 897 nchange, rej, spy, external, operwall,
1145     locops, unauth;
1146    
1147     /* oper_umodes: default usermodes opers get when they /oper */
1148     oper_umodes = bots, locops, servnotice, operwall, wallop;
1149    
1150     /*
1151     * use_egd: if your system does not have *random devices yet you
1152     * want to use OpenSSL and encrypted links, enable this. Beware -
1153     * EGD is *very* CPU intensive when gathering data for its pool
1154     */
1155     # use_egd = yes;
1156    
1157     /*
1158     * egdpool_path: path to EGD pool. Not necessary for OpenSSL >= 0.9.7
1159     * which automatically finds the path.
1160     */
1161     # egdpool_path = "/var/run/egd-pool";
1162    
1163     /*
1164     * throttle_time: the minimum amount of time between connections from
1165     * the same ip. exempt {} blocks are excluded from this throttling.
1166     * Offers protection against flooders who reconnect quickly.
1167     * Set to 0 to disable.
1168     */
1169     throttle_time = 10;
1170     };
1171    
1172     modules {
1173     /*
1174 michael 951 * path: other paths to search for modules specified below
1175 michael 1441 * and in "/module load".
1176 db 897 */
1177 michael 1070 path = "/usr/local/ircd/lib/ircd-hybrid/modules";
1178     path = "/usr/local/ircd/lib/ircd-hybrid/modules/autoload";
1179 db 897
1180     /* module: the name of a module to load on startup/rehash */
1181 michael 959 #module = "some_module.la";
1182 db 897 };
1183 michael 1247
1184     /*
1185     * log {}: contains information about logfiles.
1186     */
1187     log {
1188     /* Do you want to enable logging to ircd.log? */
1189     use_logging = yes;
1190    
1191     file {
1192     type = oper;
1193     name = "/home/ircd/var/log/oper.log";
1194 michael 1250 size = unlimited;
1195 michael 1247 };
1196    
1197     file {
1198     type = user;
1199 michael 1249 name = "/home/ircd/var/log/user.log";
1200 michael 1247 size = 50 megabytes;
1201     };
1202    
1203     file {
1204     type = kill;
1205     name = "/home/ircd/var/log/kill.log";
1206     size = 50 megabytes;
1207     };
1208    
1209     file {
1210     type = kline;
1211     name = "/home/ircd/var/log/kline.log";
1212     size = 50 megabytes;
1213     };
1214    
1215     file {
1216     type = dline;
1217     name = "/home/ircd/var/log/dline.log";
1218     size = 50 megabytes;
1219     };
1220    
1221     file {
1222     type = gline;
1223     name = "/home/ircd/var/log/gline.log";
1224     size = 50 megabytes;
1225     };
1226    
1227     file {
1228     type = debug;
1229     name = "/home/ircd/var/log/debug.log";
1230     size = 50 megabytes;
1231     };
1232     };

Properties

Name Value
svn:eol-style native
svn:keywords Id Revision