ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/doc/reference.conf
Revision: 1523
Committed: Sun Sep 9 11:11:52 2012 UTC (12 years, 11 months ago) by michael
Original Path: ircd-hybrid-8/doc/example.conf
File size: 33764 byte(s)
Log Message:
- configure.ac: fixed syntax error
- example.conf: mention that the DH prime size must be at least 1024 bits

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

Properties

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