From 319f06f0b140649138668d10ff90e49e053f2d0d Mon Sep 17 00:00:00 2001 From: Bram Matthys Date: Thu, 24 Dec 2015 13:03:03 +0100 Subject: [PATCH] Some last changes to example conf: maxperip default 3, gencloak command, mention forums as support resource. --- doc/conf/examples/example.conf | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/doc/conf/examples/example.conf b/doc/conf/examples/example.conf index 7da43e1cf..70083ebe1 100644 --- a/doc/conf/examples/example.conf +++ b/doc/conf/examples/example.conf @@ -113,11 +113,11 @@ class servers * See also: https://www.unrealircd.org/docs/Allow_block */ -/* Allow everyone in, but only 5 connections per IP */ +/* Allow everyone in, but only 3 connections per IP */ allow { ip *@*; class clients; - maxperip 5; + maxperip 3; }; /* Example of a special allow block on a specific IP: @@ -194,7 +194,7 @@ listen { * the above listen { } blocks then you will likely get an * 'Address already in use' error and the ircd won't start. * This means you MUST bind to a specific IP instead of '*' like: - * listen 1.2.3.4:6667; + * listen { ip 1.2.3.4; port 6667; }; * Of course, replace the IP with the IP that was assigned to you. */ @@ -368,11 +368,10 @@ set { /* Cloak keys should be the same at all servers on the network. * They are used for generating masked hosts and should be kept secret. - * The keys should be 3 random strings of 5-100 characters - * (10-20 chars is just fine) and must consist of lowcase (a-z), - * upcase (A-Z) and digits (0-9) [see first key example]. - * HINT: On *NIX, you can run './unreal gencloak' in your shell to let - * Unreal generate 3 random strings for you. + * The keys should be 3 random strings of 50-100 characters + * and must consist of lowcase (a-z), upcase (A-Z) and digits (0-9). + * HINT: On *NIX, you can run './unrealircd gencloak' in your shell to let + * UnrealIRCd generate 3 random strings for you. */ cloak-keys { "aoAr1HnR6gl3sJ7hVz4Zb7x4YwpW"; @@ -429,6 +428,8 @@ set { * Problems or need more help? * 1) https://www.unrealircd.org/docs/UnrealIRCd_4_documentation * 2) https://www.unrealircd.org/docs/FAQ <- answers 80% of your questions! - * 3) If you still have problems you can go irc.unrealircd.org #unreal-support, - * note that we require you to READ THE DOCUMENTATION and FAQ first! + * 3) If you are still having problems then you can get support: + * - Forums: https://forums.unrealircd.org/ + * - IRC: irc.unrealircd.org / #unreal-support + * Note that we require you to read the documentation and FAQ first! */