]> jfr.im git - irc/rqf/shadowircd.git/blame - doc/example.conf
Documentation updates for the ip_cloaking_4.0 transition.
[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";
47 description = "charybdis test server";
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
172 /* Possible flags in auth:
173 *
174 * encrypted | password is encrypted with mkpasswd
175 * spoof_notice | give a notice when spoofing hosts
176 * exceed_limit (old > flag) | allow user to exceed class user limits
177 * kline_exempt (old ^ flag) | exempt this user from k/g/xlines&dnsbls
178 * dnsbl_exempt | exempt this user from dnsbls
212380e3 179 * spambot_exempt | exempt this user from spambot checks
180 * shide_exempt | exempt this user from serverhiding
181 * jupe_exempt | exempt this user from generating
182 * warnings joining juped channels
183 * resv_exempt | exempt this user from resvs
184 * flood_exempt | exempt this user from flood limits
185 * USE WITH CAUTION.
186 * no_tilde (old - flag) | don't prefix ~ to username if no ident
187 * need_ident (old + flag) | require ident for user in this class
92ee45c4 188 * need_ssl | require SSL/TLS for user in this class
212380e3 189 * need_sasl | require SASL id for user in this class
190 */
191 flags = kline_exempt, exceed_limit;
192
193 /* class: the class the user is placed in */
194 class = "opers";
195};
196
197auth {
198 user = "*@*";
199 class = "users";
200};
201
ebe56017
JT
202/* privset {} blocks MUST be specified before anything that uses them. That
203 * means they must be defined before operator {}.
204 */
48de3c18
WP
205privset "local_op" {
206 privs = oper:local_kill, oper:operwall;
207};
208
6e915bfe
WP
209privset "server_bot" {
210 extends = "local_op";
29ef4e88 211 privs = oper:kline, oper:remoteban, snomask:nick_changes;
6e915bfe
WP
212};
213
48de3c18
WP
214privset "global_op" {
215 extends = "local_op";
216 privs = oper:global_kill, oper:routing, oper:kline, oper:unkline, oper:xline,
44d450f2 217 oper:resv, oper:mass_notice, oper:remoteban;
48de3c18
WP
218};
219
220privset "admin" {
221 extends = "global_op";
0d499ee5 222 privs = oper:admin, oper:die, oper:rehash, oper:spy;
48de3c18
WP
223};
224
212380e3 225operator "god" {
226 /* name: the name of the oper must go above */
227
228 /* user: the user@host required for this operator. CIDR *is*
229 * supported now. auth{} spoofs work here, other spoofs do not.
230 * multiple user="" lines are supported.
231 */
232 user = "*god@127.0.0.1";
233
234 /* password: the password required to oper. Unless ~encrypted is
235 * contained in flags = ...; this will need to be encrypted using
236 * mkpasswd, MD5 is supported
237 */
238 password = "etcnjl8juSU1E";
239
240 /* rsa key: the public key for this oper when using Challenge.
241 * A password should not be defined when this is used, see
242 * doc/challenge.txt for more information.
243 */
244 #rsa_public_key_file = "/usr/local/ircd/etc/oper.pub";
245
246 /* umodes: the specific umodes this oper gets when they oper.
247 * If this is specified an oper will not be given oper_umodes
248 * These are described above oper_only_umodes in general {};
249 */
250 #umodes = locops, servnotice, operwall, wallop;
251
d8a023ed
WP
252 /* fingerprint: if specified, the oper's client certificate
253 * fingerprint will be checked against the specified fingerprint
254 * below.
255 */
256 #fingerprint = "c77106576abf7f9f90cca0f63874a60f2e40a64b";
257
212380e3 258 /* snomask: specific server notice mask on oper up.
259 * If this is specified an oper will not be given oper_snomask.
260 */
261 snomask = "+Zbfkrsuy";
262
ebe56017
JT
263 /* flags: misc options for the operator. You may prefix an option
264 * with ~ to disable it, e.g. ~encrypted.
212380e3 265 *
850b23f3 266 * Default flags are encrypted.
212380e3 267 *
268 * Available options:
269 *
270 * encrypted: the password above is encrypted [DEFAULT]
92ee45c4 271 * need_ssl: must be using SSL/TLS to oper up
212380e3 272 */
ebe56017 273 flags = encrypted;
48de3c18 274
ebe56017 275 /* privset: privileges set to grant */
48de3c18 276 privset = "admin";
212380e3 277};
278
279connect "irc.uplink.com" {
280 host = "192.168.0.1";
281 send_password = "password";
282 accept_password = "anotherpassword";
283 port = 6666;
284 hub_mask = "*";
285 class = "server";
286 flags = compressed, topicburst;
287
b0dc8e03 288 /* If the connection is IPv6, uncomment below.
289 * Use 0::1, not ::1, for IPv6 localhost. */
212380e3 290 #aftype = ipv6;
291};
292
9b1b4a97
VY
293connect "ssl.uplink.com" {
294 host = "192.168.0.1";
295 send_password = "password";
296 accept_password = "anotherpassword";
297 port = 9999;
298 hub_mask = "*";
299 class = "server";
300 flags = ssl, topicburst;
301};
302
212380e3 303service {
304 name = "services.int";
305};
306
307cluster {
308 name = "*";
309 flags = kline, tkline, unkline, xline, txline, unxline, resv, tresv, unresv;
310};
311
312shared {
313 oper = "*@*", "*";
314 flags = all, rehash;
315};
316
b808adf9 317/* exempt {}: IPs that are exempt from Dlines and rejectcache. (OLD d:) */
212380e3 318exempt {
319 ip = "127.0.0.1";
320};
321
322channel {
323 use_invex = yes;
324 use_except = yes;
325 use_knock = yes;
326 use_forward = yes;
212380e3 327 knock_delay = 5 minutes;
328 knock_delay_channel = 1 minute;
329 max_chans_per_user = 15;
330 max_bans = 100;
331 max_bans_large = 500;
332 default_split_user_count = 0;
333 default_split_server_count = 0;
334 no_create_on_split = no;
335 no_join_on_split = no;
336 burst_topicwho = yes;
337 kick_on_split_riding = no;
dea418e9 338 only_ascii_channels = no;
100563e8 339 resv_forcepart = yes;
212380e3 340};
341
342serverhide {
343 flatten_links = yes;
344 links_delay = 5 minutes;
345 hidden = no;
346 disable_hidden = no;
347};
348
349/* These are the blacklist settings.
350 * You can have multiple combinations of host and rejection reasons.
6abfcc55 351 * They are used in pairs of one host/rejection reason.
212380e3 352 *
353 * These settings should be adequate for most networks, and are (presently)
354 * required for use on AthemeNet.
355 *
356 * Word to the wise: Do not use blacklists like SPEWS for blocking IRC
357 * connections.
358 *
1e56e993 359 * As of charybdis 2.1.3, you can do some keyword substitution on the rejection
92fb5c31 360 * reason. The available keyword substitutions are:
361 *
362 * ${ip} - the user's IP
363 * ${host} - the user's canonical hostname
364 * ${dnsbl-host} - the dnsbl hostname the lookup was done against
365 * ${nick} - the user's nickname
366 * ${network-name} - the name of the network
367 *
57b8cb0f 368 * Note: AHBL (the providers of the below *.ahbl.org BLs) request that they be
212380e3 369 * contacted, via email, at admins@2mbit.com before using these BLs.
370 * See <http://www.ahbl.org/services.php> for more information.
371 */
57b8cb0f 372blacklist {
373 host = "dnsbl.dronebl.org";
374 reject_reason = "${nick}, your IP (${ip}) is listed in DroneBL. For assistance, see http://dronebl.org/lookup_branded.do?ip=${ip}&network=${network-name}";
375
212380e3 376# host = "ircbl.ahbl.org";
92fb5c31 377# 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 378#
379# host = "tor.ahbl.org";
92fb5c31 380# 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 381};
212380e3 382
383alias "NickServ" {
384 target = "NickServ";
385};
386
387alias "ChanServ" {
388 target = "ChanServ";
389};
390
391alias "OperServ" {
392 target = "OperServ";
393};
394
395alias "MemoServ" {
396 target = "MemoServ";
397};
398
399alias "NS" {
400 target = "NickServ";
401};
402
403alias "CS" {
404 target = "ChanServ";
405};
406
407alias "OS" {
408 target = "OperServ";
409};
410
411alias "MS" {
412 target = "MemoServ";
413};
414
415general {
416 hide_error_messages = opers;
417 hide_spoof_ips = yes;
418
419 /*
420 * default_umodes: umodes to enable on connect.
790bfe43
WP
421 * If you have enabled the new ip_cloaking_4.0 module, and you want
422 * to make use of it, add +x to this option, i.e.:
423 * default_umodes = "+ix";
424 *
425 * If you have enabled the old ip_cloaking module, and you want
212380e3 426 * to make use of it, add +h to this option, i.e.:
427 * default_umodes = "+ih";
428 */
429 default_umodes = "+i";
430
431 default_operstring = "is an IRC Operator";
432 default_adminstring = "is a Server Administrator";
433 servicestring = "is a Network Service";
434 disable_fake_channels = no;
435 tkline_expire_notices = no;
436 default_floodcount = 10;
437 failed_oper_notice = yes;
438 dots_in_ident=2;
212380e3 439 min_nonwildcard = 4;
440 min_nonwildcard_simple = 3;
441 max_accept = 100;
442 max_monitor = 100;
443 anti_nick_flood = yes;
444 max_nick_time = 20 seconds;
445 max_nick_changes = 5;
446 anti_spam_exit_message_time = 5 minutes;
447 ts_warn_delta = 30 seconds;
448 ts_max_delta = 5 minutes;
449 client_exit = yes;
450 collision_fnc = yes;
451 global_snotices = yes;
452 dline_with_reason = yes;
453 kline_delay = 0 seconds;
454 kline_with_reason = yes;
455 kline_reason = "K-Lined";
456 identify_service = "NickServ@services.int";
457 identify_command = "IDENTIFY";
458 non_redundant_klines = yes;
459 warn_no_nline = yes;
460 stats_e_disabled = no;
461 stats_c_oper_only=no;
462 stats_h_oper_only=no;
463 stats_y_oper_only=no;
464 stats_o_oper_only=yes;
465 stats_P_oper_only=no;
466 stats_i_oper_only=masked;
467 stats_k_oper_only=masked;
468 map_oper_only = no;
469 operspy_admin_only = no;
470 operspy_dont_care_user_info = no;
471 caller_id_wait = 1 minute;
472 pace_wait_simple = 1 second;
473 pace_wait = 10 seconds;
474 short_motd = no;
475 ping_cookie = no;
476 connect_timeout = 30 seconds;
477 disable_auth = no;
478 no_oper_flood = yes;
212380e3 479 max_targets = 4;
480 client_flood = 20;
481 use_whois_actually = no;
482 oper_only_umodes = operwall, locops, servnotice;
483 oper_umodes = locops, servnotice, operwall, wallop;
484 oper_snomask = "+s";
485 burst_away = yes;
486 nick_delay = 0 seconds; # 15 minutes if you want to enable this
487 reject_ban_time = 1 minute;
488 reject_after_count = 3;
489 reject_duration = 5 minutes;
c3a82957
JT
490 throttle_duration = 60;
491 throttle_count = 4;
212380e3 492};
493
494modules {
495 path = "modules";
496 path = "modules/autoload";
497};