ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/doc/reference.conf
Revision: 1070
Committed: Tue Feb 16 23:40:20 2010 UTC (15 years, 6 months ago) by michael
Original Path: ircd-hybrid-7.3/etc/example.conf
File size: 36955 byte(s)
Log Message:
- Update example configuration files

File Contents

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

Properties

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