conf? modules? other?
#1 All Allow
allow {
ip *@*;
hostname *@*;
class clients;
maxperip 10;
};
^
I
#2 deny ip mask without correct password
???
ip *@217.118.*.*;
hostname *@*;
class clients;
reason "BAN IP or BAD PASSWORD!";
};
^
I
#3 Allow ip mask user with password
allow {
ip *[email protected].*.*;
hostname *@*;
class clients;
password "userpass_1";
maxperip 2;
};
...
^
I
...
allow {
ip *[email protected].*.*;
hostname *@*;
class clients;
password "userpass_N";
maxperip 2;
};
^
I
...