disabe auto k-line (throttling)

These are old archives. They are kept for historic purposes only.
Post Reply
Nio
Posts: 26
Joined: Wed Apr 14, 2004 10:04 am

disabe auto k-line (throttling)

Post by Nio »

how i can disabe the auto-kline protection?
like k-line of proxies and like Reconnecting too fast..?
Dukat
Posts: 1083
Joined: Tue Mar 16, 2004 5:44 pm
Location: Switzerland

Post by Dukat »

Proxies are not klined by the IRCd.
Maybe your services are doing that.

The throttling is controlled by the set::throttle statements.
Modify the values or remove it. :D
Nio
Posts: 26
Joined: Wed Apr 14, 2004 10:04 am

Post by Nio »

where is that "set::throttl" i didn't find it at unrealircd.conf :roll:
Syzop
UnrealIRCd head coder
Posts: 2179
Joined: Sat Mar 06, 2004 8:57 pm
Location: .nl
Contact:

Post by Syzop »

Hm, well they must be somewhere.

Example:

Code: Select all

set {
 throttle {
   connections 7;
   period 1m;
 };
};
It's useful flood protection, so I really suggest using it and not setting it at 99 connections per 1 second or something :P. Also note that this "threshold" is per-host (well per-IP), not global or something.
If, for whatever reason, you want to allow a certain host to connect clients rapidly, then I suggest using an except throttle block for that IP (range).
Post Reply