]> jfr.im git - irc/rqf/shadowircd.git/blob - doc/reference.conf
Add lines warning people of the confusion that awaits them upon disabling +ah and...
[irc/rqf/shadowircd.git] / doc / reference.conf
1 /* doc/reference.conf - charybdis Example configuration file
2 *
3 * Copyright (C) 2000-2002 Hybrid Development Team
4 * Copyright (C) 2002-2005 ircd-ratbox development team
5 * Copyright (C) 2005-2006 charybdis development team
6 *
7 * Written by ejb, wcampbel, db, leeh and others
8 *
9 * $Id: reference.conf 3582 2007-11-17 21:55:48Z jilles $
10 */
11
12 /* IMPORTANT NOTES:
13 *
14 * class {} blocks MUST be specified before anything that uses them. That
15 * means they must be defined before auth {} and before connect {}.
16 *
17 * auth {} blocks MUST be specified in order of precedence. The first one
18 * that matches a user will be used. So place spoofs first, then specials,
19 * then general access, then restricted.
20 *
21 * privset {} blocks MUST be specified before anything that uses them. That
22 * means they must be defined before operator {}.
23 *
24 * Both shell style (#) and C style comments are supported.
25 *
26 * Files may be included by either:
27 * .include "filename"
28 * .include <filename>
29 *
30 * Times/durations are written as:
31 * 12 hours 30 minutes 1 second
32 *
33 * Valid units of time:
34 * month, week, day, hour, minute, second
35 *
36 * Valid units of size:
37 * megabyte/mbyte/mb, kilobyte/kbyte/kb, byte
38 *
39 * Sizes and times may be singular or plural.
40 */
41
42 /* Extensions:
43 *
44 * ShadowIRCd contains several extensions that are not enabled by default.
45 * To use them, uncomment the lines below. More information on each extension
46 * can be found in extensions/README
47 *
48 * Channel mode +-A (admin only) -- chm_adminonly.so
49 * Channel mode +-O (oper only) -- chm_operonly.so
50 * Channel mode +-S (ssl only) -- chm_sslonly.so
51 * Emulates channel mode +-O (oper only) (+-iI $o) -- chm_operonly_compat.so
52 * Emulates channel mode +-R (quiet unreg) (+-q $~a) -- chm_quietunreg_compat.so
53 * Emulates channel mode +-S (ssl only) (+-b $~z) -- chm_sslonly_compat.so
54 * Restrict channel creation to logged in users -- createauthonly.so
55 * Account bans (+b $a[:mask]) -- extb_account.so
56 * Banned from another channel (+b $j:mask) -- extb_canjoin.so
57 * Other-channel bans (+b $c:mask) -- extb_channel.so
58 * Extended ban (+b $x:mask) -- extb_extgecos.so
59 * Oper bans (+b $o) -- extb_oper.so
60 * Realname (gecos) bans (+b $r:mask) -- extb_realname.so
61 * Server bans (+b $s:mask) -- extb_server.so
62 * SSL bans (+b $z) -- extb_ssl.so
63 * HURT system -- hurt.so
64 * New host mangling (umode +x) -- ip_cloaking.so
65 * Find channel forwards -- m_findforwards.so
66 * /identify support -- m_identify.so
67 * /mkpassword support -- m_mkpasswd.so
68 * Send message to all admins network-wide -- m_adminwall.so
69 * /opme - op self in opless channels, admin only -- m_opme.so
70 * /ojoin - join despite restrictions, admin only -- m_ojoin.so
71 * /omode - force modes in channels, admin only -- m_omode.so
72 * /olist - see all channels in /list, oper only -- m_olist.so
73 * /forcejoin - force join users, admin only -- m_force.so
74 * Opers cannot be invisible (umode +i) -- no_oper_invis.so
75 * Far connection notices (snomask +F) -- sno_farconnect.so
76 * Remote k/d/x line active notices -- sno_globalkline.so
77 * Remote oper up notices -- sno_globaloper.so
78 * /whois notifications (snomask +W) -- sno_whois.so
79 */
80 #loadmodule "extensions/chm_adminonly.so";
81 loadmodule "extensions/chm_operonly.so";
82 #loadmodule "extensions/chm_sslonly.so";
83 #loadmodule "extensions/chm_operonly_compat.so";
84 #loadmodule "extensions/chm_quietunreg_compat.so";
85 #loadmodule "extensions/chm_sslonly_compat.so";
86 #loadmodule "extensions/createauthonly.so";
87 loadmodule "extensions/extb_account.so";
88 loadmodule "extensions/extb_canjoin.so";
89 loadmodule "extensions/extb_channel.so";
90 loadmodule "extensions/extb_extgecos.so";
91 loadmodule "extensions/extb_oper.so";
92 loadmodule "extensions/extb_realname.so";
93 #loadmodule "extensions/extb_server.so";
94 #loadmodule "extensions/extb_ssl.so";
95 #loadmodule "extensions/hurt.so";
96 loadmodule "extensions/ip_cloaking.so";
97 #loadmodule "extensions/m_findforwards.so";
98 loadmodule "extensions/m_identify.so";
99 loadmodule "extensions/m_mkpasswd.so";
100 #loadmodule "extensions/m_adminwall.so";
101 #loadmodule "extensions/m_opme.so";
102 #loadmodule "extensions/m_ojoin.so";
103 #loadmodule "extensions/m_omode.so";
104 #loadmodule "extensions/m_olist.so";
105 #loadmodule "extensions/m_force.so";
106 #loadmodule "extensions/no_oper_invis.so";
107 loadmodule "extensions/sno_farconnect.so";
108 loadmodule "extensions/sno_globalkline.so";
109 loadmodule "extensions/sno_globaloper.so";
110 #loadmodule "extensions/sno_whois.so";
111
112
113 /* serverinfo {}: Contains information about the server. (OLD M:) */
114 serverinfo {
115 /* name: the name of our server */
116 name = "hades.arpa";
117
118 /* sid: the unique server id of our server. This must be three
119 * characters long. The first character must be a digit [0-9], the
120 * remaining two chars may be letters [A-Z] or digits [0-9].
121 *
122 * This parameter must be specified for the server to start.
123 */
124 sid = "42X";
125
126 /* description: the description of our server. '[' and ']' may not
127 * be used here for compatibility with older servers.
128 */
129 description = "shadowircd test server";
130
131 /* network info: the name and description of the network this server
132 * is on. Shown in the 005 reply and used with serverhiding.
133 */
134 network_name = "MyNet";
135 network_desc = "This is My Network";
136
137 /* hub: allow this server to act as a hub and have multiple servers
138 * connected to it.
139 */
140 hub = no;
141
142 /* vhost: the IP to bind to when we connect outward to ipv4 servers.
143 * This should be an ipv4 IP only.
144 */
145 #vhost = "192.169.0.1";
146
147 /* vhost6: the IP to bind to when we connect outward to ipv6 servers.
148 * This should be an ipv6 IP only.
149 */
150 #vhost6 = "3ffe:80e8:546::2";
151
152 /* ssl_private_key: our ssl private key */
153 ssl_private_key = "etc/test.key";
154
155 /* ssl_cert: certificate for our ssl server */
156 ssl_cert = "etc/test.cert";
157
158 /* ssl_dh_params: DH parameters, generate with openssl dhparam -out dh.pem 1024 */
159 ssl_dh_params = "etc/dh.pem";
160
161 /* ssld_count: number of ssld processes you want to start, if you
162 * have a really busy server, using N-1 where N is the number of
163 * cpu/cpu cores you have might be useful. A number greater than one
164 * can also be useful in case of bugs in ssld and because ssld needs
165 * two file descriptors per SSL connection.
166 */
167 ssld_count = 1;
168
169 /* default max clients: the default maximum number of clients
170 * allowed to connect. This can be changed once ircd has started by
171 * issuing:
172 * /quote set maxclients <limit>
173 */
174 default_max_clients = 1024;
175 };
176
177 /* admin {}: contains admin information about the server. (OLD A:) */
178 admin {
179 name = "Smurf target";
180 description = "Main Server Administrator";
181 email = "<syn@packets.r.us>";
182 };
183
184 /* log {}: contains information about logfiles. */
185 log {
186 /* logfiles: the logfiles to use for specific activity. if these
187 * paths are defined, then ircd will log to them, otherwise it wont.
188 *
189 * The confs are, in order:
190 * - userlog: user exits
191 * - fuserlog: failed user connections
192 * - operlog: /oper usage
193 * - foperlog: failed /oper usage
194 * - serverlog: server connects/disconnects
195 * - klinelog: klines, etc
196 * - killlog: kills
197 * - operspylog: operspy usage
198 * - ioerrorlog: IO errors
199 */
200 fname_userlog = "logs/userlog";
201 #fname_fuserlog = "logs/fuserlog";
202 fname_operlog = "logs/operlog";
203 #fname_foperlog = "logs/foperlog";
204 fname_serverlog = "logs/serverlog";
205 #fname_klinelog = "logs/klinelog";
206 fname_killlog = "logs/killlog";
207 fname_operspylog = "logs/operspylog";
208 #fname_ioerrorlog = "logs/ioerror";
209 };
210
211 /* class {}: contain information about classes for users (OLD Y:) */
212 class "users" {
213 /* class name must go above */
214
215 /* ping time: how often a client must reply to a PING from the
216 * server before they are dropped.
217 */
218 ping_time = 2 minutes;
219
220 /* number per ident: the number of users per user@host networkwide
221 * allowed to connect. Unidented connections are classified as
222 * the same ident.
223 */
224 number_per_ident = 2;
225
226 /* number per ip: the number of local users per host allowed */
227 number_per_ip = 3;
228
229 /* number per ip global: the number of network wide connections
230 * per host allowed for a user, including connections to the
231 * local server.
232 */
233 number_per_ip_global = 5;
234
235 /* cidr_ipv4_bitlen: Limits numbers of connections from a subnet size
236 */
237 cidr_ipv4_bitlen = 24;
238
239 /* cidr_ipv6_bitlen: Limits numbers of connections from a subnet size
240 * the following example makes the subnet /64 this is useful
241 * for IPv6 connections in particular
242 */
243 cidr_ipv6_bitlen = 64;
244
245 /* number_per_cidr: Number of connections to allow from a subnet of the
246 * size given in cidr_ipv4_bitlen/cidr_ipv6_bitlen.
247 * 4 seems to be a good default to me.
248 */
249 number_per_cidr = 4;
250
251 /* max number: the maximum number of users allowed in this class */
252 max_number = 100;
253
254 /* sendq: the amount of data allowed in a clients queue before
255 * they are dropped.
256 */
257 sendq = 100 kbytes;
258 };
259
260 class "restricted" {
261 ping_time = 1 minute 30 seconds;
262 number_per_ip = 1;
263 max_number = 100;
264 sendq = 60kb;
265 };
266
267 class "opers" {
268 ping_time = 5 minutes;
269 number_per_ip = 10;
270 max_number = 100;
271 sendq = 100kbytes;
272 };
273
274 class "server" {
275 ping_time = 5 minutes;
276
277 /* connectfreq: only used in server classes. specifies the delay
278 * between autoconnecting to servers.
279 */
280 connectfreq = 5 minutes;
281
282 /* max number: the amount of servers to autoconnect to */
283 max_number = 1;
284
285 /* sendq: servers need a higher sendq as they are sent more data */
286 sendq=2 megabytes;
287 };
288
289 /* listen {}: contain information about the ports ircd listens on (OLD P:) */
290 listen {
291 /* port: the specific port to listen on. if no host is specified
292 * before, it will listen on all available IPs.
293 *
294 * sslport: the specific port to listen ssl connections on. if no
295 * host is specified before, it will listen on all available IPs.
296 *
297 * ports are seperated via a comma, a range may be specified using ".."
298 */
299
300 /* port: listen on all available IPs, ports 5000 and 6665 to 6669 */
301 port = 5000, 6665 .. 6669;
302
303 /* sslport: listen for ssl connections on all available IPs, port 9999 */
304 sslport = 9999;
305
306 /* host: set a specific IP/host the ports after the line will listen
307 * on. This may be ipv4 or ipv6.
308 */
309 host = "1.2.3.4";
310 port = 7000, 7001;
311 sslport = 9000, 9001;
312
313 host = "3ffe:1234:a:b:c::d";
314 port = 7002;
315 sslport = 9002;
316 };
317
318 /* auth {}: allow users to connect to the ircd (OLD I:) */
319 auth {
320 /* user: the user@host allowed to connect. Multiple IPv4/IPv6 user
321 * lines are permitted per auth block. This is matched against the
322 * hostname and IP address (using :: shortening for IPv6 and
323 * prepending a 0 if it starts with a colon) and can also use CIDR
324 * masks.
325 */
326 user = "*@172.16.0.0/12";
327 user = "*test@123D:B567:*";
328
329 /* password: an optional password that is required to use this block.
330 * By default this is not encrypted, specify the flag "encrypted" in
331 * flags = ...; below if it is.
332 */
333 password = "letmein";
334
335 /* spoof: fake the users user@host to be be this. You may either
336 * specify a host or a user@host to spoof to. This is free-form,
337 * just do everyone a favour and dont abuse it. (OLD I: = flag)
338 */
339 spoof = "I.still.hate.packets";
340
341 /* autojoin: Channel (or channels, comma-seperated) to join users
342 * in this auth block to on connect. Note that this won't join
343 * the user through any bans or otherwise restrictive chmodes.
344 */
345 autojoin = "#shadowircd,#test";
346
347 /* autojoin_opers : Channel (or channels, comma-seperated) to join
348 * opers to on oper-up.
349 */
350 autojoin_opers = "#opers,#help";
351
352 /* Possible flags in auth:
353 *
354 * encrypted | password is encrypted with mkpasswd
355 * spoof_notice | give a notice when spoofing hosts
356 * exceed_limit (old > flag) | allow user to exceed class user limits
357 * kline_exempt (old ^ flag) | exempt this user from k/g/xlines&dnsbls
358 * dnsbl_exempt | exempt this user from dnsbls
359 * spambot_exempt | exempt this user from spambot checks
360 * shide_exempt | exempt this user from serverhiding
361 * jupe_exempt | exempt this user from generating
362 * warnings joining juped channels
363 * resv_exempt | exempt this user from resvs
364 * flood_exempt | exempt this user from flood limits
365 * USE WITH CAUTION.
366 * no_tilde (old - flag) | don't prefix ~ to username if no ident
367 * need_ident (old + flag) | require ident for user in this class
368 * need_ssl | require SSL/TLS for user in this class
369 * need_sasl | require SASL id for user in this class
370 */
371 flags = kline_exempt, exceed_limit;
372
373 /* class: the class the user is placed in */
374 class = "opers";
375 };
376
377 auth {
378 /* redirect: the server and port to redirect a user to. A user does
379 * not have to obey the redirection, the ircd just suggests to them
380 * an alternative server.
381 */
382 redirserv = "irc.some.domain";
383 redirport = 6667;
384
385 user = "*.some.domain";
386
387 /* class: a class is required even though it is not used */
388 class = "users";
389 };
390
391 auth {
392 user = "*@*";
393 class = "users";
394
395 flags = need_ident;
396 };
397
398 /* privset{}: defines operator privilege sets. */
399 privset "local_op" {
400 /* privs: controls the activities and commands an oper is
401 * allowed to do on the server
402 *
403 * Available options:
404 *
405 * oper:local_kill: allows local users to be /KILL'd
406 * oper:global_kill: allows local and remote users to be /KILL'd
407 * oper:routing: allows remote SQUIT and CONNECT
408 * oper:kline: allows KLINE and DLINE
409 * oper:unkline: allows UNKLINE and UNDLINE
410 * snomask:nick_changes: allows oper to see nickchanges via snomask +n
411 * oper:rehash: allows oper to REHASH config
412 * oper:die: allows DIE and RESTART
413 * oper:admin: gives admin privileges. admins
414 * may (un)load modules and see various
415 * additional information.
416 * oper:hidden_admin: gives admin privileges except
417 * will not have the admin lines in
418 * whois.
419 * oper:xline: allows use of /quote xline/unxline
420 * oper:resv: allows /quote resv/unresv and cmode +LP
421 * oper:operwall: allows the oper to send/receive operwalls
422 * oper:spy: allows 'operspy' features to see through +s
423 * channels etc. see /quote help operspy
424 * oper:hidden: hides the oper from /stats p
425 * oper:remoteban: allows remote kline etc
426 * oper:mass_notice: allows sending wallops and mass notices
427 */
428 privs = oper:local_kill, oper:operwall;
429 };
430
431 privset "server_bot" {
432 /* extends: a privset to inherit in this privset */
433 extends = "local_op";
434 privs = oper:kline, oper:remoteban, snomask:nick_changes;
435 };
436
437 privset "global_op" {
438 extends = "local_op";
439 privs = oper:global_kill, oper:routing, oper:kline, oper:unkline, oper:xline,
440 oper:resv, oper:mass_notice, oper:remoteban;
441 };
442
443 privset "admin" {
444 extends = "global_op";
445 privs = oper:admin, oper:die, oper:rehash, oper:spy;
446 };
447
448 /* operator {}: defines ircd operators. (OLD O:) */
449 operator "god" {
450 /* name: the name of the oper must go above */
451
452 /* user: the user@host required for this operator. CIDR *is*
453 * supported now. auth{} spoofs work here, other spoofs do not.
454 * multiple user="" lines are supported.
455 */
456 user = "*god@*";
457 user = "*@127.0.0.1";
458
459 /* password: the password required to oper. Unless ~encrypted is
460 * contained in flags = ...; this will need to be encrypted using
461 * mkpasswd, MD5 is supported
462 */
463 password = "etcnjl8juSU1E";
464
465 /* rsa key: the public key for this oper when using Challenge.
466 * A password should not be defined when this is used, see
467 * doc/challenge.txt for more information.
468 */
469 #rsa_public_key_file = "/usr/local/ircd/etc/oper.pub";
470
471 /* fingerprint: if specified, the oper's client certificate
472 * fingerprint will be checked against the specified fingerprint
473 * below.
474 */
475 #fingerprint = "c77106576abf7f9f90cca0f63874a60f2e40a64b";
476
477 /* umodes: the specific umodes this oper gets when they oper.
478 * If this is specified an oper will not be given oper_umodes
479 * These are described above oper_only_umodes in general {};
480 */
481 #umodes = locops, servnotice, operwall, wallop;
482
483 /* snomask: specific server notice mask on oper up.
484 * If this is specified an oper will not be given oper_snomask.
485 */
486 snomask = "+Zbfkrsuy";
487
488 /* flags: misc options for the operator. You may prefix an option
489 * with ~ to disable it, e.g. ~encrypted.
490 *
491 * Default flags are encrypted.
492 *
493 * Available options:
494 *
495 * encrypted: the password above is encrypted [DEFAULT]
496 * need_ssl: must be using SSL/TLS to oper up
497 */
498 flags = encrypted;
499
500 /* privset: privileges set to grant */
501 privset = "admin";
502 };
503
504 /* connect {}: controls servers we connect to (OLD C:, N:, H:, L:) */
505 connect "irc.uplink.com" {
506 /* the name must go above */
507
508 /* host: the host or IP to connect to. If a hostname is used it
509 * must match the reverse dns of the server.
510 */
511 host = "192.168.0.1";
512
513 /* vhost: the host or IP to bind to for this connection. If this
514 * is not specified, the default vhost (in serverinfo {}) is used.
515 */
516 #vhost = "192.168.0.50";
517
518 /* passwords: the passwords we send (OLD C:) and accept (OLD N:).
519 * The remote server will have these passwords reversed.
520 */
521 send_password = "password";
522 accept_password = "anotherpassword";
523
524 /* port: the port to connect to this server on */
525 port = 6666;
526
527 /* hub mask: the mask of servers that this server may hub. Multiple
528 * entries are permitted
529 */
530 hub_mask = "*";
531
532 /* leaf mask: the mask of servers this server may not hub. Multiple
533 * entries are permitted. Useful for forbidding EU -> US -> EU routes.
534 */
535 #leaf_mask = "*.uk";
536
537 /* class: the class this server is in */
538 class = "server";
539
540 /* flags: controls special options for this server
541 * encrypted - marks the accept_password as being crypt()'d
542 * autoconn - automatically connect to this server
543 * compressed - compress traffic via ziplinks
544 * topicburst - burst topics between servers
545 * ssl - ssl/tls encrypted server connections
546 */
547 flags = compressed, topicburst;
548 };
549
550 connect "ipv6.some.server" {
551 /* Hosts that are IPv6 addresses must be in :: shortened form
552 * if applicable. Addresses starting with a colon get an extra
553 * zero prepended, for example: 0::1
554 */
555 host = "3ffd:dead:beef::1";
556 send_password = "password";
557 accept_password = "password";
558 port = 6666;
559
560 /* aftype: controls whether the connection uses "ipv4" or "ipv6".
561 * Default is ipv4.
562 */
563 aftype = ipv6;
564 class = "server";
565 };
566
567 connect "ssl.uplink.com" {
568 /* Example of ssl server-to-server connection, ssl flag doesn't need
569 * compressed flag, 'cause it uses own compression
570 */
571 host = "192.168.0.1";
572 send_password = "password";
573 accept_password = "anotherpassword";
574 port = 9999;
575 hub_mask = "*";
576 class = "server";
577 flags = ssl, topicburst;
578 };
579
580 /* cluster {}; servers that we propagate things to automatically.
581 * NOTE: This does NOT grant them privileges to apply anything locally,
582 * you must add a seperate shared block for that. Clustering will
583 * only be done for actions by LOCAL opers, that arent directed
584 * remotely.
585 */
586 cluster {
587 /* name: the server to share with, this can be a wildcard and may be
588 * stacked.
589 */
590 /* flags: list of what to share, all the name lines above this (up
591 * until another flags entry) will receive these flags.
592 *
593 * kline - share perm klines
594 * tkline - share temp klines
595 * unkline - share unklines
596 * locops - share locops
597 * xline - share perm xlines
598 * txline - share temp xlines
599 * unxline - share unxlines
600 * resv - share perm resvs
601 * tresv - share temp resvs
602 * unresv - share unresvs
603 * all - share all of the above
604 */
605
606 /* share klines/unklines/xlines with *.lan */
607 name = "*.lan";
608 flags = kline, unkline, xline;
609
610 /* share locops with irc.ircd-ratbox.org and ircd.ircd-ratbox.org */
611 name = "irc.ircd-ratbox.org";
612 name = "ircd.ircd-ratbox.org";
613 flags = locops;
614 };
615
616 /* service{}: privileged servers (services). These servers have extra
617 * privileges such as setting login names on users and introducing clients
618 * with umode +S (unkickable, hide channels, etc). This does not allow them
619 * to set bans, you need a separate shared{} for that.
620 * Do not place normal servers here.
621 * There may be only one service{} block.
622 */
623 service {
624 /* name: the server name. These may be stacked. */
625 name = "services.int";
626 };
627
628 /* shared {}: users that are allowed to place remote bans on our server.
629 * NOTE: These are ordered top down. The first one the user@host and server
630 * matches will be used. Their access will then be decided on that
631 * block and will not fall back to another block that matches.
632 */
633 shared {
634 /* oper: the user@host and server the user must be on to set klines.
635 * The first field must be a user@host, the second field is an
636 * optional server. These may be stacked.
637 */
638 /* flags: list of what to allow them to place, all the oper lines
639 * above this (up until another flags entry) will receive these
640 * flags. This *must* be present.
641 *
642 * kline - allow setting perm/temp klines
643 * tkline - allow setting temp klines
644 * unkline - allow removing klines
645 * xline - allow setting perm/temp xlines
646 * txline - allow setting temp xlines
647 * unxline - allow removing xlines
648 * resv - allow setting perm/temp resvs
649 * tresv - allow setting temp resvs
650 * unresv - allow removing xlines
651 * all - allow oper/server to do all of above.
652 * locops - allow locops - only used for servers who cluster
653 * rehash - allow rehashing
654 * dline - allow setting perm/temp dlines
655 * tdline - allow setting temp dlines
656 * undline - allow removing dlines
657 * none - disallow everything
658 */
659
660 /* allow flame@*.leeh.co.uk on server irc.ircd-ratbox.org and
661 * allow leeh@*.leeh.co.uk on server ircd.ircd-ratbox.org to kline
662 */
663 oper = "flame@*.leeh.co.uk", "irc.ircd-ratbox.org";
664 oper = "leeh@*.leeh.co.uk", "ircd.ircd-ratbox.org";
665 flags = kline;
666
667 /* you may forbid certain opers/servers from doing anything */
668 oper = "irc@vanity.oper", "*";
669 oper = "*@*", "irc.vanity.server";
670 oper = "irc@another.vanity.oper", "bigger.vanity.server";
671 flags = none;
672
673 /* or allow everyone to place temp klines */
674 oper = "*@*";
675 flags = tkline;
676 };
677
678 /* exempt {}: IPs that are exempt from Dlines and rejectcache. (OLD d:) */
679 exempt {
680 ip = "192.168.0.0/16";
681
682 /* these may be stacked */
683 ip = "127.0.0.1";
684 ip = "10.0.0.0/8";
685 };
686
687 /* The channel block contains options pertaining to channels */
688 channel {
689 /* autochanmodes: Modes that will be set on a unregistered channel
690 * when the first user joins it.
691 */
692 autochanmodes = "nt";
693
694 /* halfop: Enable/disable channel mode +h, which adds halfop,
695 * a channel status below op that has op powers (kick, ban, mode, etc.)
696 * halfops can only kick/devoice/etc people who are +v or
697 * do not have any channel status. Disabling this via rehash will
698 * cause things which are rather confusing to occur, it is highly
699 * recommended to restart if you wish to disable this option, though
700 * it may be enabled by rehash with no problems.
701 */
702 use_halfop = yes;
703
704 /* owner: Enable/disable channel mode +a, which adds owner,
705 * a channel status above op that has op powers (kick, ban, mode, etc.)
706 * owners can only be kicked/deownered by other owners, and may kick
707 * or deop ops and halfops. Disabling this via rehash will
708 * cause things which are rather confusing to occur, it is highly
709 * recommended to restart if you wish to disable this option, though
710 * it may be enabled by rehash with no problems.
711 */
712 use_owner = yes;
713
714 /* invex: Enable/disable channel mode +I, a n!u@h list of masks
715 * that can join a +i channel without an invite.
716 */
717 use_invex = yes;
718
719 /* except: Enable/disable channel mode +e, a n!u@h list of masks
720 * that can join a channel through a ban (+b).
721 */
722 use_except = yes;
723
724 /* forward: Enable/disable channel mode +f, a channel to forward
725 * users to if they can't join because of +i etc.
726 */
727 use_forward = yes;
728
729 /* knock: Allows users to request an invite to a channel that
730 * is locked somehow (+ikl). If the channel is +p or you are banned
731 * the knock will not be sent.
732 */
733 use_knock = yes;
734
735 /* knock delay: The amount of time a user must wait between issuing
736 * the knock command.
737 */
738 knock_delay = 5 minutes;
739
740 /* knock channel delay: How often a knock to any specific channel
741 * is permitted, regardless of the user sending the knock.
742 */
743 knock_delay_channel = 1 minute;
744
745 /* max chans: The maximum number of channels a user can join/be on. */
746 max_chans_per_user = 15;
747
748 /* max bans: maximum number of +b/e/I/q modes in a channel */
749 max_bans = 25;
750
751 /* max bans: maximum number of +b/e/I/q modes in a +L channel */
752 max_bans_large = 500;
753
754 /* splitcode: split users, split servers and either no join on split
755 * or no create on split must be enabled for split checking.
756 * splitmode will be entered on either split users or split servers
757 * dropping below the limit.
758 *
759 * you may force splitmode to be permanent by /quote set splitmode on
760 */
761
762 /* split users: when the usercount is lower than this level, consider
763 * ourselves split. this must be set for automatic splitmode
764 */
765 default_split_user_count = 0;
766
767 /* split servers: when the amount of servers that have acknowledged
768 * theyve finished bursting is lower than this, consider ourselves
769 * split. this must be set for automatic splitmode
770 */
771 default_split_server_count = 0;
772
773 /* split: no create: disallow users creating channels on split */
774 no_create_on_split = no;
775
776 /* split: no join: disallow users joining channels at all on a split */
777 no_join_on_split = no;
778
779 /* burst topicwho: when bursting topics, also burst the topic setter */
780 burst_topicwho = yes;
781
782 /* kick on split riding: kick users riding splits to join +i or +k
783 * channels. more precisely, if a bursting server sends an SJOIN
784 * for a channel with a lower TS with either a +i mode or a +k
785 * mode with a different key, kick all local users.
786 *
787 * note: this does not take +r, +b, +e and +I into account.
788 *
789 * warning: if there are any TS5 servers on the network, this
790 * will cause ban desyncs if they send such an SJOIN and the
791 * splitriders added any bans (our side will lose them, the TS5
792 * side will accept them). we will send a notice to the channel
793 * if this happens. most services do not send such SJOINs but
794 * ratbox-services does.
795 */
796 kick_on_split_riding = no;
797
798 /* only ascii channels: disable local users joining channels
799 * containing characters outside the range 33-126 (non-printable
800 * or non-ASCII).
801 */
802 only_ascii_channels = no;
803
804 /* cycle_host_change: Should a user be cycled in the channels
805 * they're in when their host changes. If set to no, this may
806 * cause client desyncs.
807 */
808 cycle_host_change = yes;
809
810 /* host_in_topic: Defines whether or not the topicsetter's
811 * host is shown when users request the TOPIC. If this option
812 * is set to no, it will only show the nick of the topicsetter.
813 */
814 host_in_topic = yes;
815
816 /* resv_forcepart: force any local users to part a channel
817 * when a RESV is issued.
818 */
819 resv_forcepart = yes;
820
821 /* kick_no_rejoin_time: the amount of time that a user cannot
822 * rejoin for after being kicked out of a +J channel.
823 */
824 kick_no_rejoin_time = 30 seconds;
825 };
826
827
828 /* The serverhide block contains the options regarding serverhiding */
829 serverhide {
830 /* flatten links: this option will hide various routing information
831 * and make all servers in /links appear that they are linked to
832 * this server.
833 */
834 flatten_links = no;
835
836 /* links delay: how long to wait before showing splits or new
837 * servers in a flattened /links output.
838 */
839 links_delay = 5 minutes;
840
841 /* hidden: hide this server from a /links output on servers with
842 * flatten_links enabled. this allows hub servers to be hidden etc.
843 */
844 hidden = no;
845
846 /* disable hidden: prevent servers hiding themselves from a
847 * /links ouput.
848 */
849 disable_hidden = no;
850 };
851
852 /* These are the blacklist settings.
853 * You can have multiple combinations of host and rejection reasons.
854 * They are used in pairs of one host/rejection reason.
855 *
856 * These settings should be adequate for most networks, and are (presently)
857 * required for use on AthemeNet.
858 *
859 * Word to the wise: Do not use blacklists like SPEWS for blocking IRC
860 * connections.
861 *
862 * As of charybdis 2.2, you can do some keyword substitution on the rejection
863 * reason. The available keyword substitutions are:
864 *
865 * ${ip} - the user's IP
866 * ${host} - the user's canonical hostname
867 * ${dnsbl-host} - the dnsbl hostname the lookup was done against
868 * ${nick} - the user's nickname
869 * ${network-name} - the name of the network
870 *
871 * Note: AHBL (the providers of the below *.ahbl.org BLs) request that they be
872 * contacted, via email, at admins@2mbit.com before using these BLs.
873 * See <http://www.ahbl.org/services.php> for more information.
874 */
875 blacklist {
876 host = "dnsbl.dronebl.org";
877 reject_reason = "${nick}, your IP (${ip}) is listed in DroneBL. For assistance, see http://dronebl.org/lookup_branded.do?ip=${ip}&network=${network-name}";
878
879 # host = "ircbl.ahbl.org";
880 # reject_reason = "${nick}, your IP (${ip}) is listed in ${dnsbl-host} for having an open proxy. In order to protect ${network-name} from abuse, we are not allowing connections with open proxies to connect.";
881 #
882 # host = "tor.ahbl.org";
883 # reject_reason = "${nick}, your IP (${ip}) is listed as a TOR exit node. In order to protect ${network-name} from tor-based abuse, we are not allowing TOR exit nodes to connect to our network.";
884 };
885
886 /*
887 * Alias blocks allow you to define custom commands. (Old m_sshortcut.c)
888 * They send PRIVMSG to the given target. A real command takes
889 * precedence above an alias.
890 */
891 alias "NickServ" {
892 /* the name must go above */
893
894 /* target: the target nick (must be a network service) or
895 * user@server (cannot be this server, only opers can use
896 * user starting with "opers" reliably, interpreted on the target
897 * server only so you may need to use nick@server instead)
898 */
899 target = "NickServ";
900 };
901
902 alias "ChanServ" {
903 target = "ChanServ";
904 };
905
906 alias "OperServ" {
907 target = "OperServ";
908 };
909
910 alias "MemoServ" {
911 target = "MemoServ";
912 };
913
914 alias "HostServ" {
915 target = "HostServ";
916 };
917
918 alias "BotServ" {
919 target = "BotServ";
920 };
921
922 alias "NS" {
923 target = "NickServ";
924 };
925
926 alias "CS" {
927 target = "ChanServ";
928 };
929
930 alias "OS" {
931 target = "OperServ";
932 };
933
934 alias "MS" {
935 target = "MemoServ";
936 };
937
938 alias "HS" {
939 target = "HostServ";
940 };
941
942 alias "BS" {
943 target = "BotServ";
944 };
945
946 /* The general block contains many of the options that were once compiled
947 * in options in config.h. The general block is read at start time.
948 */
949 general {
950 /* hide error messages: defines whether error messages from
951 * servers that are not deemed fully safe are hidden or not.
952 * These can sometimes contain IPs and can have an adverse
953 * effect on server ip hiding. Set to:
954 * yes: hide from opers and admin
955 * opers: hide from opers only
956 * no: do not hide error messages
957 * Admins on other servers count as opers.
958 */
959 hide_error_messages = opers;
960
961 /* hide spoof ips: hide the real ips of auth{} spoofed users
962 * If disabled, local opers can see them.
963 * Dynamic spoofs (e.g. set by services) are unaffected by this;
964 * any oper (local and remote) can see the real ip.
965 * Warning: for whowas, this is checked when the client exits,
966 * not when the IP is shown.
967 */
968 hide_spoof_ips = yes;
969
970 /* default umodes: umodes to set upon connection
971 * If you have enabled the ip_cloaking extension, and you wish for
972 * incoming clients to be cloaked upon connection, +x must be in
973 * the umode string below.
974 */
975 default_umodes = "+ix";
976
977 /* default operstring: defines the default oper response
978 * in /whois queries, eg "is an IRC Operator".
979 * After startup use /quote set operstring to change.
980 */
981 default_operstring = "is an IRC Operator";
982
983 /* default adminstring: defines the default admin response
984 * in /whois queries, eg "is a Server Administrator".
985 * After startup use /quote set adminstring to change.
986 */
987 default_adminstring = "is a Server Administrator";
988
989 /* servicestring: defines the response for opered services (+S)
990 * in /whois queries, eg "is a Network Service".
991 * This is updated on rehash.
992 */
993 servicestring = "is a Network Service";
994
995 /* disable fake channels: disable local users joining fake versions
996 * of channels, eg #foo^B^B. Disables bold, mirc colour, reverse,
997 * underline and hard space. (ASCII 2, 3, 22, 31, 160 respectively).
998 */
999 disable_fake_channels = no;
1000
1001 /* tkline_expire_notices: give a notice to opers when a tkline
1002 * expires
1003 */
1004 tkline_expire_notices = no;
1005
1006 /* floodcount: the default value of floodcount that is configurable
1007 * via /quote set floodcount. This is the amount of lines a user
1008 * may send to any other user/channel in one second.
1009 */
1010 default_floodcount = 10;
1011
1012 /* failed oper notice: send a notice to all opers on the server when
1013 * someone tries to OPER and uses the wrong password, host or ident.
1014 */
1015 failed_oper_notice = yes;
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=2;
1021
1022 /* min nonwildcard: the minimum non wildcard characters in k/d/g lines
1023 * placed via the server. klines hand placed are exempt from limits.
1024 * wildcard chars: '.' '*' '?' '@'
1025 */
1026 min_nonwildcard = 4;
1027
1028 /* min nonwildcard simple: the minimum non wildcard characters in
1029 * xlines/resvs placed via the server.
1030 * wildcard chars: '*' '?'
1031 */
1032 min_nonwildcard_simple = 3;
1033
1034 /* max accept: maximum allowed /accept's for +g usermode */
1035 max_accept = 20;
1036
1037 /* max monitor: the maximum amount of nicknames a client may have in
1038 * their monitor (server-side notify) list.
1039 */
1040 max_monitor = 100;
1041
1042 /* nick flood: enable the nickflood control code */
1043 anti_nick_flood = yes;
1044
1045 /* nick flood: the nick changes allowed in the specified period */
1046 max_nick_time = 20 seconds;
1047 max_nick_changes = 5;
1048
1049 /* anti spam time: the minimum time a user must be connected before
1050 * custom quit messages are allowed.
1051 */
1052 anti_spam_exit_message_time = 5 minutes;
1053
1054 /* ts delta: the time delta allowed between server clocks before
1055 * a warning is given, or before the link is dropped. all servers
1056 * should run ntpdate/rdate to keep clocks in sync
1057 */
1058 ts_warn_delta = 30 seconds;
1059 ts_max_delta = 5 minutes;
1060
1061 /* client exit: prepend a users quit message with "Client exit: " */
1062 client_exit = yes;
1063
1064 /* collision fnc: change user's nick to their UID instead of
1065 * killing them, if possible. This setting only applies to nick
1066 * collisions detected on this server. Only enable this if
1067 * all servers on the network allow remote nicks to start with
1068 * a digit.
1069 */
1070 collision_fnc = yes;
1071
1072 /* global snotices: send out certain snotices (most +b, +f, +y,
1073 * some +s) to other servers via ENCAP SNOTE. Received SNOTEs are
1074 * displayed unconditionally.
1075 */
1076 global_snotices = yes;
1077
1078 /* dline reason: show the user the dline reason when they connect
1079 * and are dlined.
1080 */
1081 dline_with_reason = yes;
1082
1083 /* kline delay: delay the checking of klines until a specified time.
1084 * Useful if large kline lists are applied often to prevent the
1085 * server eating CPU.
1086 */
1087 kline_delay = 0 seconds;
1088
1089 /* kline reason: show the user the reason why they are k/dlined
1090 * on exit. may give away who set k/dline when set via tcm.
1091 */
1092 kline_with_reason = yes;
1093
1094 /* kline reason: make the users quit message on channels this
1095 * reason instead of the oper's reason.
1096 */
1097 kline_reason = "Connection closed";
1098
1099 /* identify to services via server password
1100 * if auth{} block had no password but the user specified a
1101 * server password anyway, send a PRIVMSG to <identify_service>
1102 * with as text <identify_command> <password>.
1103 */
1104 identify_service = "NickServ@services.int";
1105 identify_command = "IDENTIFY";
1106
1107 /* non redundant klines: flag and ignore redundant klines */
1108 non_redundant_klines = yes;
1109
1110 /* warn no nline: warn opers about servers that try to connect but
1111 * we dont have a connect {} block for. Twits with misconfigured
1112 * servers can get really annoying with this enabled.
1113 */
1114 warn_no_nline = yes;
1115
1116 /* stats e disabled: disable stats e. useful if server ips are
1117 * exempted and you dont want them listing on irc.
1118 */
1119 stats_e_disabled = no;
1120
1121 /* stats c oper only: make stats c (connect {}) oper only */
1122 stats_c_oper_only=no;
1123
1124 /* stats h oper only: make stats h (hub_mask/leaf_mask) oper only */
1125 stats_h_oper_only=no;
1126
1127 /* stats y oper only: make stats y (class {}) oper only */
1128 stats_y_oper_only=no;
1129
1130 /* stats o oper only: make stats o (opers) oper only */
1131 stats_o_oper_only=yes;
1132
1133 /* stats P oper only: make stats P (ports) oper only
1134 * NOTE: users doing stats P will never be given the ips that the
1135 * server listens on, simply the ports.
1136 */
1137 stats_P_oper_only=no;
1138
1139 /* stats i oper only: make stats i (auth {}) oper only. set to:
1140 * yes: show users no auth blocks, made oper only.
1141 * masked: show users first matching auth block
1142 * no: show users all auth blocks.
1143 */
1144 stats_i_oper_only=masked;
1145
1146 /* stats k/K oper only: make stats k/K (klines) oper only. set to:
1147 * yes: show users no auth blocks, made oper only
1148 * masked: show users first matching auth block
1149 * no: show users all auth blocks.
1150 */
1151 stats_k_oper_only=masked;
1152
1153 /* map oper only: make /map oper only */
1154 map_oper_only = no;
1155
1156 /* operspy admin only: make operspy notices to +Z admin only */
1157 operspy_admin_only = no;
1158
1159 /* operspy dont care user info: treat /who mask as if there was
1160 * an '!' always; do not log or server notice about operspy
1161 * /who mask, /masktrace and /scan. channel information is still
1162 * protected. */
1163 operspy_dont_care_user_info = no;
1164
1165 /* secret channels in whois: display secret channels in /whois
1166 * even if operspy was not used, as long as the oper doing the
1167 * whois has the oper:spy priv. this will not send any kind of
1168 * server notice. */
1169 secret_channels_in_whois = no;
1170
1171 /* caller id wait: time between notifying a +g user that somebody
1172 * is messaging them.
1173 */
1174 caller_id_wait = 1 minute;
1175
1176 /* pace wait simple: time between use of less intensive commands
1177 * (HELP, remote WHOIS, WHOWAS)
1178 */
1179 pace_wait_simple = 1 second;
1180
1181 /* pace wait: time between more intensive commands
1182 * (ADMIN, INFO, LIST, LUSERS, MOTD, STATS, VERSION)
1183 */
1184 pace_wait = 10 seconds;
1185
1186 /* short motd: send clients a notice telling them to read the motd
1187 * instead of forcing a motd to clients who may simply ignore it.
1188 */
1189 short_motd = no;
1190
1191 /* ping cookies: require clients to respond exactly to a ping command,
1192 * can help block certain types of drones and FTP PASV mode spoofing.
1193 */
1194 ping_cookie = no;
1195
1196 /* connect timeout: sets how long we should wait for a connection
1197 * request to succeed
1198 */
1199 connect_timeout = 30 seconds;
1200
1201 /* disable auth: disables identd checking */
1202 disable_auth = no;
1203
1204 /* no oper flood: increase flood limits for opers. */
1205 no_oper_flood = yes;
1206
1207 /* REMOVE ME. The following line checks you've been reading. */
1208 havent_read_conf = yes;
1209
1210 /* max targets: the maximum amount of targets in a single
1211 * PRIVMSG/NOTICE. set to 999 NOT 0 for unlimited.
1212 */
1213 max_targets = 4;
1214
1215 /* client flood: maximum number of lines in a clients queue before
1216 * they are dropped for flooding.
1217 */
1218 client_flood = 20;
1219
1220 /* use_whois_actually: send clients requesting a whois a numeric
1221 * giving the real IP of non-spoofed clients to prevent DNS abuse.
1222 */
1223 use_whois_actually = yes;
1224
1225 /* usermodes configurable: a list of usermodes for the options below
1226 *
1227 * +g - callerid - Server Side Ignore
1228 * +D - deaf - Don't see channel messages
1229 * +i - invisible - Not shown in NAMES or WHO unless you share a
1230 * a channel
1231 * +l - locops - See LOCOPS messages
1232 * +Q - noforward - Unaffected by channel forwarding
1233 * +R - regonlymsg - No messages from unindentified
1234 * +s - servnotice - See server notices
1235 * +w - wallop - See oper and server generated WALLOPS
1236 * +z - operwall - See operwalls
1237 * +C - noctcp - Block CTCPs to user.
1238 * +V - noinvite - Block INVITE to user.
1239 * +B - bot - Marks as a bot.
1240 */
1241
1242 /* oper only umodes: usermodes only opers may set */
1243 oper_only_umodes = operwall, locops, servnotice;
1244
1245 /* oper umodes: default usermodes opers get when they /oper */
1246 oper_umodes = locops, servnotice, operwall, wallop;
1247
1248 /* oper snomask: default snomask opers get when they /oper,
1249 * provided they have umode +s set */
1250 oper_snomask = "+s";
1251
1252 /* use egd: if your system does not have *random devices yet you
1253 * want to use OpenSSL and encrypted links, enable this. Beware -
1254 * EGD is *very* CPU intensive when gathering data for its pool
1255 */
1256 #use_egd = yes;
1257
1258 /* egdpool path: path to EGD pool. Not necessary for OpenSSL >= 0.9.7
1259 * which automatically finds the path.
1260 */
1261 #egdpool_path = "/var/run/egd-pool";
1262
1263
1264 /* compression level: level of compression for compressed links between
1265 * servers.
1266 *
1267 * values are between: 1 (least compression, fastest)
1268 * and: 9 (most compression, slowest).
1269 */
1270 #compression_level = 6;
1271
1272 /* burst_away: This enables bursting away messages to servers.
1273 * With this disabled, we will only propogate AWAY messages
1274 * as users send them, but never burst them. Be warned though
1275 * enabling this could increase the size of a burst significantly
1276 * for a large network, like EFnet.
1277 */
1278 burst_away = yes;
1279
1280 /* nick delay: This locks nicks of split clients for the given time
1281 * or until a remote client uses the nick. This significantly
1282 * reduces nick collisions on short splits but it can be annoying.
1283 * To make things as fair as possible, this should be the same on
1284 * all servers. If you enable this, the suggested value is 15 minutes.
1285 */
1286 nick_delay = 0 seconds;
1287
1288 /* reject time: the amount of rejections through klines/dlines etc
1289 * allowed in the given time before the rejection is cached and
1290 * a pseudo temp dline is placed
1291 */
1292 reject_ban_time = 1 minute;
1293 reject_after_count = 3;
1294
1295 /* reject duration: the amount of time to cache the rejection */
1296 reject_duration = 5 minutes;
1297
1298 /* throttle_duration: Amount of time that throttling will be applied to an IP
1299 * address.
1300 */
1301 throttle_duration = 60;
1302
1303 /* throttle_count: Number of connections within throttle_duration that it takes
1304 * for throttling to take effect */
1305 throttle_count = 4;
1306 };
1307
1308 modules {
1309 /* module path: paths to search for modules specified below and
1310 * in /modload.
1311 */
1312 path = "/usr/local/ircd/modules";
1313 path = "/usr/local/ircd/modules/autoload";
1314
1315 /* module: the name of a module to load on startup/rehash */
1316 #module = "some_module.so";
1317 };