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