allow {
ip *@*;
hostname *@*;
class clients;
password "RoCkz";
maxperip 4;
options {
ssl;
};
allow {
ip *@77.XXX.XXX.XXX;
hostname *;
class clients;
maxperip 6;
};
allow {
ip *@127.0.0.1;
hostname *@services.localhost.net;
class servers;
maxperip 2;
};
};
I dont know what I am missing but on a rehash I get allow::allow specified without a value This looks just like the config I was using before except I changed the order.
llow::allow specified without a value
Re: llow::allow specified without a value
Opening { twice, closing once, so you need one more }; there.intel233, part one wrote:allow {
ip *@*;
hostname *@*;
class clients;
password "RoCkz";
maxperip 4;
options {
ssl;
};
Code: Select all
allow {
ip *@*;
hostname *@*;
class clients;
password "RoCkz";
maxperip 4;
options {
ssl;
};
};That makes the last }; not necessary. So you need to remove the last one.intel233, part two wrote:allow {
ip *@77.XXX.XXX.XXX;
hostname *;
class clients;
maxperip 6;
};
allow {
ip *@127.0.0.1;
hostname *@services.localhost.net;
class servers;
maxperip 2;
};
};
Code: Select all
allow {
ip *@127.0.0.1;
hostname *@services.localhost.net;
class servers;
maxperip 2;
};Ex Network-Administrator
Re: llow::allow specified without a value
if that services allow block is supposed to be for services, you can delete it. Services clients connect to their own IRCd.
Configuration - https://www.unrealircd.org/docs/Configuration
FAQ - https://www.unrealircd.org/docs/FAQ
FAQ - https://www.unrealircd.org/docs/FAQ