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