ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid-7.2/etc/example.efnet.conf
Revision: 639
Committed: Thu Jun 1 14:12:21 2006 UTC (17 years, 10 months ago) by michael
File size: 38333 byte(s)
Log Message:
- Updated example configuration files

File Contents

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

Properties

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