]> jfr.im git - solanum.git/blame - doc/ircd.conf.example
opm: add adjustable timeout values
[solanum.git] / doc / ircd.conf.example
CommitLineData
3514f17e 1/* doc/ircd.conf.example - brief example configuration file
212380e3
AC
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 *
212380e3
AC
7 * See reference.conf for more information.
8 */
9
10/* Extensions */
9abdcf1c
EM
11#loadmodule "extensions/chm_operonly_compat";
12#loadmodule "extensions/chm_quietunreg_compat";
13#loadmodule "extensions/chm_sslonly_compat";
14#loadmodule "extensions/chm_operpeace";
15#loadmodule "extensions/createauthonly";
16#loadmodule "extensions/extb_account";
17#loadmodule "extensions/extb_canjoin";
18#loadmodule "extensions/extb_channel";
19#loadmodule "extensions/extb_combi";
20#loadmodule "extensions/extb_extgecos";
21#loadmodule "extensions/extb_hostmask";
22#loadmodule "extensions/extb_oper";
23#loadmodule "extensions/extb_realname";
24#loadmodule "extensions/extb_server";
25#loadmodule "extensions/extb_ssl";
ed2efe76 26#loadmodule "extensions/extb_usermode";
9abdcf1c
EM
27#loadmodule "extensions/hurt";
28#loadmodule "extensions/m_extendchans";
29#loadmodule "extensions/m_findforwards";
30#loadmodule "extensions/m_identify";
31#loadmodule "extensions/no_oper_invis";
32#loadmodule "extensions/sno_farconnect";
33#loadmodule "extensions/sno_globalkline";
34#loadmodule "extensions/sno_globalnickchange";
35#loadmodule "extensions/sno_globaloper";
36#loadmodule "extensions/sno_whois";
37#loadmodule "extensions/override";
38#loadmodule "extensions/no_kill_services";
212380e3 39
a8560aff
AC
40/*
41 * IP cloaking extensions: use ip_cloaking_4.0
42 * if you're linking 3.2 and later, otherwise use
30da589e 43 * ip_cloaking, for compatibility with older 3.x
a8560aff
AC
44 * releases.
45 */
46
9abdcf1c
EM
47#loadmodule "extensions/ip_cloaking_4.0";
48#loadmodule "extensions/ip_cloaking";
a8560aff 49
212380e3
AC
50serverinfo {
51 name = "hades.arpa";
212380e3
AC
52 sid = "42X";
53 description = "charybdis test server";
765d839d 54 network_name = "StaticBox";
212380e3
AC
55
56 /* On multi-homed hosts you may need the following. These define
57 * the addresses we connect from to other servers. */
58 /* for IPv4 */
cba8bbc3 59 #vhost = "192.0.2.6";
212380e3 60 /* for IPv6 */
cba8bbc3 61 #vhost6 = "2001:db8:2::6";
5c0df0e7 62
b8730cbf 63 /* ssl_private_key: our ssl private key */
f1e5a317 64 ssl_private_key = "etc/ssl.key";
b8730cbf
VY
65
66 /* ssl_cert: certificate for our ssl server */
b3c4dfd7 67 ssl_cert = "etc/ssl.pem";
b8730cbf 68
654caa84
AC
69 /* ssl_dh_params: DH parameters, generate with openssl dhparam -out dh.pem 2048
70 * In general, the DH parameters size should be the same as your key's size.
71 * However it has been reported that some clients have broken TLS implementations which may
72 * choke on keysizes larger than 2048-bit, so we would recommend using 2048-bit DH parameters
73 * for now if your keys are larger than 2048-bit.
74 */
b8730cbf
VY
75 ssl_dh_params = "etc/dh.pem";
76
fa1a7bef
JT
77 /* ssld_count: number of ssld processes you want to start, if you
78 * have a really busy server, using N-1 where N is the number of
79 * cpu/cpu cores you have might be useful. A number greater than one
80 * can also be useful in case of bugs in ssld and because ssld needs
81 * two file descriptors per SSL connection.
b8730cbf
VY
82 */
83 ssld_count = 1;
84
85 /* default max clients: the default maximum number of clients
86 * allowed to connect. This can be changed once ircd has started by
87 * issuing:
88 * /quote set maxclients <limit>
c2d96fcb 89 */
101db4c4 90 default_max_clients = 1024;
b583faf9 91
b225bf93
JT
92 /* nicklen: enforced nickname length (for this server only; must not
93 * be longer than the maximum length set while building).
94 */
b583faf9 95 nicklen = 30;
212380e3
AC
96};
97
98admin {
99 name = "Lazy admin (lazya)";
765d839d 100 description = "StaticBox client server";
212380e3
AC
101 email = "nobody@127.0.0.1";
102};
103
104log {
105 fname_userlog = "logs/userlog";
106 #fname_fuserlog = "logs/fuserlog";
107 fname_operlog = "logs/operlog";
108 #fname_foperlog = "logs/foperlog";
109 fname_serverlog = "logs/serverlog";
212380e3
AC
110 #fname_klinelog = "logs/klinelog";
111 fname_killlog = "logs/killlog";
112 fname_operspylog = "logs/operspylog";
113 #fname_ioerrorlog = "logs/ioerror";
114};
115
116/* class {} blocks MUST be specified before anything that uses them. That
117 * means they must be defined before auth {} and before connect {}.
118 */
119class "users" {
120 ping_time = 2 minutes;
dffb83aa
JT
121 number_per_ident = 10;
122 number_per_ip = 10;
123 number_per_ip_global = 50;
e33e589c
JT
124 cidr_ipv4_bitlen = 24;
125 cidr_ipv6_bitlen = 64;
dffb83aa 126 number_per_cidr = 200;
212380e3
AC
127 max_number = 3000;
128 sendq = 400 kbytes;
129};
130
131class "opers" {
132 ping_time = 5 minutes;
133 number_per_ip = 10;
134 max_number = 1000;
135 sendq = 1 megabyte;
136};
137
138class "server" {
139 ping_time = 5 minutes;
140 connectfreq = 5 minutes;
141 max_number = 1;
142 sendq = 4 megabytes;
143};
144
145listen {
02270e96
AC
146 /* defer_accept: wait for clients to send IRC handshake data before
147 * accepting them. if you intend to use software which depends on the
148 * server replying first, such as BOPM, you should disable this feature.
149 * otherwise, you probably want to leave it on.
150 */
151 defer_accept = yes;
152
212380e3
AC
153 /* If you want to listen on a specific IP only, specify host.
154 * host definitions apply only to the following port line.
155 */
cba8bbc3 156 #host = "192.0.2.6";
212380e3 157 port = 5000, 6665 .. 6669;
f42c7be6 158 sslport = 6697;
212380e3
AC
159
160 /* Listen on IPv6 (if you used host= above). */
cba8bbc3 161 #host = "2001:db8:2::6";
da1b891f
KB
162 #port = 5000, 6665 .. 6669;
163 #sslport = 9999;
212380e3
AC
164};
165
166/* auth {}: allow users to connect to the ircd (OLD I:)
167 * auth {} blocks MUST be specified in order of precedence. The first one
168 * that matches a user will be used. So place spoofs first, then specials,
169 * then general access, then restricted.
170 */
171auth {
b0dc8e03
JT
172 /* user: the user@host allowed to connect. Multiple IPv4/IPv6 user
173 * lines are permitted per auth block. This is matched against the
174 * hostname and IP address (using :: shortening for IPv6 and
175 * prepending a 0 if it starts with a colon) and can also use CIDR
176 * masks.
212380e3 177 */
cba8bbc3
JT
178 user = "*@198.51.100.0/24";
179 user = "*test@2001:db8:1:*";
212380e3
AC
180
181 /* password: an optional password that is required to use this block.
182 * By default this is not encrypted, specify the flag "encrypted" in
183 * flags = ...; below if it is.
184 */
185 password = "letmein";
5c0df0e7 186
212380e3
AC
187 /* spoof: fake the users user@host to be be this. You may either
188 * specify a host or a user@host to spoof to. This is free-form,
189 * just do everyone a favour and dont abuse it. (OLD I: = flag)
190 */
da1b891f 191 spoof = "I.still.hate.packets";
212380e3 192
81a05933
EM
193 /* Possible flags in auth:
194 *
195 * encrypted | password is encrypted with mkpasswd
196 * spoof_notice | give a notice when spoofing hosts
197 * exceed_limit (old > flag) | allow user to exceed class user limits
198 * kline_exempt (old ^ flag) | exempt this user from k/g/xlines,
199 * | dnsbls, and proxies
200 * proxy_exempt | exempt this user from proxies
201 * dnsbl_exempt | exempt this user from dnsbls
202 * spambot_exempt | exempt this user from spambot checks
203 * shide_exempt | exempt this user from serverhiding
204 * jupe_exempt | exempt this user from generating
205 * warnings joining juped channels
206 * resv_exempt | exempt this user from resvs
207 * flood_exempt | exempt this user from flood limits
208 * USE WITH CAUTION.
209 * no_tilde (old - flag) | don't prefix ~ to username if no ident
210 * need_ident (old + flag) | require ident for user in this class
211 * need_ssl | require SSL/TLS for user in this class
212 * need_sasl | require SASL id for user in this class
213 */
212380e3 214 flags = kline_exempt, exceed_limit;
5c0df0e7 215
212380e3
AC
216 /* class: the class the user is placed in */
217 class = "opers";
218};
219
220auth {
221 user = "*@*";
222 class = "users";
223};
224
da77b103
JT
225/* privset {} blocks MUST be specified before anything that uses them. That
226 * means they must be defined before operator {}.
227 */
be525828
AC
228privset "local_op" {
229 privs = oper:local_kill, oper:operwall;
230};
231
b5010970
AC
232privset "server_bot" {
233 extends = "local_op";
d9e7ca49 234 privs = oper:kline, oper:remoteban, snomask:nick_changes;
b5010970
AC
235};
236
be525828
AC
237privset "global_op" {
238 extends = "local_op";
239 privs = oper:global_kill, oper:routing, oper:kline, oper:unkline, oper:xline,
477dc2e9 240 oper:resv, oper:mass_notice, oper:remoteban;
be525828
AC
241};
242
243privset "admin" {
244 extends = "global_op";
fe749d37 245 privs = oper:admin, oper:die, oper:rehash, oper:spy, oper:grant;
be525828
AC
246};
247
212380e3
AC
248operator "god" {
249 /* name: the name of the oper must go above */
250
251 /* user: the user@host required for this operator. CIDR *is*
252 * supported now. auth{} spoofs work here, other spoofs do not.
253 * multiple user="" lines are supported.
254 */
255 user = "*god@127.0.0.1";
256
257 /* password: the password required to oper. Unless ~encrypted is
5c0df0e7 258 * contained in flags = ...; this will need to be encrypted using
212380e3
AC
259 * mkpasswd, MD5 is supported
260 */
261 password = "etcnjl8juSU1E";
262
263 /* rsa key: the public key for this oper when using Challenge.
5c0df0e7 264 * A password should not be defined when this is used, see
212380e3
AC
265 * doc/challenge.txt for more information.
266 */
267 #rsa_public_key_file = "/usr/local/ircd/etc/oper.pub";
268
269 /* umodes: the specific umodes this oper gets when they oper.
270 * If this is specified an oper will not be given oper_umodes
271 * These are described above oper_only_umodes in general {};
272 */
273 #umodes = locops, servnotice, operwall, wallop;
274
ff31db84
AC
275 /* fingerprint: if specified, the oper's client certificate
276 * fingerprint will be checked against the specified fingerprint
277 * below.
278 */
279 #fingerprint = "c77106576abf7f9f90cca0f63874a60f2e40a64b";
280
212380e3
AC
281 /* snomask: specific server notice mask on oper up.
282 * If this is specified an oper will not be given oper_snomask.
283 */
284 snomask = "+Zbfkrsuy";
285
da77b103
JT
286 /* flags: misc options for the operator. You may prefix an option
287 * with ~ to disable it, e.g. ~encrypted.
212380e3 288 *
10847f65 289 * Default flags are encrypted.
212380e3
AC
290 *
291 * Available options:
292 *
293 * encrypted: the password above is encrypted [DEFAULT]
3e664be3 294 * need_ssl: must be using SSL/TLS to oper up
da1b891f 295 */
da77b103 296 flags = encrypted;
be525828 297
da77b103 298 /* privset: privileges set to grant */
be525828 299 privset = "admin";
212380e3
AC
300};
301
302connect "irc.uplink.com" {
cba8bbc3 303 host = "203.0.113.3";
212380e3
AC
304 send_password = "password";
305 accept_password = "anotherpassword";
306 port = 6666;
307 hub_mask = "*";
308 class = "server";
309 flags = compressed, topicburst;
310
ff0cc1e6
AC
311 #fingerprint = "c77106576abf7f9f90cca0f63874a60f2e40a64b";
312
b0dc8e03
JT
313 /* If the connection is IPv6, uncomment below.
314 * Use 0::1, not ::1, for IPv6 localhost. */
212380e3
AC
315 #aftype = ipv6;
316};
317
b8730cbf 318connect "ssl.uplink.com" {
cba8bbc3 319 host = "203.0.113.129";
b8730cbf
VY
320 send_password = "password";
321 accept_password = "anotherpassword";
322 port = 9999;
323 hub_mask = "*";
324 class = "server";
325 flags = ssl, topicburst;
326};
327
212380e3
AC
328service {
329 name = "services.int";
330};
331
332cluster {
333 name = "*";
334 flags = kline, tkline, unkline, xline, txline, unxline, resv, tresv, unresv;
335};
336
337shared {
338 oper = "*@*", "*";
339 flags = all, rehash;
340};
341
b808adf9 342/* exempt {}: IPs that are exempt from Dlines and rejectcache. (OLD d:) */
212380e3
AC
343exempt {
344 ip = "127.0.0.1";
345};
346
347channel {
348 use_invex = yes;
349 use_except = yes;
2da6f6eb 350 use_forward = yes;
212380e3 351 use_knock = yes;
212380e3
AC
352 knock_delay = 5 minutes;
353 knock_delay_channel = 1 minute;
354 max_chans_per_user = 15;
a4721f5e 355 max_chans_per_user_large = 60;
da1b891f
KB
356 max_bans = 100;
357 max_bans_large = 500;
212380e3
AC
358 default_split_user_count = 0;
359 default_split_server_count = 0;
360 no_create_on_split = no;
361 no_join_on_split = no;
362 burst_topicwho = yes;
363 kick_on_split_riding = no;
6865c0b0 364 only_ascii_channels = no;
c2c25552 365 resv_forcepart = yes;
717238d2 366 channel_target_change = yes;
341f971e 367 disable_local_channels = no;
63eb8567 368 autochanmodes = "+nt";
d513218a 369 displayed_usercount = 3;
14482679 370 strip_topic_colors = no;
212380e3
AC
371};
372
373serverhide {
374 flatten_links = yes;
375 links_delay = 5 minutes;
da1b891f 376 hidden = no;
212380e3
AC
377 disable_hidden = no;
378};
379
380/* These are the blacklist settings.
381 * You can have multiple combinations of host and rejection reasons.
b2324470 382 * They are used in pairs of one host/rejection reason.
212380e3 383 *
f105844a 384 * These settings should be adequate for most networks.
212380e3
AC
385 *
386 * Word to the wise: Do not use blacklists like SPEWS for blocking IRC
387 * connections.
388 *
0a1e77c2 389 * As of charybdis 2.2, you can do some keyword substitution on the rejection
92fb5c31
AC
390 * reason. The available keyword substitutions are:
391 *
392 * ${ip} - the user's IP
393 * ${host} - the user's canonical hostname
394 * ${dnsbl-host} - the dnsbl hostname the lookup was done against
395 * ${nick} - the user's nickname
396 * ${network-name} - the name of the network
397 *
0a1e77c2
EM
398 * As of charybdis 3.4, a type parameter is supported, which specifies the
399 * address families the blacklist supports. IPv4 and IPv6 are supported.
400 * IPv4 is currently the default as few blacklists support IPv6 operation
401 * as of this writing.
402 *
3c93d380 403 * As of charybdis 3.5, a matches parameter is allowed; if omitted, any result
5c0df0e7 404 * is considered a match. If included, a comma-separated list of *quoted*
3c93d380
EM
405 * strings is allowed to match queries. They may be of the format "0" to "255"
406 * to match the final octet (e.g. 127.0.0.1) or "127.x.y.z" to explicitly match
5c0df0e7 407 * an A record. The blacklist is only applied if it matches anything in the
f0bce9d9
EM
408 * list. You may freely mix full IP's and final octets.
409 *
410 * Consult your blacklist provider for the meaning of these parameters; they
411 * are usually used to denote different ban types.
212380e3 412 */
57b8cb0f 413blacklist {
40e92fca 414 host = "rbl.efnetrbl.org";
0a1e77c2 415 type = ipv4;
40e92fca 416 reject_reason = "${nick}, your IP (${ip}) is listed in EFnet's RBL. For assistance, see http://efnetrbl.org/?i=${ip}";
57b8cb0f 417
3c93d380 418 /* Example of a blacklist that supports both IPv4 and IPv6 and using matches */
0a1e77c2
EM
419# host = "foobl.blacklist.invalid";
420# type = ipv4, ipv6;
3c93d380 421# matches = "4", "6", "127.0.0.10";
0a1e77c2 422# reject_reason = "${nick}, your IP (${ip}) is listed in ${dnsbl-host} for some reason. In order to protect ${network-name} from abuse, we are not allowing connections listed in ${dnsbl-host} to connect";
57b8cb0f 423};
212380e3 424
8275e270
EM
425/* These are the OPM settings.
426 * This is similar to the functionality provided by BOPM. It will scan incoming
427 * connections for open proxies by connecting to clients and attempting several
428 * different open proxy handshakes. If they connect back to us (via a dedicated
429 * listening port), and send back the data we send them, they are considered
430 * an open proxy. For politeness reasons (users may be confused by the incoming
431 * connection attempts if they are logging incoming connections), the user is
432 * notified upon connect if they are being scanned.
433 *
434 * WARNING:
435 * These settings are considered experimental, and as of this writing, the
436 * Charybdis scanner is not as comprehensive as the one available in HOPM. Only
437 * basic SOCKS4 and SOCKS5 scanning is performed on a few well-known ports. You
438 * may disable the open proxy scanning feature by deleting this block if you are
439 * uncomfortable with this.
440 */
441opm {
442 /* IPv4 address to listen on. This must be a publicly facing IP address
443 * to be effective.
444 * If omitted, it defaults to serverinfo::vhost.
445 */
446 #listen_ipv4 = "127.0.0.1";
447
448 /* IPv4 port to listen on.
449 * This should not be the same as any existing listeners.
450 */
451 #port_ipv4 = 32000;
452
453 /* IPv6 address to listen on. This must be a publicly facing IP address
454 * to be effective.
455 * If omitted, it defaults to serverinfo::vhost6.
456 */
457 #listen_ipv6 = "0::1";
458
459 /* IPv6 port to listen on.
460 * This should not be the same as any existing listeners.
461 */
462 #port_ipv6 = 32000;
463
464 /* You can also set a port directive which will set both the IPv4 and
465 * IPv6 ports at once.
466 */
467 port = 32000;
51fa2ab8 468
9bba0f61
EM
469 /* This sets the timeout in seconds before ending open proxy scans.
470 * Values less than 1 or greater than 60 are ignored.
471 * It is advisable to keep it as short as feasible, so clients do not
472 * get held up by excessively long scan times.
473 */
474 timeout = 5;
475
51fa2ab8
EM
476 /* These are the ports to scan for SOCKS4 proxies on. They may overlap
477 * with other scan types. Sensible defaults are given below.
478 */
479 socks4_ports = 1080, 10800, 443, 80, 8080, 8000;
480
481 /* These are the ports to scan for SOCKS5 proxies on. They may overlap
482 * with other scan types. Sensible defaults are given below.
483 */
484 socks5_ports = 1080, 10800, 443, 80, 8080, 8000;
fabe8b94
EM
485
486 /* These are the ports to scan for HTTP connect proxies on (plaintext).
487 * They may overlap with other scan types. Sensible defaults are given
488 * below.
489 */
490 httpconnect_ports = 80, 8080, 8000;
8275e270
EM
491};
492
212380e3
AC
493alias "NickServ" {
494 target = "NickServ";
495};
496
497alias "ChanServ" {
498 target = "ChanServ";
499};
500
501alias "OperServ" {
502 target = "OperServ";
503};
504
505alias "MemoServ" {
506 target = "MemoServ";
507};
508
509alias "NS" {
510 target = "NickServ";
511};
512
513alias "CS" {
514 target = "ChanServ";
515};
516
517alias "OS" {
518 target = "OperServ";
519};
520
521alias "MS" {
522 target = "MemoServ";
523};
524
525general {
526 hide_error_messages = opers;
527 hide_spoof_ips = yes;
528
529 /*
530 * default_umodes: umodes to enable on connect.
a8560aff
AC
531 * If you have enabled the new ip_cloaking_4.0 module, and you want
532 * to make use of it, add +x to this option, i.e.:
533 * default_umodes = "+ix";
534 *
535 * If you have enabled the old ip_cloaking module, and you want
212380e3
AC
536 * to make use of it, add +h to this option, i.e.:
537 * default_umodes = "+ih";
538 */
539 default_umodes = "+i";
540
541 default_operstring = "is an IRC Operator";
542 default_adminstring = "is a Server Administrator";
543 servicestring = "is a Network Service";
7d33cce8
MT
544
545 /*
546 * Nick of the network's SASL agent. Used to check whether services are here,
547 * SASL credentials are only sent to its server. Needs to be a service.
548 *
549 * Defaults to SaslServ if unspecified.
550 */
551 sasl_service = "SaslServ";
212380e3 552 disable_fake_channels = no;
da1b891f
KB
553 tkline_expire_notices = no;
554 default_floodcount = 10;
212380e3
AC
555 failed_oper_notice = yes;
556 dots_in_ident=2;
212380e3
AC
557 min_nonwildcard = 4;
558 min_nonwildcard_simple = 3;
da1b891f 559 max_accept = 100;
5f8fb56d 560 max_monitor = 100;
212380e3
AC
561 anti_nick_flood = yes;
562 max_nick_time = 20 seconds;
563 max_nick_changes = 5;
da1b891f 564 anti_spam_exit_message_time = 5 minutes;
212380e3
AC
565 ts_warn_delta = 30 seconds;
566 ts_max_delta = 5 minutes;
567 client_exit = yes;
568 collision_fnc = yes;
330692a1 569 resv_fnc = yes;
212380e3
AC
570 global_snotices = yes;
571 dline_with_reason = yes;
572 kline_delay = 0 seconds;
573 kline_with_reason = yes;
574 kline_reason = "K-Lined";
575 identify_service = "NickServ@services.int";
576 identify_command = "IDENTIFY";
577 non_redundant_klines = yes;
578 warn_no_nline = yes;
1702b694 579 use_propagated_bans = yes;
212380e3
AC
580 stats_e_disabled = no;
581 stats_c_oper_only=no;
582 stats_h_oper_only=no;
583 stats_y_oper_only=no;
584 stats_o_oper_only=yes;
585 stats_P_oper_only=no;
586 stats_i_oper_only=masked;
587 stats_k_oper_only=masked;
da1b891f 588 map_oper_only = no;
212380e3
AC
589 operspy_admin_only = no;
590 operspy_dont_care_user_info = no;
591 caller_id_wait = 1 minute;
592 pace_wait_simple = 1 second;
593 pace_wait = 10 seconds;
594 short_motd = no;
595 ping_cookie = no;
596 connect_timeout = 30 seconds;
944b0584 597 default_ident_timeout = 5;
212380e3
AC
598 disable_auth = no;
599 no_oper_flood = yes;
212380e3 600 max_targets = 4;
e6e54763 601 client_flood_max_lines = 20;
da1b891f 602 use_whois_actually = no;
212380e3
AC
603 oper_only_umodes = operwall, locops, servnotice;
604 oper_umodes = locops, servnotice, operwall, wallop;
605 oper_snomask = "+s";
da1b891f 606 burst_away = yes;
212380e3
AC
607 nick_delay = 0 seconds; # 15 minutes if you want to enable this
608 reject_ban_time = 1 minute;
609 reject_after_count = 3;
610 reject_duration = 5 minutes;
cc49daee
JT
611 throttle_duration = 60;
612 throttle_count = 4;
e88a1f1b 613 max_ratelimit_tokens = 30;
d42e6915 614 away_interval = 30;
13d8f0ed 615 certfp_method = sha1;
71c95533 616 hide_opers_in_whois = no;
212380e3
AC
617};
618
619modules {
620 path = "modules";
621 path = "modules/autoload";
622};