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