ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/doc/reference.conf
Revision: 1441
Committed: Wed Jun 20 19:05:27 2012 UTC (13 years, 2 months ago) by michael
Original Path: ircd-hybrid-8/doc/example.conf
File size: 35382 byte(s)
Log Message:
- Update documents

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

Properties

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