Unauthorized connection

These are old archives. They are kept for historic purposes only.
Post Reply
The_Cop
Posts: 2
Joined: Fri Aug 10, 2012 1:41 pm

Unauthorized connection

Post by The_Cop »

Hello,

a friend of mine somehow can't connect to my IRCd. Whenever he tries to connect I get the following error message

Code: Select all

*** Notice -- Unauthorized connection from username[ip].
I've read all other threads here and couldn't find a solution for my problem.
Here's my listen block:

Code: Select all

listen         *:6697
{
        options
        {
                ssl;
                clientsonly;
        };
};

listen         *:8067;
listen         *:6667;
My allow block:

Code: Select all

allow {
        ip             *@*;
        hostname       *@*;
        class           clients;
        maxperip 5;
};
And /stats I

Code: Select all

- I *@* * *@* 5 clients somethingmyircserver.com 6667 
- End of /STATS report: I
Thanks in advance if anyone can help me!

Oh and I'm running Unreal 3.2.8.1 (kinda was too lazy to update :P).
Syzop
UnrealIRCd head coder
Posts: 2112
Joined: Sat Mar 06, 2004 8:57 pm
Location: .nl
Contact:

Re: Unauthorized connection

Post by Syzop »

Too many connections from the same IP (so more than 5 in your case)? Didn't check the code, but, could be it.. the error is a bit vague, I agree.
The_Cop
Posts: 2
Joined: Fri Aug 10, 2012 1:41 pm

Re: Unauthorized connection

Post by The_Cop »

Hm, it's just him connecting to my server from that IP.
Post Reply