]> jfr.im git - irc/rqf/shadowircd.git/blame - doc/reference.conf
Add operator::vhost option.
[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 *
e4322741
G
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
212380e3 47 *
02be96f2
VY
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
95dc1251
VY
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
78d9febe 64 * New host mangling (umode +x) -- ip_cloaking.so
95dc1251
VY
65 * Find channel forwards -- m_findforwards.so
66 * /identify support -- m_identify.so
77f41d51
G
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
95dc1251
VY
74 * Opers cannot be invisible (umode +i) -- no_oper_invis.so
75 * Far connection notices (snomask +F) -- sno_farconnect.so
e2ec3f7d 76 * Remote k/d/x line active notices -- sno_globalkline.so
95dc1251
VY
77 * Remote oper up notices -- sno_globaloper.so
78 * /whois notifications (snomask +W) -- sno_whois.so
212380e3 79 */
02be96f2 80#loadmodule "extensions/chm_adminonly.so";
e4322741 81loadmodule "extensions/chm_operonly.so";
02be96f2 82#loadmodule "extensions/chm_sslonly.so";
95dc1251
VY
83#loadmodule "extensions/chm_operonly_compat.so";
84#loadmodule "extensions/chm_quietunreg_compat.so";
85#loadmodule "extensions/chm_sslonly_compat.so";
212380e3 86#loadmodule "extensions/createauthonly.so";
e4322741
G
87loadmodule "extensions/extb_account.so";
88loadmodule "extensions/extb_canjoin.so";
89loadmodule "extensions/extb_channel.so";
90loadmodule "extensions/extb_extgecos.so";
91loadmodule "extensions/extb_oper.so";
92loadmodule "extensions/extb_realname.so";
212380e3 93#loadmodule "extensions/extb_server.so";
95dc1251 94#loadmodule "extensions/extb_ssl.so";
212380e3 95#loadmodule "extensions/hurt.so";
e4322741 96loadmodule "extensions/ip_cloaking.so";
212380e3 97#loadmodule "extensions/m_findforwards.so";
e4322741 98loadmodule "extensions/m_identify.so";
77f41d51
G
99loadmodule "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";
212380e3 106#loadmodule "extensions/no_oper_invis.so";
e4322741
G
107loadmodule "extensions/sno_farconnect.so";
108loadmodule "extensions/sno_globalkline.so";
109loadmodule "extensions/sno_globaloper.so";
446d88dd 110#loadmodule "extensions/sno_whois.so";
77f41d51 111
212380e3 112
113/* serverinfo {}: Contains information about the server. (OLD M:) */
114serverinfo {
115 /* name: the name of our server */
116 name = "hades.arpa";
117
212380e3 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 *
cda8e9b8 122 * This parameter must be specified for the server to start.
212380e3 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 */
f34794d0 129 description = "shadowircd test server";
212380e3 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";
8db00894 151
9b1b4a97
VY
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
29e3823d
JT
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.
9b1b4a97
VY
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>
c2d96fcb 173 */
3fe90825 174 default_max_clients = 1024;
212380e3 175};
176
177/* admin {}: contains admin information about the server. (OLD A:) */
178admin {
179 name = "Smurf target";
180 description = "Main Server Administrator";
181 email = "<syn@packets.r.us>";
182};
183
184/* log {}: contains information about logfiles. */
185log {
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
212380e3 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";
212380e3 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:) */
212class "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
571df429
JT
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
212380e3 240 * the following example makes the subnet /64 this is useful
241 * for IPv6 connections in particular
212380e3 242 */
571df429 243 cidr_ipv6_bitlen = 64;
212380e3 244
245 /* number_per_cidr: Number of connections to allow from a subnet of the
571df429
JT
246 * size given in cidr_ipv4_bitlen/cidr_ipv6_bitlen.
247 * 4 seems to be a good default to me.
212380e3 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
260class "restricted" {
261 ping_time = 1 minute 30 seconds;
262 number_per_ip = 1;
263 max_number = 100;
264 sendq = 60kb;
265};
266
267class "opers" {
268 ping_time = 5 minutes;
269 number_per_ip = 10;
270 max_number = 100;
271 sendq = 100kbytes;
272};
273
274class "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:) */
290listen {
291 /* port: the specific port to listen on. if no host is specified
292 * before, it will listen on all available IPs.
293 *
9b1b4a97
VY
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 *
212380e3 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;
9b1b4a97
VY
302
303 /* sslport: listen for ssl connections on all available IPs, port 9999 */
304 sslport = 9999;
212380e3 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;
9b1b4a97 311 sslport = 9000, 9001;
212380e3 312
313 host = "3ffe:1234:a:b:c::d";
314 port = 7002;
9b1b4a97 315 sslport = 9002;
212380e3 316};
317
318/* auth {}: allow users to connect to the ircd (OLD I:) */
319auth {
b0dc8e03 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.
212380e3 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
fa72cee1 341 /* autojoin: Channel (or channels, comma-seperated) to join users
b7ec3094
G
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";
fa72cee1 346
87f58b4f 347 /* autojoin_opers : Channel (or channels, comma-seperated) to join
b7ec3094
G
348 * opers to on oper-up.
349 */
350 autojoin_opers = "#opers,#help";
87f58b4f 351
212380e3 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
212380e3 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
663bbb28 368 * need_ssl | require SSL/TLS for user in this class
212380e3 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
377auth {
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
391auth {
392 user = "*@*";
393 class = "users";
394
395 flags = need_ident;
396};
397
ebe56017
JT
398/* privset{}: defines operator privilege sets. */
399privset "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
88d08e84 407 * oper:routing: allows remote SQUIT and CONNECT
ebe56017
JT
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
431privset "server_bot" {
432 /* extends: a privset to inherit in this privset */
433 extends = "local_op";
29ef4e88 434 privs = oper:kline, oper:remoteban, snomask:nick_changes;
ebe56017
JT
435};
436
437privset "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
443privset "admin" {
444 extends = "global_op";
445 privs = oper:admin, oper:die, oper:rehash, oper:spy;
446};
447
448/* operator {}: defines ircd operators. (OLD O:) */
212380e3 449operator "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
d8a023ed
WP
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
212380e3 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
08e35f66
G
488 /* vhost: defines the vhost that this oper will get on oper up.
489 * this must be a valid hostmask. If this is specified the oper
490 * will not be given default_operhost.
491 */
492 vhost = "is.an.oper";
493
ebe56017
JT
494 /* flags: misc options for the operator. You may prefix an option
495 * with ~ to disable it, e.g. ~encrypted.
212380e3 496 *
ebe56017 497 * Default flags are encrypted.
212380e3 498 *
499 * Available options:
500 *
501 * encrypted: the password above is encrypted [DEFAULT]
663bbb28 502 * need_ssl: must be using SSL/TLS to oper up
212380e3 503 */
ebe56017
JT
504 flags = encrypted;
505
506 /* privset: privileges set to grant */
507 privset = "admin";
212380e3 508};
509
510/* connect {}: controls servers we connect to (OLD C:, N:, H:, L:) */
511connect "irc.uplink.com" {
512 /* the name must go above */
513
514 /* host: the host or IP to connect to. If a hostname is used it
515 * must match the reverse dns of the server.
516 */
517 host = "192.168.0.1";
518
519 /* vhost: the host or IP to bind to for this connection. If this
520 * is not specified, the default vhost (in serverinfo {}) is used.
521 */
522 #vhost = "192.168.0.50";
523
524 /* passwords: the passwords we send (OLD C:) and accept (OLD N:).
525 * The remote server will have these passwords reversed.
526 */
527 send_password = "password";
528 accept_password = "anotherpassword";
529
530 /* port: the port to connect to this server on */
531 port = 6666;
532
533 /* hub mask: the mask of servers that this server may hub. Multiple
534 * entries are permitted
535 */
536 hub_mask = "*";
537
538 /* leaf mask: the mask of servers this server may not hub. Multiple
539 * entries are permitted. Useful for forbidding EU -> US -> EU routes.
540 */
541 #leaf_mask = "*.uk";
542
543 /* class: the class this server is in */
544 class = "server";
545
546 /* flags: controls special options for this server
547 * encrypted - marks the accept_password as being crypt()'d
548 * autoconn - automatically connect to this server
549 * compressed - compress traffic via ziplinks
550 * topicburst - burst topics between servers
9b1b4a97 551 * ssl - ssl/tls encrypted server connections
212380e3 552 */
553 flags = compressed, topicburst;
554};
555
556connect "ipv6.some.server" {
b0dc8e03 557 /* Hosts that are IPv6 addresses must be in :: shortened form
558 * if applicable. Addresses starting with a colon get an extra
559 * zero prepended, for example: 0::1
560 */
212380e3 561 host = "3ffd:dead:beef::1";
562 send_password = "password";
563 accept_password = "password";
564 port = 6666;
565
566 /* aftype: controls whether the connection uses "ipv4" or "ipv6".
567 * Default is ipv4.
568 */
569 aftype = ipv6;
570 class = "server";
571};
572
9b1b4a97
VY
573connect "ssl.uplink.com" {
574 /* Example of ssl server-to-server connection, ssl flag doesn't need
575 * compressed flag, 'cause it uses own compression
576 */
577 host = "192.168.0.1";
578 send_password = "password";
579 accept_password = "anotherpassword";
580 port = 9999;
581 hub_mask = "*";
582 class = "server";
583 flags = ssl, topicburst;
584};
585
212380e3 586/* cluster {}; servers that we propagate things to automatically.
587 * NOTE: This does NOT grant them privileges to apply anything locally,
588 * you must add a seperate shared block for that. Clustering will
589 * only be done for actions by LOCAL opers, that arent directed
590 * remotely.
591 */
592cluster {
593 /* name: the server to share with, this can be a wildcard and may be
594 * stacked.
595 */
596 /* flags: list of what to share, all the name lines above this (up
597 * until another flags entry) will receive these flags.
598 *
599 * kline - share perm klines
600 * tkline - share temp klines
601 * unkline - share unklines
602 * locops - share locops
603 * xline - share perm xlines
604 * txline - share temp xlines
605 * unxline - share unxlines
606 * resv - share perm resvs
607 * tresv - share temp resvs
608 * unresv - share unresvs
609 * all - share all of the above
610 */
611
612 /* share klines/unklines/xlines with *.lan */
613 name = "*.lan";
614 flags = kline, unkline, xline;
615
616 /* share locops with irc.ircd-ratbox.org and ircd.ircd-ratbox.org */
617 name = "irc.ircd-ratbox.org";
618 name = "ircd.ircd-ratbox.org";
619 flags = locops;
620};
621
622/* service{}: privileged servers (services). These servers have extra
623 * privileges such as setting login names on users and introducing clients
624 * with umode +S (unkickable, hide channels, etc). This does not allow them
625 * to set bans, you need a separate shared{} for that.
626 * Do not place normal servers here.
627 * There may be only one service{} block.
628 */
629service {
630 /* name: the server name. These may be stacked. */
631 name = "services.int";
632};
633
634/* shared {}: users that are allowed to place remote bans on our server.
635 * NOTE: These are ordered top down. The first one the user@host and server
636 * matches will be used. Their access will then be decided on that
637 * block and will not fall back to another block that matches.
638 */
639shared {
640 /* oper: the user@host and server the user must be on to set klines.
641 * The first field must be a user@host, the second field is an
642 * optional server. These may be stacked.
643 */
644 /* flags: list of what to allow them to place, all the oper lines
645 * above this (up until another flags entry) will receive these
646 * flags. This *must* be present.
647 *
648 * kline - allow setting perm/temp klines
649 * tkline - allow setting temp klines
650 * unkline - allow removing klines
651 * xline - allow setting perm/temp xlines
652 * txline - allow setting temp xlines
653 * unxline - allow removing xlines
654 * resv - allow setting perm/temp resvs
655 * tresv - allow setting temp resvs
656 * unresv - allow removing xlines
657 * all - allow oper/server to do all of above.
658 * locops - allow locops - only used for servers who cluster
659 * rehash - allow rehashing
f410930f
JT
660 * dline - allow setting perm/temp dlines
661 * tdline - allow setting temp dlines
662 * undline - allow removing dlines
212380e3 663 * none - disallow everything
664 */
665
666 /* allow flame@*.leeh.co.uk on server irc.ircd-ratbox.org and
667 * allow leeh@*.leeh.co.uk on server ircd.ircd-ratbox.org to kline
668 */
669 oper = "flame@*.leeh.co.uk", "irc.ircd-ratbox.org";
670 oper = "leeh@*.leeh.co.uk", "ircd.ircd-ratbox.org";
671 flags = kline;
672
673 /* you may forbid certain opers/servers from doing anything */
674 oper = "irc@vanity.oper", "*";
675 oper = "*@*", "irc.vanity.server";
676 oper = "irc@another.vanity.oper", "bigger.vanity.server";
677 flags = none;
678
679 /* or allow everyone to place temp klines */
680 oper = "*@*";
681 flags = tkline;
682};
683
b808adf9 684/* exempt {}: IPs that are exempt from Dlines and rejectcache. (OLD d:) */
212380e3 685exempt {
686 ip = "192.168.0.0/16";
687
688 /* these may be stacked */
689 ip = "127.0.0.1";
690 ip = "10.0.0.0/8";
691};
692
693/* The channel block contains options pertaining to channels */
694channel {
13ec57db
JH
695 /* autochanmodes: Modes that will be set on a unregistered channel
696 * when the first user joins it.
697 */
698 autochanmodes = "nt";
699
5ad94b50
G
700 /* exemptchanops: Channel modes that any form of channel ops (+aoh)
701 * will be exempt from. Even if the mode is set, it will not apply to the
702 * channel ops if it is listed in this option. Valid modes are cCDTNGK.
703 */
704 exemptchanops = "NT";
705
46f0c518
G
706 /* halfop: Enable/disable channel mode +h, which adds halfop,
707 * a channel status below op that has op powers (kick, ban, mode, etc.)
ce3ec6fb 708 * halfops can only kick/devoice/etc people who are +v or
16c19d9c
G
709 * do not have any channel status. Disabling this via rehash will
710 * cause things which are rather confusing to occur, it is highly
711 * recommended to restart if you wish to disable this option, though
712 * it may be enabled by rehash with no problems.
ce3ec6fb 713 */
46f0c518
G
714 use_halfop = yes;
715
716 /* owner: Enable/disable channel mode +a, which adds owner,
717 * a channel status above op that has op powers (kick, ban, mode, etc.)
ce3ec6fb 718 * owners can only be kicked/deownered by other owners, and may kick
16c19d9c
G
719 * or deop ops and halfops. Disabling this via rehash will
720 * cause things which are rather confusing to occur, it is highly
721 * recommended to restart if you wish to disable this option, though
722 * it may be enabled by rehash with no problems.
ce3ec6fb 723 */
46f0c518
G
724 use_owner = yes;
725
212380e3 726 /* invex: Enable/disable channel mode +I, a n!u@h list of masks
fdbbf311
G
727 * that can join a +i channel without an invite. Disabling this option
728 * via rehash will leave all previously set invexes hanging around,
729 * though they will not do anything. For this reason, you may want to
730 * restart to disable this option.
212380e3 731 */
732 use_invex = yes;
733
734 /* except: Enable/disable channel mode +e, a n!u@h list of masks
fdbbf311
G
735 * that can join a channel through a ban (+b). Disabling this option
736 * via rehash will leave all previously set excepts hanging around,
737 * though they will not do anything. For this reason, you may want to
738 * restart to disable this option.
212380e3 739 */
740 use_except = yes;
741
742 /* forward: Enable/disable channel mode +f, a channel to forward
743 * users to if they can't join because of +i etc.
744 */
745 use_forward = yes;
746
747 /* knock: Allows users to request an invite to a channel that
748 * is locked somehow (+ikl). If the channel is +p or you are banned
749 * the knock will not be sent.
750 */
751 use_knock = yes;
752
0eceaff1
G
753 /* local channels: &Channel - a channel that exists only on one server
754 * people on other servers will not be able to see or join local channels
755 * from another server.
756 */
757 use_local_channels = yes;
758
212380e3 759 /* knock delay: The amount of time a user must wait between issuing
760 * the knock command.
761 */
762 knock_delay = 5 minutes;
763
764 /* knock channel delay: How often a knock to any specific channel
765 * is permitted, regardless of the user sending the knock.
766 */
767 knock_delay_channel = 1 minute;
768
769 /* max chans: The maximum number of channels a user can join/be on. */
770 max_chans_per_user = 15;
771
772 /* max bans: maximum number of +b/e/I/q modes in a channel */
773 max_bans = 25;
774
775 /* max bans: maximum number of +b/e/I/q modes in a +L channel */
776 max_bans_large = 500;
777
778 /* splitcode: split users, split servers and either no join on split
779 * or no create on split must be enabled for split checking.
780 * splitmode will be entered on either split users or split servers
781 * dropping below the limit.
782 *
783 * you may force splitmode to be permanent by /quote set splitmode on
784 */
785
786 /* split users: when the usercount is lower than this level, consider
787 * ourselves split. this must be set for automatic splitmode
788 */
789 default_split_user_count = 0;
790
791 /* split servers: when the amount of servers that have acknowledged
792 * theyve finished bursting is lower than this, consider ourselves
793 * split. this must be set for automatic splitmode
794 */
795 default_split_server_count = 0;
796
797 /* split: no create: disallow users creating channels on split */
798 no_create_on_split = no;
799
800 /* split: no join: disallow users joining channels at all on a split */
801 no_join_on_split = no;
802
803 /* burst topicwho: when bursting topics, also burst the topic setter */
804 burst_topicwho = yes;
805
806 /* kick on split riding: kick users riding splits to join +i or +k
807 * channels. more precisely, if a bursting server sends an SJOIN
808 * for a channel with a lower TS with either a +i mode or a +k
809 * mode with a different key, kick all local users.
810 *
811 * note: this does not take +r, +b, +e and +I into account.
812 *
813 * warning: if there are any TS5 servers on the network, this
814 * will cause ban desyncs if they send such an SJOIN and the
815 * splitriders added any bans (our side will lose them, the TS5
816 * side will accept them). we will send a notice to the channel
817 * if this happens. most services do not send such SJOINs but
818 * ratbox-services does.
819 */
820 kick_on_split_riding = no;
dea418e9
JT
821
822 /* only ascii channels: disable local users joining channels
823 * containing characters outside the range 33-126 (non-printable
824 * or non-ASCII).
825 */
826 only_ascii_channels = no;
c3a0fde2
JH
827
828 /* cycle_host_change: Should a user be cycled in the channels
829 * they're in when their host changes. If set to no, this may
830 * cause client desyncs.
831 */
832 cycle_host_change = yes;
45b9f1cb
JH
833
834 /* host_in_topic: Defines whether or not the topicsetter's
835 * host is shown when users request the TOPIC. If this option
836 * is set to no, it will only show the nick of the topicsetter.
837 */
838 host_in_topic = yes;
100563e8
JT
839
840 /* resv_forcepart: force any local users to part a channel
841 * when a RESV is issued.
842 */
843 resv_forcepart = yes;
846aa234
G
844
845 /* kick_no_rejoin_time: the amount of time that a user cannot
846 * rejoin for after being kicked out of a +J channel.
847 */
848 kick_no_rejoin_time = 30 seconds;
212380e3 849};
850
851
852/* The serverhide block contains the options regarding serverhiding */
853serverhide {
4acf2281
JT
854 /* flatten links: this option will hide various routing information
855 * and make all servers in /links appear that they are linked to
856 * this server.
212380e3 857 */
858 flatten_links = no;
859
994544c2
JT
860 /* links delay: how long to wait before showing splits or new
861 * servers in a flattened /links output.
212380e3 862 */
863 links_delay = 5 minutes;
864
4acf2281
JT
865 /* hidden: hide this server from a /links output on servers with
866 * flatten_links enabled. this allows hub servers to be hidden etc.
212380e3 867 */
868 hidden = no;
869
870 /* disable hidden: prevent servers hiding themselves from a
871 * /links ouput.
872 */
873 disable_hidden = no;
874};
875
876/* These are the blacklist settings.
877 * You can have multiple combinations of host and rejection reasons.
6abfcc55 878 * They are used in pairs of one host/rejection reason.
212380e3 879 *
880 * These settings should be adequate for most networks, and are (presently)
881 * required for use on AthemeNet.
882 *
883 * Word to the wise: Do not use blacklists like SPEWS for blocking IRC
884 * connections.
885 *
92fb5c31 886 * As of charybdis 2.2, you can do some keyword substitution on the rejection
887 * reason. The available keyword substitutions are:
888 *
889 * ${ip} - the user's IP
890 * ${host} - the user's canonical hostname
891 * ${dnsbl-host} - the dnsbl hostname the lookup was done against
892 * ${nick} - the user's nickname
893 * ${network-name} - the name of the network
894 *
57b8cb0f 895 * Note: AHBL (the providers of the below *.ahbl.org BLs) request that they be
212380e3 896 * contacted, via email, at admins@2mbit.com before using these BLs.
897 * See <http://www.ahbl.org/services.php> for more information.
898 */
57b8cb0f 899blacklist {
900 host = "dnsbl.dronebl.org";
901 reject_reason = "${nick}, your IP (${ip}) is listed in DroneBL. For assistance, see http://dronebl.org/lookup_branded.do?ip=${ip}&network=${network-name}";
902
212380e3 903# host = "ircbl.ahbl.org";
92fb5c31 904# 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 905#
906# host = "tor.ahbl.org";
92fb5c31 907# 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 908};
212380e3 909
910/*
911 * Alias blocks allow you to define custom commands. (Old m_sshortcut.c)
912 * They send PRIVMSG to the given target. A real command takes
913 * precedence above an alias.
914 */
915alias "NickServ" {
916 /* the name must go above */
917
918 /* target: the target nick (must be a network service) or
919 * user@server (cannot be this server, only opers can use
920 * user starting with "opers" reliably, interpreted on the target
921 * server only so you may need to use nick@server instead)
922 */
923 target = "NickServ";
924};
925
926alias "ChanServ" {
927 target = "ChanServ";
928};
929
930alias "OperServ" {
931 target = "OperServ";
932};
933
934alias "MemoServ" {
935 target = "MemoServ";
936};
937
4efc8651
G
938alias "HostServ" {
939 target = "HostServ";
940};
941
942alias "BotServ" {
943 target = "BotServ";
944};
945
212380e3 946alias "NS" {
947 target = "NickServ";
948};
949
950alias "CS" {
951 target = "ChanServ";
952};
953
954alias "OS" {
955 target = "OperServ";
956};
957
958alias "MS" {
959 target = "MemoServ";
4efc8651
G
960};
961
962alias "HS" {
963 target = "HostServ";
964};
965
966alias "BS" {
967 target = "BotServ";
212380e3 968};
969
970/* The general block contains many of the options that were once compiled
971 * in options in config.h. The general block is read at start time.
972 */
973general {
974 /* hide error messages: defines whether error messages from
372b2193
JT
975 * servers that are not deemed fully safe are hidden or not.
976 * These can sometimes contain IPs and can have an adverse
977 * effect on server ip hiding. Set to:
212380e3 978 * yes: hide from opers and admin
979 * opers: hide from opers only
980 * no: do not hide error messages
372b2193 981 * Admins on other servers count as opers.
212380e3 982 */
983 hide_error_messages = opers;
984
985 /* hide spoof ips: hide the real ips of auth{} spoofed users
986 * If disabled, local opers can see them.
987 * Dynamic spoofs (e.g. set by services) are unaffected by this;
988 * any oper (local and remote) can see the real ip.
989 * Warning: for whowas, this is checked when the client exits,
990 * not when the IP is shown.
991 */
992 hide_spoof_ips = yes;
993
994 /* default umodes: umodes to set upon connection
995 * If you have enabled the ip_cloaking extension, and you wish for
60e16d64
G
996 * incoming clients to be cloaked upon connection, +x must be in
997 * the umode string below.
212380e3 998 */
60e16d64 999 default_umodes = "+ix";
212380e3 1000
1001 /* default operstring: defines the default oper response
1002 * in /whois queries, eg "is an IRC Operator".
1003 * After startup use /quote set operstring to change.
1004 */
1005 default_operstring = "is an IRC Operator";
1006
1007 /* default adminstring: defines the default admin response
1008 * in /whois queries, eg "is a Server Administrator".
1009 * After startup use /quote set adminstring to change.
1010 */
1011 default_adminstring = "is a Server Administrator";
1012
220c9db5
G
1013 /* default operhost: defines the default virtual host that
1014 * operators will receiving upon opering up. Can be overriden
1015 * by the vhost option in individual operator blocks. This
1016 * must be a valid hostmask.
1017 */
1018 default_operhost = "staff.testnet.net";
1019
212380e3 1020 /* servicestring: defines the response for opered services (+S)
1021 * in /whois queries, eg "is a Network Service".
1022 * This is updated on rehash.
1023 */
1024 servicestring = "is a Network Service";
1025
1026 /* disable fake channels: disable local users joining fake versions
1027 * of channels, eg #foo^B^B. Disables bold, mirc colour, reverse,
1028 * underline and hard space. (ASCII 2, 3, 22, 31, 160 respectively).
1029 */
1030 disable_fake_channels = no;
1031
1032 /* tkline_expire_notices: give a notice to opers when a tkline
1033 * expires
1034 */
1035 tkline_expire_notices = no;
1036
1037 /* floodcount: the default value of floodcount that is configurable
1038 * via /quote set floodcount. This is the amount of lines a user
1039 * may send to any other user/channel in one second.
1040 */
1041 default_floodcount = 10;
1042
1043 /* failed oper notice: send a notice to all opers on the server when
1044 * someone tries to OPER and uses the wrong password, host or ident.
1045 */
1046 failed_oper_notice = yes;
1047
1048 /* dots in ident: the amount of '.' characters permitted in an ident
1049 * reply before the user is rejected.
1050 */
1051 dots_in_ident=2;
1052
212380e3 1053 /* min nonwildcard: the minimum non wildcard characters in k/d/g lines
1054 * placed via the server. klines hand placed are exempt from limits.
1055 * wildcard chars: '.' '*' '?' '@'
1056 */
1057 min_nonwildcard = 4;
1058
1059 /* min nonwildcard simple: the minimum non wildcard characters in
1060 * xlines/resvs placed via the server.
1061 * wildcard chars: '*' '?'
1062 */
1063 min_nonwildcard_simple = 3;
1064
1065 /* max accept: maximum allowed /accept's for +g usermode */
1066 max_accept = 20;
1067
1068 /* max monitor: the maximum amount of nicknames a client may have in
1069 * their monitor (server-side notify) list.
1070 */
1071 max_monitor = 100;
1072
1073 /* nick flood: enable the nickflood control code */
1074 anti_nick_flood = yes;
1075
1076 /* nick flood: the nick changes allowed in the specified period */
1077 max_nick_time = 20 seconds;
1078 max_nick_changes = 5;
1079
1080 /* anti spam time: the minimum time a user must be connected before
1081 * custom quit messages are allowed.
1082 */
1083 anti_spam_exit_message_time = 5 minutes;
1084
1085 /* ts delta: the time delta allowed between server clocks before
1086 * a warning is given, or before the link is dropped. all servers
1087 * should run ntpdate/rdate to keep clocks in sync
1088 */
1089 ts_warn_delta = 30 seconds;
1090 ts_max_delta = 5 minutes;
1091
1092 /* client exit: prepend a users quit message with "Client exit: " */
1093 client_exit = yes;
1094
1095 /* collision fnc: change user's nick to their UID instead of
1096 * killing them, if possible. This setting only applies to nick
1097 * collisions detected on this server. Only enable this if
1098 * all servers on the network allow remote nicks to start with
1099 * a digit.
1100 */
1101 collision_fnc = yes;
1102
1103 /* global snotices: send out certain snotices (most +b, +f, +y,
1104 * some +s) to other servers via ENCAP SNOTE. Received SNOTEs are
1105 * displayed unconditionally.
1106 */
1107 global_snotices = yes;
1108
1109 /* dline reason: show the user the dline reason when they connect
1110 * and are dlined.
1111 */
1112 dline_with_reason = yes;
1113
1114 /* kline delay: delay the checking of klines until a specified time.
1115 * Useful if large kline lists are applied often to prevent the
1116 * server eating CPU.
1117 */
1118 kline_delay = 0 seconds;
1119
d5a432fa 1120 /* kline reason: show the user the reason why they are k/dlined
212380e3 1121 * on exit. may give away who set k/dline when set via tcm.
1122 */
1123 kline_with_reason = yes;
1124
1125 /* kline reason: make the users quit message on channels this
1126 * reason instead of the oper's reason.
1127 */
1128 kline_reason = "Connection closed";
1129
1130 /* identify to services via server password
1131 * if auth{} block had no password but the user specified a
1132 * server password anyway, send a PRIVMSG to <identify_service>
1133 * with as text <identify_command> <password>.
1134 */
1135 identify_service = "NickServ@services.int";
1136 identify_command = "IDENTIFY";
1137
1138 /* non redundant klines: flag and ignore redundant klines */
1139 non_redundant_klines = yes;
1140
1141 /* warn no nline: warn opers about servers that try to connect but
1142 * we dont have a connect {} block for. Twits with misconfigured
1143 * servers can get really annoying with this enabled.
1144 */
1145 warn_no_nline = yes;
1146
1147 /* stats e disabled: disable stats e. useful if server ips are
1148 * exempted and you dont want them listing on irc.
1149 */
1150 stats_e_disabled = no;
1151
1152 /* stats c oper only: make stats c (connect {}) oper only */
1153 stats_c_oper_only=no;
1154
1155 /* stats h oper only: make stats h (hub_mask/leaf_mask) oper only */
1156 stats_h_oper_only=no;
1157
1158 /* stats y oper only: make stats y (class {}) oper only */
1159 stats_y_oper_only=no;
1160
1161 /* stats o oper only: make stats o (opers) oper only */
1162 stats_o_oper_only=yes;
1163
1164 /* stats P oper only: make stats P (ports) oper only
1165 * NOTE: users doing stats P will never be given the ips that the
1166 * server listens on, simply the ports.
1167 */
1168 stats_P_oper_only=no;
1169
1170 /* stats i oper only: make stats i (auth {}) oper only. set to:
1171 * yes: show users no auth blocks, made oper only.
1172 * masked: show users first matching auth block
1173 * no: show users all auth blocks.
1174 */
1175 stats_i_oper_only=masked;
1176
1177 /* stats k/K oper only: make stats k/K (klines) oper only. set to:
1178 * yes: show users no auth blocks, made oper only
1179 * masked: show users first matching auth block
1180 * no: show users all auth blocks.
1181 */
1182 stats_k_oper_only=masked;
1183
1184 /* map oper only: make /map oper only */
1185 map_oper_only = no;
1186
1187 /* operspy admin only: make operspy notices to +Z admin only */
1188 operspy_admin_only = no;
1189
1190 /* operspy dont care user info: treat /who mask as if there was
1191 * an '!' always; do not log or server notice about operspy
1192 * /who mask, /masktrace and /scan. channel information is still
1193 * protected. */
1194 operspy_dont_care_user_info = no;
1195
837a020a
G
1196 /* secret channels in whois: display secret channels in /whois
1197 * even if operspy was not used, as long as the oper doing the
1198 * whois has the oper:spy priv. this will not send any kind of
1199 * server notice. */
1200 secret_channels_in_whois = no;
1201
212380e3 1202 /* caller id wait: time between notifying a +g user that somebody
1203 * is messaging them.
1204 */
1205 caller_id_wait = 1 minute;
1206
1207 /* pace wait simple: time between use of less intensive commands
1208 * (HELP, remote WHOIS, WHOWAS)
1209 */
1210 pace_wait_simple = 1 second;
1211
1212 /* pace wait: time between more intensive commands
1213 * (ADMIN, INFO, LIST, LUSERS, MOTD, STATS, VERSION)
1214 */
1215 pace_wait = 10 seconds;
1216
1217 /* short motd: send clients a notice telling them to read the motd
1218 * instead of forcing a motd to clients who may simply ignore it.
1219 */
1220 short_motd = no;
1221
1222 /* ping cookies: require clients to respond exactly to a ping command,
1223 * can help block certain types of drones and FTP PASV mode spoofing.
1224 */
1225 ping_cookie = no;
1226
1227 /* connect timeout: sets how long we should wait for a connection
1228 * request to succeed
1229 */
1230 connect_timeout = 30 seconds;
1231
1232 /* disable auth: disables identd checking */
1233 disable_auth = no;
1234
1235 /* no oper flood: increase flood limits for opers. */
1236 no_oper_flood = yes;
1237
212380e3 1238 /* REMOVE ME. The following line checks you've been reading. */
1239 havent_read_conf = yes;
1240
1241 /* max targets: the maximum amount of targets in a single
1242 * PRIVMSG/NOTICE. set to 999 NOT 0 for unlimited.
1243 */
1244 max_targets = 4;
1245
1246 /* client flood: maximum number of lines in a clients queue before
1247 * they are dropped for flooding.
1248 */
1249 client_flood = 20;
1250
1251 /* use_whois_actually: send clients requesting a whois a numeric
1252 * giving the real IP of non-spoofed clients to prevent DNS abuse.
1253 */
1254 use_whois_actually = yes;
1255
1256 /* usermodes configurable: a list of usermodes for the options below
1257 *
1258 * +g - callerid - Server Side Ignore
1259 * +D - deaf - Don't see channel messages
1260 * +i - invisible - Not shown in NAMES or WHO unless you share a
1261 * a channel
1262 * +l - locops - See LOCOPS messages
1263 * +Q - noforward - Unaffected by channel forwarding
1264 * +R - regonlymsg - No messages from unindentified
1265 * +s - servnotice - See server notices
1266 * +w - wallop - See oper and server generated WALLOPS
1267 * +z - operwall - See operwalls
e2994fae
G
1268 * +C - noctcp - Block CTCPs to user.
1269 * +V - noinvite - Block INVITE to user.
1270 * +B - bot - Marks as a bot.
212380e3 1271 */
1272
1273 /* oper only umodes: usermodes only opers may set */
1274 oper_only_umodes = operwall, locops, servnotice;
1275
1276 /* oper umodes: default usermodes opers get when they /oper */
1277 oper_umodes = locops, servnotice, operwall, wallop;
1278
1279 /* oper snomask: default snomask opers get when they /oper,
1280 * provided they have umode +s set */
1281 oper_snomask = "+s";
1282
212380e3 1283 /* use egd: if your system does not have *random devices yet you
1284 * want to use OpenSSL and encrypted links, enable this. Beware -
1285 * EGD is *very* CPU intensive when gathering data for its pool
1286 */
1287 #use_egd = yes;
1288
1289 /* egdpool path: path to EGD pool. Not necessary for OpenSSL >= 0.9.7
1290 * which automatically finds the path.
1291 */
1292 #egdpool_path = "/var/run/egd-pool";
1293
1294
1295 /* compression level: level of compression for compressed links between
1296 * servers.
1297 *
1298 * values are between: 1 (least compression, fastest)
1299 * and: 9 (most compression, slowest).
1300 */
1301 #compression_level = 6;
1302
1303 /* burst_away: This enables bursting away messages to servers.
1304 * With this disabled, we will only propogate AWAY messages
1305 * as users send them, but never burst them. Be warned though
1306 * enabling this could increase the size of a burst significantly
1307 * for a large network, like EFnet.
1308 */
1309 burst_away = yes;
1310
1311 /* nick delay: This locks nicks of split clients for the given time
1312 * or until a remote client uses the nick. This significantly
1313 * reduces nick collisions on short splits but it can be annoying.
1314 * To make things as fair as possible, this should be the same on
1315 * all servers. If you enable this, the suggested value is 15 minutes.
1316 */
1317 nick_delay = 0 seconds;
1318
1319 /* reject time: the amount of rejections through klines/dlines etc
1320 * allowed in the given time before the rejection is cached and
1321 * a pseudo temp dline is placed
1322 */
1323 reject_ban_time = 1 minute;
1324 reject_after_count = 3;
1325
1326 /* reject duration: the amount of time to cache the rejection */
1327 reject_duration = 5 minutes;
54015b5f 1328
d1275a8f
JT
1329 /* throttle_duration: Amount of time that throttling will be applied to an IP
1330 * address.
54015b5f 1331 */
d1275a8f
JT
1332 throttle_duration = 60;
1333
1334 /* throttle_count: Number of connections within throttle_duration that it takes
1335 * for throttling to take effect */
1336 throttle_count = 4;
212380e3 1337};
1338
1339modules {
1340 /* module path: paths to search for modules specified below and
1341 * in /modload.
1342 */
1343 path = "/usr/local/ircd/modules";
1344 path = "/usr/local/ircd/modules/autoload";
1345
1346 /* module: the name of a module to load on startup/rehash */
1347 #module = "some_module.so";
1348};