How do you only allow certain country's to your server?
My solution was:
Code: Select all
allow {
ip LALA;
hostname *@*.nl;
class clients;
maxperip 5;
};Code: Select all
allow {
ip LALA;
hostname *@*.be;
class clients;
maxperip 5;
};Anyone else got a solution for this?

