Pasworded users

These are old archives. They are kept for historic purposes only.
Post Reply
Martinus
Posts: 1
Joined: Mon Apr 13, 2015 1:35 pm

Pasworded users

Post 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.
katsklaw
Posts: 1124
Joined: Sun Apr 18, 2004 5:06 pm
Contact:

Re: Pasworded users

Post by katsklaw »

Please paste the real allow block, you may blank out the password, but please leave the rest unaltered.
Post Reply