Block certain hosts
Posted: Thu Mar 10, 2005 9:13 pm
Is there any way to limit the number of connects for a certain host? Same *.comcast only 3 connections for each host. I'm not sure if this the right place to have posted.
Welcome to the UnrealIRCd Forums!
https://forums.unrealircd.org/
Code: Select all
allow {
ip NONE;
hostname *@*.comcast.com;
class class;
maxperip 3;
};Code: Select all
allow {
ip 88.8.88.8;
hostname *@*;
class clients;
maxperip 6;
};
Code: Select all
allow {
ip 88.8.88.8;
hostname NONE;
class clients;
maxperip 6;
};