ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/doc/example.conf
Revision: 1229
Committed: Mon Sep 19 11:57:21 2011 UTC (14 years, 10 months ago) by michael
Original Path: ircd-hybrid-8/etc/example.conf
File size: 36376 byte(s)
Log Message:
- Minor cleanups to example configuration files

File Contents

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

Properties

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