Page 1 of 1

Pasworded users

Posted: Mon Apr 13, 2015 2:03 pm
by Martinus
Hi! I´m trying to config my unrealircd server, i need some people use password to login server, especially two users (admins). Other users can login without password from specific ip prefix. I´m using UnrealIRCD 3.2.10.4 as server and KiwiIRC as web client.

I also read some other topics with this problem and try to config our server as you can see below. It doesn´t work because another user can login with bob´s password.

/* my default user class */
allow {
ip *;
hostname *;
class clients;
maxperip 5;
};

/* Bob need to use a password */
allow {
ip *@127.0.0.1;
hostname *bob@*.bobs.isp.tld;
class clients;
password "BobsPasswd";
maxperip 10;
};

Thank you in advance.

Re: Pasworded users

Posted: Thu May 14, 2015 6:16 am
by katsklaw
Please paste the real allow block, you may blank out the password, but please leave the rest unaltered.