]> jfr.im git - irc/rqf/shadowircd.git/blame - doc/example.conf
Added cycle_host_change option.
[irc/rqf/shadowircd.git] / doc / example.conf
CommitLineData
212380e3 1/* doc/example.conf - brief 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 *
407b1826 7 * $Id: example.conf 3582 2007-11-17 21:55:48Z jilles $
212380e3 8 *
9 * See reference.conf for more information.
10 */
11
12/* Extensions */
95dc1251
VY
13#loadmodule "extensions/chm_operonly_compat.so";
14#loadmodule "extensions/chm_quietunreg_compat.so";
15#loadmodule "extensions/chm_sslonly_compat.so";
212380e3 16#loadmodule "extensions/createauthonly.so";
17#loadmodule "extensions/extb_account.so";
18#loadmodule "extensions/extb_canjoin.so";
19#loadmodule "extensions/extb_channel.so";
20#loadmodule "extensions/extb_extgecos.so";
21#loadmodule "extensions/extb_oper.so";
22#loadmodule "extensions/extb_realname.so";
23#loadmodule "extensions/extb_server.so";
95dc1251 24#loadmodule "extensions/extb_ssl.so";
212380e3 25#loadmodule "extensions/hurt.so";
212380e3 26#loadmodule "extensions/m_findforwards.so";
27#loadmodule "extensions/m_identify.so";
28#loadmodule "extensions/no_oper_invis.so";
29#loadmodule "extensions/sno_farconnect.so";
30#loadmodule "extensions/sno_globalkline.so";
31#loadmodule "extensions/sno_globaloper.so";
446d88dd 32#loadmodule "extensions/sno_whois.so";
212380e3 33
790bfe43
WP
34/*
35 * IP cloaking extensions: use ip_cloaking_4.0
36 * if you're linking 3.2 and later, otherwise use
37 * ip_cloaking.so, for compatibility with older 3.x
38 * releases.
39 */
40
41#loadmodule "extensions/ip_cloaking_4.0.so";
42#loadmodule "extensions/ip_cloaking.so";
43
212380e3 44serverinfo {
45 name = "hades.arpa";
212380e3 46 sid = "42X";
f34794d0 47 description = "shadowircd test server";
212380e3 48 network_name = "AthemeNET";
49 network_desc = "Your IRC network.";
50 hub = yes;
51
52 /* On multi-homed hosts you may need the following. These define
53 * the addresses we connect from to other servers. */
54 /* for IPv4 */
55 #vhost = "192.169.0.1";
56 /* for IPv6 */
57 #vhost6 = "3ffe:80e8:546::2";
8db00894 58
9b1b4a97
VY
59 /* ssl_private_key: our ssl private key */
60 ssl_private_key = "etc/test.key";
61
62 /* ssl_cert: certificate for our ssl server */
63 ssl_cert = "etc/test.cert";
64
65 /* ssl_dh_params: DH parameters, generate with openssl dhparam -out dh.pem 1024 */
66 ssl_dh_params = "etc/dh.pem";
67
29e3823d
JT
68 /* ssld_count: number of ssld processes you want to start, if you
69 * have a really busy server, using N-1 where N is the number of
70 * cpu/cpu cores you have might be useful. A number greater than one
71 * can also be useful in case of bugs in ssld and because ssld needs
72 * two file descriptors per SSL connection.
9b1b4a97
VY
73 */
74 ssld_count = 1;
75
76 /* default max clients: the default maximum number of clients
77 * allowed to connect. This can be changed once ircd has started by
78 * issuing:
79 * /quote set maxclients <limit>
c2d96fcb 80 */
3fe90825 81 default_max_clients = 1024;
212380e3 82};
83
84admin {
85 name = "Lazy admin (lazya)";
86 description = "AthemeNET client server";
87 email = "nobody@127.0.0.1";
88};
89
90log {
91 fname_userlog = "logs/userlog";
92 #fname_fuserlog = "logs/fuserlog";
93 fname_operlog = "logs/operlog";
94 #fname_foperlog = "logs/foperlog";
95 fname_serverlog = "logs/serverlog";
212380e3 96 #fname_klinelog = "logs/klinelog";
97 fname_killlog = "logs/killlog";
98 fname_operspylog = "logs/operspylog";
99 #fname_ioerrorlog = "logs/ioerror";
100};
101
102/* class {} blocks MUST be specified before anything that uses them. That
103 * means they must be defined before auth {} and before connect {}.
104 */
105class "users" {
106 ping_time = 2 minutes;
76514a0b
JT
107 number_per_ident = 10;
108 number_per_ip = 10;
109 number_per_ip_global = 50;
c8d85889
JT
110 cidr_ipv4_bitlen = 24;
111 cidr_ipv6_bitlen = 64;
76514a0b 112 number_per_cidr = 200;
212380e3 113 max_number = 3000;
114 sendq = 400 kbytes;
115};
116
117class "opers" {
118 ping_time = 5 minutes;
119 number_per_ip = 10;
120 max_number = 1000;
121 sendq = 1 megabyte;
122};
123
124class "server" {
125 ping_time = 5 minutes;
126 connectfreq = 5 minutes;
127 max_number = 1;
128 sendq = 4 megabytes;
129};
130
131listen {
132 /* If you want to listen on a specific IP only, specify host.
133 * host definitions apply only to the following port line.
134 */
135 #host = "192.169.0.1";
136 port = 5000, 6665 .. 6669;
9b1b4a97 137 sslport = 9999;
212380e3 138
139 /* Listen on IPv6 (if you used host= above). */
140 #host = "3ffe:1234:a:b:c::d";
141 #port = 5000, 6665 .. 6669;
9b1b4a97 142 #sslport = 9999;
212380e3 143};
144
145/* auth {}: allow users to connect to the ircd (OLD I:)
146 * auth {} blocks MUST be specified in order of precedence. The first one
147 * that matches a user will be used. So place spoofs first, then specials,
148 * then general access, then restricted.
149 */
150auth {
b0dc8e03 151 /* user: the user@host allowed to connect. Multiple IPv4/IPv6 user
152 * lines are permitted per auth block. This is matched against the
153 * hostname and IP address (using :: shortening for IPv6 and
154 * prepending a 0 if it starts with a colon) and can also use CIDR
155 * masks.
212380e3 156 */
157 user = "*@172.16.0.0/12";
158 user = "*test@123D:B567:*";
159
160 /* password: an optional password that is required to use this block.
161 * By default this is not encrypted, specify the flag "encrypted" in
162 * flags = ...; below if it is.
163 */
164 password = "letmein";
165
166 /* spoof: fake the users user@host to be be this. You may either
167 * specify a host or a user@host to spoof to. This is free-form,
168 * just do everyone a favour and dont abuse it. (OLD I: = flag)
169 */
170 spoof = "I.still.hate.packets";
171
fa72cee1
JH
172 /* autojoin: Channel (or channels, comma-seperated) to join users
173 * in this auth block to on connect. Note that this won't join
174 * the user through any bans or otherwise restrictive chmodes.
175 */
176 autojoin = "#shadowircd,#test";
177
87f58b4f
JH
178 /* autojoin_opers : Channel (or channels, comma-seperated) to join
179 * opers to on oper-up.
180 */
181 autojoin_opers = "#opers,#help";
182
212380e3 183 /* Possible flags in auth:
184 *
185 * encrypted | password is encrypted with mkpasswd
186 * spoof_notice | give a notice when spoofing hosts
187 * exceed_limit (old > flag) | allow user to exceed class user limits
188 * kline_exempt (old ^ flag) | exempt this user from k/g/xlines&dnsbls
189 * dnsbl_exempt | exempt this user from dnsbls
212380e3 190 * spambot_exempt | exempt this user from spambot checks
191 * shide_exempt | exempt this user from serverhiding
192 * jupe_exempt | exempt this user from generating
193 * warnings joining juped channels
194 * resv_exempt | exempt this user from resvs
195 * flood_exempt | exempt this user from flood limits
196 * USE WITH CAUTION.
197 * no_tilde (old - flag) | don't prefix ~ to username if no ident
198 * need_ident (old + flag) | require ident for user in this class
92ee45c4 199 * need_ssl | require SSL/TLS for user in this class
212380e3 200 * need_sasl | require SASL id for user in this class
201 */
202 flags = kline_exempt, exceed_limit;
203
204 /* class: the class the user is placed in */
205 class = "opers";
206};
207
208auth {
209 user = "*@*";
210 class = "users";
211};
212
ebe56017
JT
213/* privset {} blocks MUST be specified before anything that uses them. That
214 * means they must be defined before operator {}.
215 */
48de3c18
WP
216privset "local_op" {
217 privs = oper:local_kill, oper:operwall;
218};
219
6e915bfe
WP
220privset "server_bot" {
221 extends = "local_op";
29ef4e88 222 privs = oper:kline, oper:remoteban, snomask:nick_changes;
6e915bfe
WP
223};
224
48de3c18
WP
225privset "global_op" {
226 extends = "local_op";
227 privs = oper:global_kill, oper:routing, oper:kline, oper:unkline, oper:xline,
44d450f2 228 oper:resv, oper:mass_notice, oper:remoteban;
48de3c18
WP
229};
230
231privset "admin" {
232 extends = "global_op";
0d499ee5 233 privs = oper:admin, oper:die, oper:rehash, oper:spy;
48de3c18
WP
234};
235
212380e3 236operator "god" {
237 /* name: the name of the oper must go above */
238
239 /* user: the user@host required for this operator. CIDR *is*
240 * supported now. auth{} spoofs work here, other spoofs do not.
241 * multiple user="" lines are supported.
242 */
243 user = "*god@127.0.0.1";
244
245 /* password: the password required to oper. Unless ~encrypted is
246 * contained in flags = ...; this will need to be encrypted using
247 * mkpasswd, MD5 is supported
248 */
249 password = "etcnjl8juSU1E";
250
251 /* rsa key: the public key for this oper when using Challenge.
252 * A password should not be defined when this is used, see
253 * doc/challenge.txt for more information.
254 */
255 #rsa_public_key_file = "/usr/local/ircd/etc/oper.pub";
256
257 /* umodes: the specific umodes this oper gets when they oper.
258 * If this is specified an oper will not be given oper_umodes
259 * These are described above oper_only_umodes in general {};
260 */
261 #umodes = locops, servnotice, operwall, wallop;
262
d8a023ed
WP
263 /* fingerprint: if specified, the oper's client certificate
264 * fingerprint will be checked against the specified fingerprint
265 * below.
266 */
267 #fingerprint = "c77106576abf7f9f90cca0f63874a60f2e40a64b";
268
212380e3 269 /* snomask: specific server notice mask on oper up.
270 * If this is specified an oper will not be given oper_snomask.
271 */
272 snomask = "+Zbfkrsuy";
273
ebe56017
JT
274 /* flags: misc options for the operator. You may prefix an option
275 * with ~ to disable it, e.g. ~encrypted.
212380e3 276 *
850b23f3 277 * Default flags are encrypted.
212380e3 278 *
279 * Available options:
280 *
281 * encrypted: the password above is encrypted [DEFAULT]
92ee45c4 282 * need_ssl: must be using SSL/TLS to oper up
212380e3 283 */
ebe56017 284 flags = encrypted;
48de3c18 285
ebe56017 286 /* privset: privileges set to grant */
48de3c18 287 privset = "admin";
212380e3 288};
289
290connect "irc.uplink.com" {
291 host = "192.168.0.1";
292 send_password = "password";
293 accept_password = "anotherpassword";
294 port = 6666;
295 hub_mask = "*";
296 class = "server";
297 flags = compressed, topicburst;
298
b0dc8e03 299 /* If the connection is IPv6, uncomment below.
300 * Use 0::1, not ::1, for IPv6 localhost. */
212380e3 301 #aftype = ipv6;
302};
303
9b1b4a97
VY
304connect "ssl.uplink.com" {
305 host = "192.168.0.1";
306 send_password = "password";
307 accept_password = "anotherpassword";
308 port = 9999;
309 hub_mask = "*";
310 class = "server";
311 flags = ssl, topicburst;
312};
313
212380e3 314service {
315 name = "services.int";
316};
317
318cluster {
319 name = "*";
320 flags = kline, tkline, unkline, xline, txline, unxline, resv, tresv, unresv;
321};
322
323shared {
324 oper = "*@*", "*";
325 flags = all, rehash;
326};
327
b808adf9 328/* exempt {}: IPs that are exempt from Dlines and rejectcache. (OLD d:) */
212380e3 329exempt {
330 ip = "127.0.0.1";
331};
332
333channel {
334 use_invex = yes;
335 use_except = yes;
336 use_knock = yes;
337 use_forward = yes;
212380e3 338 knock_delay = 5 minutes;
339 knock_delay_channel = 1 minute;
340 max_chans_per_user = 15;
341 max_bans = 100;
342 max_bans_large = 500;
343 default_split_user_count = 0;
344 default_split_server_count = 0;
345 no_create_on_split = no;
346 no_join_on_split = no;
347 burst_topicwho = yes;
348 kick_on_split_riding = no;
dea418e9 349 only_ascii_channels = no;
c3a0fde2 350 cycle_host_change = yes;
100563e8 351 resv_forcepart = yes;
212380e3 352};
353
354serverhide {
355 flatten_links = yes;
356 links_delay = 5 minutes;
357 hidden = no;
358 disable_hidden = no;
359};
360
361/* These are the blacklist settings.
362 * You can have multiple combinations of host and rejection reasons.
6abfcc55 363 * They are used in pairs of one host/rejection reason.
212380e3 364 *
365 * These settings should be adequate for most networks, and are (presently)
366 * required for use on AthemeNet.
367 *
368 * Word to the wise: Do not use blacklists like SPEWS for blocking IRC
369 * connections.
370 *
1e56e993 371 * As of charybdis 2.1.3, you can do some keyword substitution on the rejection
92fb5c31 372 * reason. The available keyword substitutions are:
373 *
374 * ${ip} - the user's IP
375 * ${host} - the user's canonical hostname
376 * ${dnsbl-host} - the dnsbl hostname the lookup was done against
377 * ${nick} - the user's nickname
378 * ${network-name} - the name of the network
379 *
57b8cb0f 380 * Note: AHBL (the providers of the below *.ahbl.org BLs) request that they be
212380e3 381 * contacted, via email, at admins@2mbit.com before using these BLs.
382 * See <http://www.ahbl.org/services.php> for more information.
383 */
57b8cb0f 384blacklist {
385 host = "dnsbl.dronebl.org";
386 reject_reason = "${nick}, your IP (${ip}) is listed in DroneBL. For assistance, see http://dronebl.org/lookup_branded.do?ip=${ip}&network=${network-name}";
387
212380e3 388# host = "ircbl.ahbl.org";
92fb5c31 389# 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 390#
391# host = "tor.ahbl.org";
92fb5c31 392# 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 393};
212380e3 394
395alias "NickServ" {
396 target = "NickServ";
397};
398
399alias "ChanServ" {
400 target = "ChanServ";
401};
402
403alias "OperServ" {
404 target = "OperServ";
405};
406
407alias "MemoServ" {
408 target = "MemoServ";
409};
410
411alias "NS" {
412 target = "NickServ";
413};
414
415alias "CS" {
416 target = "ChanServ";
417};
418
419alias "OS" {
420 target = "OperServ";
421};
422
423alias "MS" {
424 target = "MemoServ";
425};
426
427general {
428 hide_error_messages = opers;
429 hide_spoof_ips = yes;
430
431 /*
432 * default_umodes: umodes to enable on connect.
790bfe43
WP
433 * If you have enabled the new ip_cloaking_4.0 module, and you want
434 * to make use of it, add +x to this option, i.e.:
435 * default_umodes = "+ix";
436 *
437 * If you have enabled the old ip_cloaking module, and you want
212380e3 438 * to make use of it, add +h to this option, i.e.:
439 * default_umodes = "+ih";
440 */
441 default_umodes = "+i";
442
443 default_operstring = "is an IRC Operator";
444 default_adminstring = "is a Server Administrator";
445 servicestring = "is a Network Service";
446 disable_fake_channels = no;
447 tkline_expire_notices = no;
448 default_floodcount = 10;
449 failed_oper_notice = yes;
450 dots_in_ident=2;
212380e3 451 min_nonwildcard = 4;
452 min_nonwildcard_simple = 3;
453 max_accept = 100;
454 max_monitor = 100;
455 anti_nick_flood = yes;
456 max_nick_time = 20 seconds;
457 max_nick_changes = 5;
458 anti_spam_exit_message_time = 5 minutes;
459 ts_warn_delta = 30 seconds;
460 ts_max_delta = 5 minutes;
461 client_exit = yes;
462 collision_fnc = yes;
463 global_snotices = yes;
464 dline_with_reason = yes;
465 kline_delay = 0 seconds;
466 kline_with_reason = yes;
467 kline_reason = "K-Lined";
468 identify_service = "NickServ@services.int";
469 identify_command = "IDENTIFY";
470 non_redundant_klines = yes;
471 warn_no_nline = yes;
472 stats_e_disabled = no;
473 stats_c_oper_only=no;
474 stats_h_oper_only=no;
475 stats_y_oper_only=no;
476 stats_o_oper_only=yes;
477 stats_P_oper_only=no;
478 stats_i_oper_only=masked;
479 stats_k_oper_only=masked;
480 map_oper_only = no;
481 operspy_admin_only = no;
482 operspy_dont_care_user_info = no;
483 caller_id_wait = 1 minute;
484 pace_wait_simple = 1 second;
485 pace_wait = 10 seconds;
486 short_motd = no;
487 ping_cookie = no;
488 connect_timeout = 30 seconds;
489 disable_auth = no;
490 no_oper_flood = yes;
212380e3 491 max_targets = 4;
492 client_flood = 20;
493 use_whois_actually = no;
494 oper_only_umodes = operwall, locops, servnotice;
495 oper_umodes = locops, servnotice, operwall, wallop;
496 oper_snomask = "+s";
497 burst_away = yes;
498 nick_delay = 0 seconds; # 15 minutes if you want to enable this
499 reject_ban_time = 1 minute;
500 reject_after_count = 3;
501 reject_duration = 5 minutes;
c3a82957
JT
502 throttle_duration = 60;
503 throttle_count = 4;
212380e3 504};
505
506modules {
507 path = "modules";
508 path = "modules/autoload";
509};