i'm trying some floodtests on my dev-server, and my ircd can't handle more than 50 connections, even though i explicit set it to 4096 in ./Config
It says:
Closing link: somerandomname[10.0.0.150] (Server is full.)
anyone knows how to fix it?
Code: Select all
allow {
ip *@*;
hostname *@*;
class clients;
maxperip 4096;
};
allow {
ip *@10.0.0.15*; /* my ip */
hostname *@10.0.0.15*; /* my ip */
class opers;
maxperip 4096;
};