]> jfr.im git - irc/rqf/shadowircd.git/blob - doc/example.conf
Add some privsets for opers here.
[irc/rqf/shadowircd.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 "global_op" {
194 extends = "local_op";
195 privs = oper:global_kill, oper:routing, oper:kline, oper:unkline, oper:xline,
196 oper:resv, oper:mass_notice, oper:remote_ban;
197 };
198
199 privset "admin" {
200 extends = "global_op";
201 privs = oper:admin, oper:die, oper:rehash, oper:adminwall, oper:spy;
202 };
203
204 operator "god" {
205 /* name: the name of the oper must go above */
206
207 /* user: the user@host required for this operator. CIDR *is*
208 * supported now. auth{} spoofs work here, other spoofs do not.
209 * multiple user="" lines are supported.
210 */
211 user = "*god@127.0.0.1";
212
213 /* password: the password required to oper. Unless ~encrypted is
214 * contained in flags = ...; this will need to be encrypted using
215 * mkpasswd, MD5 is supported
216 */
217 password = "etcnjl8juSU1E";
218
219 /* rsa key: the public key for this oper when using Challenge.
220 * A password should not be defined when this is used, see
221 * doc/challenge.txt for more information.
222 */
223 #rsa_public_key_file = "/usr/local/ircd/etc/oper.pub";
224
225 /* umodes: the specific umodes this oper gets when they oper.
226 * If this is specified an oper will not be given oper_umodes
227 * These are described above oper_only_umodes in general {};
228 */
229 #umodes = locops, servnotice, operwall, wallop;
230
231 /* snomask: specific server notice mask on oper up.
232 * If this is specified an oper will not be given oper_snomask.
233 */
234 snomask = "+Zbfkrsuy";
235
236 /* privileges: controls the activities and commands an oper is
237 * allowed to do on the server. You may prefix an option with ~ to
238 * disable it, ie ~operwall
239 *
240 * Default flags are operwall, remoteban and encrypted.
241 *
242 * Available options:
243 *
244 * encrypted: the password above is encrypted [DEFAULT]
245 * local_kill: allows local users to be /KILL'd
246 * global_kill: allows local and remote users to be
247 * /KILL'd (OLD 'O' flag)
248 * remote: allows remote SQUIT and CONNECT (OLD 'R' flag)
249 * kline: allows KLINE and DLINE (OLD 'K' flag)
250 * unkline: allows UNKLINE and UNDLINE (OLD 'U' flag)
251 * nick_changes: allows oper to see nickchanges (OLD 'N' flag)
252 * via snomask +n
253 * rehash: allows oper to REHASH config (OLD 'H' flag)
254 * die: allows DIE and RESTART (OLD 'D' flag)
255 * admin: gives admin privileges. admins
256 * may (un)load modules and see the
257 * real IPs of servers.
258 * hidden_admin: gives admin privileges except
259 * will not have the admin lines in
260 * stats p and whois.
261 * xline: allows use of /quote xline/unxline
262 * resv: allows /quote resv/unresv and cmode +LP [DEFAULT]
263 * operwall: allows the oper to send/receive operwalls [DEFAULT]
264 * oper_spy: allows 'operspy' features to see through +s
265 * channels etc. see /quote help operspy
266 * hidden_oper: hides the oper from /stats p (OLD UMODE +p)
267 * remoteban: allows remote kline etc [DEFAULT]
268 * mass_notice: allows sending wallops and mass notices [DEFAULT]
269 */
270 flags = global_kill, remote, kline, unkline,
271 die, rehash, admin, xline, operwall;
272
273 /* privset: replaces flags */
274 privset = "admin";
275 };
276
277 connect "irc.uplink.com" {
278 host = "192.168.0.1";
279 send_password = "password";
280 accept_password = "anotherpassword";
281 port = 6666;
282 hub_mask = "*";
283 class = "server";
284 flags = compressed, topicburst;
285
286 /* If the connection is IPv6, uncomment below.
287 * Use 0::1, not ::1, for IPv6 localhost. */
288 #aftype = ipv6;
289 };
290
291 connect "ssl.uplink.com" {
292 host = "192.168.0.1";
293 send_password = "password";
294 accept_password = "anotherpassword";
295 port = 9999;
296 hub_mask = "*";
297 class = "server";
298 flags = ssl, topicburst;
299 };
300
301 service {
302 name = "services.int";
303 };
304
305 cluster {
306 name = "*";
307 flags = kline, tkline, unkline, xline, txline, unxline, resv, tresv, unresv;
308 };
309
310 shared {
311 oper = "*@*", "*";
312 flags = all, rehash;
313 };
314
315 /* exempt {}: IPs that are exempt from Dlines and rejectcache. (OLD d:) */
316 exempt {
317 ip = "127.0.0.1";
318 };
319
320 channel {
321 use_invex = yes;
322 use_except = yes;
323 use_knock = yes;
324 use_forward = yes;
325 knock_delay = 5 minutes;
326 knock_delay_channel = 1 minute;
327 max_chans_per_user = 15;
328 max_bans = 100;
329 max_bans_large = 500;
330 default_split_user_count = 0;
331 default_split_server_count = 0;
332 no_create_on_split = no;
333 no_join_on_split = no;
334 burst_topicwho = yes;
335 kick_on_split_riding = no;
336 };
337
338 serverhide {
339 flatten_links = yes;
340 links_delay = 5 minutes;
341 hidden = no;
342 disable_hidden = no;
343 };
344
345 /* These are the blacklist settings.
346 * You can have multiple combinations of host and rejection reasons.
347 * They are used in pairs of one host/rejection reason, or multiple hosts/rejection reason.
348 *
349 * These settings should be adequate for most networks, and are (presently)
350 * required for use on AthemeNet.
351 *
352 * Word to the wise: Do not use blacklists like SPEWS for blocking IRC
353 * connections.
354 *
355 * As of charybdis 2.1.3, you can do some keyword substitution on the rejection
356 * reason. The available keyword substitutions are:
357 *
358 * ${ip} - the user's IP
359 * ${host} - the user's canonical hostname
360 * ${dnsbl-host} - the dnsbl hostname the lookup was done against
361 * ${nick} - the user's nickname
362 * ${network-name} - the name of the network
363 *
364 * Note: AHBL (the providers of the below *.ahbl.org BLs) request that they be
365 * contacted, via email, at admins@2mbit.com before using these BLs.
366 * See <http://www.ahbl.org/services.php> for more information.
367 */
368 blacklist {
369 host = "dnsbl.dronebl.org";
370 reject_reason = "${nick}, your IP (${ip}) is listed in DroneBL. For assistance, see http://dronebl.org/lookup_branded.do?ip=${ip}&network=${network-name}";
371
372 # host = "ircbl.ahbl.org";
373 # 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.";
374 #
375 # host = "tor.ahbl.org";
376 # 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.";
377 };
378
379 alias "NickServ" {
380 target = "NickServ";
381 };
382
383 alias "ChanServ" {
384 target = "ChanServ";
385 };
386
387 alias "OperServ" {
388 target = "OperServ";
389 };
390
391 alias "MemoServ" {
392 target = "MemoServ";
393 };
394
395 alias "NS" {
396 target = "NickServ";
397 };
398
399 alias "CS" {
400 target = "ChanServ";
401 };
402
403 alias "OS" {
404 target = "OperServ";
405 };
406
407 alias "MS" {
408 target = "MemoServ";
409 };
410
411 general {
412 hide_error_messages = opers;
413 hide_spoof_ips = yes;
414
415 /*
416 * default_umodes: umodes to enable on connect.
417 * If you have enabled the ip_cloaking module, and you want
418 * to make use of it, add +h to this option, i.e.:
419 * default_umodes = "+ih";
420 */
421 default_umodes = "+i";
422
423 default_operstring = "is an IRC Operator";
424 default_adminstring = "is a Server Administrator";
425 servicestring = "is a Network Service";
426 disable_fake_channels = no;
427 tkline_expire_notices = no;
428 default_floodcount = 10;
429 failed_oper_notice = yes;
430 dots_in_ident=2;
431 min_nonwildcard = 4;
432 min_nonwildcard_simple = 3;
433 max_accept = 100;
434 max_monitor = 100;
435 anti_nick_flood = yes;
436 max_nick_time = 20 seconds;
437 max_nick_changes = 5;
438 anti_spam_exit_message_time = 5 minutes;
439 ts_warn_delta = 30 seconds;
440 ts_max_delta = 5 minutes;
441 client_exit = yes;
442 collision_fnc = yes;
443 global_snotices = yes;
444 dline_with_reason = yes;
445 kline_delay = 0 seconds;
446 kline_with_reason = yes;
447 kline_reason = "K-Lined";
448 identify_service = "NickServ@services.int";
449 identify_command = "IDENTIFY";
450 non_redundant_klines = yes;
451 warn_no_nline = yes;
452 stats_e_disabled = no;
453 stats_c_oper_only=no;
454 stats_h_oper_only=no;
455 stats_y_oper_only=no;
456 stats_o_oper_only=yes;
457 stats_P_oper_only=no;
458 stats_i_oper_only=masked;
459 stats_k_oper_only=masked;
460 map_oper_only = no;
461 operspy_admin_only = no;
462 operspy_dont_care_user_info = no;
463 caller_id_wait = 1 minute;
464 pace_wait_simple = 1 second;
465 pace_wait = 10 seconds;
466 short_motd = no;
467 ping_cookie = no;
468 connect_timeout = 30 seconds;
469 disable_auth = no;
470 no_oper_flood = yes;
471 max_targets = 4;
472 client_flood = 20;
473 use_whois_actually = no;
474 oper_only_umodes = operwall, locops, servnotice;
475 oper_umodes = locops, servnotice, operwall, wallop;
476 oper_snomask = "+s";
477 burst_away = yes;
478 nick_delay = 0 seconds; # 15 minutes if you want to enable this
479 reject_ban_time = 1 minute;
480 reject_after_count = 3;
481 reject_duration = 5 minutes;
482 throttle_duration = 60;
483 throttle_count = 4;
484 };
485
486 modules {
487 path = "modules";
488 path = "modules/autoload";
489 };