ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid-8/doc/example.conf
Revision: 1412
Committed: Sat May 19 18:39:17 2012 UTC (11 years, 11 months ago) by michael
File size: 35262 byte(s)
Log Message:
- update example configuration files

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     sendq = 100kbytes;
239     };
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     * +f - full - See I: line full notices
426     * +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 1229 * module - allows MODLIST, MODRESTART, MODLOAD, MODUNLOAD
450     * 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     * 31 | underline
733     * 160 | non-breaking space
734     */
735     disable_fake_channels = yes;
736    
737     /*
738     * restrict_channels: reverse channel RESVs logic, only reserved
739     * channels are allowed
740     */
741     restrict_channels = no;
742    
743     /*
744     * disable_local_channels: prevent users from joining &channels.
745     */
746     disable_local_channels = no;
747    
748     /*
749     * use_invex: Enable/disable channel mode +I, a n!u@h list of masks
750     * that can join a +i channel without an invite.
751     */
752     use_invex = yes;
753    
754     /*
755     * use_except: Enable/disable channel mode +e, a n!u@h list of masks
756     * that can join a channel through a ban (+b).
757     */
758     use_except = yes;
759    
760     /*
761     * use_knock: Allows users to request an invite to a channel that
762     * is locked somehow (+ikl). If the channel is +p or you are banned
763     * the knock will not be sent.
764     */
765     use_knock = yes;
766    
767     /*
768     * knock_delay: The amount of time a user must wait between issuing
769     * the knock command.
770     */
771 michael 951 knock_delay = 5 minutes;
772 db 897
773     /*
774     * knock_delay_channel: How often a knock to any specific channel
775     * is permitted, regardless of the user sending the knock.
776     */
777     knock_delay_channel = 1 minute;
778    
779     /*
780     * max_chans_per_user: The maximum number of channels a user can
781     * join/be on.
782     */
783     max_chans_per_user = 25;
784    
785     /* quiet_on_ban: stop banned people talking in channels. */
786     quiet_on_ban = yes;
787    
788     /* max_bans: maximum number of +b/e/I modes in a channel */
789     max_bans = 25;
790    
791     /*
792     * how many joins in how many seconds constitute a flood, use 0 to
793     * disable. +b opers will be notified (changeable via /set)
794     */
795     join_flood_count = 16;
796     join_flood_time = 8 seconds;
797    
798     /*
799     * splitcode: The ircd will now check splitmode every few seconds.
800     *
801     * Either split users or split servers can activate splitmode, but
802     * both conditions must be met for the ircd to deactivate splitmode.
803     *
804     * You may force splitmode to be permanent by /quote set splitmode on
805     */
806    
807     /*
808     * default_split_user_count: when the usercount is lower than this level,
809     * consider ourselves split. This must be set for automatic splitmode.
810     */
811     default_split_user_count = 0;
812    
813     /*
814     * default_split_server_count: when the servercount is lower than this,
815     * consider ourselves split. This must be set for automatic splitmode.
816     */
817     default_split_server_count = 0;
818    
819 michael 959 /* no_create_on_split: disallow users creating channels on split. */
820 db 897 no_create_on_split = yes;
821    
822 michael 959 /* no_join_on_split: disallow users joining channels at all on a split. */
823 db 897 no_join_on_split = no;
824     };
825    
826     /*
827     * serverhide {}: The serverhide block contains the options regarding
828     * serverhiding
829     */
830     serverhide {
831     /*
832     * flatten_links: this option will show all servers in /links appear
833     * that they are linked to this current server
834     */
835     flatten_links = no;
836    
837     /*
838     * links_delay: how often to update the links file when it is
839     * flattened.
840     */
841     links_delay = 5 minutes;
842    
843     /*
844     * hidden: hide this server from a /links output on servers that
845     * support it. This allows hub servers to be hidden etc.
846     */
847     hidden = no;
848    
849     /*
850     * disable_hidden: prevent servers hiding themselves from a
851     * /links output.
852     */
853     disable_hidden = no;
854    
855     /*
856     * hide_servers: hide remote servernames everywhere and instead use
857     * hidden_name and network_desc.
858     */
859     hide_servers = no;
860    
861     /*
862     * Use this as the servername users see if hide_servers = yes.
863     */
864     hidden_name = "*.hidden.com";
865    
866     /*
867 michael 951 * hide_server_ips: If this is disabled, opers will be unable to see
868     * servers ips and will be shown a masked ip, admins will be shown the
869     * real ip.
870 db 897 *
871 michael 951 * If this is enabled, nobody can see a servers ip. *This is a kludge*,
872     * it has the side effect of hiding the ips everywhere, including
873     * logfiles.
874 db 897 *
875     * We recommend you leave this disabled, and just take care with who you
876     * give admin=yes; to.
877     */
878     hide_server_ips = no;
879     };
880    
881     /*
882     * general {}: The general block contains many of the options that were once
883     * compiled in options in config.h. The general block is read at start time.
884     */
885     general {
886 michael 1157 /* services_name: servername of nick/channel services */
887     services_name = "service.someserver";
888    
889 michael 951 /* max_watch: maximum WATCH entries a client can have. */
890 michael 1070 max_watch = 60;
891 db 897
892     /*
893     * gline_min_cidr: the minimum required length of a CIDR bitmask
894     * for IPv4 based glines
895     */
896     gline_min_cidr = 16;
897    
898     /*
899     * gline_min_cidr6: the minimum required length of a CIDR bitmask
900     * for IPv6 based glines
901     */
902     gline_min_cidr6 = 48;
903    
904     /*
905     * Whether to automatically set mode +i on connecting users.
906     */
907     invisible_on_connect = yes;
908    
909     /*
910     * Show "actually using host <ip>" on /whois when possible.
911     */
912     use_whois_actually = yes;
913    
914     /*
915     * Max time from the nickname change that still causes KILL
916 michael 1074 * automatically to switch for the current nick of that user.
917 db 897 */
918 michael 1074 kill_chase_time_limit = 90 seconds;
919 db 897
920     /*
921 michael 1228 * If hide_spoof_ips is disabled, opers will be allowed to see the real
922     * IP of spoofed users in /trace etc. If this is defined they will be
923     * shown a masked IP.
924 db 897 */
925     hide_spoof_ips = yes;
926    
927     /*
928     * Ignore bogus timestamps from other servers. Yes, this will desync
929     * the network, but it will allow chanops to resync with a valid non TS 0
930     *
931     * This should be enabled network wide, or not at all.
932     */
933     ignore_bogus_ts = no;
934    
935     /*
936     * disable_auth: completely disable ident lookups; if you enable this,
937     * be careful of what you set need_ident to in your auth {} blocks
938     */
939     disable_auth = no;
940    
941     /* disable_remote_commands: disable users doing commands on remote servers */
942     disable_remote_commands = no;
943    
944     /*
945     * tkline_expire_notices: enables or disables temporary kline/xline
946     * expire notices.
947     */
948     tkline_expire_notices = no;
949    
950     /*
951     * default_floodcount: the default value of floodcount that is configurable
952     * via /quote set floodcount. This is the amount of lines a user
953     * may send to any other user/channel in one second.
954     */
955     default_floodcount = 10;
956    
957     /*
958     * failed_oper_notice: send a notice to all opers on the server when
959     * someone tries to OPER and uses the wrong password, host or ident.
960     */
961     failed_oper_notice = yes;
962    
963     /*
964     * dots_in_ident: the amount of '.' characters permitted in an ident
965     * reply before the user is rejected.
966     */
967     dots_in_ident = 2;
968    
969     /*
970     * min_nonwildcard: the minimum non wildcard characters in k/d/g lines
971     * placed via the server. klines hand placed are exempt from limits.
972     * wildcard chars: '.' ':' '*' '?' '@' '!' '#'
973     */
974     min_nonwildcard = 4;
975    
976     /*
977     * min_nonwildcard_simple: the minimum non wildcard characters in
978     * gecos bans. wildcard chars: '*' '?' '#'
979     */
980     min_nonwildcard_simple = 3;
981    
982     /* max_accept: maximum allowed /accept's for +g usermode */
983     max_accept = 20;
984    
985     /* anti_nick_flood: enable the nickflood control code */
986     anti_nick_flood = yes;
987    
988     /* nick flood: the nick changes allowed in the specified period */
989     max_nick_time = 20 seconds;
990     max_nick_changes = 5;
991    
992     /*
993     * anti_spam_exit_message_time: the minimum time a user must be connected
994     * before custom quit messages are allowed.
995     */
996     anti_spam_exit_message_time = 5 minutes;
997    
998     /*
999     * ts delta: the time delta allowed between server clocks before
1000     * a warning is given, or before the link is dropped. all servers
1001     * should run ntpdate/rdate to keep clocks in sync
1002     */
1003     ts_warn_delta = 30 seconds;
1004     ts_max_delta = 5 minutes;
1005    
1006     /*
1007     * kline_with_reason: show the user the reason why they are k/d/glined
1008     * on exit. May give away who set k/dline when set via tcm.
1009     */
1010     kline_with_reason = yes;
1011    
1012     /*
1013     * kline_reason: show this message to users on channel
1014     * instead of the oper reason.
1015     */
1016     kline_reason = "Connection closed";
1017    
1018     /*
1019     * reject_hold_time: wait this amount of time before disconnecting
1020     * a rejected client. Use 0 to disable.
1021     */
1022     reject_hold_time = 0;
1023    
1024     /*
1025     * warn_no_nline: warn opers about servers that try to connect but
1026     * we don't have a connect {} block for. Twits with misconfigured
1027     * servers can get really annoying with this enabled.
1028     */
1029     warn_no_nline = yes;
1030    
1031     /*
1032     * stats_e_disabled: set this to 'yes' to disable "STATS e" for both
1033     * operators and administrators. Doing so is a good idea in case
1034     * there are any exempted (exempt{}) server IPs you don't want to
1035     * see leaked.
1036     */
1037     stats_e_disabled = no;
1038    
1039     /* stats_o_oper only: make stats o (opers) oper only */
1040     stats_o_oper_only = yes;
1041    
1042     /* stats_P_oper_only: make stats P (ports) oper only */
1043     stats_P_oper_only = yes;
1044    
1045     /*
1046     * stats i oper only: make stats i (auth {}) oper only. set to:
1047     * yes: show users no auth blocks, made oper only.
1048     * masked: show users first matching auth block
1049     * no: show users all auth blocks.
1050     */
1051     stats_i_oper_only = yes;
1052    
1053     /*
1054     * stats_k_oper_only: make stats k/K (klines) oper only. set to:
1055     * yes: show users no auth blocks, made oper only
1056     * masked: show users first matching auth block
1057     * no: show users all auth blocks.
1058     */
1059     stats_k_oper_only = yes;
1060    
1061     /*
1062     * caller_id_wait: time between notifying a +g user that somebody
1063     * is messaging them.
1064     */
1065     caller_id_wait = 1 minute;
1066    
1067     /*
1068     * opers_bypass_callerid: allows operators to bypass +g and message
1069     * anyone who has it set (useful if you use services).
1070     */
1071     opers_bypass_callerid = no;
1072    
1073     /*
1074     * pace_wait_simple: time between use of less intensive commands
1075     * (ADMIN, HELP, (L)USERS, VERSION, remote WHOIS)
1076     */
1077     pace_wait_simple = 1 second;
1078    
1079     /*
1080     * pace_wait: time between more intensive commands
1081     * (INFO, LINKS, LIST, MAP, MOTD, STATS, WHO, wildcard WHOIS, WHOWAS)
1082     */
1083     pace_wait = 10 seconds;
1084    
1085     /*
1086     * short_motd: send clients a notice telling them to read the motd
1087     * instead of forcing a motd to clients who may simply ignore it.
1088     */
1089     short_motd = no;
1090    
1091     /*
1092     * ping_cookie: require clients to respond exactly to a ping command,
1093     * can help block certain types of drones and FTP PASV mode spoofing.
1094     */
1095     ping_cookie = no;
1096    
1097     /* no_oper_flood: increase flood limits for opers. */
1098     no_oper_flood = yes;
1099    
1100     /*
1101     * true_no_oper_flood: completely eliminate flood limits for opers
1102     * and for clients with can_flood = yes in their auth {} blocks
1103     */
1104     true_no_oper_flood = yes;
1105    
1106     /* oper_pass_resv: allow opers to over-ride RESVs on nicks/channels */
1107     oper_pass_resv = yes;
1108    
1109     /* REMOVE ME. The following line checks you've been reading. */
1110     havent_read_conf = 1;
1111    
1112     /*
1113     * max_targets: the maximum amount of targets in a single
1114     * PRIVMSG/NOTICE. Set to 999 NOT 0 for unlimited.
1115     */
1116     max_targets = 4;
1117    
1118     /*
1119     * client_flood: maximum amount of data in a clients queue before
1120     * they are dropped for flooding.
1121     */
1122     client_flood = 2560 bytes;
1123    
1124     /*
1125     * message_locale: the default message locale
1126     * Use "standard" for the compiled in defaults.
1127     * To install the translated messages, go into messages/ in the
1128     * source directory and run `make install'.
1129     */
1130     message_locale = "standard";
1131    
1132     /*
1133     * usermodes configurable: a list of usermodes for the options below
1134     *
1135     * +b - bots - See bot and drone flooding notices
1136     * +c - cconn - Client connection/quit notices
1137 michael 959 * +C - cconn_full - Client connection/quit notices full
1138 db 897 * +D - deaf - Don't receive channel messages
1139     * +d - debug - See debugging notices
1140     * +f - full - See I: line full notices
1141     * +G - softcallerid - Server Side Ignore for users not on your channels
1142     * +g - callerid - Server Side Ignore (for privmsgs etc)
1143 michael 1294 * +H - hidden - Hides operator status to other users
1144 db 897 * +i - invisible - Not shown in NAMES or WHO unless you share a
1145     * a channel
1146 michael 1290 * +j - rej - See rejected client notices
1147 db 897 * +k - skill - See server generated KILL messages
1148     * +l - locops - See LOCOPS messages
1149     * +n - nchange - See client nick changes
1150     * +s - servnotice - See general server notices
1151     * +u - unauth - See unauthorized client notices
1152     * +w - wallop - See server generated WALLOPS
1153     * +x - external - See remote server connection and split notices
1154     * +y - spy - See LINKS, STATS, TRACE notices etc.
1155     * +z - operwall - See oper generated WALLOPS
1156     */
1157    
1158     /* oper_only_umodes: usermodes only opers may set */
1159 michael 1294 oper_only_umodes = bots, cconn, cconn_full, debug, full, hidden, skill,
1160 db 897 nchange, rej, spy, external, operwall,
1161     locops, unauth;
1162    
1163     /* oper_umodes: default usermodes opers get when they /oper */
1164     oper_umodes = bots, locops, servnotice, operwall, wallop;
1165    
1166     /*
1167     * use_egd: if your system does not have *random devices yet you
1168     * want to use OpenSSL and encrypted links, enable this. Beware -
1169     * EGD is *very* CPU intensive when gathering data for its pool
1170     */
1171     # use_egd = yes;
1172    
1173     /*
1174     * egdpool_path: path to EGD pool. Not necessary for OpenSSL >= 0.9.7
1175     * which automatically finds the path.
1176     */
1177     # egdpool_path = "/var/run/egd-pool";
1178    
1179     /*
1180     * throttle_time: the minimum amount of time between connections from
1181     * the same ip. exempt {} blocks are excluded from this throttling.
1182     * Offers protection against flooders who reconnect quickly.
1183     * Set to 0 to disable.
1184     */
1185     throttle_time = 10;
1186     };
1187    
1188     glines {
1189     /* enable: enable glines, network wide temp klines */
1190     enable = yes;
1191    
1192     /*
1193     * duration: the amount of time a gline will remain on your
1194     * server before expiring
1195     */
1196     duration = 1 day;
1197    
1198     /*
1199 michael 1247 * log: which types of rules you want to log when triggered
1200 db 897 * (choose reject or block)
1201     */
1202 michael 1247 log = reject, block;
1203 db 897
1204     /*
1205     * NOTE: gline ACLs can cause a desync of glines throughout the
1206     * network, meaning some servers may have a gline triggered, and
1207     * others may not. Also, you only need insert rules for glines
1208     * that you want to block and/or reject. If you want to accept and
1209     * propagate the gline, do NOT put a rule for it.
1210     */
1211    
1212     /* user@host for rule to apply to */
1213     user = "god@I.still.hate.packets";
1214     /* server for rule to apply to */
1215     name = "hades.arpa";
1216    
1217     /*
1218     * action: action to take when a matching gline is found. options are:
1219 michael 1336 * reject - do not apply the gline locally
1220     * block - do not propagate the gline
1221 db 897 */
1222     action = reject, block;
1223    
1224     user = "god@*";
1225     name = "*";
1226     action = block;
1227     };
1228    
1229     modules {
1230     /*
1231 michael 951 * path: other paths to search for modules specified below
1232 db 897 * and in /modload.
1233     */
1234 michael 1070 path = "/usr/local/ircd/lib/ircd-hybrid/modules";
1235     path = "/usr/local/ircd/lib/ircd-hybrid/modules/autoload";
1236 db 897
1237     /* module: the name of a module to load on startup/rehash */
1238 michael 959 #module = "some_module.la";
1239 db 897 };
1240 michael 1247
1241     /*
1242     * log {}: contains information about logfiles.
1243     */
1244     log {
1245     /* Do you want to enable logging to ircd.log? */
1246     use_logging = yes;
1247    
1248     file {
1249     type = oper;
1250     name = "/home/ircd/var/log/oper.log";
1251 michael 1250 size = unlimited;
1252 michael 1247 };
1253    
1254     file {
1255     type = user;
1256 michael 1249 name = "/home/ircd/var/log/user.log";
1257 michael 1247 size = 50 megabytes;
1258     };
1259    
1260     file {
1261     type = kill;
1262     name = "/home/ircd/var/log/kill.log";
1263     size = 50 megabytes;
1264     };
1265    
1266     file {
1267     type = kline;
1268     name = "/home/ircd/var/log/kline.log";
1269     size = 50 megabytes;
1270     };
1271    
1272     file {
1273     type = dline;
1274     name = "/home/ircd/var/log/dline.log";
1275     size = 50 megabytes;
1276     };
1277    
1278     file {
1279     type = gline;
1280     name = "/home/ircd/var/log/gline.log";
1281     size = 50 megabytes;
1282     };
1283    
1284     file {
1285     type = debug;
1286     name = "/home/ircd/var/log/debug.log";
1287     size = 50 megabytes;
1288     };
1289     };

Properties

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