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