ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/branches/8.2.x/doc/reference.conf
Revision: 1499
Committed: Sun Aug 12 17:38:41 2012 UTC (13 years ago) by michael
Original Path: ircd-hybrid-8/doc/example.conf
File size: 34085 byte(s)
Log Message:
- Update example.conf

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 michael 1460 * set - allows SET
466 michael 1229 * admin - gives admin privileges. admins for example,
467     * may see the real IP addresses of servers.
468 db 897 */
469 michael 1228 flags = global_kill, remote, kline, unkline, xline, globops, restart,
470     die, rehash, nick_changes, admin, operwall, module;
471 db 897 };
472    
473 michael 1157 service {
474     name = "service.someserver";
475 michael 1302 name = "stats.someserver";
476 michael 1157 };
477    
478 db 897 /*
479 michael 1229 * connect {}: controls servers we connect to
480 db 897 */
481     connect {
482     /* name: the name of the server */
483     name = "irc.uplink.com";
484    
485     /*
486     * host: the host or IP to connect to. If a hostname is used it
487     * must match the reverse dns of the server.
488     */
489     host = "192.168.0.1";
490    
491     /*
492     * vhost: the IP to bind to when we connect outward to servers.
493     * serverinfo::vhost and serverinfo::vhost6 will be overridden
494     * by this directive.
495     */
496     vhost = "192.168.0.2";
497    
498     /*
499     * passwords: the passwords we send (OLD C:) and accept (OLD N:).
500     * The remote server will have these passwords reversed.
501     */
502     send_password = "password";
503     accept_password = "anotherpassword";
504    
505     /*
506     * encrypted: controls whether the accept_password above has been
507 michael 1070 * encrypted.
508 db 897 */
509     encrypted = no;
510    
511     /* port: the port to connect to this server on */
512     port = 6666;
513    
514     /*
515     * hub_mask: the mask of servers that this server may hub. Multiple
516     * entries are permitted
517     */
518     hub_mask = "*";
519    
520     /*
521     * leaf_mask: the mask of servers this server may not hub. Multiple
522     * entries are permitted. Useful for forbidding EU -> US -> EU routes.
523     */
524     # leaf_mask = "*.uk";
525    
526     /* class: the class this server is in */
527     class = "server";
528    
529 michael 1306 #ssl_cipher_list = "DHE-RSA-AES256-SHA:AES256-SHA";
530    
531 db 897 /*
532 michael 1229 * autoconn - controls whether we autoconnect to this server or not,
533     * dependent on class limits. By default, this is disabled.
534     * burst_away - This will send the /away string that users have set
535 michael 1336 * on the server burst. Note this can be a lot of data
536 db 897 * and slow down your server burst.
537 michael 1336 * topicburst - Send topics to this server during channel burst. Works
538 db 897 * only if the server we are connecting to is capable
539     * of TBURST/TB.
540 michael 1303 * ssl - Initiates a TLS/SSL connection.
541 db 897 */
542 michael 1302 # flags = autoconn, burst_away, topicburst;
543 db 897 };
544    
545     connect {
546 michael 1285 name = "ipv6.some.server";
547 db 897 host = "3ffd:dead:beef::1";
548     send_password = "password";
549     accept_password = "password";
550     port = 6666;
551    
552     /*
553     * aftype: controls whether the connection uses "ipv4" or "ipv6".
554     * Default is ipv4.
555     */
556     aftype = ipv6;
557     class = "server";
558     };
559    
560     /*
561     * cluster {}: servers that share klines/unkline/xline/unxline/resv/unresv/locops
562 michael 1229 * automatically
563 db 897 */
564     cluster {
565     /*
566     * name: the server to share with, this can take wildcards
567     *
568     * NOTE: only local actions will be clustered, meaning if
569     * the server receives a shared kline/unkline/etc, it
570     * will not be propagated to clustered servers.
571     *
572     * Remote servers are not necessarily required to accept
573     * clustered lines, they need a shared{} for *THIS* server
574     * in order to accept them.
575     */
576     name = "*.arpa";
577    
578     /*
579     * type: list of what to share, options are as follows:
580 michael 1301 * dline - share dlines
581     * undline - share undlines
582 michael 1336 * kline - share klines
583     * unkline - share unklines
584     * xline - share xlines
585     * unxline - share unxlines
586     * resv - share resvs
587     * unresv - share unresvs
588     * locops - share locops
589     * all - share all of the above (default)
590 db 897 */
591     type = kline, unkline, locops, xline, resv;
592     };
593    
594     /*
595 michael 1229 * shared {}: users that are allowed to remote kline
596 db 897 *
597     * NOTE: This can be effectively used for remote klines.
598     * Please note that there is no password authentication
599     * for users setting remote klines. You must also be
600     * /oper'd in order to issue a remote kline.
601     */
602     shared {
603     /*
604     * name: the server the user must be on to set klines. If this is not
605     * specified, the user will be allowed to kline from all servers.
606     */
607     name = "irc2.some.server";
608    
609     /*
610     * user: the user@host mask that is allowed to set klines. If this is
611     * not specified, all users on the server above will be allowed to set
612     * a remote kline.
613     */
614     user = "oper@my.host.is.spoofed";
615    
616     /*
617     * type: list of what to share, options are as follows:
618 michael 1301 * dline - allow oper/server to dline
619     * undline - allow oper/server to undline
620 michael 1336 * kline - allow oper/server to kline
621     * unkline - allow oper/server to unkline
622     * xline - allow oper/server to xline
623     * unxline - allow oper/server to unxline
624     * resv - allow oper/server to resv
625     * unresv - allow oper/server to unresv
626 db 897 * locops - allow oper/server to locops - only used for servers that cluster
627 michael 1336 * all - allow oper/server to do all of the above (default)
628 db 897 */
629     type = kline, unkline, resv;
630     };
631    
632     /*
633 michael 1229 * kill {}: users that are not allowed to connect
634 db 897 * Oper issued klines will be added to the specified kline config
635     */
636     kill {
637     user = "bad@*.hacked.edu";
638     reason = "Obviously hacked account";
639     };
640    
641     kill {
642 michael 951 user = "^O[[:alpha:]]?[[:digit:]]+(x\.o|\.xo)$@^[[:alnum:]]{4}\.evilnet.tld$";
643    
644     /*
645     * NOTE: You have to set type=regex; when using a regular expression
646     * based user entry
647     */
648 db 897 type = regex;
649     };
650    
651     /*
652     * deny {}: IPs that are not allowed to connect (before DNS/ident lookup)
653     * Oper issued dlines will be added to the specified dline config
654     */
655     deny {
656     ip = "10.0.1.0/24";
657     reason = "Reconnecting vhosted bots";
658     };
659    
660     /*
661 michael 1229 * exempt {}: IPs that are exempt from deny {} and Dlines
662 db 897 */
663     exempt {
664     ip = "192.168.0.0/16";
665     };
666    
667     /*
668 michael 1229 * resv {}: nicks and channels users may not use/join
669 db 897 */
670     resv {
671     /* reason: the reason for the proceeding resv's */
672 michael 1157 reason = "Reserved for services";
673 db 897
674     /* resv: the nicks and channels users may not join/use */
675 michael 1217 nick = "Global";
676     nick = "DevNull";
677 michael 1475 nick = "BotServ";
678 michael 1217 nick = "Services";
679     nick = "StatServ";
680 michael 1475 nick = "HelpServ";
681 michael 1217 nick = "HostServ";
682 michael 1157 nick = "NickServ";
683     nick = "ChanServ";
684     nick = "MemoServ";
685     nick = "OperServ";
686 db 897 channel = "#services";
687    
688     /* resv: wildcard masks are also supported in nicks only */
689     reason = "Clone bots";
690     nick = "clone*";
691     };
692    
693     /*
694     * gecos {}: The X: replacement, used for banning users based on
695     * their "realname".
696     */
697     gecos {
698     name = "*sex*";
699     reason = "Possible spambot";
700     };
701    
702     gecos {
703     name = "sub7server";
704     reason = "Trojan drone";
705     };
706    
707     gecos {
708     name = "*http*";
709     reason = "Spambot";
710     };
711    
712     gecos {
713     name = "^\[J[0o]hn Do[3e]\]-[0-9]{2,5}$";
714 michael 951
715     /*
716     * NOTE: You have to set type=regex; when using a regular expression
717     * based name entry
718     */
719 db 897 type = regex;
720     };
721    
722     /*
723     * channel {}: The channel block contains options pertaining to channels
724     */
725     channel {
726     /*
727     * disable_fake_channels: this option, if set to 'yes', will
728     * disallow clients to create or join channels that have one
729     * of the following ASCII characters in their name:
730     *
731     * 2 | bold
732     * 3 | mirc color
733 michael 951 * 15 | plain text
734 db 897 * 22 | reverse
735 michael 1424 * 29 | italic
736 db 897 * 31 | underline
737     * 160 | non-breaking space
738     */
739     disable_fake_channels = yes;
740    
741     /*
742     * restrict_channels: reverse channel RESVs logic, only reserved
743     * channels are allowed
744     */
745     restrict_channels = no;
746    
747     /*
748     * knock_delay: The amount of time a user must wait between issuing
749     * the knock command.
750     */
751 michael 951 knock_delay = 5 minutes;
752 db 897
753     /*
754     * knock_delay_channel: How often a knock to any specific channel
755     * is permitted, regardless of the user sending the knock.
756     */
757     knock_delay_channel = 1 minute;
758    
759     /*
760     * max_chans_per_user: The maximum number of channels a user can
761     * join/be on.
762     */
763     max_chans_per_user = 25;
764    
765 michael 1432 /*
766     * max_chans_per_oper: The maximum number of channels an oper can
767     * join/be on.
768     */
769     max_chans_per_oper = 50;
770    
771 db 897 /* quiet_on_ban: stop banned people talking in channels. */
772     quiet_on_ban = yes;
773    
774     /* max_bans: maximum number of +b/e/I modes in a channel */
775     max_bans = 25;
776    
777     /*
778     * how many joins in how many seconds constitute a flood, use 0 to
779     * disable. +b opers will be notified (changeable via /set)
780     */
781     join_flood_count = 16;
782     join_flood_time = 8 seconds;
783    
784     /*
785     * splitcode: The ircd will now check splitmode every few seconds.
786     *
787     * Either split users or split servers can activate splitmode, but
788     * both conditions must be met for the ircd to deactivate splitmode.
789     *
790     * You may force splitmode to be permanent by /quote set splitmode on
791     */
792    
793     /*
794     * default_split_user_count: when the usercount is lower than this level,
795     * consider ourselves split. This must be set for automatic splitmode.
796     */
797     default_split_user_count = 0;
798    
799     /*
800     * default_split_server_count: when the servercount is lower than this,
801     * consider ourselves split. This must be set for automatic splitmode.
802     */
803     default_split_server_count = 0;
804    
805 michael 959 /* no_create_on_split: disallow users creating channels on split. */
806 db 897 no_create_on_split = yes;
807    
808 michael 959 /* no_join_on_split: disallow users joining channels at all on a split. */
809 db 897 no_join_on_split = no;
810     };
811    
812     /*
813     * serverhide {}: The serverhide block contains the options regarding
814     * serverhiding
815     */
816     serverhide {
817     /*
818     * flatten_links: this option will show all servers in /links appear
819     * that they are linked to this current server
820     */
821     flatten_links = no;
822    
823     /*
824     * links_delay: how often to update the links file when it is
825     * flattened.
826     */
827     links_delay = 5 minutes;
828    
829     /*
830     * hidden: hide this server from a /links output on servers that
831     * support it. This allows hub servers to be hidden etc.
832     */
833     hidden = no;
834    
835     /*
836     * hide_servers: hide remote servernames everywhere and instead use
837     * hidden_name and network_desc.
838     */
839     hide_servers = no;
840    
841     /*
842     * Use this as the servername users see if hide_servers = yes.
843     */
844     hidden_name = "*.hidden.com";
845    
846     /*
847 michael 951 * hide_server_ips: If this is disabled, opers will be unable to see
848     * servers ips and will be shown a masked ip, admins will be shown the
849     * real ip.
850 db 897 *
851 michael 951 * If this is enabled, nobody can see a servers ip. *This is a kludge*,
852     * it has the side effect of hiding the ips everywhere, including
853     * logfiles.
854 db 897 *
855     * We recommend you leave this disabled, and just take care with who you
856     * give admin=yes; to.
857     */
858     hide_server_ips = no;
859     };
860    
861     /*
862     * general {}: The general block contains many of the options that were once
863     * compiled in options in config.h. The general block is read at start time.
864     */
865     general {
866 michael 1157 /* services_name: servername of nick/channel services */
867     services_name = "service.someserver";
868    
869 michael 951 /* max_watch: maximum WATCH entries a client can have. */
870 michael 1070 max_watch = 60;
871 db 897
872 michael 1459 /* gline_enable: enable glines, network wide temp klines */
873     gline_enable = yes;
874    
875 db 897 /*
876 michael 1459 * gline_duration: the amount of time a gline will remain on your
877     * server before expiring
878     */
879     gline_duration = 1 day;
880    
881     /*
882     * gline_request_duration: how long a pending G-line can be around.
883     * 10 minutes should be plenty
884     */
885     gline_request_duration = 10 minutes;
886    
887     /*
888 db 897 * gline_min_cidr: the minimum required length of a CIDR bitmask
889     * for IPv4 based glines
890     */
891     gline_min_cidr = 16;
892    
893     /*
894     * gline_min_cidr6: the minimum required length of a CIDR bitmask
895     * for IPv6 based glines
896     */
897     gline_min_cidr6 = 48;
898    
899     /*
900     * Whether to automatically set mode +i on connecting users.
901     */
902     invisible_on_connect = yes;
903    
904     /*
905     * Show "actually using host <ip>" on /whois when possible.
906     */
907     use_whois_actually = yes;
908    
909     /*
910     * Max time from the nickname change that still causes KILL
911 michael 1074 * automatically to switch for the current nick of that user.
912 db 897 */
913 michael 1074 kill_chase_time_limit = 90 seconds;
914 db 897
915     /*
916 michael 1228 * If hide_spoof_ips is disabled, opers will be allowed to see the real
917     * IP of spoofed users in /trace etc. If this is defined they will be
918     * shown a masked IP.
919 db 897 */
920     hide_spoof_ips = yes;
921    
922     /*
923     * Ignore bogus timestamps from other servers. Yes, this will desync
924     * the network, but it will allow chanops to resync with a valid non TS 0
925     *
926     * This should be enabled network wide, or not at all.
927     */
928     ignore_bogus_ts = no;
929    
930     /*
931     * disable_auth: completely disable ident lookups; if you enable this,
932     * be careful of what you set need_ident to in your auth {} blocks
933     */
934     disable_auth = no;
935    
936     /* disable_remote_commands: disable users doing commands on remote servers */
937     disable_remote_commands = no;
938    
939     /*
940     * tkline_expire_notices: enables or disables temporary kline/xline
941     * expire notices.
942     */
943     tkline_expire_notices = no;
944    
945     /*
946     * default_floodcount: the default value of floodcount that is configurable
947     * via /quote set floodcount. This is the amount of lines a user
948     * may send to any other user/channel in one second.
949     */
950     default_floodcount = 10;
951    
952     /*
953     * failed_oper_notice: send a notice to all opers on the server when
954     * someone tries to OPER and uses the wrong password, host or ident.
955     */
956     failed_oper_notice = yes;
957    
958     /*
959     * dots_in_ident: the amount of '.' characters permitted in an ident
960     * reply before the user is rejected.
961     */
962     dots_in_ident = 2;
963    
964     /*
965     * min_nonwildcard: the minimum non wildcard characters in k/d/g lines
966     * placed via the server. klines hand placed are exempt from limits.
967     * wildcard chars: '.' ':' '*' '?' '@' '!' '#'
968     */
969     min_nonwildcard = 4;
970    
971     /*
972     * min_nonwildcard_simple: the minimum non wildcard characters in
973     * gecos bans. wildcard chars: '*' '?' '#'
974     */
975     min_nonwildcard_simple = 3;
976    
977     /* max_accept: maximum allowed /accept's for +g usermode */
978     max_accept = 20;
979    
980     /* anti_nick_flood: enable the nickflood control code */
981     anti_nick_flood = yes;
982    
983     /* nick flood: the nick changes allowed in the specified period */
984     max_nick_time = 20 seconds;
985     max_nick_changes = 5;
986    
987     /*
988     * anti_spam_exit_message_time: the minimum time a user must be connected
989     * before custom quit messages are allowed.
990     */
991     anti_spam_exit_message_time = 5 minutes;
992    
993     /*
994     * ts delta: the time delta allowed between server clocks before
995     * a warning is given, or before the link is dropped. all servers
996     * should run ntpdate/rdate to keep clocks in sync
997     */
998     ts_warn_delta = 30 seconds;
999     ts_max_delta = 5 minutes;
1000    
1001     /*
1002     * kline_with_reason: show the user the reason why they are k/d/glined
1003     * on exit. May give away who set k/dline when set via tcm.
1004     */
1005     kline_with_reason = yes;
1006    
1007     /*
1008     * kline_reason: show this message to users on channel
1009     * instead of the oper reason.
1010     */
1011     kline_reason = "Connection closed";
1012    
1013     /*
1014     * reject_hold_time: wait this amount of time before disconnecting
1015     * a rejected client. Use 0 to disable.
1016     */
1017     reject_hold_time = 0;
1018    
1019     /*
1020     * warn_no_nline: warn opers about servers that try to connect but
1021     * we don't have a connect {} block for. Twits with misconfigured
1022     * servers can get really annoying with this enabled.
1023     */
1024     warn_no_nline = yes;
1025    
1026     /*
1027     * stats_e_disabled: set this to 'yes' to disable "STATS e" for both
1028     * operators and administrators. Doing so is a good idea in case
1029     * there are any exempted (exempt{}) server IPs you don't want to
1030     * see leaked.
1031     */
1032     stats_e_disabled = no;
1033    
1034     /* stats_o_oper only: make stats o (opers) oper only */
1035     stats_o_oper_only = yes;
1036    
1037     /* stats_P_oper_only: make stats P (ports) oper only */
1038     stats_P_oper_only = yes;
1039    
1040     /*
1041     * stats i oper only: make stats i (auth {}) oper only. set to:
1042     * yes: show users no auth blocks, made oper only.
1043     * masked: show users first matching auth block
1044     * no: show users all auth blocks.
1045     */
1046     stats_i_oper_only = yes;
1047    
1048     /*
1049     * stats_k_oper_only: make stats k/K (klines) oper only. set to:
1050     * yes: show users no auth blocks, made oper only
1051     * masked: show users first matching auth block
1052     * no: show users all auth blocks.
1053     */
1054     stats_k_oper_only = yes;
1055    
1056     /*
1057     * caller_id_wait: time between notifying a +g user that somebody
1058     * is messaging them.
1059     */
1060     caller_id_wait = 1 minute;
1061    
1062     /*
1063     * opers_bypass_callerid: allows operators to bypass +g and message
1064     * anyone who has it set (useful if you use services).
1065     */
1066     opers_bypass_callerid = no;
1067    
1068     /*
1069     * pace_wait_simple: time between use of less intensive commands
1070     * (ADMIN, HELP, (L)USERS, VERSION, remote WHOIS)
1071     */
1072     pace_wait_simple = 1 second;
1073    
1074     /*
1075     * pace_wait: time between more intensive commands
1076 michael 1488 * (AWAY, INFO, LINKS, MAP, MOTD, STATS, WHO, wildcard WHOIS, WHOWAS)
1077 db 897 */
1078     pace_wait = 10 seconds;
1079    
1080     /*
1081     * short_motd: send clients a notice telling them to read the motd
1082     * instead of forcing a motd to clients who may simply ignore it.
1083     */
1084     short_motd = no;
1085    
1086     /*
1087     * ping_cookie: require clients to respond exactly to a ping command,
1088     * can help block certain types of drones and FTP PASV mode spoofing.
1089     */
1090     ping_cookie = no;
1091    
1092     /* no_oper_flood: increase flood limits for opers. */
1093     no_oper_flood = yes;
1094    
1095     /*
1096     * true_no_oper_flood: completely eliminate flood limits for opers
1097     * and for clients with can_flood = yes in their auth {} blocks
1098     */
1099     true_no_oper_flood = yes;
1100    
1101     /* oper_pass_resv: allow opers to over-ride RESVs on nicks/channels */
1102     oper_pass_resv = yes;
1103    
1104     /* REMOVE ME. The following line checks you've been reading. */
1105     havent_read_conf = 1;
1106    
1107     /*
1108     * max_targets: the maximum amount of targets in a single
1109     * PRIVMSG/NOTICE. Set to 999 NOT 0 for unlimited.
1110     */
1111     max_targets = 4;
1112    
1113     /*
1114     * client_flood: maximum amount of data in a clients queue before
1115     * they are dropped for flooding.
1116     */
1117     client_flood = 2560 bytes;
1118    
1119     /*
1120     * message_locale: the default message locale
1121     * Use "standard" for the compiled in defaults.
1122     * To install the translated messages, go into messages/ in the
1123     * source directory and run `make install'.
1124     */
1125     message_locale = "standard";
1126    
1127     /*
1128     * usermodes configurable: a list of usermodes for the options below
1129     *
1130     * +b - bots - See bot and drone flooding notices
1131     * +c - cconn - Client connection/quit notices
1132 michael 959 * +C - cconn_full - Client connection/quit notices full
1133 db 897 * +D - deaf - Don't receive channel messages
1134     * +d - debug - See debugging notices
1135 michael 1426 * +f - full - See auth{} block full notices
1136 db 897 * +G - softcallerid - Server Side Ignore for users not on your channels
1137     * +g - callerid - Server Side Ignore (for privmsgs etc)
1138 michael 1294 * +H - hidden - Hides operator status to other users
1139 db 897 * +i - invisible - Not shown in NAMES or WHO unless you share a
1140     * a channel
1141 michael 1290 * +j - rej - See rejected client notices
1142 db 897 * +k - skill - See server generated KILL messages
1143     * +l - locops - See LOCOPS messages
1144     * +n - nchange - See client nick changes
1145     * +s - servnotice - See general server notices
1146     * +u - unauth - See unauthorized client notices
1147     * +w - wallop - See server generated WALLOPS
1148     * +x - external - See remote server connection and split notices
1149     * +y - spy - See LINKS, STATS, TRACE notices etc.
1150     * +z - operwall - See oper generated WALLOPS
1151     */
1152    
1153     /* oper_only_umodes: usermodes only opers may set */
1154 michael 1294 oper_only_umodes = bots, cconn, cconn_full, debug, full, hidden, skill,
1155 db 897 nchange, rej, spy, external, operwall,
1156     locops, unauth;
1157    
1158     /* oper_umodes: default usermodes opers get when they /oper */
1159     oper_umodes = bots, locops, servnotice, operwall, wallop;
1160    
1161     /*
1162     * use_egd: if your system does not have *random devices yet you
1163     * want to use OpenSSL and encrypted links, enable this. Beware -
1164     * EGD is *very* CPU intensive when gathering data for its pool
1165     */
1166     # use_egd = yes;
1167    
1168     /*
1169     * egdpool_path: path to EGD pool. Not necessary for OpenSSL >= 0.9.7
1170     * which automatically finds the path.
1171     */
1172     # egdpool_path = "/var/run/egd-pool";
1173    
1174     /*
1175     * throttle_time: the minimum amount of time between connections from
1176     * the same ip. exempt {} blocks are excluded from this throttling.
1177     * Offers protection against flooders who reconnect quickly.
1178     * Set to 0 to disable.
1179     */
1180     throttle_time = 10;
1181     };
1182    
1183     modules {
1184     /*
1185 michael 951 * path: other paths to search for modules specified below
1186 michael 1441 * and in "/module load".
1187 db 897 */
1188 michael 1070 path = "/usr/local/ircd/lib/ircd-hybrid/modules";
1189     path = "/usr/local/ircd/lib/ircd-hybrid/modules/autoload";
1190 db 897
1191     /* module: the name of a module to load on startup/rehash */
1192 michael 959 #module = "some_module.la";
1193 db 897 };
1194 michael 1247
1195     /*
1196     * log {}: contains information about logfiles.
1197     */
1198     log {
1199     /* Do you want to enable logging to ircd.log? */
1200     use_logging = yes;
1201    
1202     file {
1203     type = oper;
1204     name = "/home/ircd/var/log/oper.log";
1205 michael 1250 size = unlimited;
1206 michael 1247 };
1207    
1208     file {
1209     type = user;
1210 michael 1249 name = "/home/ircd/var/log/user.log";
1211 michael 1247 size = 50 megabytes;
1212     };
1213    
1214     file {
1215     type = kill;
1216     name = "/home/ircd/var/log/kill.log";
1217     size = 50 megabytes;
1218     };
1219    
1220     file {
1221     type = kline;
1222     name = "/home/ircd/var/log/kline.log";
1223     size = 50 megabytes;
1224     };
1225    
1226     file {
1227     type = dline;
1228     name = "/home/ircd/var/log/dline.log";
1229     size = 50 megabytes;
1230     };
1231    
1232     file {
1233     type = gline;
1234     name = "/home/ircd/var/log/gline.log";
1235     size = 50 megabytes;
1236     };
1237    
1238     file {
1239     type = debug;
1240     name = "/home/ircd/var/log/debug.log";
1241     size = 50 megabytes;
1242     };
1243     };

Properties

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