ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid-8/doc/example.conf
Revision: 1428
Committed: Thu Jun 7 12:14:55 2012 UTC (11 years, 10 months ago) by michael
File size: 35290 byte(s)
Log Message:
- doc/example.conf: whitespace commit

File Contents

# Content
1 /* doc/example.conf - ircd-hybrid-8 Example configuration file
2 * Copyright (C) 2000-2012 Hybrid Development Team
3 *
4 * Written by ejb, wcampbel, db, leeh and others
5 * Other example configurations can be found in the source dir under
6 * etc/.
7 *
8 * $Id$
9 */
10
11 /* IMPORTANT NOTES:
12 *
13 * auth {} blocks MUST be specified in order of precedence. The first one
14 * that matches a user will be used. So place spoofs first, then specials,
15 * then general access.
16 *
17 * Shell style (#), C++ style (//) and C style comments are supported.
18 *
19 * Files may be included by either:
20 * .include "filename"
21 * .include <filename>
22 *
23 * Times/durations are written as:
24 * 12 hours 30 minutes 1 second
25 *
26 * Valid units of time:
27 * month, week, day, hour, minute, second
28 *
29 * Valid units of size:
30 * megabyte/mbyte/mb, kilobyte/kbyte/kb, byte
31 *
32 * Sizes and times may be singular or plural.
33 */
34
35 /* EFNET NOTE:
36 *
37 * This config file is NOT suitable for EFNet. EFNet admins should use
38 * example.efnet.conf
39 */
40
41 /*
42 * serverinfo {}: contains information about the server
43 */
44 serverinfo {
45 /*
46 * name: the name of this server. This cannot be changed at runtime.
47 */
48 name = "hades.arpa";
49
50 /*
51 * sid: a server's unique ID. This is three characters long and must
52 * be in the form [0-9][A-Z0-9][A-Z0-9]. The first character must be
53 * a digit, followed by 2 alpha-numerical letters.
54 * NOTE: The letters must be capitalized. This cannot be changed at runtime.
55 */
56 sid = "_CHANGE_ME_";
57
58 /*
59 * description: the description of the server. '[' and ']' may not
60 * be used here for compatibility with older servers.
61 */
62 description = "hybrid-7 test server";
63
64 /*
65 * network info: the name and description of the network this server
66 * is on. Shown in the 005 reply and used with serverhiding.
67 */
68 network_name = "MyNet";
69 network_desc = "This is My Network";
70
71 /*
72 * hub: allow this server to act as a hub and have multiple servers
73 * connected to it.
74 */
75 hub = no;
76
77 /*
78 * vhost: the IP to bind to when we connect outward to ipv4 servers.
79 * This should be an ipv4 IP only, or "*" for INADDR_ANY.
80 */
81 #vhost = "192.169.0.1";
82
83 /*
84 * vhost6: the IP to bind to when we connect outward to ipv6 servers.
85 * This should be an ipv6 IP only, or "*" for INADDR_ANY.
86 */
87 #vhost6 = "3ffe:80e8:546::2";
88
89 /* max_clients: the maximum number of clients allowed to connect */
90 max_clients = 512;
91
92 /*
93 * rsa_private_key_file: the path to the file containing our
94 * rsa key for cryptlink.
95 *
96 * Example command to store a 2048 bit RSA keypair in
97 * rsa.key, and the public key in rsa.pub:
98 *
99 * openssl genrsa -out rsa.key 2048
100 * openssl rsa -in rsa.key -pubout -out rsa.pub
101 * chown <ircd-user>.<ircd.group> rsa.key rsa.pub
102 * chmod 0600 rsa.key
103 * chmod 0644 rsa.pub
104 */
105 #rsa_private_key_file = "/usr/local/ircd/etc/rsa.key";
106
107 /*
108 * ssl_certificate_file: the path to the file containing our
109 * ssl certificate for encrypted client connection.
110 *
111 * This assumes your private RSA key is stored in rsa.key. You
112 * MUST have an RSA key in order to generate the certificate
113 *
114 * openssl req -new -days 365 -x509 -key rsa.key -out cert.pem
115 *
116 * See http://www.openssl.org/docs/HOWTO/certificates.txt
117 *
118 * Please use the following values when generating the cert
119 *
120 * Organization Name: Network Name
121 * Organization Unit Name: changme.someirc.net
122 * Common Name: irc.someirc.net
123 * E-mail: you@domain.com
124 */
125 #ssl_certificate_file = "/usr/local/ircd/etc/cert.pem";
126
127
128 /*
129 * ssl_dh_param_file:
130 *
131 * Path to the PEM encoded Diffie-Hellman parameter file.
132 * DH parameters are strictly required when using ciphers
133 * with EDH (ephemeral Diffie-Hellman) key exchange.
134 *
135 * A DH parameter file can be created by running:
136 *
137 * openssl dhparam -out dhparam.pem 1024
138 *
139 * Further information regarding specific OpenSSL dhparam
140 * command-line options can be found in the OpenSSL manual.
141 */
142 #ssl_dh_param_file = "/usr/local/ircd/etc/dhparam.pem";
143
144 /*
145 * ssl_cipher_list:
146 *
147 * List of ciphers that are supported by _this_ server. Can be used to enforce
148 * specific ciphers for incoming SSL/TLS connections.
149 * If a client (which also includes incoming server connections) isn't capable
150 * of any cipher listed below, the connection will simply be rejected.
151 *
152 * A list of supported ciphers can be obtained by running:
153 *
154 * openssl ciphers -ssl3 -tls1 -v
155 *
156 * Multiple ciphers are separated by colons. The order of preference is from
157 * left to right.
158 */
159 #ssl_cipher_list = "DHE-RSA-AES256-SHA:AES256-SHA";
160
161 /*
162 * ssl_server_method:
163 * ssl_client_method:
164 *
165 * SSL/TLS methods we provide for incoming (server method) and
166 * outgoing (client method) SSL/TLS connections.
167 * This can be either sslv3 for SSLv3, and/or tlsv1 for TLSv1.
168 * SSLv2 is not suppported.
169 */
170 #ssl_server_method = tlsv1, sslv3;
171 #ssl_client_method = tlsv1;
172 };
173
174 /*
175 * admin {}: contains admin information about the server
176 */
177 admin {
178 name = "Smurf target";
179 description = "Main Server Administrator";
180 email = "<syn@packets.r.us>";
181 };
182
183 /*
184 * class {}: contains information about classes for users
185 */
186 class {
187 /* name: the name of the class. classes are text now */
188 name = "users";
189
190 /*
191 * ping_time: how often a client must reply to a PING from the
192 * server before they are dropped.
193 */
194 ping_time = 90 seconds;
195
196 /*
197 * number_per_ip: how many local users are allowed to connect
198 * from one IP (optional)
199 */
200 number_per_ip = 2;
201
202 /*
203 * max_local: how many local users are allowed to connect
204 * from one ident@host (optional)
205 */
206 max_local = 2;
207
208 /*
209 * max_global: network-wide limit of users per ident@host (optional)
210 */
211 max_global = 10;
212
213 /*
214 * max_number: the maximum number of users allowed in this class (optional)
215 */
216 max_number = 100;
217
218 /*
219 * the following lines are optional and allow you to define
220 * how many users can connect from one /NN subnet
221 */
222 cidr_bitlen_ipv4 = 24;
223 cidr_bitlen_ipv6 = 120;
224 number_per_cidr = 16;
225
226 /*
227 * sendq: the amount of data allowed in a clients queue before
228 * they are dropped.
229 */
230 sendq = 100 kbytes;
231 };
232
233 class {
234 name = "opers";
235 ping_time = 90 seconds;
236 number_per_ip = 10;
237 max_number = 100;
238 sendq = 100 kbytes;
239 };
240
241 class {
242 name = "server";
243 ping_time = 90 seconds;
244
245 /*
246 * ping_warning: how fast a server must reply to a PING before
247 * a warning to opers is generated.
248 */
249 ping_warning = 15 seconds;
250
251 /*
252 * connectfreq: only used in server classes. Specifies the delay
253 * between autoconnecting to servers.
254 */
255 connectfreq = 5 minutes;
256
257 /* max number: the amount of servers to autoconnect to */
258 max_number = 1;
259
260 /* sendq: servers need a higher sendq as they send more data */
261 sendq = 2 megabytes;
262 };
263
264 /*
265 * listen {}: contains information about the ports ircd listens on
266 */
267 listen {
268 /*
269 * port: the specific port to listen on. If no host is specified
270 * before, it will listen on all available IPs.
271 *
272 * Ports are separated via a comma, a range may be specified using ".."
273 */
274
275 /* port: listen on all available IPs, ports 6665 to 6669 */
276 port = 6665 .. 6669;
277
278 /*
279 * Listen on 192.168.0.1/6697 with ssl enabled and hidden from STATS P
280 * unless you are an administrator.
281 *
282 * NOTE: The "flags" directive has to come before "port". Always!
283 *
284 * Currently available flags are:
285 *
286 * ssl - Port is for SSL client connections only
287 * server - Only server connections are permitted
288 * hidden - Port is hidden from /stats P, unless you're an admin
289 */
290 flags = hidden, ssl;
291 host = "192.168.0.1";
292 port = 6697;
293
294 /*
295 * host: set a specific IP/host the ports after the line will listen
296 * on. This may be ipv4 or ipv6.
297 */
298 host = "1.2.3.4";
299 port = 7000, 7001;
300
301 host = "3ffe:1234:a:b:c::d";
302 port = 7002;
303 };
304
305 /*
306 * auth {}: allow users to connect to the ircd
307 */
308 auth {
309 /*
310 * user: the user@host allowed to connect. Multiple IPv4/IPv6 user
311 * lines are permitted per auth block.
312 */
313 user = "*@172.16.0.0/12";
314 user = "*test@123D:B567:*";
315
316 /* password: an optional password that is required to use this block */
317 password = "letmein";
318
319 /*
320 * encrypted: controls whether the auth password above has been
321 * encrypted.
322 */
323 encrypted = yes;
324
325 /*
326 * spoof: fake the users host to this. This is free-form,
327 * just do everyone a favor and don't abuse it. ('=' prefix on /stats I)
328 */
329 spoof = "I.still.hate.packets";
330
331 /* class: the class the user is placed in */
332 class = "opers";
333
334 /*
335 * need_password - don't allow users who haven't supplied the correct
336 * password to connect using another auth{} block
337 * ('&' prefix on /stats I if disabled)
338 * need_ident - require the user to have identd to connect ('+' prefix on /stats I)
339 * spoof_notice - enable spoofing notification to admins
340 * exceed_limit - allow a user to exceed class limits ('>' prefix on /stats I)
341 * kline_exempt - exempt this user from k/glines ('^' prefix on /stats I)
342 * gline_exempt - exempt this user from glines ('_' prefix on /stats I)
343 * resv_exempt - exempt this user from resvs ('$' prefix on /stats I)
344 * no_tilde - remove ~ from a user with no ident ('-' prefix on /stats I)
345 * can_flood - allow this user to exceed flood limits ('|' prefix on /stats I)
346 */
347 flags = need_password, spoof_notice, exceed_limit, kline_exempt,
348 gline_exempt, resv_exempt, no_tilde, can_flood;
349 };
350
351 auth {
352 /*
353 * redirect: the server and port to redirect a user to. A user does
354 * not have to obey the redirection, the ircd just suggests an alternative
355 * server for them.
356 */
357 redirserv = "this.is.not.a.real.server";
358 redirport = 6667;
359
360 user = "*.server";
361
362 /* class: a class is required even though it is not used */
363 class = "users";
364 };
365
366 auth {
367 user = "*@*";
368 class = "users";
369 flags = need_ident;
370 };
371
372 /*
373 * operator {}: defines ircd operators
374 *
375 * ircd-hybrid no longer supports local operators, privileges are
376 * controlled via flags.
377 */
378 operator {
379 /* name: the name of the oper */
380 name = "god";
381
382 /*
383 * user: the user@host required for this operator. Multiple
384 * user="" lines are supported.
385 */
386 user = "*god@192.168.0.0/16";
387 user = "*@127.0.0.0/8";
388
389 /*
390 * password: the password required to oper. By default this will
391 * need to be encrypted by using the provided mkpasswd tool.
392 * Several password hash algorithms are available depending
393 * on your system's crypt() implementation. For example, a modern
394 * glibc already has support for SHA-256/512, and MD5 encryption
395 * algorithms.
396 */
397 password = "$5$x5zof8qe.Yc7/bPp$5zIg1Le2Lsgd4CvOjaD20pr5PmcfD7ha/9b2.TaUyG4";
398
399 /*
400 * encrypted: controls whether the oper password above has been
401 * encrypted.
402 */
403 encrypted = yes;
404
405 /*
406 * rsa_public_key_file: the public key for this oper when using Challenge.
407 * A password should not be defined when this is used, see
408 * doc/challenge.txt for more information.
409 */
410 # rsa_public_key_file = "/usr/local/ircd/etc/oper.pub";
411
412 /* class: the class the oper joins when they successfully /oper */
413 class = "opers";
414
415 /*
416 * umodes: default usermodes opers get when they /oper. If defined,
417 * it will override oper_umodes settings in general {}.
418 * Available usermodes:
419 *
420 * +b - bots - See bot and drone flooding notices
421 * +c - cconn - Client connection/quit notices
422 * +C - cconn_full - Client connection/quit notices full
423 * +D - deaf - Don't receive channel messages
424 * +d - debug - See debugging notices
425 * +f - full - See auth{} block full notices
426 * +G - softcallerid - Server Side Ignore for users not on your channels
427 * +g - callerid - Server Side Ignore (for privmsgs etc)
428 * +H - hidden - Hides operator status to other users
429 * +i - invisible - Not shown in NAMES or WHO unless you share a
430 * a channel
431 * +j - rej - See rejected client notices
432 * +k - skill - See server generated KILL messages
433 * +l - locops - See LOCOPS messages
434 * +n - nchange - See client nick changes
435 * +s - servnotice - See general server notices
436 * +u - unauth - See unauthorized client notices
437 * +w - wallop - See server generated WALLOPS
438 * +x - external - See remote server connection and split notices
439 * +y - spy - See LINKS, STATS, TRACE notices etc.
440 * +z - operwall - See oper generated WALLOPS
441 */
442 # umodes = locops, servnotice, operwall, wallop;
443
444 /*
445 * privileges: controls the activities and commands an oper is
446 * allowed to do on the server. All options default to no.
447 * Available options:
448 *
449 * module - allows MODLIST, MODRESTART, MODLOAD, MODUNLOAD
450 * global_kill - allows remote users to be /KILL'd
451 * remote - allows remote SQUIT and CONNECT
452 * remoteban - allows remote KLINE/UNKLINE
453 * dline - allows DLINE
454 * undline - allows UNDLINE
455 * kline - allows KILL and KLINE
456 * unkline - allows UNKLINE
457 * gline - allows GLINE
458 * xline - allows XLINE
459 * globops - allows GLOBOPS
460 * operwall - allows OPERWALL
461 * nick_changes - allows oper to see nickchanges via usermode +n
462 * rehash - allows oper to REHASH config
463 * die - allows DIE
464 * restart - allows RESTART
465 * admin - gives admin privileges. admins for example,
466 * may see the real IP addresses of servers.
467 */
468 flags = global_kill, remote, kline, unkline, xline, globops, restart,
469 die, rehash, nick_changes, admin, operwall, module;
470 };
471
472 service {
473 name = "service.someserver";
474 name = "stats.someserver";
475 };
476
477 /*
478 * connect {}: controls servers we connect to
479 */
480 connect {
481 /* name: the name of the server */
482 name = "irc.uplink.com";
483
484 /*
485 * host: the host or IP to connect to. If a hostname is used it
486 * must match the reverse dns of the server.
487 */
488 host = "192.168.0.1";
489
490 /*
491 * vhost: the IP to bind to when we connect outward to servers.
492 * serverinfo::vhost and serverinfo::vhost6 will be overridden
493 * by this directive.
494 */
495 vhost = "192.168.0.2";
496
497 /*
498 * passwords: the passwords we send (OLD C:) and accept (OLD N:).
499 * The remote server will have these passwords reversed.
500 */
501 send_password = "password";
502 accept_password = "anotherpassword";
503
504 /*
505 * encrypted: controls whether the accept_password above has been
506 * encrypted.
507 */
508 encrypted = no;
509
510 /* port: the port to connect to this server on */
511 port = 6666;
512
513 /*
514 * hub_mask: the mask of servers that this server may hub. Multiple
515 * entries are permitted
516 */
517 hub_mask = "*";
518
519 /*
520 * leaf_mask: the mask of servers this server may not hub. Multiple
521 * entries are permitted. Useful for forbidding EU -> US -> EU routes.
522 */
523 # leaf_mask = "*.uk";
524
525 /* class: the class this server is in */
526 class = "server";
527
528 #ssl_cipher_list = "DHE-RSA-AES256-SHA:AES256-SHA";
529
530 /*
531 * autoconn - controls whether we autoconnect to this server or not,
532 * dependent on class limits. By default, this is disabled.
533 * burst_away - This will send the /away string that users have set
534 * on the server burst. Note this can be a lot of data
535 * and slow down your server burst.
536 * topicburst - Send topics to this server during channel burst. Works
537 * only if the server we are connecting to is capable
538 * of TBURST/TB.
539 * ssl - Initiates a TLS/SSL connection.
540 */
541 # flags = autoconn, burst_away, topicburst;
542 };
543
544 connect {
545 name = "ipv6.some.server";
546 host = "3ffd:dead:beef::1";
547 send_password = "password";
548 accept_password = "password";
549 port = 6666;
550
551 /*
552 * aftype: controls whether the connection uses "ipv4" or "ipv6".
553 * Default is ipv4.
554 */
555 aftype = ipv6;
556 class = "server";
557 };
558
559 /*
560 * cluster {}: servers that share klines/unkline/xline/unxline/resv/unresv/locops
561 * automatically
562 */
563 cluster {
564 /*
565 * name: the server to share with, this can take wildcards
566 *
567 * NOTE: only local actions will be clustered, meaning if
568 * the server receives a shared kline/unkline/etc, it
569 * will not be propagated to clustered servers.
570 *
571 * Remote servers are not necessarily required to accept
572 * clustered lines, they need a shared{} for *THIS* server
573 * in order to accept them.
574 */
575 name = "*.arpa";
576
577 /*
578 * type: list of what to share, options are as follows:
579 * dline - share dlines
580 * undline - share undlines
581 * kline - share klines
582 * unkline - share unklines
583 * xline - share xlines
584 * unxline - share unxlines
585 * resv - share resvs
586 * unresv - share unresvs
587 * locops - share locops
588 * all - share all of the above (default)
589 */
590 type = kline, unkline, locops, xline, resv;
591 };
592
593 /*
594 * shared {}: users that are allowed to remote kline
595 *
596 * NOTE: This can be effectively used for remote klines.
597 * Please note that there is no password authentication
598 * for users setting remote klines. You must also be
599 * /oper'd in order to issue a remote kline.
600 */
601 shared {
602 /*
603 * name: the server the user must be on to set klines. If this is not
604 * specified, the user will be allowed to kline from all servers.
605 */
606 name = "irc2.some.server";
607
608 /*
609 * user: the user@host mask that is allowed to set klines. If this is
610 * not specified, all users on the server above will be allowed to set
611 * a remote kline.
612 */
613 user = "oper@my.host.is.spoofed";
614
615 /*
616 * type: list of what to share, options are as follows:
617 * dline - allow oper/server to dline
618 * undline - allow oper/server to undline
619 * kline - allow oper/server to kline
620 * unkline - allow oper/server to unkline
621 * xline - allow oper/server to xline
622 * unxline - allow oper/server to unxline
623 * resv - allow oper/server to resv
624 * unresv - allow oper/server to unresv
625 * locops - allow oper/server to locops - only used for servers that cluster
626 * all - allow oper/server to do all of the above (default)
627 */
628 type = kline, unkline, resv;
629 };
630
631 /*
632 * kill {}: users that are not allowed to connect
633 * Oper issued klines will be added to the specified kline config
634 */
635 kill {
636 user = "bad@*.hacked.edu";
637 reason = "Obviously hacked account";
638 };
639
640 kill {
641 user = "^O[[:alpha:]]?[[:digit:]]+(x\.o|\.xo)$@^[[:alnum:]]{4}\.evilnet.tld$";
642
643 /*
644 * NOTE: You have to set type=regex; when using a regular expression
645 * based user entry
646 */
647 type = regex;
648 };
649
650 /*
651 * deny {}: IPs that are not allowed to connect (before DNS/ident lookup)
652 * Oper issued dlines will be added to the specified dline config
653 */
654 deny {
655 ip = "10.0.1.0/24";
656 reason = "Reconnecting vhosted bots";
657 };
658
659 /*
660 * exempt {}: IPs that are exempt from deny {} and Dlines
661 */
662 exempt {
663 ip = "192.168.0.0/16";
664 };
665
666 /*
667 * resv {}: nicks and channels users may not use/join
668 */
669 resv {
670 /* reason: the reason for the proceeding resv's */
671 reason = "Reserved for services";
672
673 /* resv: the nicks and channels users may not join/use */
674 nick = "Global";
675 nick = "DevNull";
676 nick = "Services";
677 nick = "StatServ";
678 nick = "HostServ";
679 nick = "NickServ";
680 nick = "ChanServ";
681 nick = "MemoServ";
682 nick = "OperServ";
683 channel = "#services";
684
685 /* resv: wildcard masks are also supported in nicks only */
686 reason = "Clone bots";
687 nick = "clone*";
688 };
689
690 /*
691 * gecos {}: The X: replacement, used for banning users based on
692 * their "realname".
693 */
694 gecos {
695 name = "*sex*";
696 reason = "Possible spambot";
697 };
698
699 gecos {
700 name = "sub7server";
701 reason = "Trojan drone";
702 };
703
704 gecos {
705 name = "*http*";
706 reason = "Spambot";
707 };
708
709 gecos {
710 name = "^\[J[0o]hn Do[3e]\]-[0-9]{2,5}$";
711
712 /*
713 * NOTE: You have to set type=regex; when using a regular expression
714 * based name entry
715 */
716 type = regex;
717 };
718
719 /*
720 * channel {}: The channel block contains options pertaining to channels
721 */
722 channel {
723 /*
724 * disable_fake_channels: this option, if set to 'yes', will
725 * disallow clients to create or join channels that have one
726 * of the following ASCII characters in their name:
727 *
728 * 2 | bold
729 * 3 | mirc color
730 * 15 | plain text
731 * 22 | reverse
732 * 29 | italic
733 * 31 | underline
734 * 160 | non-breaking space
735 */
736 disable_fake_channels = yes;
737
738 /*
739 * restrict_channels: reverse channel RESVs logic, only reserved
740 * channels are allowed
741 */
742 restrict_channels = no;
743
744 /*
745 * disable_local_channels: prevent users from joining &channels.
746 */
747 disable_local_channels = no;
748
749 /*
750 * use_invex: Enable/disable channel mode +I, a n!u@h list of masks
751 * that can join a +i channel without an invite.
752 */
753 use_invex = yes;
754
755 /*
756 * use_except: Enable/disable channel mode +e, a n!u@h list of masks
757 * that can join a channel through a ban (+b).
758 */
759 use_except = yes;
760
761 /*
762 * use_knock: Allows users to request an invite to a channel that
763 * is locked somehow (+ikl). If the channel is +p or you are banned
764 * the knock will not be sent.
765 */
766 use_knock = yes;
767
768 /*
769 * knock_delay: The amount of time a user must wait between issuing
770 * the knock command.
771 */
772 knock_delay = 5 minutes;
773
774 /*
775 * knock_delay_channel: How often a knock to any specific channel
776 * is permitted, regardless of the user sending the knock.
777 */
778 knock_delay_channel = 1 minute;
779
780 /*
781 * max_chans_per_user: The maximum number of channels a user can
782 * join/be on.
783 */
784 max_chans_per_user = 25;
785
786 /* quiet_on_ban: stop banned people talking in channels. */
787 quiet_on_ban = yes;
788
789 /* max_bans: maximum number of +b/e/I modes in a channel */
790 max_bans = 25;
791
792 /*
793 * how many joins in how many seconds constitute a flood, use 0 to
794 * disable. +b opers will be notified (changeable via /set)
795 */
796 join_flood_count = 16;
797 join_flood_time = 8 seconds;
798
799 /*
800 * splitcode: The ircd will now check splitmode every few seconds.
801 *
802 * Either split users or split servers can activate splitmode, but
803 * both conditions must be met for the ircd to deactivate splitmode.
804 *
805 * You may force splitmode to be permanent by /quote set splitmode on
806 */
807
808 /*
809 * default_split_user_count: when the usercount is lower than this level,
810 * consider ourselves split. This must be set for automatic splitmode.
811 */
812 default_split_user_count = 0;
813
814 /*
815 * default_split_server_count: when the servercount is lower than this,
816 * consider ourselves split. This must be set for automatic splitmode.
817 */
818 default_split_server_count = 0;
819
820 /* no_create_on_split: disallow users creating channels on split. */
821 no_create_on_split = yes;
822
823 /* no_join_on_split: disallow users joining channels at all on a split. */
824 no_join_on_split = no;
825 };
826
827 /*
828 * serverhide {}: The serverhide block contains the options regarding
829 * serverhiding
830 */
831 serverhide {
832 /*
833 * flatten_links: this option will show all servers in /links appear
834 * that they are linked to this current server
835 */
836 flatten_links = no;
837
838 /*
839 * links_delay: how often to update the links file when it is
840 * flattened.
841 */
842 links_delay = 5 minutes;
843
844 /*
845 * hidden: hide this server from a /links output on servers that
846 * support it. This allows hub servers to be hidden etc.
847 */
848 hidden = no;
849
850 /*
851 * disable_hidden: prevent servers hiding themselves from a
852 * /links output.
853 */
854 disable_hidden = no;
855
856 /*
857 * hide_servers: hide remote servernames everywhere and instead use
858 * hidden_name and network_desc.
859 */
860 hide_servers = no;
861
862 /*
863 * Use this as the servername users see if hide_servers = yes.
864 */
865 hidden_name = "*.hidden.com";
866
867 /*
868 * hide_server_ips: If this is disabled, opers will be unable to see
869 * servers ips and will be shown a masked ip, admins will be shown the
870 * real ip.
871 *
872 * If this is enabled, nobody can see a servers ip. *This is a kludge*,
873 * it has the side effect of hiding the ips everywhere, including
874 * logfiles.
875 *
876 * We recommend you leave this disabled, and just take care with who you
877 * give admin=yes; to.
878 */
879 hide_server_ips = no;
880 };
881
882 /*
883 * general {}: The general block contains many of the options that were once
884 * compiled in options in config.h. The general block is read at start time.
885 */
886 general {
887 /* services_name: servername of nick/channel services */
888 services_name = "service.someserver";
889
890 /* max_watch: maximum WATCH entries a client can have. */
891 max_watch = 60;
892
893 /*
894 * gline_min_cidr: the minimum required length of a CIDR bitmask
895 * for IPv4 based glines
896 */
897 gline_min_cidr = 16;
898
899 /*
900 * gline_min_cidr6: the minimum required length of a CIDR bitmask
901 * for IPv6 based glines
902 */
903 gline_min_cidr6 = 48;
904
905 /*
906 * Whether to automatically set mode +i on connecting users.
907 */
908 invisible_on_connect = yes;
909
910 /*
911 * Show "actually using host <ip>" on /whois when possible.
912 */
913 use_whois_actually = yes;
914
915 /*
916 * Max time from the nickname change that still causes KILL
917 * automatically to switch for the current nick of that user.
918 */
919 kill_chase_time_limit = 90 seconds;
920
921 /*
922 * If hide_spoof_ips is disabled, opers will be allowed to see the real
923 * IP of spoofed users in /trace etc. If this is defined they will be
924 * shown a masked IP.
925 */
926 hide_spoof_ips = yes;
927
928 /*
929 * Ignore bogus timestamps from other servers. Yes, this will desync
930 * the network, but it will allow chanops to resync with a valid non TS 0
931 *
932 * This should be enabled network wide, or not at all.
933 */
934 ignore_bogus_ts = no;
935
936 /*
937 * disable_auth: completely disable ident lookups; if you enable this,
938 * be careful of what you set need_ident to in your auth {} blocks
939 */
940 disable_auth = no;
941
942 /* disable_remote_commands: disable users doing commands on remote servers */
943 disable_remote_commands = no;
944
945 /*
946 * tkline_expire_notices: enables or disables temporary kline/xline
947 * expire notices.
948 */
949 tkline_expire_notices = no;
950
951 /*
952 * default_floodcount: the default value of floodcount that is configurable
953 * via /quote set floodcount. This is the amount of lines a user
954 * may send to any other user/channel in one second.
955 */
956 default_floodcount = 10;
957
958 /*
959 * failed_oper_notice: send a notice to all opers on the server when
960 * someone tries to OPER and uses the wrong password, host or ident.
961 */
962 failed_oper_notice = yes;
963
964 /*
965 * dots_in_ident: the amount of '.' characters permitted in an ident
966 * reply before the user is rejected.
967 */
968 dots_in_ident = 2;
969
970 /*
971 * min_nonwildcard: the minimum non wildcard characters in k/d/g lines
972 * placed via the server. klines hand placed are exempt from limits.
973 * wildcard chars: '.' ':' '*' '?' '@' '!' '#'
974 */
975 min_nonwildcard = 4;
976
977 /*
978 * min_nonwildcard_simple: the minimum non wildcard characters in
979 * gecos bans. wildcard chars: '*' '?' '#'
980 */
981 min_nonwildcard_simple = 3;
982
983 /* max_accept: maximum allowed /accept's for +g usermode */
984 max_accept = 20;
985
986 /* anti_nick_flood: enable the nickflood control code */
987 anti_nick_flood = yes;
988
989 /* nick flood: the nick changes allowed in the specified period */
990 max_nick_time = 20 seconds;
991 max_nick_changes = 5;
992
993 /*
994 * anti_spam_exit_message_time: the minimum time a user must be connected
995 * before custom quit messages are allowed.
996 */
997 anti_spam_exit_message_time = 5 minutes;
998
999 /*
1000 * ts delta: the time delta allowed between server clocks before
1001 * a warning is given, or before the link is dropped. all servers
1002 * should run ntpdate/rdate to keep clocks in sync
1003 */
1004 ts_warn_delta = 30 seconds;
1005 ts_max_delta = 5 minutes;
1006
1007 /*
1008 * kline_with_reason: show the user the reason why they are k/d/glined
1009 * on exit. May give away who set k/dline when set via tcm.
1010 */
1011 kline_with_reason = yes;
1012
1013 /*
1014 * kline_reason: show this message to users on channel
1015 * instead of the oper reason.
1016 */
1017 kline_reason = "Connection closed";
1018
1019 /*
1020 * reject_hold_time: wait this amount of time before disconnecting
1021 * a rejected client. Use 0 to disable.
1022 */
1023 reject_hold_time = 0;
1024
1025 /*
1026 * warn_no_nline: warn opers about servers that try to connect but
1027 * we don't have a connect {} block for. Twits with misconfigured
1028 * servers can get really annoying with this enabled.
1029 */
1030 warn_no_nline = yes;
1031
1032 /*
1033 * stats_e_disabled: set this to 'yes' to disable "STATS e" for both
1034 * operators and administrators. Doing so is a good idea in case
1035 * there are any exempted (exempt{}) server IPs you don't want to
1036 * see leaked.
1037 */
1038 stats_e_disabled = no;
1039
1040 /* stats_o_oper only: make stats o (opers) oper only */
1041 stats_o_oper_only = yes;
1042
1043 /* stats_P_oper_only: make stats P (ports) oper only */
1044 stats_P_oper_only = yes;
1045
1046 /*
1047 * stats i oper only: make stats i (auth {}) oper only. set to:
1048 * yes: show users no auth blocks, made oper only.
1049 * masked: show users first matching auth block
1050 * no: show users all auth blocks.
1051 */
1052 stats_i_oper_only = yes;
1053
1054 /*
1055 * stats_k_oper_only: make stats k/K (klines) oper only. set to:
1056 * yes: show users no auth blocks, made oper only
1057 * masked: show users first matching auth block
1058 * no: show users all auth blocks.
1059 */
1060 stats_k_oper_only = yes;
1061
1062 /*
1063 * caller_id_wait: time between notifying a +g user that somebody
1064 * is messaging them.
1065 */
1066 caller_id_wait = 1 minute;
1067
1068 /*
1069 * opers_bypass_callerid: allows operators to bypass +g and message
1070 * anyone who has it set (useful if you use services).
1071 */
1072 opers_bypass_callerid = no;
1073
1074 /*
1075 * pace_wait_simple: time between use of less intensive commands
1076 * (ADMIN, HELP, (L)USERS, VERSION, remote WHOIS)
1077 */
1078 pace_wait_simple = 1 second;
1079
1080 /*
1081 * pace_wait: time between more intensive commands
1082 * (INFO, LINKS, LIST, MAP, MOTD, STATS, WHO, wildcard WHOIS, WHOWAS)
1083 */
1084 pace_wait = 10 seconds;
1085
1086 /*
1087 * short_motd: send clients a notice telling them to read the motd
1088 * instead of forcing a motd to clients who may simply ignore it.
1089 */
1090 short_motd = no;
1091
1092 /*
1093 * ping_cookie: require clients to respond exactly to a ping command,
1094 * can help block certain types of drones and FTP PASV mode spoofing.
1095 */
1096 ping_cookie = no;
1097
1098 /* no_oper_flood: increase flood limits for opers. */
1099 no_oper_flood = yes;
1100
1101 /*
1102 * true_no_oper_flood: completely eliminate flood limits for opers
1103 * and for clients with can_flood = yes in their auth {} blocks
1104 */
1105 true_no_oper_flood = yes;
1106
1107 /* oper_pass_resv: allow opers to over-ride RESVs on nicks/channels */
1108 oper_pass_resv = yes;
1109
1110 /* REMOVE ME. The following line checks you've been reading. */
1111 havent_read_conf = 1;
1112
1113 /*
1114 * max_targets: the maximum amount of targets in a single
1115 * PRIVMSG/NOTICE. Set to 999 NOT 0 for unlimited.
1116 */
1117 max_targets = 4;
1118
1119 /*
1120 * client_flood: maximum amount of data in a clients queue before
1121 * they are dropped for flooding.
1122 */
1123 client_flood = 2560 bytes;
1124
1125 /*
1126 * message_locale: the default message locale
1127 * Use "standard" for the compiled in defaults.
1128 * To install the translated messages, go into messages/ in the
1129 * source directory and run `make install'.
1130 */
1131 message_locale = "standard";
1132
1133 /*
1134 * usermodes configurable: a list of usermodes for the options below
1135 *
1136 * +b - bots - See bot and drone flooding notices
1137 * +c - cconn - Client connection/quit notices
1138 * +C - cconn_full - Client connection/quit notices full
1139 * +D - deaf - Don't receive channel messages
1140 * +d - debug - See debugging notices
1141 * +f - full - See auth{} block full notices
1142 * +G - softcallerid - Server Side Ignore for users not on your channels
1143 * +g - callerid - Server Side Ignore (for privmsgs etc)
1144 * +H - hidden - Hides operator status to other users
1145 * +i - invisible - Not shown in NAMES or WHO unless you share a
1146 * a channel
1147 * +j - rej - See rejected client notices
1148 * +k - skill - See server generated KILL messages
1149 * +l - locops - See LOCOPS messages
1150 * +n - nchange - See client nick changes
1151 * +s - servnotice - See general server notices
1152 * +u - unauth - See unauthorized client notices
1153 * +w - wallop - See server generated WALLOPS
1154 * +x - external - See remote server connection and split notices
1155 * +y - spy - See LINKS, STATS, TRACE notices etc.
1156 * +z - operwall - See oper generated WALLOPS
1157 */
1158
1159 /* oper_only_umodes: usermodes only opers may set */
1160 oper_only_umodes = bots, cconn, cconn_full, debug, full, hidden, skill,
1161 nchange, rej, spy, external, operwall,
1162 locops, unauth;
1163
1164 /* oper_umodes: default usermodes opers get when they /oper */
1165 oper_umodes = bots, locops, servnotice, operwall, wallop;
1166
1167 /*
1168 * use_egd: if your system does not have *random devices yet you
1169 * want to use OpenSSL and encrypted links, enable this. Beware -
1170 * EGD is *very* CPU intensive when gathering data for its pool
1171 */
1172 # use_egd = yes;
1173
1174 /*
1175 * egdpool_path: path to EGD pool. Not necessary for OpenSSL >= 0.9.7
1176 * which automatically finds the path.
1177 */
1178 # egdpool_path = "/var/run/egd-pool";
1179
1180 /*
1181 * throttle_time: the minimum amount of time between connections from
1182 * the same ip. exempt {} blocks are excluded from this throttling.
1183 * Offers protection against flooders who reconnect quickly.
1184 * Set to 0 to disable.
1185 */
1186 throttle_time = 10;
1187 };
1188
1189 glines {
1190 /* enable: enable glines, network wide temp klines */
1191 enable = yes;
1192
1193 /*
1194 * duration: the amount of time a gline will remain on your
1195 * server before expiring
1196 */
1197 duration = 1 day;
1198
1199 /*
1200 * log: which types of rules you want to log when triggered
1201 * (choose reject or block)
1202 */
1203 log = reject, block;
1204
1205 /*
1206 * NOTE: gline ACLs can cause a desync of glines throughout the
1207 * network, meaning some servers may have a gline triggered, and
1208 * others may not. Also, you only need insert rules for glines
1209 * that you want to block and/or reject. If you want to accept and
1210 * propagate the gline, do NOT put a rule for it.
1211 */
1212
1213 /* user@host for rule to apply to */
1214 user = "god@I.still.hate.packets";
1215 /* server for rule to apply to */
1216 name = "hades.arpa";
1217
1218 /*
1219 * action: action to take when a matching gline is found. options are:
1220 * reject - do not apply the gline locally
1221 * block - do not propagate the gline
1222 */
1223 action = reject, block;
1224
1225 user = "god@*";
1226 name = "*";
1227 action = block;
1228 };
1229
1230 modules {
1231 /*
1232 * path: other paths to search for modules specified below
1233 * and in /modload.
1234 */
1235 path = "/usr/local/ircd/lib/ircd-hybrid/modules";
1236 path = "/usr/local/ircd/lib/ircd-hybrid/modules/autoload";
1237
1238 /* module: the name of a module to load on startup/rehash */
1239 #module = "some_module.la";
1240 };
1241
1242 /*
1243 * log {}: contains information about logfiles.
1244 */
1245 log {
1246 /* Do you want to enable logging to ircd.log? */
1247 use_logging = yes;
1248
1249 file {
1250 type = oper;
1251 name = "/home/ircd/var/log/oper.log";
1252 size = unlimited;
1253 };
1254
1255 file {
1256 type = user;
1257 name = "/home/ircd/var/log/user.log";
1258 size = 50 megabytes;
1259 };
1260
1261 file {
1262 type = kill;
1263 name = "/home/ircd/var/log/kill.log";
1264 size = 50 megabytes;
1265 };
1266
1267 file {
1268 type = kline;
1269 name = "/home/ircd/var/log/kline.log";
1270 size = 50 megabytes;
1271 };
1272
1273 file {
1274 type = dline;
1275 name = "/home/ircd/var/log/dline.log";
1276 size = 50 megabytes;
1277 };
1278
1279 file {
1280 type = gline;
1281 name = "/home/ircd/var/log/gline.log";
1282 size = 50 megabytes;
1283 };
1284
1285 file {
1286 type = debug;
1287 name = "/home/ircd/var/log/debug.log";
1288 size = 50 megabytes;
1289 };
1290 };

Properties

Name Value
svn:eol-style native
svn:keywords Id Revision