I'm currently running version 3.2.1 and I get the following problem, when I try to connect to the IRCd with an allow password. It doesn't matter what the password is or if ident is in use in my IRC client. And neither is it a client specific issue. When I try to connect, it returns the following:
So it looks like the provided password doesn't match, despite it should.[03:27:02] Looking up irc.something.com...
[03:27:02] Connecting to ********, port 6667
[03:27:02] Sending login information...
[03:27:04] -irc.something.com- *** Looking up your hostname...
[03:27:04] -irc.something.com- *** Found your hostname (cached)
[03:27:04] -irc.something.com- *** Checking ident...
[03:27:07] -irc.something.com- *** No ident response; username prefixed with ~
[03:27:07] -irc.something.com- Closing Link: Rasbelin[some.isp.that.has.been.censored.info] (Password mismatch)
The configuration used for the allow block:
Code: Select all
allow {
ip *@*;
hostname *@*;
class clients;
password "test";
maxperip 5;
};
allow {
ip *@*;
hostname *@*;
class servers;
password "*********";
maxperip 1;
options {
nopasscont;
};
};I appriciate any useful hints you may have.